Skip to main content

Posts

Showing posts from February, 2019
Beautiful  Login Screen  Android Create drawable resource file button1.xml < selector xmlns: android = "http://schemas.android.com/apk/res/android" > < item > < shape android :shape= "rectangle" > < solid android :color= "@color/white" /> < corners android :radius= "20dp" /> < stroke android :width= "1dp" android :color= "#610687" /> </ shape > </ item > </ selector > Create another drawable resorce file button2.xml < selector xmlns: android = "http://schemas.android.com/apk/res/android" > < item > < solid android :color= "#610687" /> < shape android :shape= "rectangle" > < corners android :radius= "20dp" /> < stroke android :width= "1dp" android :color= "#610687...