您好,登錄后才能下訂單哦!
在Android Studio中,為控件(如按鈕、TextView等)添加邊框有多種方法
方法1:使用XML繪制邊框
在項(xiàng)目的 res/drawable
文件夾下創(chuàng)建一個(gè)新的XML文件,例如 button_border.xml
。如果 drawable
文件夾不存在,請(qǐng)創(chuàng)建一個(gè)。
在新創(chuàng)建的XML文件中,使用以下代碼定義一個(gè)帶有邊框的矩形:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="#FFFFFF" /> <!-- 背景顏色 -->
<corners android:radius="5dp" /> <!-- 圓角半徑 -->
<stroke
android:width="2dp" <!-- 邊框?qū)挾?/span> -->
android:color="#000000" /> <!-- 邊框顏色 -->
</shape>
android:background
屬性設(shè)置為新創(chuàng)建的XML文件:<Button
android:id="@+id/my_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="點(diǎn)擊我"
android:background="@drawable/button_border" />
方法2:使用Java或Kotlin代碼動(dòng)態(tài)設(shè)置邊框
<Button
android:id="@+id/my_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="點(diǎn)擊我" />
ShapeDrawable
對(duì)象并設(shè)置邊框?qū)傩裕缓髮⑵湓O(shè)置為控件的 background
:Java示例:
Button myButton = findViewById(R.id.my_button);
ShapeDrawable shapeDrawable = new ShapeDrawable(new RectShape());
shapeDrawable.getPaint().setColor(Color.BLACK); // 邊框顏色
shapeDrawable.getPaint().setStrokeWidth(2); // 邊框?qū)挾?/span>
shapeDrawable.getPaint().setStyle(Paint.Style.STROKE); // 設(shè)置為邊框樣式
myButton.setBackground(shapeDrawable);
Kotlin示例:
val myButton: Button = findViewById(R.id.my_button)
val shapeDrawable = ShapeDrawable(RectShape())
shapeDrawable.paint.color = Color.BLACK // 邊框顏色
shapeDrawable.paint.strokeWidth = 2f // 邊框?qū)挾?/span>
shapeDrawable.paint.style = Paint.Style.STROKE // 設(shè)置為邊框樣式
myButton.background = shapeDrawable
以上就是在Android Studio中為控件添加邊框的兩種方法。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。