tor-android/app/src/main/res/drawable/rounded_button.xml

13 lines
451 B
XML

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<corners android:radius="15dp"/> // if you want clear round shape then make radius size is half of your button`s height.
<solid android:color="#78af52"/> // Button Colour
<padding
android:bottom="3dp"
android:left="3dp"
android:right="3dp"
android:top="3dp"/>
</shape>