程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> android-如何在多行中顯示圖像?

android-如何在多行中顯示圖像?

編輯:編程綜合問答
如何在多行中顯示圖像?

我創建了一個 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

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved