도형에 배경 이미지를 어떻게 추가합니까? 아래에서 시도했지만 성공하지 않은 코드 :
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" android:padding="10dp">
//here is where i need to set the image
<solid android:color="@drawable/button_image"/>
<corners
android:bottomRightRadius="5dp"
android:bottomLeftRadius="5dp"
android:topLeftRadius="5dp"
android:topRightRadius="5dp"/>
</shape>
사용자 정의 모양 클래스를 확장하고 작성해야합니다. 예를 들어 RoundedImageView를 살펴보십시오. 그것은 당신이 그것에 배경으로 설정 한 iamge가 무엇이든 둥근 이미지 뷰를 생성합니다, 그것은 둥근 모양으로 나타납니다
—
Rahul Gupta