2013年6月12日水曜日

[android]各ビューの画面幅に占める割合設定

各ビューのlayout_width を 0dip と設定し、layout_weight に 画面に占める割合を設定する。
(例)textView1 と textView2 を 7:3の割合で表示させる。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal" >

    <TextView
        android:id="@+id/textView1"
        android:layout_width="0dip"
        android:layout_weight="7"
        android:layout_height="wrap_content" />

    <TextView
        android:id="@+id/textView2"
        android:layout_width="0dip"
        android:layout_weight="3"
        android:layout_height="wrap_content" />

</LinearLayout>




0 件のコメント:

コメントを投稿