0
我想創建一個包含六個圖像庫小部件的屏幕。六個不同的小部件將被垂直堆疊/排列。應該可以垂直滾動。垂直堆疊六個圖庫小部件的視圖
實施是像在當前BBC Android應用市場(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>
你可以發佈你目前的嘗試嗎?特別是XML佈局? – 2012-02-14 18:45:14