我该如何在XML中将LinearLayout高一半的fill_parent做到?

<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>

我想做一些与高度相似的事情。

最佳答案

I just want have a half of screen with 1 linearLayout and half screen with other one
试试这个

<?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:weightSum="2"
    android:orientation="vertical" >

    <LinearLayout android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:background="#192832"></LinearLayout>

    <LinearLayout android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:background="#193222"></LinearLayout>


</LinearLayout>

两个线性布局各自占据屏幕的一半。

关于android - 高度的一半fill_parent xml,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/16748872/

10-10 03:49