我的线性布局有两个列表视图,当我在第二个列表视图中添加项目时,它不会扩展。它会自动滚动,
我在线性布局中使用了match_parent,即使第二个列表视图(滚动而不是展开)或线性布局没有扩展。
任何人都可以帮我扩展列表视图或线性布局。
线性布局或第二个列表视图中的问题?
但第一个列表视图正确扩展。
fragment_one.xml
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:layout_weight="1"
android:descendantFocusability="blocksDescendants"
android:padding="10dip" >
<ListView
android:id="@+id/list_nation"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dip"
android:background="#B29090"
android:nestedScrollingEnabled="true">
</ListView>
<ListView
android:id="@+id/list_regional"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dip"
android:background="#4A9C67"
android:focusable="false"
android:nestedScrollingEnabled="true">
</ListView>
</LinearLayout>
答案 0 :(得分:0)
在单个屏幕中添加多个卷轴时,它始终显示问题。因为他们互相冲突。 您的问题有两种解决方案。