0

我正在使用以下代码

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <LinearLayout
        android:id="@+id/linearLayout1"
        android:layout_width="match_parent"
        android:layout_height="0px"
        android:layout_weight="9"
        android:background="@drawable/rectangularborder"
        android:orientation="horizontal" >

        <LinearLayout

            android:layout_height="fill_parent"
            android:layout_width="0px"
            android:layout_weight="1"
            android:background="@drawable/rightrectangularborder"
            android:orientation="vertical" >
        </LinearLayout> 
        <!--

        <LinearLayout

            android:layout_height="fill_parent"
            android:layout_width="0px"
            android:layout_weight="1"
            android:background="@drawable/rightrectangularborder"
            android:orientation="vertical" >
        </LinearLayout> -->


    </LinearLayout>


    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="0px"
        android:layout_weight="1"
        android:background="@drawable/rectangularborder"
        android:orientation="vertical" >
    </LinearLayout>

</LinearLayout>

在此边框中,ID 为 linearLayout1 的线性布局不会显示。但是,当我在 linearLayout1 中评论线性布局时,边框会正确显示。我怎样才能克服这个问题?

4

5 回答 5

0

使用 android:layout_margin="10dp"

enter code here
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <LinearLayout
        android:id="@+id/linearLayout1"
        android:layout_width="match_parent"
        android:layout_height="0px"
        android:layout_margin="10dp"
        android:layout_weight="9"
        android:background="#000000"
        android:orientation="horizontal" >

        <LinearLayout
            android:layout_width="0px"
            android:layout_height="fill_parent"
            android:layout_margin="10dp"
            android:layout_weight="1"
            android:background="#ffffff"
            android:orientation="vertical" >
        </LinearLayout>

        <LinearLayout
            android:layout_width="0px"
            android:layout_height="fill_parent"
            android:layout_margin="10dp"
            android:layout_weight="1"
            android:background="#ffffff"
            android:orientation="vertical" >
        </LinearLayout>
    </LinearLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="0px"
        android:layout_margin="10dp"
        android:layout_weight="1"
        android:background="#000000"
        android:orientation="vertical" >
    </LinearLayout>

</LinearLayout>
于 2015-02-21T16:32:13.713 回答
0

尝试向内部线性布局添加边距

android:layout_margin="2dp"
于 2015-02-21T09:15:16.890 回答
0

给 id 为 linearlayout1 的线性布局添加一些填充,例如:

android:padding="10dp"
于 2015-02-21T09:18:20.797 回答
0

也许您注释掉的布局占用了更多的垂直空间?我不确定一个布局的“fillParent”如何与另一个以重量指定高度的组件交互。

尝试使用这些值进行试验。设置每个布局的背景颜色,以便您确切知道一个布局的开始位置和另一个结束位置。

于 2015-02-21T09:18:59.943 回答
0

layout_margin在您的布局中添加id linearLayout1,例如,

android:layout_margin="12dp"
于 2015-02-21T09:38:54.213 回答