我的应用程序的主菜单显示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>
我为手机使用了相当简单的行布局,而对于平板电脑则使用了一个非常简单的行布局,这一切都非常好用。但是当手机处于纵向模式时,两个列表视图开始滚动。这很好,除了它们独立滚动。如果它们同步滚动会更好。我有什么想法可以达到这个目的吗?这不是一个交易破坏者,所以我正在寻找一个简单的解决方案,但我想不出一个。
答案 0 :(得分:0)
解决方案非常简单 - 我只使用gridview而不是两个listview。完成工作。