res > drawable > doughnut.xml
<?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="oval"> <solid android:color="@color/colorPrimary" /> <stroke android:width="10dp" android:color="@color/colorAccent" /> <corners android:radius="15pt" /> </shape>
적용할 xml
<TextView android:id="@+id/tv_circular" android:layout_width="150dp" android:layout_height="150dp" android:background="@drawable/doughnut" android:gravity="center" android:text="Doughnut" android:textColor="@color/colorAccent"/>
'Before 2022 > Android' 카테고리의 다른 글
Floating Action Button 활용하기 (0) | 2019.07.11 |
---|---|
NetworkCallback을 이용하여 네트워크 상태를 받아오자. (0) | 2019.07.11 |
startActivityForResult - 호출한 Activity에서 결과 값 받기 (0) | 2019.07.11 |
EditText 비밀번호 보이기/숨기기 (0) | 2019.07.11 |
Dialog Full Size 및 화면 하단에 위치 시키기 (0) | 2019.06.17 |