Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發 >> 關於android開發 >> 完全用xml實現imageview點擊換一張圖片,xmlimageview

完全用xml實現imageview點擊換一張圖片,xmlimageview

編輯:關於android開發

完全用xml實現imageview點擊換一張圖片,xmlimageview


 

<ImageView
                    android:layout_width="60dp"
                    android:layout_height="60dp"
                    android:background="@drawable/button_share_1_pressed" />

button_share_1_pressed.xml

<?xml version="1.0" encoding="UTF-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">

<item android:drawable="@drawable/login_share_2_0" android:state_pressed="false"></item>
<item android:drawable="@drawable/login_share_2_1" android:state_pressed="true"></item>

</selector>

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