Answers for "how to create rounded corner button in android"

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

Code answers related to "how to create rounded corner button in android"

Browse Popular Code Answers by Language