Android Button Border Radius Code Example


Example 1: 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>

Example 2: 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>

Comments

Popular posts from this blog

Converting A String To Int In Groovy

"Cannot Create Cache Directory /home//.composer/cache/repo/https---packagist.org/, Or Directory Is Not Writable. Proceeding Without Cache"

Android How Can I Convert A String To A Editable