Android RelativeLayout as the name says, position the views in the screen or in the activity with respect to the other components or relative to each other. Android RelativeLayout is a view group that arranges the child views or UI components in relative positions. In Relative Layout, you can use attributes “above, below, left and […]
Android
Android LinearLayout Tutorial
What is a Layout ? A Layout specify the alignment of widgets (such as Text, Buttons, EditText box) as we can see in our Android Application screen or activity. All the visual structure we see in our android app is designed using different Layouts in android. I have already discussed the different layouts in android […]
SQLite Database example in android
What is SQLite database? SQLite database is open source relational database management system in android. It is self-contained, serverless, zero configuration and transactional SQL database engine. SQLite is a SQL database that stores data to a text file on a device. Android comes in with built in SQLite database implementation. SQLite is a lightweight database, […]
Android Broadcast Receiver tutorial
What is Android Broadcast Receiver? A broadcast receiver is an Android application component which allows you to register for system generated events or application events. All registered broadcast receiver for a particular event are notified by the Android runtime once the registered event fires. The Broadcast Receiver’s job is to pass a notification to the […]
Mobile Computing Tutorial
What is mobile computing ? Mobile Computing is an umbrella term used to describe technologies that enable people to access network services anyplace, anytime, and anywhere. Mobile computing is the set of technologies, services and procedures that enable the end user to gain access to the resources or information while on move. This is a […]
Android Service Sample code for Playing Default Ringtone
What is Android Service? Android Service is a process runs on background indefinitely, but the special thing is about the android service is it doesn’t need user interaction. Android Services Examples are like playing music in background. It is a long running process in the background. In this Android Service Sample code for Playing default […]
Android Service Sample code for Playing Music on Background
What is Android Service? Android Service is a process runs on background indefinitely, but the special thing is about the android service is it doesn’t need user interaction. Android Services examples are like playing music in background. It is a long running process in the background. In this Android Service Sample code for Playing Music […]
Android Service Life Cycle Tutorial
Android Service Android Service is an application component that is used to perform long-running operations such a playing music in the background, handle network transactions etc all from the background. Android Service does not provide a user interface. Android Service runs indefinitely in the background unless they explicitly stopped or destroyed. Android application component can […]