簡體   English   中英

Listview無法在滾動視圖中正確顯示最后一項

[英]Listview not show last item properly in scroll view

我正在嘗試在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);

通用功能代碼:

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);

    }

不建議同時使用“ ListView”和“ ScrollView”對象。

您應該在同一適配器中使用不同的視圖。 例如;

 @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);
               ...
        }
    }

您應該將“ ListItemType”屬性添加到列表對象類型。 並在getView()方法中檢查此屬性並getView()不同的布局。 在您的情況下,您可以為LinearLayout創建新的布局。 並在該行的列表中插入一個對象。 並設置ListItemType。 並檢查此屬性並在getView()上膨脹此布局。

希望能幫助到你。

NestedScrollView內的ListView會產生很多問題, 建議您使用ListView代替RecyclerView ,您必須相應地更改Adapter。

您可以使用列表視圖方法在listview視圖中添加自己的頁腳視圖。

它將顯示listView所有元素。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM