我在顶部有TextView
,在底部有ListView
。
我希望当我滚动列表TextView
时也会向上和向下滚动。
通常只滚动列表片段,但我想滚动所有父片段。
如何解决?
<RelativeLayout android:layout_width="match_parent"
android:layout_height="match_parent"
<LinearLayout
android:layout_above="@+id/frame_add"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<LinearLayout
android:paddingLeft="16dp"
android:paddingRight="16dp"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:textSize="10sp"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="3"
android:text="text"/>
<TextView
android:gravity="center"
android:textSize="10sp"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="text"/>
<TextView
android:gravity="center"
android:textSize="10sp"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="text"/>
</LinearLayout>
<ListView
android:paddingLeft="16dp"
android:paddingRight="16dp"
android:id="@+id/listFak"
android:layout_width="match_parent"
android:layout_height="wrap_content">
</ListView>
</LinearLayout>
<FrameLayout
android:id="@+id/frame_add"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Add"/>
</FrameLayout>
</RelativeLayout>
答案 0 :(得分:0)
谢谢我得到解决方案: SimpleAdapter adapter = new SimpleAdapter(this,maps,R.layout.list_item,from,to); 查看v = View.inflate(this,R.layout.list_item,null); list.addHeaderView(V); list.setAdapter(适配器);
答案 1 :(得分:0)
好的这是一个为列表视图设置页脚的示例,您也可以按照这个并创建和标题。 首先是页脚的布局xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:orientation="horizontal"
android:paddingBottom="7dip"
android:paddingTop="7dip" >
<TextView
android:id="@+id/footer_1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="5dip"
android:text="loadmore"
android:textSize="14dip"
android:textStyle="bold" />
</LinearLayout>
现在,在您的活动中,您必须为这个页脚充气
View footerView = ((LayoutInflater) this.getSystemService(Context.LAYOUT_INFLATER_SERVICE)).inflate(R.layout.footer_content, null, false);
将其附加到您的列表视图
keywordsListView = (ListView) findViewById(R.id.keyword_listview);
keywordsListView.addFooterView(loadingFooterView);
如果要访问页脚中的文本视图或任何其他视图,可以执行
footerView.findVIewById(R.id.yourid)