Android-请问这种布局可以怎么实现?

发布于 2017-01-06 04:53:53 字数 213 浏览 1347 评论 2

请输入图片描述
看图中,有3个ListView分别显示不同的列表,每个ListView都有可能行数比较多,会产生滚动条,但是必须保证每个ListView都完整显示。
这种布局应该怎么写啊?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

归属感 2017-08-11 07:07:58

你可以试试这个xml布局,应该就能够达到你想要的效果:

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

<ListView android:id="@+id/stayviewListView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/stayviewTextView" >
</ListView>

<ListView android:id="@+id/stayviewListView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/stayviewListView1" >
</ListView>

<ListView android:id="@+id/stayviewListView3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/stayviewListView2" >
</ListView>

</RelativeLayout>

浮生未歇 2017-02-07 22:27:56

呵呵,这个不是很困难的说

我先说个简单的,容易实现的:
写一个普通的 Activity,在布局文件中内嵌三个 LinearLayout (其实啥布局都行)
然后分别给出有意义的id,并将它们摆放成你需要的三个 listView 的位置

然后写代码就好了,
需要加载的时候在 Activity 里面添加三个对应的成员变量,比如 linearLayout1 ~ 3
以及三个你需要的 listView1 ~ 3
然后将对应布局的变量添加上对应的列表视图就ok了 即
linearLayout1.addView(listView1);
linearLayout2.addView(listView2);
linearLayout3.addView(listView3);

祝好,
斑驳敬上

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文