是否可以在文本视图周围绘制边框?
您可以将可绘制的形状(矩形)设置为视图的背景。
<TextView android:text="Some text" android:background="@drawable/back"/>
和矩形drawable back.xml(放入res/drawable文件夹):
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" > <solid android:color="@android:color/white" /> <stroke android:width="1dip" android:color="#4fa5d5"/> </shape>
您可以使用@android:color/transparent纯色来获得透明背景。您还可以使用填充将文本与边框分开。有关更多信息,请参阅:http: //developer.android.com/guide/topics/resources/drawable- resource.html
@android:color/transparent