Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ICS style in Froyo and Gingerbread Apps

I am developing an application for Android and I'm using the API level 8. However I would like this app would use the theme of ICS when running on Froyo and Gingerbread because the theme of the ICS is much more beautiful. I wish that at least the color scheme and shape of the buttons were equal. Is there any way to do this?

like image 704
Natanael Avatar asked Jun 01 '12 22:06

Natanael


3 Answers

The first thing you might want to look at is ActionbarSherlock as it adds a lot of consistency to your pre-ics code, even though this is not directly related to the theme.

Then take a look at the HoloEverywhere project on GitHub for using the Holo theme on apps designed for pre-ics devices.

like image 69
Jeshurun Avatar answered Oct 20 '22 21:10

Jeshurun


The best i found is android-holo-colors in which you will get all the controls and also can choose holo-light or holo-dark with custom colors you want.

I hope this will help you

like image 25
Antarix Avatar answered Oct 20 '22 23:10

Antarix


The SDK folder contains most of the themes, styles and drawables used in ICS. Check SDK folder\platforms\android-15\data\res.

You can apply themes/styles in your app like this

like image 3
Ole Avatar answered Oct 20 '22 23:10

Ole