0

这是我想要从我的布局中获得的肖像 UI 的简化版本:

需要肖像

它是另一个布局上方的 ListView。

复杂之处在于,当将大量行添加到 EditText 时,我希望整个底部布局(在本例中为“Button2”)可见:

想要的风景

我一直试图通过在 LinearLayout 中嵌套一个 RelativeLayout 来实现这一点。不幸的是,当我使用 EditText 获得我想要的效果时,ListView 消失了,例如

列表视图消失

我已经尝试了很多替代方案,但似乎没有任何东西可以实现这两个目标。

这是我的 XML:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/main"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <FrameLayout
        android:id="@+id/AAA"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >
    </FrameLayout>

    <LinearLayout
        android:id="@+id/BBB"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@+id/AAA"
        android:orientation="vertical" >

        <LinearLayout
            android:id="@+id/list_container"
            android:layout_width="match_parent"
            android:layout_height="0dip"
            android:layout_weight="1" >

            <ListView
                android:id="@+id/list"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:entries="@array/list_items"/>
        </LinearLayout>

        <RelativeLayout
            android:id="@+id/input_parent"
            android:layout_width="match_parent"
            android:layout_height="wrap_content" >

            <Button
                android:id="@+id/button1"
                android:layout_above="@+id/bottom_layout"
                android:layout_width="100dip"
                android:layout_height="50dip"
                android:clickable="true"
                android:text="Button1" />

            <EditText
                android:id="@+id/edittext"
                android:layout_above="@+id/bottom_layout"
                android:layout_toRightOf="@+id/button1"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:minHeight="50dip"
                android:imeOptions="flagNoExtractUi"
                android:inputType="textMultiLine"
                android:maxLines="8"
                android:scrollbars="vertical" />

            <!-- Align this with the bottom so when the input text area gets
                 really big it doesn't push this section off screen  -->
            <LinearLayout
                android:id="@+id/bottom_layout"
                android:layout_alignParentBottom="true"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:orientation="vertical" >

                <Button
                    android:id="@+id/button2"
                    android:layout_width="match_parent"
                    android:layout_height="150dip"
                    android:layout_gravity="bottom"
                    android:clickable="true"
                    android:text="Button2" />

            </LinearLayout>

        </RelativeLayout>

    </LinearLayout>

</RelativeLayout>

如果我android:layout_alignParentBottom="true"从bottom_layout 中删除,则会出现ListView 内容,但随后我会失去我想要的EditText 效果。

有人可以帮忙吗?我需要支持 OS 2.2+。

4

1 回答 1

1

Simplifying the layout a bit like this:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
                android:id="@+id/main"
                android:layout_width="match_parent"
                android:layout_height="match_parent" >

    <FrameLayout
            android:id="@+id/AAA"
            android:layout_width="match_parent"
            android:layout_height="wrap_content" >
    </FrameLayout>

    <RelativeLayout
            android:id="@+id/BBB"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_below="@+id/AAA"
            android:orientation="vertical" >

            <ListView
                    android:id="@+id/list"
                    android:layout_above="@+id/edittext"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:entries="@array/list_items"/>

            <Button
                    android:id="@+id/button1"
                    android:layout_above="@+id/bottom_layout"
                    android:layout_width="100dip"
                    android:layout_height="50dip"
                    android:clickable="true"
                    android:text="Button1" />

            <EditText
                    android:id="@+id/edittext"
                    android:layout_above="@+id/bottom_layout"
                    android:layout_toRightOf="@+id/button1"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:minHeight="50dip"
                    android:imeOptions="flagNoExtractUi"
                    android:inputType="textMultiLine"
                    android:maxLines="8"
                    android:scrollbars="vertical" />

            <!-- Align this with the bottom so when the input text area gets
                 really big it doesn't push this section off screen  -->
            <LinearLayout
                    android:id="@+id/bottom_layout"
                    android:layout_alignParentBottom="true"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:orientation="vertical" >

                <Button
                        android:id="@+id/button2"
                        android:layout_width="match_parent"
                        android:layout_height="150dip"
                        android:layout_gravity="bottom"
                        android:clickable="true"
                        android:text="Button2" />
            </LinearLayout>

    </RelativeLayout>

</RelativeLayout>

seems to give the result you were describing.

Result

于 2013-05-14T03:30:05.290 回答