linearlayout无法正常显示

时间:2012-01-10 14:22:31

标签: android android-linearlayout

我在项目中创建了这个主要的XML文件。我已经解析了XML文件并以线性布局1动态显示。但是我的结果中没有显示linearlayout2。请帮我。这是我的主要XML文件。我正在使用一个XML文件来显示我的小部件

<?xml version="1.0" encoding="utf-8"?>
        <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
            android:id="@+id/layout1"
            android:layout_width="match_parent"
            android:layout_height="fill_parent"
            android:layout_alignParentBottom="true"
            android:orientation="vertical" >
            <ScrollView
                android:id="@+id/scrollView1"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:fillViewport="true" >
                <LinearLayout
                    android:id="@+id/linearLayout1"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:layout_alignParentBottom="true"
                    android:orientation="vertical" >
                </LinearLayout>
            </ScrollView>
            <LinearLayout
                android:id="@+id/linearlayout2"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_alignParentBottom="true"
                android:gravity="bottom"
                android:orientation="horizontal" >
                <Button
                    android:id="@+id/button2"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_alignParentBottom="true"
                    android:layout_alignParentLeft="true"
                    android:layout_weight="1"
                    android:gravity="bottom"
                    android:text="Signature" />
                <Button
                    android:id="@+id/button1"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_alignParentBottom="true"
                    android:layout_marginLeft="30dp"
                    android:layout_toRightOf="@+id/button2"
                    android:layout_weight="1"
                    android:gravity="bottom"
                    android:text="Submit" />
            </LinearLayout>
        </LinearLayout>

3 个答案:

答案 0 :(得分:1)

复制并粘贴此布局,通过在滚动视图中添加layout_weight并使用linearlayout2进行修改,以均匀分布屏幕。希望它能满足您的要求。

<?xml version="1.0" encoding="utf-8"?>
        <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
            android:id="@+id/layout1"
            android:layout_width="match_parent"
            android:layout_height="fill_parent"
            android:layout_alignParentBottom="true"
            android:orientation="vertical" >
            <ScrollView
                android:id="@+id/scrollView1"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:fillViewport="true"
                android:layout_weight="1" >
                <LinearLayout
                    android:id="@+id/linearLayout1"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:layout_alignParentBottom="true"
                    android:orientation="vertical" >
                </LinearLayout>
            </ScrollView>
            <LinearLayout
                android:id="@+id/linearlayout2"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_alignParentBottom="true"
                android:gravity="bottom"
                android:orientation="horizontal"
                android:layout_weight="1" >
                <Button
                    android:id="@+id/button2"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_alignParentBottom="true"
                    android:layout_alignParentLeft="true"
                    android:layout_weight="1"
                    android:gravity="bottom"
                    android:text="Signature" />
                <Button
                    android:id="@+id/button1"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_alignParentBottom="true"
                    android:layout_marginLeft="30dp"
                    android:layout_toRightOf="@+id/button2"
                    android:layout_weight="1"
                    android:gravity="bottom"
                    android:text="Submit" />
            </LinearLayout>
        </LinearLayout>

答案 1 :(得分:1)

最好为问题使用相对布局。

答案 2 :(得分:0)

我认为很容易解决:

您的ScrollView将布局高度定义为“wrap-content”,这意味着 “孩子们可以占用所有需要的空间”。但是,在第一个孩子中,您可以定义身高 作为“match_parent”。它意味着“我需要大部分空间”。

要解决此问题,只需在ScrollView中设置linearlayout的高度即可 “0dip”并将layout_weight设置为“1”。