All Projects โ†’ jrvansuita โ†’ Materialabout

jrvansuita / Materialabout

Licence: mit
It's a material-design about screen to use on your Android apps. A developer profile and application information easy to integrate. ๐Ÿ”–

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Materialabout

material-about
An about screen to use in your Mobile apps.
Stars: โœญ 37 (-97.55%)
Mutual labels:  profile, social-media, links, actions, about, about-me, about-app, app-info
FancyAboutPage-Android
Fancy About Page is a simple and lightweight library that helps you to create cool and beautiful about page for your apps without writing dozens of lines of code. It's a material-design about screen to use on your Android apps. A developer profile and application information easy to integrate.
Stars: โœญ 79 (-94.77%)
Mutual labels:  social-network, material-ui, about, about-me, app-info
Android Iconics
Android-Iconics - Use any icon font, or vector (.svg) as drawable in your application.
Stars: โœญ 4,916 (+225.35%)
Mutual labels:  material-design, material, material-ui
Materialfavoritebutton
Animated favorite/star/like button
Stars: โœญ 586 (-61.22%)
Mutual labels:  material-design, material, material-ui
React Saas Template
๐ŸŒŠ Template for building an SaaS / admin website using React + Material-UI
Stars: โœญ 942 (-37.66%)
Mutual labels:  material-design, material, material-ui
Cardview
Material Design Cards ? How cool is that !
Stars: โœญ 101 (-93.32%)
Mutual labels:  material-design, material, material-ui
Material Auto Rotating Carousel
Introduce users to your app with this Material-style carousel.
Stars: โœญ 400 (-73.53%)
Mutual labels:  material-design, material, material-ui
Slidetoact
A simple 'Slide to Unlock' Material widget for Android, written in Kotlin ๐Ÿ“ฑ๐ŸŽจ๐Ÿฆ„
Stars: โœญ 783 (-48.18%)
Mutual labels:  material-design, material, material-ui
DaProfiler
DaProfiler allows you to create a profile on your target based in France only. The particularity of this program is its ability to find the e-mail addresses your target.
Stars: โœญ 58 (-96.16%)
Mutual labels:  profile, social-media, social-network
Materialspinner
Implementation of a Material Spinner for Android with TextInputLayout functionalities
Stars: โœญ 107 (-92.92%)
Mutual labels:  material-design, material, material-ui
Mahapps.metro.iconpacks
Awesome icon packs for WPF and UWP in one library
Stars: โœญ 1,157 (-23.43%)
Mutual labels:  material-design, material, material-ui
Togglebuttons
Android toggle buttons that adhere to the Material Design documentation.
Stars: โœญ 88 (-94.18%)
Mutual labels:  material-design, material, material-ui
Sequent
A simple continuous animation library for Android UI.
Stars: โœญ 263 (-82.59%)
Mutual labels:  material-design, material, material-ui
Materiallettericon
Material first letter icon like lollipop contacts icon. Letter(s) on a shape drawn on canvas.
Stars: โœญ 255 (-83.12%)
Mutual labels:  material-design, material, material-ui
Materialtimelineview
With MaterialTimelineView you can easily create a material looking timeline.
Stars: โœญ 443 (-70.68%)
Mutual labels:  material-design, material, material-ui
Web
โšก๏ธ Supercharged version of Create React App with all the bells and whistles.
Stars: โœญ 594 (-60.69%)
Mutual labels:  material, material-ui, avatar
Smart Webcomponents
Web Components & Custom Elements for Professional Web Applications
Stars: โœญ 110 (-92.72%)
Mutual labels:  material-design, material, material-ui
ts-ui
Telar Social Network using Reactjs
Stars: โœญ 35 (-97.68%)
Mutual labels:  social-media, social-network, material-ui
Whizzz-The-ChatApp
Whizzz is a real-time, one-to-one Android chat application made using Firebase, a beautiful user interface, and a push-notification feature.
Stars: โœญ 66 (-95.63%)
Mutual labels:  profile, social-media, social-network
Shards Dashboard
๐Ÿ”ฅA beautiful Bootstrap 4 admin dashboard templates pack.
Stars: โœญ 1,143 (-24.35%)
Mutual labels:  material-design, material, material-ui

Buy Me a Coffee at ko-fi.com Get it on Google Play

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 built to make your life easier when introducing you to your users, and also, to create an 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: ๐Ÿ‡บ๐Ÿ‡ธ ๐Ÿ‡ง๐Ÿ‡ท ๐Ÿ‡ช๐Ÿ‡ธ ๐Ÿ‡ฎ๐Ÿ‡น ๐Ÿ‡ท๐Ÿ‡บ ๐Ÿ‡ฉ๐Ÿ‡ช ๐Ÿ‡จ๐Ÿ‡ณ ๐Ÿ‡น๐Ÿ‡ท ๐Ÿ‡บ๐Ÿ‡ฆ ๐Ÿ‡ซ๐Ÿ‡ท ๐Ÿ‡ฆ๐Ÿ‡ช ๐Ÿ‡ฐ๐Ÿ‡ท

JitPack Android Arsenal MaterialUp ghit.me

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.

Appetize.io Demo Codacy Badge API

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

Google+ LinkedIn Instagram Github Google Play Store E-mail
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].