我有两个ListViews
:listview
和listview1
。 listview
包含7-8列,最后一列包含EditText
。我想显示两个没有空格的ListView
,它们应该被填充。
这是我的代码:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".ShowTwoListView">
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
<LinearLayout
android:weightSum="1"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ListView
android:id="@+id/lvFoods"
android:background="#000000"
android:layout_width="0dp"
android:layout_height="fill_parent"
android:layout_weight="0.5" />
<ListView
android:id="@+id/lvRestaurants"
android:layout_width="0dp"
android:layout_height="fill_parent"
android:layout_weight="0.5"/>
</LinearLayout>
</RelativeLayout>
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/ivFoods"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
这是我的结果:
答案 0 :(得分:0)
您的子视图需要与其父级宽度相匹配
<?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="wrap_content">
<ImageView
android:id="@+id/ivFoods"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>