Answers for "android make buttons rounded"

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 make buttons rounded"

Browse Popular Code Answers by Language