Android 解決 RecyclerView 嵌套 ScrollView 數據顯示不全的問題

1.佈局文件

 


            <RelativeLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:descendantFocusability="blocksDescendants">

                <android.support.v7.widget.RecyclerView
                    android:id="@+id/recv_photo"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:paddingLeft="@dimen/dp_7"
                    android:paddingRight="@dimen/dp_7" />
            </RelativeLayout>

 

 

2.java文件

 

        recvPhoto.setHasFixedSize(true);
        recvPhoto.setNestedScrollingEnabled(false);

 

問題解決~

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章