亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何在Android Studio中為控件添加邊框

發布時間:2024-10-12 09:06:42 來源:億速云 閱讀:119 作者:小樊 欄目:移動開發

在Android Studio中,為控件(如按鈕、TextView等)添加邊框有多種方法

方法1:使用XML繪制邊框

  1. 在項目的 res/drawable 文件夾下創建一個新的XML文件,例如 button_border.xml。如果 drawable 文件夾不存在,請創建一個。

  2. 在新創建的XML文件中,使用以下代碼定義一個帶有邊框的矩形:

<?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" <!-- 邊框寬度 -->
        android:color="#000000" /> <!-- 邊框顏色 -->
</shape>
  1. 在布局文件中找到需要添加邊框的控件,并將其 android:background 屬性設置為新創建的XML文件:
<Button
    android:id="@+id/my_button"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="點擊我"
    android:background="@drawable/button_border" />

方法2:使用Java或Kotlin代碼動態設置邊框

  1. 在布局文件中創建一個控件,例如一個Button。
<Button
    android:id="@+id/my_button"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="點擊我" />
  1. 在Activity或Fragment的Java或Kotlin文件中,通過代碼創建一個 ShapeDrawable 對象并設置邊框屬性,然后將其設置為控件的 background

Java示例:

Button myButton = findViewById(R.id.my_button);
ShapeDrawable shapeDrawable = new ShapeDrawable(new RectShape());
shapeDrawable.getPaint().setColor(Color.BLACK); // 邊框顏色
shapeDrawable.getPaint().setStrokeWidth(2); // 邊框寬度
shapeDrawable.getPaint().setStyle(Paint.Style.STROKE); // 設置為邊框樣式
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 // 邊框寬度
shapeDrawable.paint.style = Paint.Style.STROKE // 設置為邊框樣式
myButton.background = shapeDrawable

以上就是在Android Studio中為控件添加邊框的兩種方法。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

铜鼓县| 金沙县| 布拖县| 满城县| 大余县| 苏州市| 玉屏| 县级市| 阳西县| 屯昌县| 新余市| 鄂州市| 竹山县| 蛟河市| 洛浦县| 登封市| 绥德县| 万荣县| 漯河市| 石渠县| 南充市| 图片| 正阳县| 江达县| 峨眉山市| 鸡东县| 兴城市| 堆龙德庆县| 徐州市| 怀来县| 喀什市| 余庆县| 肥城市| 皋兰县| 尼玛县| 合肥市| 宜宾市| 惠安县| 拉孜县| 梨树县| 马山县|