Material Design from Android 2.2 (API 8) to version 5.0 (API 21)
Here is what you need:
- Toolbar
- Library of materials for widgets (buttons, flags, etc.)
1. Toolbar
Just come up and you're ready to go.
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/toolbar" android:layout_width="match_parent" android:layout_height="wrap_content" android:background="?attr/colorPrimaryDark"/>
Installation Guide: http://antonioleiva.com/material-design-everywhere/
Source with an example: https://github.com/antoniolg/MaterialEverywhere
For < toolbar to work below API 11 , use Theme.AppCompat.Light.NoActionBar (instead, windowActionBar is set to false)
<style name="NoActionBarTheme" parent="Theme.AppCompat.Light.NoActionBar"> ... </style>
2. Material library
Here is the Material Library> for cute buttons, etc.
Guide, code, example - https://github.com/navasmdc/MaterialDesignLibrary
Library Add-on Guide for Android Studio 1.0 - How to Import a Material Library into Android Studio?
.
Happy coding;)
Inoy Jan 13 '15 at 22:05 2015-01-13 22:05
source share