我該怎麼辦LinearLayout
身高一半fill_parent
in 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在dp中指定所需的值。像100dp或任何你想要的。 – Raghunandan
你想讓你的linearLayout平方? – Blackbelt
我只想要一半的屏幕有1個linearLayout,另一個有半個屏幕 – lexell