在我的布局中,我为内部包含 4 个列表视图的线性布局之一设置了 centerVertical。它工作正常。最初每个列表视图作为一个项目。单击任何列表视图中的项目时,我在该列表视图中附加了一个新的数组列表(它就像 1 级菜单和 2 级菜单)。代码工作正常,但是当我使用 2 级数组列表更新任何列表视图时,所有列表视图的 center_Vertical 属性都会丢失,它们会出现在屏幕顶部。
这是我的布局文件:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:id="@+id/container"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:splitMotionEvents="true">
<ListView
android:id="@+id/list_left"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbars="none"
android:divider="@null"
android:dividerHeight="0dp"
android:layout_weight="1"/>
<ListView
android:id="@+id/list_center1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbars="none"
android:divider="@null"
android:dividerHeight="0dp"
android:layout_weight="1"/>
<ListView
android:id="@+id/list_center2"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbars="none"
android:divider="@null"
android:dividerHeight="0dp"
android:layout_weight="1"/>
<ListView
android:id="@+id/list_right"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbars="none"
android:divider="@null"
android:dividerHeight="0dp"
android:layout_weight="1"/>
</LinearLayout>
<Button
android:id="@+id/button1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:visibility="gone"
android:text="Clear Cache"/>
</RelativeLayout>
如果有人可以帮助我,我会非常感谢。