Posts

How to create Layout Resource File in existing project in android studio

Image
 Follow these steps for creating Layout Resource File Right-click on Layout ↓ Click on new then Click on Layout Resource File ↓ Type Layout Resource File(Exp:-signal row) in Filename ↓ Click on ok, your Layout Resource File is ready   How to create a new java class in android studio How to create a new activity in an existing project in android studio How to create a custom menu in android studio How to Add video(Part-2) in FirebaseRecyclerAdapter in android studio How to Add video(Part-1) in FirebaseRecyclerAdapter in android studio How to create an android project in android studio How to authenticate mobile no in android studio How to connect the android project to firebase in android studio Tweet to @androidguru9211

How to create a new activity in existing android project in android studio

Image
 Follow these steps for creating new activity               Right-click on the project name ↓ Click on New then Activity then click on Empty activity ↓ Type activity name as you wish and click finish Your activity is ready   How to create a new java class in android studio How to create a new Layout Resource File in existing project in android studio How to create a custom menu in android studio How to Add video(Part-2) in FirebaseRecyclerAdapter in android studio How to Add video(Part-1) in FirebaseRecyclerAdapter in android studio How to create an android project in android studio How to authenticate mobile no in android studio How to connect the android project to firebase in android studio Tweet to @androidguru9211

How to Create a Custom menu in android studio

Image
 Follow these steps to create a custom menu                                        Right-click on Menu   ↓ Click on new then click on Menu resource file ↓ Type custom_name in file name then click on ok ↓ custom menu ready   How to create a new java class in android studio How to create a new Layout Resource File in an existing project in android studio How to create a new activity in an existing project in android studio How to Add video(Part-2) in FirebaseRecyclerAdapter in android studio How to Add video(Part-1) in FirebaseRecyclerAdapter in android studio How to create an android project in android studio How to authenticate mobile no in android studio How to connect the android project to firebase in android studio Tweet to @androidguru9211

How to create a new java class in android studio

Image
 Follow these steps to create a new java class Right-click on the package name                                                                                   ↓ Click on the java class                                                                                           ↓ Type java  class name(Exp:- songs) and press Enter Your java class ready 😎😎😎😎😎       How to create a custom menu in android studio How to create a new Layout Resource File in an existing project in android studio How to c...

How to add(Part-2) Video in FirebaseRecyclerAdapter in android studio

Image
 First read  Add(Part_1) in FirebaseRecyclerAdapter in android studio Let's start the second part Add below dependency in app-level build Gradle    plugins { id 'com.android.application' id 'com.google.gms.google-services' } android { compileSdkVersion 30 buildToolsVersion "30.0.3" defaultConfig { applicationId "com.example.phoneauthentication" minSdkVersion 19 targetSdkVersion 30 versionCode 1 versionName "1.0" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile( 'proguard-android-optimize.txt' ), 'proguard-rules.pro' } } compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } } dependencies { implementation 'a...

How to add Video(Part-1) in FirebaseRecyclerAdapter from Galllary..

Image
Step:-1 First add below permission in menifest.xml ↓ Add below code AndroidManifest.xml <? xml version ="1.0" encoding ="utf-8" ?> < manifest xmlns: android ="http://schemas.android.com/apk/res/android" xmlns: tools ="http://schemas.android.com/tools" package ="com.example.firstproject" > < uses-permission android :name ="android.permission.READ_EXTERNAL_STORAGE" /> < uses-permission android :name ="android.permission.INTERNET" /> < uses-permission android :name ="android.permission.WRITE_EXTERNAL_STORAGE" tools :ignore ="ScopedStorage" /> < application android :hardwareAccelerated ="true" android :icon ="@mipmap/ic_launcher" android :label ="@string/app_name" android :roundIcon ="@mipmap/ic_launcher_round" android :supportsRtl ="true" ...