Skip to main content

Posts

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...
Recent posts
Android Interview Questions And Answers 1. What is android ? Ans. Android is an Operation System based on Linux kernel . 2. What are the different Android Components ? Ans.  Activity           Intents          Service          Broadcast Receiver          Content Provider.