0

有谁知道如何在一个 XML 文件中显示多个文件?这就像有一个带有两个 ListView 的窗格,一个在左侧,一个在右侧。我试图将一个 ListView 设置android:gravity在左侧,另一个设置在右侧。我也尝试过使用 LinearLayout 并在其上创建两个 RelativeLayouts,但它仍然没有做任何事情。

非常感谢任何链接、评论、建议或示例代码...

4

2 回答 2

0

使用相对布局。然后让左边的一个对齐到父级的左边缘,右边的一个 layout_toRightOf 左边的列表。

于 2013-07-01T16:12:31.750 回答
0

简单的并排布局,每个视图占据屏幕的一半

<?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:orientation="horizontal" >

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

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

</LinearLayout>
于 2013-07-01T16:05:57.097 回答