我的应用程序的主菜单显示 10 个选项,按 5 行排列。我使用了一个涉及两个列表视图的非常简单的布局,如下所示:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<ListView
android:id="@+id/list1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:fadeScrollbars="true"
android:divider="#00000000" />
<ListView
android:id="@+id/list2"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:fadeScrollbars="true"
android:divider="#00000000" />
</LinearLayout>
我为手机使用了一种相当简单的行布局,而为平板电脑使用了一种更高级的行布局,这一切都非常好。但是当手机处于纵向模式时,两个列表视图开始滚动。这很好,除了它们独立滚动。如果它们同步滚动会更好。有什么想法可以实现这一目标吗?这不是一个交易破坏者,所以我正在寻找一个简单的解决方案,但我想不出一个。