我想创建一个包含六个图片库小部件的屏幕。六个不同的小部件将垂直堆叠/排列。应该可以垂直滚动。
实施就像当前市场上BBC安卓应用程序中的那个(https://market.android.com/details?id=bbc.mobile.news.uk)
我尝试将六个图库小部件放在滚动视图中。但垂直滚动不顺畅。我认为我的实施不正确。我应该如何继续创建BBC应用UI?
<LinearLayout android:orientation="vertical"
android:layout_width="fill_parent" android:layout_height="fill_parent">
<Gallery android:layout_width="fill_parent"
android:layout_height="wrap_content" android:id="@+id/gallery1">
</Gallery>
<Gallery android:layout_width="fill_parent"
android:layout_height="wrap_content" android:id="@+id/gallery2">
</Gallery>
<Gallery android:layout_width="fill_parent"
android:layout_height="wrap_content" android:id="@+id/gallery3">
</Gallery>
<Gallery android:layout_width="fill_parent"
android:layout_height="wrap_content" android:id="@+id/gallery4">
</Gallery>
<Gallery android:layout_width="fill_parent"
android:layout_height="wrap_content" android:id="@+id/gallery5">
</Gallery>
<Gallery android:layout_width="fill_parent"
android:layout_height="wrap_content" android:id="@+id/gallery6">
</Gallery>
</LinearLayout>
</ScrollView>
答案 0 :(得分:0)
启用硬件加速有助于滚动滚动。