ฉันจะเพิ่มเส้นขอบให้กับปุ่มได้อย่างไร เป็นไปได้ไหมที่จะทำได้โดยไม่ต้องใช้รูปภาพ?
ฉันจะเพิ่มเส้นขอบให้กับปุ่มได้อย่างไร เป็นไปได้ไหมที่จะทำได้โดยไม่ต้องใช้รูปภาพ?
คำตอบ:
ขั้นตอนที่ 1: สร้างไฟล์ชื่อ: my_button_bg.xml
ขั้นตอนที่ 2: วางไฟล์นี้ใน res / drawables.xml
ขั้นตอนที่ 3: ใส่รหัสด้านล่าง
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient android:startColor="#FFFFFF"
android:endColor="#00FF00"
android:angle="270" />
<corners android:radius="3dp" />
<stroke android:width="5px" android:color="#000000" />
</shape>
ขั้นตอนที่ 4: ใช้รหัส "android: background =" @ drawable / my_button_bg "เมื่อจำเป็นเช่นด้านล่าง:
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Your Text"
android:background="@drawable/my_button_bg"
/>
Android Official Solution
ตั้งแต่ Android สนับสนุนการออกแบบ v28MaterialButton
ได้รับการแนะนำมันง่ายที่จะสร้างปุ่มเป้ใช้ คลาสนี้มีการอัพเดทสไตล์วัสดุสำหรับปุ่มในตัวสร้าง การใช้app:strokeColor
และapp:strokeWidth
คุณสามารถสร้างเส้นขอบที่กำหนดเองได้ดังต่อไปนี้:
androidx
:build.gradle
dependencies {
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'com.google.android.material:material:1.0.0'
}
•ปุ่มเป้น:
<com.google.android.material.button.MaterialButton
style="@style/Widget.AppCompat.Button.Colored"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="MATERIAL BUTTON"
android:textSize="15sp"
app:strokeColor="@color/green"
app:strokeWidth="2dp" />
•ปุ่มเป้นที่ไม่สำเร็จ:
<com.google.android.material.button.MaterialButton
style="@style/Widget.AppCompat.Button.Borderless"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="UNFILLED MATERIAL BUTTON"
android:textColor="@color/green"
android:textSize="15sp"
app:backgroundTint="@android:color/transparent"
app:cornerRadius="8dp"
app:rippleColor="#33AAAAAA"
app:strokeColor="@color/green"
app:strokeWidth="2dp" />
appcompat
:build.gradle
dependencies {
implementation 'com.android.support:design:28.0.0'
}
style.xml
ตรวจสอบให้แน่ใจสืบทอดธีมแอพลิเคชันของคุณจากการแทนTheme.MaterialComponents
Theme.AppCompat
<style name="AppTheme" parent="Theme.MaterialComponents.Light.DarkActionBar">
<!-- Customize your theme here. -->
</style>
•ปุ่มเป้น:
<android.support.design.button.MaterialButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="MATERIAL BUTTON"
android:textSize="15sp"
app:strokeColor="@color/green"
app:strokeWidth="2dp" />
•ปุ่มเป้นที่ไม่สำเร็จ:
<android.support.design.button.MaterialButton
style="@style/Widget.AppCompat.Button.Borderless"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="UNFILLED MATERIAL BUTTON"
android:textColor="@color/green"
android:textSize="15sp"
app:backgroundTint="@android:color/transparent"
app:cornerRadius="8dp"
app:rippleColor="#33AAAAAA"
app:strokeColor="@color/green"
app:strokeWidth="2dp" />
style="@style/Widget.AppCompat.Button.Borderless"
หรือไม่
สร้างbutton_border.xml
ไฟล์ในโฟลเดอร์ drawable ของคุณ
ความละเอียด / drawable / button_border.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
<solid android:color="#FFDA8200" />
<stroke
android:width="3dp"
android:color="#FFFF4917" />
</shape>
และเพิ่มปุ่มรูปแบบกิจกรรม XML android:background="@drawable/button_border"
ของคุณและพื้นหลังชุด
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/button_border"
android:text="Button Border" />
สร้าง drawable / button_green.xml:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
android:startColor="#003000"
android:centerColor="#006000"
android:endColor="#003000"
android:angle="270" />
<corners android:radius="5dp" />
<stroke android:width="2px" android:color="#007000" />
</shape>
และชี้ให้เห็นว่า@drawable/button_green
:
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:background="@drawable/button_green"
android:text="Button" />
โปรดดูที่นี่เกี่ยวกับการสร้างรูปร่างที่วาดได้ http://developer.android.com/guide/topics/resources/drawable-resource.html#Shape
เมื่อคุณทำสิ่งนี้แล้วใน XML สำหรับชุดปุ่มของคุณ android:background="@drawable/your_button_border"
หากปุ่มของคุณไม่ต้องการพื้นหลังแบบโปร่งใสคุณสามารถสร้างภาพลวงตาของเส้นขอบโดยใช้ Frame Layout เพียงปรับแอ็ตทริบิวต์ "padding" ของ FrameLayout เพื่อเปลี่ยนความหนาของเส้นขอบ
<FrameLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="1sp"
android:background="#000000">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Your text goes here"
android:background="@color/white"
android:textColor="@color/black"
android:padding="10sp"
/>
</FrameLayout>
ฉันไม่แน่ใจว่าไฟล์รูปร่าง xml มีสีเส้นขอบที่แก้ไขได้แบบไดนามิกหรือไม่ แต่ฉันรู้ว่าด้วยวิธีนี้คุณสามารถเปลี่ยนสีของเส้นขอบแบบไดนามิกโดยการตั้งค่าพื้นหลัง FrameLayout
ในรูปแบบ XML ของคุณ:
<Button
android:id="@+id/cancelskill"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginLeft="25dp"
android:layout_weight="1"
android:background="@drawable/button_border"
android:padding="10dp"
android:text="Cancel"
android:textAllCaps="false"
android:textColor="#ffffff"
android:textSize="20dp" />
ในโฟลเดอร์ drawable สร้างไฟล์สำหรับลักษณะเส้นขอบของปุ่ม:
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
<stroke
android:width="1dp"
android:color="#f43f10" />
</shape>
และในกิจกรรมของคุณ:
GradientDrawable gd1 = new GradientDrawable();
gd1.setColor(0xFFF43F10); // Changes this drawbale to use a single color instead of a gradient
gd1.setCornerRadius(5);
gd1.setStroke(1, 0xFFF43F10);
cancelskill.setBackgroundDrawable(gd1);
cancelskill.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
cancelskill.setBackgroundColor(Color.parseColor("#ffffff"));
cancelskill.setTextColor(Color.parseColor("#f43f10"));
GradientDrawable gd = new GradientDrawable();
gd.setColor(0xFFFFFFFF); // Changes this drawbale to use a single color instead of a gradient
gd.setCornerRadius(5);
gd.setStroke(1, 0xFFF43F10);
cancelskill.setBackgroundDrawable(gd);
finish();
}
});
ฉันรู้ว่าประมาณปลายปี แต่คุณยังสามารถสร้างภาพเส้นทาง 9 มีเครื่องมือที่มาพร้อมกับ Android SDK ซึ่งช่วยในการสร้างภาพดังกล่าวดูที่ลิงค์นี้: http://developer.android.com/tools/help/draw9patch .html
PS: ภาพสามารถปรับขนาดได้ไม่ จำกัด เช่นกัน