所以我正在做一个项目,其中它将包含类似于任务的复选框(listview),下面是一个评论部分,(另一个列表视图)。我怎么可能实现这个目标?
答案 0 :(得分:0)
你应该能够通过在布局中放置两个具有相同权重的ListView来实现这一点。 (我还放了一些标签来分隔ListViews)
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceLarge"
android:text="Tasks"
android:padding="5dp"
android:gravity="center" />
<ListView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/listView"
android:layout_weight="1" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceLarge"
android:text="Comments"
android:padding="5dp"
android:gravity="center" />
<ListView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/listView2"
android:layout_gravity="center_horizontal"
android:layout_weight="1" />
</LinearLayout>
答案 1 :(得分:0)
在根布局中使用2个Linearlayout(此处为:linearlayout)。 将两者的重量设定为0.5 两者中的列表视图都具有match_parent的高度 - 完成