要设置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标签控件设置自定义的边框样式。
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: android arraymap影响性能吗