首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 平面设计 > 图形图像 >

点击ImageButton时有“按上”的效果的实现

2012-08-14 
点击ImageButton时有“按下”的效果的实现1为ImageButton添加图片后,有边框,看起来像是图片贴在了一个按扭上

点击ImageButton时有“按下”的效果的实现

1为ImageButton添加图片后,有边框,看起来像是图片贴在了一个按扭上面,要多丑有多丑。

解决办法:ImageButton背景设为透明:#0000

2.使用Button时为了让用户有“按下”的效果,有两种实现方式:

A.

<?xml version="1.0" encoding="UTF-8"?>  <selector xmlns:android="http://schemas.android.com/apk/res/android">      <item android:state_pressed="false"  android:drawable="@drawable/button_add" />      <item android:state_pressed="true"   android:drawable="@drawable/button_add_pressed" />      <item android:state_focused="true"    android:drawable="@drawable/button_add_pressed" />      <item android:drawable="@drawable/button_add" />  </selector>  

热点排行