Answers for "curve button radius android"

0

curve button in android

android:bottomRightRadius="10dp"
android:bottomLeftRadius="10dp"
android:topLeftRadius="10dp"
android:topRightRadius="10dp"
Posted by: Guest on April-28-2021
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

Browse Popular Code Answers by Language