作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
是否可以为 TextView 绘制左边框和底边框?
最佳答案
您可以将 TextView 放在另一个具有类似于下面的 XML 形状的布局中:
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
<item>
<shape android:shape="rectangle">
<solid android:color="@color/detailtable_border" />
</shape>
</item>
<item android:left="1.5dp" android:right="1.5dp" android:bottom="2dp">
<shape android:shape="rectangle">
<solid android:color="@color/detailrow_bg_normal" />
</shape>
</item>
</layer-list>
关于android - 如何在 TextView 上放置底部和左侧边框?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10972789/
我是一名优秀的程序员,十分优秀!