我正在尝试将ScrollView添加到包含各种TextView,ImageView和ListView的布局中。我之所以能够滚动的原因是因为所有文本和图像几乎占据了所有空间,并且对于ListView来说几乎没有。
我不知道如何实施这一难题。 下面是布局的XML代码。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@android:color/white"
android:orientation="vertical" >
<ImageView
android:id="@+id/pubInfoImg"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<TextView
android:id="@+id/pubInfoWelcome"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:paddingLeft="10dp" />
<TextView
android:id="@+id/pubInfoTapsNo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="5"
android:padding="10dp" />
</LinearLayout>
<View
android:layout_width="fill_parent"
android:layout_height="0.7dip"
android:layout_centerVertical="true"
android:background="@android:color/holo_blue_dark" />
<TextView
android:id="@+id/pubInfoAddress"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingLeft="10dp" />
<TextView
android:id="@+id/pubInfoUrl"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingLeft="10dp" />
<TextView
android:id="@+id/pubInfoOpenhours"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingLeft="10dp" />
<ListView
android:id="@+id/tapsListview"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#BABABA"
android:divider="@android:color/transparent"
android:dividerHeight="0.0sp"
android:footerDividersEnabled="true"
android:headerDividersEnabled="true" />
</LinearLayout>
答案 0 :(得分:0)
如果你想在列表的末尾设置imageview或textview,那么你可以使用ListView.addFooterView(footerView);它将在android的
列表视图的foooter中添加视图