Material Design Hub

Showing posts with label Android Progressbar. Show all posts
Showing posts with label Android Progressbar. Show all posts

Saturday, December 27, 2014

Material Design Android Library

Material Design Android Library





 Material Design Android Library
                    Material Design Android Library



Description:   Material Design Android Library is a  library with components of Android L to you use in android 2.2 or higher.



Watch the demo on you tube





Components:-  


Buttons-  Flat Button,Rectangle Button,Float Button,Float small button.

Switches- CheckBox,Switch.

Progress indicators- Progress bar circular indeterminate,Progress bar indeterminate,Progress bar indeterminate determinate,Progress bar determinate,Slider,Slider with number indicator.

Widgets- SnackBar,Dialog,Color selector.

Author-  navasmdc

How to use Material Design Android Library :-

Download library and sample code


Step 1: Import  Library to your Android Application Project
        1: File->New->Other
        2: Select Android Project
        3: Select "Create Project from existing source"
        4: Click "Browse and select Material Design Android Library,
        5: Finish
        6: Right-click on your project -> Properties
        7: In Android->Library section click Add
        8: select recently added project -> Ok
        9: that's it!




Please Join our Facebook  Group and Page


Facebook group: Android controls

Facebook page: Android Controls


SUBSCRIBE TO OUR EMAIL NEWSLETTER & RECEIVE UPDATES RIGHT IN YOUR INBOX.   Click here


If You Have Any question or Suggestions Please Feel Free to Comments .

Friday, December 12, 2014

Android Progressbar

Android Custom Progressbar(materialish-progress)



Android Progressbar



Android custom Progressbar


Description:-
A material style progress wheel compatible with 2.3


I needed to keep a consistent (or as close as possible) look in an app across all Android Versions. The progress wheel is quite cool in Lollipop, and pretty horrible on Gingerbread.

Watch the demo


Download library and sample code

How To Use:-

Step 1: Create a new Android Project

Step 2: Import  Library to your Android Application Project
     1: File->New->Other
     2: Select Android Project
     3: Select "Create Project from existing source"
     4: Click "Browse...
     5: Finish (Now action bar project in your workspace)
     6: Right-click on your project -> Properties
     7: In Android->Library section click Add
     8: select recently added project -> Ok
     9: that's it!


Now You can create your own progress wheel in xml like this
<com.pnikosis.materialishprogress.ProgressWheel
        android:id="@+id/progress_wheel"
        android:layout_width="80dp"
        android:layout_height="80dp"
        android:layout_centerHorizontal="true"
        android:layout_centerVertical="true"
        wheel:barColor="#5588FF" 
wheel:progressIndeterminate="true" />.

Or in code:
ProgressWheel wheel = new ProgressWheel(context);
wheel.setBarColor(Color.BLUE);
Reference: https://github.com/pnikosis/materialish-progress 
Developed By:  pnikosis

Please Join our Facebook  Group and Page


Facebook group: Android controls

Facebook page: Android Controls


SUBSCRIBE TO OUR EMAIL NEWSLETTER & RECEIVE UPDATES RIGHT IN YOUR INBOX.   Click here


If You Have Any question or Suggestions Please Feel Free to Comments .