Android 에서 단 추 를 누 르 면 배경 과 원 각 예제 코드 를 동시에 설정 합 니 다.

1631 단어 android원 각배경
머리말
최근 에 버튼 을 누 를 때 버튼 에 그림 을 배경 으로 설정 하 는 동시에 원 각 을 스스로 정의 하 는 것 을 만 났 습 니 다.가장 쉬 운 방법 은 바로 원 각 도 를 자 르 는 것 을 버튼 으로 하면 됩 니 다.하지만 그렇지 않 으 면 어떻게 해 야 합 니까?코드 를 보 세 요.
효과 도 를 살 펴 보 겠 습 니 다.


1.먼저 원 각 의 shape 파일 을 만 듭 니 다.

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
 <corners
  android:radius="10dp"/>
 <stroke
  android:width="1dp"
  android:color="#FF6238" />
</shape>
2.list 파일 만 들 기:

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
 
 <item android:drawable="@mipmap/ic_launcher"/>
 <item android:drawable="@drawable/shape"/>
</layer-list>
3.직접 참조:

<TextView
 android:gravity="center"
 android:background="@drawable/list"
 android:layout_width="match_parent"
 android:layout_height="50dp"
 android:textSize="16sp"
 android:textColor="#FF0000"
 android:text="  " />
총결산
이상 은 안 드 로 이 드 에서 버튼 에 배경 과 원 각 을 동시에 설정 하 는 방법 입 니 다.다 들 배 웠 나 요?이 글 의 내용 이 여러분 이 안 드 로 이 드 를 배우 거나 사용 하 는 데 도움 이 되 기 를 바 랍 니 다.궁금 한 점 이 있 으 면 댓 글로 소통 하 세 요.

좋은 웹페이지 즐겨찾기