Answers for "android studio round button corners"

0

rounded corners button in android

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
    <corners android:radius="24dp" />
    <solid android:color="#F00" />
</shape>
Posted by: Guest on November-19-2020
0

how to add corner radius in android button

<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
    <solid android:color="@color/primary" />
    <corners android:radius="5dp" />
</shape>
Posted by: Guest on September-26-2020

Code answers related to "android studio round button corners"

Browse Popular Code Answers by Language