要設置Android標簽控件的邊框,可以通過以下步驟:
<TextView
android:id="@+id/myTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
android:background="@drawable/border"
android:padding="8dp"/>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="#FFFFFF" />
<stroke
android:width="2dp"
android:color="#000000" />
<corners android:radius="8dp" />
</shape>
在上面的示例中,我們定義了一個白色填充、黑色邊框、8dp圓角半徑的邊框樣式。
TextView myTextView = findViewById(R.id.myTextView);
myTextView.setBackgroundResource(R.drawable.border);
通過以上步驟,就可以為Android標簽控件設置自定義的邊框樣式。