IT TIP

Android에서 둥근 모양을 얻는 방법

itqueen 2020. 12. 29. 08:14
반응형

Android에서 둥근 모양을 얻는 방법


Android 셰이프 드로어 블을 통해 아래와 같이 Android에서 둥근 모양을 어떻게 얻을 수 있습니까?

여기에 이미지 설명 입력


drawable드로어 블 폴더에 다음과 같은 모양을 만들어야합니다 .

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="oval" >
    <gradient android:startColor="#FFFF0000" android:endColor="#80FF00FF"
        android:angle="270"/>
</shape>

(이 예제에서는 드로어 블을 circle.xml로 저장했으며 그래디언트 채우기가 적용됩니다)

그런 다음 레이아웃에서보기를 정의하고 모양을 배경으로 설정해야합니다.

<View android:layout_width="50dp"
    android:layout_height="50dp"
    android:background="@drawable/circle"/>

보기는 모양의 크기와 치수를 정의합니다.

편집-코드 결과 스크린 샷

그래픽보기

코드 이미지

참조 URL : https://stackoverflow.com/questions/10103900/how-to-get-round-shape-in-android

반응형