Android TextView点击效果

在Android开发中,我们有时候需要单独的点击某一段文本,如图所示:

Android TextView点击效果_第1张图片


如上图,我们要求点击新用户注册这个TextView,为了有更好的用户体验,我们肯定要设置该TextView的点击效果。下面介绍如何实现:

1. 在res目录下,单独建立color目录,用于存放颜色点击效果的资源文件,在该目录下,新建文本点击效果的文件: selector_text_press_color.xml




    
    
    
    

2. 为需要点击的文本设置textColor属性:

 

注: 

      1.文本的点击效果,要设置TextView的textColor属性: android:textColor="@color/selector_text_press_color";

      2.设置clickable属性为true。

        

效果图:

Android TextView点击效果_第2张图片   Android TextView点击效果_第3张图片


源代码下载地址(免费):http://download.csdn.net/detail/zuiwuyuan/8402029

你可能感兴趣的:(Android TextView点击效果)