LinearLayout
の高さの半分fill_parent
はxmlでどうすればいいですか?高さ半分fill_parent xml
<LinearLayout android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:weightSum="1">
<ImageView android:layout_height="fill_parent"
android:layout_width="0dp"
android:layout_weight="0.5"/>
</LinearLayout>
高さと似たようなことをしたいと思います。
の代わりにfill_parentを指定してください。 100dpや好きなものと同じように。 – Raghunandan
linearLayoutを二乗する必要がありますか? – Blackbelt
私はちょうど1つのlinearLayoutのスクリーンの半分と他のものとの半分のスクリーンを持ってほしい – lexell