Nathan Campos
Nathan Campos

Reputation: 29507

How To Create a Android App With ICS UI That Works With Gingerbread and Froyo?

How apps like Hacker News beta have use the Ice Cream Sandwich 4.0 UI on their app and at time work without any problems on 2.3 Gingerbread and 2.2 Froyo? I want to create apps that should work on 4.0 and have backward compatibility like that, but how to do it?

Upvotes: 8

Views: 3044

Answers (3)

Chronos
Chronos

Reputation: 1962

You need to use the support library or only the visual UI, the resources available on Android ICS.

If you need only the resources, you can download the ICS sdk and copy the resources on

android-sdk-mac_86/platforms/android-15/data/res.

You can check this on this app:

Series Guide

Upvotes: 0

bobygerm
bobygerm

Reputation: 483

You have to use the Support Package and its support libraries (v4, V7, v13) - Android Developer.

Some APIs are not yet included in this support package, it may not cover everything that you use.

Upvotes: 5

GrkEngineer
GrkEngineer

Reputation: 2132

Many apps also use ActionBar Sherlock to support the ActionBar UI. It's built on top of the Support Package that bobygerm mentioned.

Upvotes: 4

Related Questions