Android:未显示线性布局的边框

时间:2015-02-21 09:11:30

标签: android android-linearlayout android-background

我正在使用以下代码

<?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中评论线性布局时,边框会正确显示。我怎样才能克服这个问题?

5 个答案:

答案 0 :(得分:0)

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

android:layout_margin="2dp"

答案 1 :(得分:0)

使用id linearlayout1为线性布局添加一些填充,如:

android:padding="10dp"

答案 2 :(得分:0)

您注释掉的布局可能会占用更多的垂直空间吗?我不确定&#34; fillParent&#34;一个布局将与另一个组件相互作用,该组件的高度以重量来指定。

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

答案 3 :(得分:0)

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

android:layout_margin="12dp"

答案 4 :(得分: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>