-4
画面の上部にテキストビューがあり、下部にはbutton.inが表示されます。私のlistview.iを表示する必要があります。私のシミュレータの画面に合わせてリストビューの高さを設定しますが、どうすればすべてのデバイスを作ることができますか?ここリストビューの高さをすべてのデバイスに合わせるにはどうすればいいですか?
は、私がここに
`
<include
android:id="@+id/toolbar"
layout="@layout/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="10dp"
android:background="@color/white"
android:orientation="vertical"
android:id="@+id/scroll">
<TextView
android:id="@+id/txtCount"
android:layout_width="match_parent"
android:layout_height="40dp"
android:gravity="center_vertical"
android:textAlignment="center"
android:layout_marginTop="5dp"
android:layout_marginRight="0dp"
android:layout_marginLeft="0dp"
android:background="@color/accent"
android:textColor="@color/black"
android:text=" 1 Bankruptcy Record "
android:textSize="18dp" />
<ListView
android:id="@+id/list_properties"
android:layout_width="match_parent"
android:dividerHeight="4dp"
android:layout_above="@+id/relativeLayout"
android:layout_below="@+id/txtCount"
android:layout_height="300dp">
</ListView>
<RelativeLayout
android:id="@+id/relativeLayout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColor="@color/red"
android:layout_gravity="bottom"
android:layout_alignParentBottom="true"
android:textSize="10dp"
android:text="@string/txtwarning"
/>
</RelativeLayout>
</LinearLayout>
`
をaddded私のコード
<ListView
android:id="@+id/list_properties"
android:layout_width="match_parent"
android:dividerHeight="4dp"
android:layout_above="@+id/relativeLayout"
android:layout_below="@+id/txtCount"
android:layout_height="300dp"/>
完全なXMLである私は、シミュレータの画面に応じて、私のリストビューの高さを設定しますが、その上映私はすべてのデバイスにすることができます私は大きな画面の携帯電話を使用すると違う?
重み付けをビューに設定する –
show full xml。 –
なぜあなたはリストビューの高さを固定していますか? –