Introduction A Splash screen is a graphical control element consisting of a window containing an image, a logo and the current version of the software. A splash screen usually appears while a game or program is launching. @source wiki The splash screen is an activity that will show for a specific time mentioned when...

In Web Application Development, we use different types of formats for accessing a data over the web. Today, we will compare two different formats JSON (JavaScript Object Notation) and XML (Extensible Markup Language). Both have their particular usage for to & fro data passing. JSON (JavaScript Object Notation) –...

In this post, we will be discussing the procedures to implement CRUD operations in HBase using Java APIS. Before moving forward, it is best if readers can brush up on the working of HBase and its operations. Introduction to HBase Apache HBase is an open-source, distributed, versioned, non-relational database...

Introduction: Recycler View is a new widget of Android i.e. “android.support.v7.widget.RecyclerView”. Recycler View is an advanced form of ListView and GridView. It works like a ListView but it is more flexible and advance with the large data set. By using LayoutManager class in RecyclerView we can show the items...

Introduction: If we want to use the inbuilt Camera of our device by your application then we have to initiate the Intent for it. By using android.provider.MediaStore class we can easily capture the video. The device Camera application requests video capture using android.provider.MediaStore.ACTION_VIDEO_CAPTURE. To launch the camera there is...

Introduction: ConstraintLayout is a new functionality which comes only in Android Studio 2.2 Preview 3 with the new Layout editor. To create the ConstraintLayout we have to update the AndroidStudio with this new version. To implement the ConstraintLayout first, we check whether Android Support Repository is updated or not,...

In this post, we will be discussing Junit, its importance and testing your codes using Junit. Let’s get started with the basics first. What is Junit? According to Wikipedia, JUnit is a Unit testing framework for Java programming language. JUnit has been important in the development of test-driven development,...