Android - 단추 테두리
단추에 테두리를 추가하려면 어떻게 해야 합니까?이미지를 사용하지 않고 이 작업을 수행할 수 있습니까?
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단계: 아래와 같이 필요한 경우 코드 "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 Design Support v28이 도입되었기 때문에 을 사용하여 테두리가 있는 버튼을 쉽게 만들 수 있습니다.이 클래스는 생성자의 단추에 대한 업데이트된 재료 스타일을 제공합니다.사용.app:strokeColor
그리고.app:strokeWidth
다음과 같이 사용자 정의 테두리를 생성할 수 있습니다.
를 할 때androidx
:
빌드.그래들
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
:
빌드.그래들
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" />
시각적 결과
성을 합니다.button_border.xml
파일을 그릴 수 있는 폴더에 저장합니다.
res/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>
하고 배경을 합니다.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" />
create 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"
단추에 투명 배경이 필요하지 않은 경우 프레임 레이아웃을 사용하여 테두리 모양을 만들 수 있습니다.테두리 두께를 변경하려면 프레임 레이아웃의 "패딩" 특성을 조정하기만 하면 됩니다.
<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 파일에 동적으로 편집 가능한 테두리 색상이 있는지 잘 모르겠습니다.그러나 이 솔루션을 사용하면 프레임 레이아웃 배경을 설정하여 테두리 색을 동적으로 변경할 수 있습니다.
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" />
그리기 가능한 폴더에서 단추의 테두리 스타일에 대한 파일을 만듭니다.
<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();
}
});
1년 정도 늦었지만 9개 경로 이미지를 만들 수도 있습니다. 이러한 이미지를 만드는 데 도움이 되는 도구가 안드로이드 SDK와 함께 제공됩니다. 이 링크를 참조하십시오. http://developer.android.com/tools/help/draw9patch.html
PS: 이미지를 무한 확장할 수도 있습니다.
<com.google.android.material.button.MaterialButton
android:id="@+id/addBtn"
style="@style/Widget.MaterialComponents.Button.OutlinedButton"
android:layout_width="150dp"
android:layout_height="80dp"
android:gravity="center"
android:backgroundTint="@android:color/transparent"
android:textColor="@color/blue"
app:cornerRadius="8dp"
app:strokeColor="@color/blue"
app:strokeWidth="2dp"/>
재료 구성 요소 라이브러리에서 를 사용하면 됩니다.Widget.MaterialComponents.Button.OutlinedButton
스타일.
및 속성을 사용하여 색상과 너비를 사용자 지정할 수 있습니다.
<com.google.android.material.button.MaterialButton
....
style="?attr/materialButtonOutlinedStyle"
app:strokeColor="@color/colorPrimary"/>
Jetpack을 사용하여 를 작성합니다. 특성을 사용하여 너비와 색상을 사용자 지정합니다.
OutlinedButton(
onClick = { },
border = BorderStroke(1.dp, Color.Blue),
) {
Text(text = "BORDER")
}
그리기 가능한 폴더에 gradient_btn이라는 그리기 가능한 파일을 만들고 아래 코드를 붙여넣습니다.
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient android:startColor="#7BF8C6"
android:centerColor="#9DECAD"
android:endColor="#7BF8C6"
android:angle="270" />
<corners
android:topLeftRadius="15dp"
android:topRightRadius="15dp"
android:bottomLeftRadius="15dp"
android:bottomRightRadius="15dp"
/>
<stroke android:width="3px" android:color="#000000" />
</shape>
그런 다음 xml의 단추 코드에서 만든 파일을 호출합니다.
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button"
android:background="@drawable/gradient_btn"/>
출력 - 그라데이션과 테두리가 있는 버튼이 됩니다.
참고 - 버튼의 Hexa 10진수 코드를 원하는 대로 변경할 수 있으며 스트로크 폭도 변경할 수 있습니다.
언급URL : https://stackoverflow.com/questions/7690416/android-border-for-button
'programing' 카테고리의 다른 글
iPhone에 구성 프로필 설치 - 프로그래밍 방식 (0) | 2023.08.04 |
---|---|
dbms_metadata.get_ddl을 더 예쁘게/유용하게 만드는 방법 (0) | 2023.08.04 |
유연한 항목이 콘텐츠 크기를 넘어서 축소되지 않는 이유는 무엇입니까? (0) | 2023.08.04 |
'경로'의 가져오기 경로를 사용하여 노드의 경로 모듈을 가져올 수 있습니까? (0) | 2023.08.04 |
따옴표로 묶은 문자열 내 매크로 확장 (0) | 2023.08.04 |