制作了列表视图中显示内容的布局和列表视图下方的按钮,用于显示列表视图的更多信息,所以首先我在列表视图中只显示4行,当我下次点击按钮时再次添加4行在列表中,所以现在我的按钮在屏幕上下来,所以如何使整个布局滚动,以便我可以通过滚动我的布局去按钮..
listplacehold.xml是
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#1A77BD"
>
<ListView
android:id="@+id/android:list"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:drawSelectorOnTop="false" />
<View
android:id="@+id/horizontolline"
android:layout_width="fill_parent"
android:layout_height="1dip"
android:layout_below="@id/android:list"
android:background="#000000"
/>
<Button
android:text="Load More..."
android:textColor="@color/white"
android:id="@+id/keywordsearchbutton"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@id/horizontolline"
android:drawableLeft="@drawable/load_more_off"
android:gravity="left|center_vertical"
android:background="#1A77BD"
/>
</RelativeLayout>
and for list item layout is: listitem.xml is
<RelativeLayout 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/img"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
/>
<!-- Location where barrio items will be displayed -->
<TextView
android:id="@+id/reportid"
android:layout_marginLeft="70dip"
android:text="reporet id"
android:textColor="@color/white"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
/>
<TextView android:id="@+id/status"
android:textColor="@color/white"
android:text="status"
android:layout_marginTop="40dip"
android:layout_marginLeft="200dip"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView android:id="@+id/title"
android:text="title"
android:layout_marginLeft="150dip"
android:textColor="@color/white"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:id="@+id/date"
android:text="dateeeeeee"
android:layout_marginLeft="70dip"
android:layout_marginTop="40dip"
android:textColor="@color/white"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</RelativeLayout>
单击按钮时项是动态加载列表视图
我认为滚动将设置在“listplacehold.xml”上面的xml上面但是怎么样?当我这样做时设置为半屏,意味着它没有在整个视图中显示...感谢您的帮助提前。
答案 0 :(得分:0)
不要将 ScrollView 与 ListView 组合使用。而是让你的布局像这样。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#1A77BD" >
<Button
android:id="@+id/lodmore"
android:text="Load More..."
android:textColor="@color/white"
android:id="@+id/keywordsearchbutton"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true""
android:drawableLeft="@drawable/load_more_off"
android:gravity="left|center_vertical"
android:background="#1A77BD"/>
<View
android:id="@+id/horizontolline"
android:layout_width="fill_parent"
android:layout_height="1dip"
android:layout_above="@id/loadmore"
android:background="#000000"/>
<ListView
android:id="@+id/android:list"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:layout_alignParentTop="true"
android:layout_above="@id/horizontolline/>
</RelativeLayout>
答案 1 :(得分:-1)
将scrollview放在你的根布局上,并记住在scrollview下只允许一个布局节点......
参考此文档:
http://developer.android.com/reference/android/widget/ScrollView.html