私の質問はとても簡単です。私はレイアウトを持っています:要素の幅をパーセントで設定するにはどうすればよいですか?
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:background="@drawable/mobile_background"
android:layout_width="fill_parent"
android:gravity="center"
android:layout_height="fill_parent"
>
<Button
android:text="GET MESSAGES"
android:
android:id="@+id/buttonMessages"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
<Button
android:text="REGISTRATION"
android:id="@+id/buttonRegistration"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
<Button
android:text="SETTINGS"
android:id="@+id/buttonSettings"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
</LinearLayout>
しかし、私はボタンの固定サイズを設定する必要があります - 私は画面の幅の30%のサイズを設定する必要があります。どうしたらいいですか?
他に意味がありますか? – user975290
あなたは 'findViewById'を使ってアクティビティに動的に幅を設定することができますが、xmlのアプローチは頭痛の程度が低いと思います。 – Craigy