Posts

Showing posts from March, 2019

Navigation Drawer and Popup Menu

This article will help you to make an android app with Navigation Drawer and Pop-up Menu  to put data. The screenshot of the main layout is given below..  Let's see the processes..

Firebase RealTime Database and Authentication(with Email & Password) Together

This content is coming soon. keep visiting.. Thank you..

Firebase RealTime Database(SetData)

Image
This article will help you to make an android app with Firebase RealTime Database   to put data. The screenshot of the main layout is given below.. Above the photo there are some data field where we will set value and that value will store in firebase realtime database. Let's see the processes.. build.gradle apply plugin: 'com.android.application' android {     compileSdkVersion 28     defaultConfig {         applicationId "rmproduct.actionbar.com"         minSdkVersion 15         targetSdkVersion 28         versionCode 1         versionName "1.0"         testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"     }     buildTypes {         release {             minifyEnabled false         ...

Android Tabviewer

Image
This article will help you to make an android app with TabView layout. The screenshot of the tabview layout is given below.. TabView Demo: In the above image we see there are three tab named Notifications, Features and Profile.. The procedure to create like this page is given below article.. bulid.gradle apply plugin: 'com.android.application' android {     compileSdkVersion 28     defaultConfig {         applicationId "rmproduct.com.helloworld"         minSdkVersion 15         targetSdkVersion 28         versionCode 1         versionName "1.0"         testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"     }     buildTypes {         release {             minifyEnabled false             proguardFiles ge...