I want to create Button with background.png and rounded corners. How to do this?
I wrote this code on MainActivity:
<Button
android:layout_width="match_parent"
android:layout_height="40dip"
android:text="LOGIN TO THE GAME"
android:textColor="#ffffff"
android:background="@drawable/button_corners" />
And i create file 'button_corners.xml' which contain:
<?xml version="1.0" encoding="utf-8"?>
<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
<corners
android:radius="10dip" />
<stroke
android:width="0.5dp"
android:color="#000000" />
</shape>
And now how to add background-image to this button? Help!