2013年6月30日日曜日

レイアウトの配置に優先順位を指定するサンプルandroid:layout_weight

ボタンなどGUIの配置の際、
上側のビューにmatch_parentを指定すると、
その下にビューが配置できなくなってしまいます。

そこで優先順位layout_weightの指定です。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >
    <GridView
        android:id="@+id/GridView01"
        android:layout_width="fill_parent"
        android:layout_height="match_parent"
        android:columnWidth="60dp"
        android:gravity="center"
        android:horizontalSpacing="10dp"
        android:numColumns="auto_fit"
        android:padding="10dp"
        android:stretchMode="columnWidth"
        android:verticalSpacing="10dp"
        android:layout_weight="0.50" >
    </GridView>

    <LinearLayout
        android:id="@+id/yohaku"
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:orientation="vertical" >

    </LinearLayout>

</LinearLayout>

layout_weightはデフォルトが1になっています。
小数点以下にすることで優先度が下がります。

ビューの背面全面の指定などにも使えます。

0 件のコメント:

コメントを投稿