android 按钮顶级效果_Android button 效果设计

Button 有按下效果

[功能]

让Button 有按下效果 更有视觉效果

[代码]1. 先准备2张*.png 一张供默认使用 另一张供按下使用 本例为:

Java代码

play.png

play_down.png

play.pngplay_down.png2. 根据各种状态 定制化所显示的 *.png 命名为: myselection.xml

Java代码<?xml version="1.0" encoding="utf-8"?>

android:state_pressed="false"android:drawable="@drawable/play" />

android:state_pressed="true"android:drawable="@drawable/play_down" />

android:drawable="@drawable/play" />

3. 在 main.xml 布局中 添加Button 元件 并 设置 使用 myselection.xml

Java代码<?xml version="1.0" encoding="utf-8"?>

>

android:layout_width="fill_parent"android:layout_height="wrap_content"android:text="Button Style!"

/>

android:id="@+id/playorpause"android:layout_width="wrap_content"android:layout_height="wrap_content"android:src="@xml/myselection"android:background="#00000000" />

4. 大家可以自己看看效果 因为不好截图

其实 除了上面的方法 还有一个方法 为:1. 在 maun.xml 中添加 ImageButton 且不设置使用的*.png

Java代码<?xml version="1.0" encoding="utf-8"?>

>

android:id="@+id/button"android:layout_width="wrap_content"android:layout_height="wrap_content"

/>

2. 在该ImageButton上设置监听器 并根据其状态使用对应的资源 但是必须要设置默认资源

Java代码

ImageButton btn=(ImageButton) findViewById(R.id.button);//to set its default *.png

btn.setBackgroundResource(R.drawable.play);

btn.setOnTouchListener(newImageButton.OnTouchListener(){

@Overridepublicboolean onTouch(View arg0, MotionEvent arg1) {//TODO Auto-generated method stub

if(arg1.getAction() ==MotionEvent.ACTION_DOWN){

arg0.setBackgroundResource(R.drawable.play_down);

}else if(arg1.getAction() ==MotionEvent.ACTION_UP){

arg0.setBackgroundResource(R.drawable.play);

}return false;

}

});

ImageButton btn= (ImageButton) findViewById(R.id.button); //to set its default *.png btn.setBackgroundResource(R.drawable.play); btn.setOnTouchListener(new ImageButton.OnTouchListener(){ @Override public boolean onTouch(View arg0, MotionEvent arg1) {//TODO Auto-generated method stub if(arg1.getAction() == MotionEvent.ACTION_DOWN){ arg0.setBackgroundResource(R.drawable.play_down); } else if(arg1.getAction() == MotionEvent.ACTION_UP){ arg0.setBackgroundResource(R.drawable.play); } return false; } });

具体哪个方法更好 应该根据自己的场合:1. 只有一个Button 推荐使用第一个方法2. 有几个Button 推荐使用第二个 统一定义 然后根据指定的id 来使用目标*.png

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值