Android Full Project of Fragement in java

In this project i am going to use Fragment to make Android Layout MainActivity.java Filemanager.java activity_main.xml mainlyout.xml build.gradle plugins { id ‘com.android.application’ } android { compileSdk 30 defaultConfig { applicationId “tech.softbinarycrunch.realvideoeditor” minSdk 24 targetSdk 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 { … Read more

RecycleView in Android

RecyclerView in Android makes it easy to efficiently display large sets of data. In RecycleView we supply the data and define how each item looks, and the RecyclerView library dynamically creates the elements when they’re needed Key classes in RecycleView RecyclerView is the ViewGroup that contains the views corresponding to your data. It’s a view … Read more