All Projects → Shashank02051997 → FancyAboutPage-Android

Shashank02051997 / FancyAboutPage-Android

Licence: Apache-2.0 License
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.

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to FancyAboutPage-Android

Materialabout
It's a material-design about screen to use on your Android apps. A developer profile and application information easy to integrate. 🔖
Stars: ✭ 1,511 (+1812.66%)
Mutual labels:  social-network, material-ui, about, about-me, app-info
AndroidBatteryStats
Displays all battery stats of an Android device using broadcast receiver.
Stars: ✭ 20 (-74.68%)
Mutual labels:  android-application, android-ui, androidapp
material-about
An about screen to use in your Mobile apps.
Stars: ✭ 37 (-53.16%)
Mutual labels:  about, about-me, app-info
Datingapp
Dating UI kit is used for online meet up with girls and boys . The screen contains more than 30 icons and most of all required elements required to design an application like this. The XML and JAVA files contains comments at each and every point for easy understanding. Everything was made with a detail oriented style and followed by today's web trends. Clean coded & Layers are well-organized, carefully named, and grouped.
Stars: ✭ 97 (+22.78%)
Mutual labels:  material-ui, android-application, android-ui
Mediapicker
Easy customizable picker for all your needs in Android application
Stars: ✭ 105 (+32.91%)
Mutual labels:  material-ui, android-application, android-ui
media-picker
Easy customizable picker for all your needs in Android application
Stars: ✭ 167 (+111.39%)
Mutual labels:  material-ui, android-application, android-ui
Ibackdrop
A library to simply use Backdrop in your project (make it easy). Read more ->
Stars: ✭ 137 (+73.42%)
Mutual labels:  material-ui, android-application, android-ui
Bottomsheet
BottomSheet dialog library for Android
Stars: ✭ 219 (+177.22%)
Mutual labels:  material-ui, android-application, android-ui
Floral
Minimal design gallery app for Android.
Stars: ✭ 23 (-70.89%)
Mutual labels:  material-ui, android-application
gabrieldim
WHO AM I ?
Stars: ✭ 100 (+26.58%)
Mutual labels:  about, about-me
Extract-Color-Palette-Api
Create gradient drawable by extracting prominent colors from image⚫⚪
Stars: ✭ 16 (-79.75%)
Mutual labels:  android-application, android-ui
Attribouter
A lightweight "about screen" library to allow quick but customizable attribution in Android apps.
Stars: ✭ 117 (+48.1%)
Mutual labels:  android-ui, about
Material-Backdrop-Android
Material Backdrop
Stars: ✭ 106 (+34.18%)
Mutual labels:  material-ui, android-ui
ts-ui
Telar Social Network using Reactjs
Stars: ✭ 35 (-55.7%)
Mutual labels:  social-network, material-ui
Android-daily-read-tips
log for articles and info in android for every developer
Stars: ✭ 13 (-83.54%)
Mutual labels:  android-application, android-ui
TicTacToeUI-Android
Check out the new style for App Design aims for Tic Tac Toe Game...😉😀😁😎
Stars: ✭ 40 (-49.37%)
Mutual labels:  android-application, android-ui
tisn.app
Tisn - The introverts' social network ➡️ Meet people while doing what you enjoy!
Stars: ✭ 24 (-69.62%)
Mutual labels:  social-network, material-ui
twitter-spring-reactjs
🐦 Twitter Clone. Using Java, Spring Boot, PostgreSQL, S3 bucket, JWT, TypeScript, React.js, Redux-Saga, Material-UI
Stars: ✭ 47 (-40.51%)
Mutual labels:  social-network, material-ui
react-firebase-socialnetwork
Social network-like for finding groups online
Stars: ✭ 28 (-64.56%)
Mutual labels:  social-network, material-ui
ArcPageIndicator
Android Page Indicator for ViewPager with original animations. It uses an ellipse to dispose indication spots, and can draw a hand, like in old elevators.
Stars: ✭ 73 (-7.59%)
Mutual labels:  material-ui, android-ui

FancyAboutPage-Android

platform API License

Get it on Google Play

Prerequisites

Add this in your root build.gradle file (not your module build.gradle file):

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

Dependency

Add this to your module's build.gradle file (make sure the version matches the JitPack badge above):

dependencies {
	...
	compile 'com.github.Shashank02051997:FancyAboutPage-Android:2.8'
}

Fancy About Page

This library allows to generate beautiful About Pages with less effort, it's fully customizable and supports opening specific intent

Usage

First of all, need add AboutPage to your xml layout.

<ScrollView
    android:layout_width="match_parent"
    android:layout_height="wrap_content">
    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="#FFFFFF">
    <com.shashank.sony.fancyaboutpagelib.FancyAboutPage
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:id="@+id/fancyaboutpage">
        <com.mikhaellopez.circularimageview.CircularImageView
            android:layout_width="140dp"
            android:layout_height="140dp"
            android:layout_marginTop="180dp"
            android:layout_alignParentRight="true"
            android:layout_marginRight="10dp"
            android:src="@drawable/yourprofileimg"
            app:civ_border_color="#40FFFFFF"
            app:civ_border_width="10dp"
            android:id="@+id/circularImageView" />
    </com.shashank.sony.fancyaboutpagelib.FancyAboutPage>
    </RelativeLayout>
</ScrollView>

Second of all, intract with code in java.

        FancyAboutPage fancyAboutPage=findViewById(R.id.fancyaboutpage);
        //fancyAboutPage.setCoverTintColor(Color.BLUE);  //Optional
        fancyAboutPage.setCover(R.drawable.coverimg); //Pass your cover image
        fancyAboutPage.setName("Shashank Singhal");
        fancyAboutPage.setDescription("Google Certified Associate Android Developer | Android App, Game, Web and Software Developer.");
        fancyAboutPage.setAppIcon(R.drawable.cakepop); //Pass your app icon image
        fancyAboutPage.setAppName("Cake Pop Icon Pack");
        fancyAboutPage.setVersionNameAsAppSubTitle("1.2.3");
        fancyAboutPage.setAppDescription("Cake Pop Icon Pack is an icon pack which follows Google's Material Design language.\n\n" +
                "This icon pack uses the material design color palette given by google. Every icon is handcrafted with attention to the smallest details!\n\n"+
                "A fresh new take on Material Design iconography. Cake Pop offers unique, creative and vibrant icons. Spice up your phones home-screen by giving it a fresh and unique look with Polycon.");
        fancyAboutPage.addEmailLink("[email protected]");     //Add your email id    
        fancyAboutPage.addFacebookLink("https://www.facebook.com/shashanksinghal02");  //Add your facebook address url
        fancyAboutPage.addTwitterLink("https://twitter.com/shashank020597");
        fancyAboutPage.addLinkedinLink("https://www.linkedin.com/in/shashank-singhal-a87729b5/");
        fancyAboutPage.addGitHubLink("https://github.com/Shashank02051997");

Screenshots

Please click the image below to enlarge.

Dependencies

This project use this libraries ~ Thanks to them.

Contributing

Please fork this repository and contribute back using pull requests.

Any contributions, large or small, major features, bug fixes, are welcomed and appreciated but will be thoroughly reviewed .

Contact - Let's become friend

Donation

If this project help you reduce time to develop, you can give me a cup of coffee :)

Buy Me A Coffee

License

Copyright 2018 Shashank Singhal

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

 http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
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].