Tuesday 7 March 2017

Creating Custom Background For EditText or Button Android

  No comments

<?xml version="1.0" encoding="utf-8"?><shape xmlns:android="http://schemas.android.com/apk/res/android"    android:shape="rectangle">
    <!--Background color -->    <solid android:color="#ffffff" />
    <!-- Border color -->    <stroke        android:width="1dp"        android:color="#b6b5b5" />
</shape>

No comments :

Post a Comment

Loading...