我創建了一個 gallery 有多行(圖像來自網絡所以數量是動態的),我想使用 gallery,但是它們顯示在中間,所有的都在同一行。我不知道哪個屬性控制的這個函數。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:orientation="vertical">
<Gallery xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/Gallery" android:layout_width="fill_parent"
android:layout_height="fill_parent" />
</LinearLayout>
你可能需要使用 GridView 代替。
請參考: http://developer.android.com/resources/tutorials/views/hello-gridview.html