我是靠谱客的博主 酷酷蜜蜂,最近开发中收集的这篇文章主要介绍圆形的textview,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

圆形textview
最近由于项目需求,在UI图中使用到圆形的textview,所以自己就做了下,其实挺简单的,仔细想一下,平常我们经常用到的都是矩形的,所在在此我们只需更换一下textview的背景就可以了,自己去画一个圆形的,通过shape,效果如下:
圆形textview
,具体代码如下:
shape_round_textview.xml

<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="oval"
    android:useLevel="false">

    <solid android:color="@color/white" />

    <size
        android:width="15dp"
        android:height="15dp" />

</shape>

现在咱们组合一下另一个textview,效果如下:
这里写图片描述

<RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:gravity="center">

            <RelativeLayout
                android:id="@+id/relativeLayout4"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content">

                <TextView
                    android:id="@+id/id_tv_name4"
                    android:layout_width="70dp"
                    android:layout_height="70dp"
                    android:background="@drawable/shape_round_textview"
                    android:gravity="center"
                    android:text="中小客" />

                <TextView
                    android:id="@+id/id_tv_num4"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_below="@+id/id_tv_name4"
                    android:layout_centerHorizontal="true"
                    android:layout_marginTop="4dp"
                    android:background="@drawable/shape_round_text"
                    android:text="1876"
                    android:textColor="@color/white" />
            </RelativeLayout>

最后

以上就是酷酷蜜蜂为你收集整理的圆形的textview的全部内容,希望文章能够帮你解决圆形的textview所遇到的程序开发问题。

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

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

评论列表共有 0 条评论

立即
投稿
返回
顶部