skip to Main Content

Android Studio – how to draw a white dot in android studio

I was trying to use white dot as tab icon in tablayout in android studio. I have use a example from online to define the dot: ic_tab_default.xml: <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" android:innerRadius="0dp" android:shape="ring" android:thickness="24dp" android:useLevel="false"> <solid android:color="@android:color/white"/> </shape> however,…

VIEW QUESTION
Back To Top
Search