如何设置textview的边框

如何设置textview的边框,第1张

先写drawable里面的xml文件,里面设置shape来设置文本框的特殊效果。

[java] view plain copy

<?xml version="1.0" encoding="utf-8"?>

<shape xmlns:android="http://schemas.android.com/apk/res/android" >

<!-- 实心 -->

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

<!-- 边框 -->

<stroke

android:width="0.5dp"

android:color="@android:color/black" />

<!-- 圆角 -->

<corners android:radius="3dp" />

<!-- 边距 -->

<padding

android:bottom="10dp"

android:left="10dp"

android:right="10dp"

android:top="10dp" />

<!-- 渐变 -->

<gradient

android:angle="270"

android:endColor="#FFFF782"

android:startColor="#13C7AF" />

</shape>

基本上常用的就这几种了,要达到很好的效果,你需要重新细致的改写里面的数据。

下面是要用到这个shape的LineLayout,在里面设置了3个TextView,没设置对其的方式,默认是向做靠齐的。

[java] view plain copy

<?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="horizontal" >

<TextView

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_weight="1"

android:background="@drawable/tvbar"

android:text="hello" />

<TextView

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_weight="1"

android:background="@drawable/tvbar"

android:text="hello" />

<TextView

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_weight="1"

android:background="@drawable/tvbar"

android:text="hello" />

</LinearLayout>

可以自定义边框的,设置textview的背景就行了。有下面两种方法:

自己弄一张.9图,只有需求的三个边,然后backgroud设置为该图片;

自己写个xml的drawable,同样只弄需要的三个边,同样设置为background;

这是比较常用的两个方式吧。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/11076059.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-13
下一篇 2023-05-13

发表评论

登录后才能评论

评论列表(0条)

保存