Android-请问这种布局可以怎么实现?
看图中,有3个ListView分别显示不同的列表,每个ListView都有可能行数比较多,会产生滚动条,但是必须保证每个ListView都完整显示。
这种布局应该怎么写啊?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
看图中,有3个ListView分别显示不同的列表,每个ListView都有可能行数比较多,会产生滚动条,但是必须保证每个ListView都完整显示。
这种布局应该怎么写啊?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
你可以试试这个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>
呵呵,这个不是很困难的说
我先说个简单的,容易实现的:
写一个普通的 Activity,在布局文件中内嵌三个 LinearLayout (其实啥布局都行)
然后分别给出有意义的id,并将它们摆放成你需要的三个 listView 的位置
然后写代码就好了,
需要加载的时候在 Activity 里面添加三个对应的成员变量,比如 linearLayout1 ~ 3
以及三个你需要的 listView1 ~ 3
然后将对应布局的变量添加上对应的列表视图就ok了 即
linearLayout1.addView(listView1);
linearLayout2.addView(listView2);
linearLayout3.addView(listView3);
祝好,
斑驳敬上