要设置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标签控件设置自定义的边框样式。