Library
io.github.medyo:android-about-page:2.0.0
And Add import library
import mehdi.sakout.aboutpage.AboutPage;
import mehdi.sakout.aboutpage.Element;
Create new project or add this in your existing project.
//Declare element
final Element adsElement = new Element();
// set title about you
adsElement.setTitle("About Me");
// Set activity to this library for working
View aboutPage = new AboutPage(AboutActivity.this)
// for RTL support if you want set true
.isRTL(false)
// set description I added String description
.setDescription(description)
.addItem(adsElement)
.addYoutube("UCBy3Hf4qJTD2ygqLQdnrjsg")
.addInstagram("imsatish709")
.addEmail("your email")
.addTwitter("your Twitter ")
.addWebsite(" website ")
.addGithub(" Github")
.addPlayStroee("playStoreId)
.addFaceBook("fb")
.create();
setContentView(aboutPage);
// that's It
Thank you for visit my site
0 Comments