Android Round Button Example
In this tutorial you will learn how to create a round button in android. Shape drawable resource is used to define shape of a view. Below I have shared an example to to make a circle button. Android Round Button Example Create a xml file inside res/drawable folder. round_button.xml <?xml version=”1.0″ encoding=”utf-8″?> <shape xmlns:android=”http://schemas.android.com/apk/res/android” android:shape=”oval”> …
