Android 解决 RecyclerView 嵌套 ScrollView 数据显示不全的问题

1.布局文件

 


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

                                    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" />
           

 

 

2.java文件

 

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

 

问题解决~

 

你可能感兴趣的:(Android)