android 仿iPhone提示 标签 背景 圆形

来源:互联网 发布:mac 最大化 快捷键 编辑:程序博客网 时间:2024/05/01 13:34

如果我们在做圆形提示的时候 看下效果

我们在TextVIew里面设置background的值:

先定义圆形文件:filled_circle.xml

<?xml version="1.0" encoding="utf-8"?><shape xmlns:android="http://schemas.android.com/apk/res/android"    android:shape="oval" >    <solid android:color="@color/orange" /></shape>

然后再添加进去TextView


<TextView        android:id="@+id/text"        android:layout_width="8dp"        android:layout_height="8dp"        android:background="@drawable/filled_circle"        android:gravity="center"        android:padding="0dp"        android:textColor="@color/C_white"        android:textSize="12dp"        android:visibility="invisible" />

ok 效果出来,简单方便快捷



原创粉丝点击