2014-08-30 91 views
-2

我必須在android頁面中添加大約15個圖像。但在eclipse中現有的圖形佈局中,我只能添加很多圖片來填充頁面,比如其中的四個。如何添加這些圖像的其餘部分,以便它們在滾動時出現在這些圖像下方。換句話說,如何擴展頁面?製作頁面可滾動

+2

使用ScrollView。 – 2014-08-30 06:37:59

+0

目前你的XML佈局是什麼?你是否在「GridView」中存儲圖像?如果沒有,你可以做到這一點有可滾動性。你也可以將它結構化,這樣你就可以將你的圖像放在水平的'LinearLayouts'中,它們本身位於'ScrollView'內部的一個主垂直'LinearLayout'中。無論哪種方式會給你可滾動性。嘗試做下一次谷歌搜索... – ujvl 2014-08-30 06:38:09

+0

好吧我不知道回合滾動視圖... googlin沒有幫助...謝謝 – 2014-08-30 06:41:28

回答

2

嘗試使用滾動視圖

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    > 

     <!-- everything you already have --> 

</ScrollView> 
1

使用滾動型正如你問只有15幅圖像,如果圖像是不是使用清單dishpaly圖像

image_scroll_layout.xml

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" 
    android:id="@+id/scrollView1" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" > 

    <LinearLayout 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:orientation="vertical" > 

     <ImageView 
      android:id="@+id/imageView1" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:src="your_image" /> 

      ........up to 15 

     <ImageView 
      android:id="@+id/imageView15" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:src="your_image" /> 
    </LinearLayout> 
</ScrollView> 
daynamic