Thursday, 9 November 2017

RecyclerView

RecyclerView The RecyclerView widget is a more advanced and flexible version of ListView . This widget is a container for displaying large data sets that can be scrolled very efficiently by maintaining a limited number of views. Will see simple example how to display country name and population using RecyclerView. 1. For recyclerview we need to add support library inside the build.gradla(module:app),and then Syc project.   compile...

Wednesday, 8 November 2017

Content Provider

                           Content Provider   Content provider is used to manage and Access to a archive of data.content provider is part of an android application.mostly it's used by  other applications.which access the provider using a provider client object.providers and provider clients offer a consistency ,common interface to data and also it will handle inter process communication and secure the data. The...

Sunday, 5 November 2017

Easy steps to make Animation in Android using Android Studio

Animations In Android  There are four types of animations in android: 1. Translate Animation - to move the object from one place to another place. 2. Scale Animation - to resize the object or zoom the object. 3. Rotate Animation- to rotate the object clockwise or anti-clockwise. 4. Fade Animation - to make visible and invisible the object. And for each animation we can add the effects, in android framework we call it as Interpolators,...

Friday, 12 May 2017

SQLite Database

                                                              SQLite DataBase SQLite is a opensource SQL database that stores data to a text file on a device. Android comes in with built in SQLite database implementation. SQLite supports all the relational database features. In order to access this database, you don't need to establish any kind of connections for it like JDBC,ODBC e.t.c We...