第一種方法:在drawable文件夾下新建一個文件設置背景樣式
代碼:
在drawable文件夾下面新建text_view_border.xmljava
<?xml version="1.0" encoding="UTF-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android"> <solid android:color="#80858175" /> <stroke android:width="1dip" android:color="#aea594" /> <corners android:topLeftRadius="2dp" android:topRightRadius="2dp" android:bottomRightRadius="2dp" android:bottomLeftRadius="2dp"/> </shape>
在佈局文件調用android
<TextView android:id="@+id/tv" android:layout_width="wrap_content" android:layout_height="wrap_content" android:background="@drawable/text_view_border" />
在類文件中調用:佈局
tv.setBackgroundResource(R.drawable.text_view_border);