在文本视图中为边框添加一些填充
Posted
技术标签:
【中文标题】在文本视图中为边框添加一些填充【英文标题】:Adding some padding to border in a textview 【发布时间】:2020-06-25 16:42:08 【问题描述】:我正在尝试为我的文本视图添加边框。我也这样做了:
<TextView
android:layout_below="@id/overviewHeader"
android:id="@+id/overviewTextView"
android:layout_
android:ellipsize="end"
android:textColor="#ffffff"
android:background="@layout/rounded_border_textview"
android:layout_
android:layout_marginBottom="8dp"
android:layout_marginLeft="8dp"
tools:text="Twenty-two years ..."/>
这是我搭建的背景:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_
android:layout_>
<item android:bottom="5dp"
android:left="15dp"
android:right="5dp"
android:top="5dp">
<shape android:shape="rectangle">
<stroke
android:
android:color="#ffffff"
/>
</shape>
</item>
<padding
android:left="10dp"
android:right="10dp"
android:top="10dp"
android:bottom="10dp" />
</selector>
问题是,即使我设置了填充,文本也太靠近边框了:
我该如何解决?
【问题讨论】:
向 textview 添加内边距。 您可以为您的文本视图设置填充,而不是为背景可绘制对象提供填充 我会在 Textview 中添加一个父布局(例如约束布局),然后将背景添加到该布局中,这样您就可以将其从 TextView 中删除并在父级中添加适当的边距布局到 Text 视图,因此文本不会太靠近边框。 谢谢,我通过向 textview 添加填充解决了。 【参考方案1】:像这样向你的文本视图添加一个填充值:
<TextView
...
android:padding="10dp"/>
【讨论】:
以上是关于在文本视图中为边框添加一些填充的主要内容,如果未能解决你的问题,请参考以下文章