我是靠谱客的博主 冷酷心情,最近开发中收集的这篇文章主要介绍Android之实现TextView控件圆角以及Button点击、焦点效果,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

默认情况下,TextView是不带边框的,如果想要为TextView添加边框,只能考虑为TextView设置一个背景Drawable。在Drawable文件夹下新建一个layout类型的xml文件,然后将Root tag改成shape,这样xml文件也可以当Drawable使用。
bg_border.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <solid android:color="#0000"></solid>
    <stroke android:width="4px" android:color="#f00"></stroke>
    <corners android:topLeftRadius="20dp"
        android:topRightRadius="20dp"
        android:bottomLeftRadius="20dp"
        android:bottomRightRadius="20dp"></corners>
</shape>
最后再把TextView的android:background属性设置成自定义的xml样式文件就可以了:
android:background="@drawable/bg_border"
另外还可以设置渐变色、填充色等,如下:
gradient   -- 颜色渐变
        startcolor  起点颜色
        endcolor  终点颜色
        android:angle 角度  0是从左到右,90是从下到上
solid          --  填充
stroke        --  描边 
corners      --  圆角 

padding     -- 内容离边界的距离

同理,设置Button在不同状态下的背景,也是使用在Drawable文件夹下添加xml文件,不过资源类型改为selector。

selector.xml文件:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
 <item android:state_pressed="true" android:drawable="@drawable/temp1" />
 <item android:state_pressed="false" android:state_focused="false"
  android:drawable="@drawable/temp2" />
 <item android:state_focused="true" android:drawable="@drawable/temp3" />
 <item android:state_focused="false" android:drawable="@drawable/temp4" />
</selector>

然后在button中设置如下:

<Button
 android:background="@drawable/selector"/>

最后

以上就是冷酷心情为你收集整理的Android之实现TextView控件圆角以及Button点击、焦点效果的全部内容,希望文章能够帮你解决Android之实现TextView控件圆角以及Button点击、焦点效果所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(43)

评论列表共有 0 条评论

立即
投稿
返回
顶部