SCRUMble ! Hello Blog Readers! Thank you for all your support and encouragement. I have something exciting for you all. I have recently written and published a new book called 'SCRUMble !'. It is currently available on pothi store. It will be soon available on Amazon and Flipkart as well. Please get your copy and do let me know your reviews. -Abhishek Sathe SCRUMble ! Written and Published by: Abhishek Sathe Distributed by: pothi.com Order your copy now: https://store.pothi.com/book/abhishek-sathe-scrumble/ Coming soon on Amazon and Flipkart About the book: Scrum is a framework for solving complex problems largely adapted by Software Development field. There are multiple ag...
Important things you will want to know while developing an android application: 1.In res/layout folder, there is main.xml or activity_main.xml file which defines the UI of your application. The default view is the layout view which lays out the activity graphically. 2.When you create a new project, following files are created by default: -Project name -Create activity -Min. SDK Version: minimum version of SDK that your project is targeting. 3.MainActivity is usually entrypoint of the application which is displayed when the application is loaded. In android, an activity is a window that contains UI. An application can have zero or more activities. 4.Various folders and their files: -src -Android 2.3 library -gen -assets -res -AndroidManifest.xml contains detailed information about the application. 5.The code that connects tha activity to the UI is setContentView( ) method, which is in MainActivity.java. setContentView(R.layout.main); Here, R.layout.main refers to the ma...