https://github.com/codepath/android-actionbar-style-demo
Simple demo of styling the actionbar using styles.xml
https://github.com/codepath/android-actionbar-style-demo
Last synced: about 2 months ago
JSON representation
Simple demo of styling the actionbar using styles.xml
- Host: GitHub
- URL: https://github.com/codepath/android-actionbar-style-demo
- Owner: codepath
- Created: 2015-02-09T06:44:00.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-02-09T06:49:16.000Z (over 10 years ago)
- Last Synced: 2023-05-10T14:13:26.401Z (about 2 years ago)
- Language: Java
- Size: 195 KB
- Stars: 18
- Watchers: 12
- Forks: 16
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ActionBarStylesDemo
This is a demo of how to style the support ActionBar within your application. See the following key files and folders:
* [`res/values/styles.xml`](https://github.com/codepath/android-actionbar-style-demo/blob/master/app/src/main/res/values/styles.xml) - This is where the main styles are defined.
* [`AndroidManifest.xml`](https://github.com/codepath/android-actionbar-style-demo/blob/master/app/src/main/AndroidManifest.xml) - This is where the theme is defined for the application.
* [`res/values/styles.xml`](https://github.com/codepath/android-actionbar-style-demo/blob/master/app/src/main/res/values-v21/styles.xml) - This is where the v21 style overrides are defined.

For further details, refer to the [styling the actionbar guide](http://guides.codepath.com/android/Extended-ActionBar-Guide#custom-actionbar-styles).