我正在尝试在scrollview或nestedscroll视图中实现listview,但我的列表不能正确显示最后一项。
请帮帮我。如何正确显示所有项目
这是我的代码
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="fill_parent"
android:fillViewport="true"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TextView
android:id="@+id/electronic_TV"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:text="@string/no_data_find"
android:textSize="40dp"
android:textStyle="bold"
android:visibility="gone" />
<RelativeLayout
android:id="@+id/rltop"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="15dp"
android:layout_marginTop="10dp"
android:background="@color/white">
<TextView
android:id="@+id/tvadver"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:text="ADVERTISEMENT"
android:textColor="@color/light_grey"
android:textSize="12dp"
android:textStyle="normal" />
<RelativeLayout
android:id="@+id/rl_viewfliper"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/tvadver"
android:layout_marginBottom="10dp"
android:layout_marginLeft="1dp"
android:layout_marginRight="10dp">
<ViewFlipper
android:id="@+id/view_flipper"
android:layout_width="fill_parent"
android:layout_height="130dp">
</ViewFlipper>
</RelativeLayout>
</RelativeLayout>
<ListView
android:id="@+id/fashionLV"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/tvmsg"
android:layout_weight="1"
android:divider="@android:color/transparent"></ListView>
</LinearLayout>
</android.support.v4.widget.NestedScrollView>
</LinearLayout>
Java代码
commanAdapter = new CommanAdapter(getActivity(), commanModelArrayList);
fashionLV.setAdapter(commanAdapter);
GeneralFunction.setListViewHeightBasedOnChildren(fashionLV);
GeneralFunction代码:
public static void setListViewHeightBasedOnChildren(ListView listView) {
ArrayAdapter listAdapter = (ArrayAdapter) listView.getAdapter();
if (listAdapter == null) {
// pre-condition
return;
}
int totalHeight = 0;
for (int i = 0; i < listAdapter.getCount(); i++) {
View listItem = listAdapter.getView(i, null, listView);
listItem.measure(0, 0);
totalHeight += listItem.getMeasuredHeight();
}
ViewGroup.LayoutParams params = listView.getLayoutParams();
params.height = totalHeight + (listView.getDividerHeight() * (listAdapter.getCount() - 1));
listView.setLayoutParams(params);
}
答案 0 :(得分:0)
使用&#34; ListView&#34;和&#34; ScrollView&#34;不建议将对象放在一起。
您应该在同一个适配器中使用不同的视图。例如;
@Override
public View getView(int position, View convertView, ViewGroup parent) {
View rowView = convertView;
MyListItem currentItem = myList.get(position);
LayoutInflater Inflater = (LayoutInflater) getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
if (currentItem.getListItemType() == "Description") {
rowView = Inflater.inflate(R.layout.descriptionlayout, null);
TextView tvDesc= (TextView) rowView.findViewById(R.id.tvAccountType);
tvDesc.setText("Desc");
} else if (currentAccountItem.getListItemType() == "ListItem") {
rowView = Inflater.inflate(R.layout.list_item_layout, null);
...
}
}
你应该添加&#34; ListItemType&#34;属性到列表对象类型。并在getView()
方法中检查此属性并为不同的布局充气。
在您的情况下,您可以为LinearLayout
创建新的布局。并将对象插入此行的列表中。并设置ListItemType。并检查此属性并在getView()
上扩充此布局。
希望它有所帮助。
答案 1 :(得分:0)
ListView
内{p> NestedScrollView
会产生很多问题而ListView
不建议使用RecyclerView
,你必须更改相应的适配器。
答案 2 :(得分:0)
您可以使用列表视图方法在listview
中添加自己的页脚视图。
它将显示listView
。