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

Android開發入門(十四)顯示圖像 14.2 ImageSwitcher

編輯:Android開發教程

前面的一節,介紹了如何組合使用Gallery和ImageView。但是,有的時候當你在gallery中點擊一個圖片 ,你可能不希望一個圖片“突然地”在imageview中顯示出來。例如,你可能希望給某個圖片設置一些切換動 畫。此時,就需要使用ImageSwitcher和Gallery一起使用。下面展示如何使用ImageSwitcher。

1. 創 建一個工程,ImageSwitcher。

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" />    
       
    <ImageSwitcher 
        android:id="@+id/switcher1" 
        android:layout_width="fill_parent" 
        android:layout_height="fill_parent" 
        android:layout_alignParentLeft="true" 
        android:layout_alignParentRight="true" 
        android:layout_alignParentBottom="true" />    
       
</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