Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android系統教程 >> Android開發教程 >> Android開發入門(十四)顯示圖像 14.1 Gallery和ImageView

Android開發入門(十四)顯示圖像 14.1 Gallery和ImageView

編輯:Android開發教程

Gallery可以顯示一系列的圖片,並且可以橫向滑動。下面展示如何使用Gallery去顯示一系列的圖片。

1. 創建一個工程,Gallery。

2. main.xml中的代碼。

<?xml version="1.0" encoding="utf-8"?>    
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"     
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:orientation="vertical" >    
       
    <TextView 
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content" 
        android:text="Images of San Francisco" />        
           
    <Gallery 
        android:id="@+id/gallery1" 
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content" />    
       
    <ImageView 
        android:id="@+id/image1" 
        android:layout_width="320dp" 
        android:layout_height="250dp" 
        android:scaleType="fitXY" />    
       
</LinearLayout>

3. 在res/values文件夾下面新建一個文件,attrs.xml。

4. attrs.xml中的代碼。

<?xml version="1.0" encoding="utf-8"?>    
<resources>    
    <declare-styleable name="Gallery1">    
        <attr name="android:galleryItemBackground" />    
    </declare-styleable>    
</resources>

5. 准備一些圖片。將這些圖片放在res/drawable-mdpi下面。

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved