在我的项目中,一个要求就像一个屏幕中的两个列表视图,但问题是列表视图显示水平。
我的意思是两个列表视图显示水平视图。
提前致谢。
答案 0 :(得分:0)
Here是您可以参考的示例项目
答案 1 :(得分:0)
您是否尝试将ListView放在水平方向的另一个parent ListView
内?
答案 2 :(得分:0)
创建新的线性布局
1.单击图形布局
2.单击转到下一个状态//前三个选项
3.单击横向
输入您喜欢的
<?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="wrap_content"
android:layout_height="match_parent"
android:layout_weight="1"/>
<ListView
android:id="@+id/list2"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_weight="1"/>
</LinearLayout>
您的结果将是这样的