私は自分で指定せずにハーフフレームレイアウトとハーフグリッドレイアウトを表示するためにxmlで達成しようとしていdp
ます
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<FrameLayout
android:id="@+id/top"
android:layout_width="match_parent"
android:layout_height="250dp"
android:background="#FFFF00"
android:layout_weight="0"
android:orientation="vertical" >
</FrameLayout>
<GridView
android:id="@+id/buttom"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:numColumns="3" >
</GridView>
</LinearLayout>
これのサイズを指定したくありません:
android:layout_height="250dp"
その後、すべてのサイズでこの xml を再作成する必要があります。多分私は何かを変更することができ、アンドロイドはすべてのサイズを計算しますか?
ありがとう。