您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
在Android中,为Button添加触摸反馈和视觉反馈可以提高用户体验
例如,创建一个名为button_touch_feedback.xml
的文件,放在res/drawable
目录下:
<?xml version="1.0" encoding="utf-8"?><selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true">
<shape>
<solid android:color="#3ddc84"/>
<corners android:radius="4dp"/>
</shape>
</item>
<item>
<shape>
<solid android:color="#2196F3"/>
<corners android:radius="4dp"/>
</shape>
</item>
</selector>
然后,在布局文件中将此背景应用到Button上:
android:id="@+id/my_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Click me!"
android:background="@drawable/button_touch_feedback"/>
android:stateListAnimator
属性为按钮添加动画效果。例如,创建一个名为button_visual_feedback.xml
的文件,放在res/animator
目录下:
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
<objectAnimator
android:propertyName="scaleX"
android:duration="100"
android:valueTo="0.9"
android:valueType="floatType"/>
<objectAnimator
android:propertyName="scaleY"
android:duration="100"
android:valueTo="0.9"
android:valueType="floatType"/>
</set>
然后,在布局文件中将此动画应用到Button上:
android:id="@+id/my_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Click me!"
android:stateListAnimator="@animator/button_visual_feedback"/>
这样,当用户点击按钮时,按钮会缩小一点,表示正在处理用户的操作。你可以根据需要自定义触摸反馈和视觉反馈的效果。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。