Material About


Source link: https://github.com/jrvansuita/MaterialAbout

Material About

This is an Android project. You, as a mobile developer, can use this library to show a material about screen in your apps. It was build to make your life easier when introducing you to your users, and also, to create a about screen pattern for material android apps. It's really simple and dynamic, check it out.


Note: If you're missing some feature please let me know. Or even better, create a pull request. Also, I'm needing some help to translate the strings.xml to other languages.
Supported Languages until now: 🇺🇸 🇧🇷 🇪🇸 🇮🇹 🇷🇺 🇩🇪 🇨🇳 🇹🇷 🇺🇦 🇫🇷 🇦🇪 🇰🇷

Sample app

This library has a lot more customization and features than is able to show here. Please check the sample app and feel free to help with a pull request. You can take a look at the sample app located on this project.

Setup

This library requires minSdkVersion to be set to 14 or above, like the Official Support Library.

Step #1. Add the JitPack repository to your build file:

allprojects {

  repositories {
  ...  maven {
 url "https://jitpack.io" 
}

  
}
 
}

Step #2. Add the dependency ( See latest release).

dependencies {

  compile 'com.github.jrvansuita:MaterialAbout:+' 
}

Implementation

Create a AboutView instance with AboutBuilder.

@Override protected void onCreate(Bundle savedInstanceState) {

  super.onCreate(savedInstanceState);

AboutView view = AboutBuilder.with(this)

.setPhoto(R.mipmap.profile_picture)

.setCover(R.mipmap.profile_cover)

.setName("Your Full Name")

.setSubTitle("Mobile Developer")

.setBrief("I'm warmed of mobile technologies. Ideas maker, curious and nature lover.")

.setAppIcon(R.mipmap.ic_launcher)

.setAppName(R.string.app_name)

.addGooglePlayStoreLink("8002078663318221363")

.addGitHubLink("user")

.addFacebookLink("user")

.addFiveStarsAction()

.setVersionNameAsAppSubTitle()

.addShareAction(R.string.app_name)

.setWrapScrollView(true)

.setLinksAnimated(true)

.setShowAsCard(true)

.build();

addContentView(view, layoutParams);
 
}

Additional

Getting the list of actions or links from AboutBuilder.

AboutBuilder aboutBuilder = AboutBuilder.with(this);
  List<Item> actions = aboutBuilder.getActions();
 List<Item> links = aboutBuilder.getActions();

Getting the view instance of any action or link from AboutView?

AboutView view = AboutBuilder.with(this)

...

.build();
  View lastLinkView = view.findItem(builder.getLastLink());
 View lastActionView = view.findItem(builder.getLastAction());

Used libraries

Resources

QuickScroll is a library aimed at creating similar scrolling experiences to the native Contacts app's People view. It has the same scrolling capabilities as the ListView's native fast-scroll, but comes with a much a much more customizable design, two indicator styles and an always visible scrollbar. The two most common modes are popup and indicator. Works seamlessly with ListView and ExpandableListView.

ParallaxViewPager is an easy-to-use ViewPager subclass with parallax background.

Android - MaterialPreference

  • A simple backward-compatible implementation of a Material Design Preference aka settings item
  • XML layouts are taken from Android Platform Framework Base

An eventbus library for android, simplifies communication between Activities, Fragments, Threads, Services, etc.

A simple implementation of pull-to-refresh ListView.

Generates Retrofit interfaces and related models from Google Cloud Endpoint (GCE) discovery files.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes