android 按钮选中效果 博客分类: android
程序员文章站
2024-03-14 22:22:29
...
实现方式有两种:
一、代码中实现:
imgbtnSetup.setOnTouchListener( new View.OnTouchListener(){ @Override public boolean onTouch(View v, MotionEvent event) { if(event.getAction() == MotionEvent.ACTION_DOWN){ //更改为按下时的背景图片 v.setBackgroundResource(R.drawable.btn_setup_hover); }else if(event.getAction() == MotionEvent.ACTION_UP){ //改为抬起时的图片 v.setBackgroundResource(R.drawable.btn_setup); } return false; } });
二、xml布局实现:
<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>
这个文件放在drawable目录下面。命名为button_add_x.xml
使用的时候
<ImageButton android:layout_width="fill_parent" android:layout_height="wrap_content" android:background="@drawable/button_add_x" />
推荐阅读
-
android打开文件 博客分类: android android打开文件
-
Android 判断两个图片相等 博客分类: android android
-
Listener 博客分类: Android UI 界面 Android事件ListenerOnLongClickListenerOnTouchListener
-
android网络状态检查 博客分类: android android网络检查
-
tab布局 博客分类: Android viewpager导航栏androidfragment
-
Android 判断两个图片相等 博客分类: android android
-
android layout_weight属性学习巩固 博客分类: Android UI 界面 面试layout-weight
-
android 按钮选中效果 博客分类: android
-
android 按钮选中效果 博客分类: android
-
安卓开发gridview根据屏幕宽度行列相同的单元格集合 博客分类: Android UI 界面 gridview 九宫格 动态设定