本文主要是介绍Androidstudio实现登录按钮按下变色,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
在activity_main.xml中,写如下代码:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"android:layout_width="match_parent"android:layout_height="match_parent"android:orientation="vertical"><Buttonandroid:text="@string/tv_one"android:backgroundTint="@color/btn_color_selector"android:layout_width="256dp"android:layout_height="88dp"/>
</LinearLayout>
在strings.xml,colors.xml和themes.xml三个文件分别添加如下代码(代码如图所示)
最后效果如下面视频:
按键变色
这篇关于Androidstudio实现登录按钮按下变色的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!