Simple Add Google Play Services to Android Studio Project

If you want to add play services, follow below steps. Open your project’s  build.gradle file and add below line under dependencies module. This will add all the Play Services APIs to your project. dependencies { compile 'com.google.android.gms:play-services:7.0.0' }...

Android How to Apply Material Design Theme

Following steps will help you applying the material design theme to your app. 1. In Android Studio, go to File ⇒ New Project and fill all the details required to create a new project. When it prompts to select a default activity, select Blank Activity and proceed. 2....

Make button animation ripple effect with xml layout

In this tips, I’m going to show you to implement ripple effect/animation in your android buttons. Now, you can easily add ripple effect/animation in your buttons, layouts, textviews, etc. and you can also change its color. Note that, this ripple effect/animation will...

Show Your Name In Android With TextView

<?xml version="1.0" encoding="utf-8"?> <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"     android:orientation="vertical" android:layout_width="match_parent"     android:layout_height="match_parent">                ...

Make Simple GridView ArrayAdapter

GridView is used to display items in a two-dimensional, scrollable grid form. The grid items are automatically inserted to the layout using a Adapter. For example, displaying grid of icons. Item is represented by a single item view. This pattern is quite handy as it...