CodeWithKhurshed
CodeWithKhurshed
  • 5
  • 28 663
Android Walkthrough/ Slide/ Onboarding Screen Android Studio Tutorial | CodeWithKhurshed
Android Walkthrough/ Slide/ Onboarding Screen Android Studio Tutorial | Code With Khurshed
Step 1:
- Download images and save into drawable folder.
Step2 :
dependencies {
implementation 'com.github.msayan:tutorial-view:v1.0.6'
}
Step 3:
repositories {
....
maven{ url'jitpack.io'}
}
Step 4:
in MainActivity.java
//First Page
addFragment(new Step.Builder()
.setTitle("Automatic Data")
.setContent("GM Music playlist automatically finds photos and genres of singers and displays it. Music Information data should be in a proper format for this feature to work.")
.setBackgroundColor(Color.parseColor("#801B2B"))
.setDrawable(R.drawable.ss_1)
.setSummary("Continue to learn how to do")
.build()
);
//second page
addFragment(new Step.Builder()
.setTitle("Choose the song")
.setContent("GM Music playlist automatically finds photos and genres of singers and displays it. Music Information data should be in a proper format for this feature to work.")
.setBackgroundColor(Color.parseColor("#169282"))
.setDrawable(R.drawable.ss_2)
.setSummary("Continue to learn how to do")
.build()
);
//Third page
addFragment(new Step.Builder()
.setTitle("Edit Data")
.setContent("GM Music playlist automatically finds photos and genres of singers and displays it. Music Information data should be in a proper format for this feature to work.")
.setBackgroundColor(Color.parseColor("#2368B2"))
.setDrawable(R.drawable.ss_3)
.setSummary("Continue to learn how to do")
.build()
);
//Final page
addFragment(new Step.Builder()
.setTitle("Result is Awesome")
.setContent("GM Music playlist automatically finds photos and genres of singers and displays it. Music Information data should be in a proper format for this feature to work.")
.setBackgroundColor(Color.parseColor("#B06CD3"))
.setDrawable(R.drawable.ss_4)
.setSummary("Continue to learn how to do")
.build()
);

//SUBSCRIBE PLEASEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE
}
Переглядів: 913

Відео

Splash Screen - Android Studio Tutorial | CodeWithKhurshed
Переглядів 10 тис.2 роки тому
Splash Screen - Android Studio Tutorial | CodeWithKhurshed Lottie File link: lottiefiles.com/search?q=travel&category=animations dependencies { implementation 'com.airbnb.android:lottie:4.2.2' } Keywords: android programming tutorial, android development bangla tutorial, android bangla tutorial, welcome screen in android, howtomakesplashscreen, android splash screen, splash screen android, spla...
Weekly Calendar View in Android Studio tutorial | Step by Step | CodeWithKhurshed
Переглядів 4,4 тис.2 роки тому
Weekly Calendar View in Android Studio tutorial | Step by Step | CodeWithKhurshed Source Code: medium.com/@mohdkhurshed120/weekly-calendar-view-in-android-studio-869ce60bb6e3 You might face an error while using this library follow the steps bellow. for error please add these lines in gradle.properties and remove old code replace them with these. android.nonTransitiveRClass=true org.gradle.jvmar...
Foreground Service in Android Studio | Java | Android | Run app in Background | CodeWithKhurshed
Переглядів 12 тис.2 роки тому
Foreground Service in Android Studio | Java | Android | Run app in Background | CodeWithKhurshed Source Code: medium.com/@mohdkhurshed120/using-foreground-service-in-android-69faa5dfa3e #androidstudio #androidtutorial #androidseries #androidservices #foreground #service
unable to load 'javax.xml.bind.annotation.XmlSchema' | Android Studio | [Latest Video]
Переглядів 1,4 тис.2 роки тому
unable to load 'javaz.xml.bind.annotation.XmlSchema' | Android Studio | CodeWithKhurshed Buy Hoodies from here: 1. ayykori.online/ak_5bAcGeLqDX 2. ayykori.online/ak_Vc5it2vxxV 3. ayykori.online/ak_24q6IoyZrj 4. ayykori.online/ak_Gjf0lVtwSV this is my solution update Gradle build tool version in project-level Gradle dependencies { classpath 'com.android.tools.build:gradle:4.2.0' } and then Andro...