Skip to content

Commit

Permalink
Prepare for 1.2.4 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergey committed Oct 1, 2012
1 parent aae1c28 commit da77a76
Show file tree
Hide file tree
Showing 14 changed files with 50 additions and 13 deletions.
49 changes: 43 additions & 6 deletions README.md
@@ -1,17 +1,54 @@
# HoloEverywhere
# HoloEverywhere v1.2.4
## What is it?
Bringing Holo Theme from Android 4.0 to 1.6 and above.
Bringing Holo Theme from Android 4.1 to 1.6 and above.
## How to use?

```
git clone git://github.com/ChristopheVersieux/HoloEverywhere.git
cd HoloEverywhere
git submodule update --init
```
* Import HoloEverywhere and ActionBarSherlock into Eclipse

* You should clone git repo, init and update submodules:

```
git clone git://github.com/ChristopheVersieux/HoloEverywhere.git HoloEverywhere
cd HoloEverywhere
git submodule update --init
```

You also may use git GUI programs
* Import HoloEverywhere from root folder and ActionBarSherlock from contrib folder into Eclipse

* Add HoloEverywhere project as library into your project (Properties/Android/Library/Add)
* Add android:theme="@style/Holo.Theme.Sherlock" in your application manifest, you may also want to use light theme: Holo.Theme.Sherlock.Light
* Extend the Application object from com.WazaBe.Holo.Everywhere.Application (optional)
* Extend the Activities from com.WazaBe.HoloEverywhere.sherlock.S\*\*\*Activity (example com.WazaBe.HoloEverywhere.sherlock.SListActivity)

* Add next theme declaration:

```
android:theme="@style/Holo.Theme.Sherlock"
```

in your application manifest
Example:

```
<application
android:name=".Application"
android:icon="@drawable/icon"
android:label="@string/app_name"
android:theme="@style/Holo.Theme.Sherlock" >
```

Also you can use Holo.Theme.Sherlock.Light for light theme and Holo.Theme.Sherlock.Light.DarkActionBar for light theme with dark action bar.

* Extend the Activities from com.WazaBe.HoloEverywhere.sherlock.S***Activity

Example:

```
public class MainActivity extends com.WazaBe.HoloEverywhere.sherlock.SListActivity { ...
```
Also you should cast view to with the same name from package com.WazaBe.HoloEverywhere.widget, if possible. This, for example, ProgressBar and Spinner.

## Contact
Christophe: [Google Plus](https://plus.google.com/108315424589085456181/posts "Google Plus")
Expand Down
4 changes: 2 additions & 2 deletions demo/AndroidManifest.xml
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.WazaBe.HoloDemo"
android:versionCode="12"
android:versionName="1.2.3" >
android:versionCode="13"
android:versionName="1.2.4" >
<uses-sdk
android:minSdkVersion="4"
android:targetSdkVersion="16" />
Expand Down
2 changes: 1 addition & 1 deletion demo/pom.xml
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.github.christopheversieux</groupId>
<artifactId>holoeverywhere-parent</artifactId>
<version>1.2.3-SNAPSHOT</version>
<version>1.2.4</version>
</parent>
<dependencies>
<dependency>
Expand Down
4 changes: 2 additions & 2 deletions library/AndroidManifest.xml
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.WazaBe.HoloEverywhere"
android:versionCode="12"
android:versionName="1.2.3" >
android:versionCode="13"
android:versionName="1.2.4" >
<uses-sdk
android:minSdkVersion="4"
android:targetSdkVersion="16" />
Expand Down
2 changes: 1 addition & 1 deletion library/pom.xml
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.github.christopheversieux</groupId>
<artifactId>holoeverywhere-parent</artifactId>
<version>1.2.3-SNAPSHOT</version>
<version>1.2.4</version>
</parent>
<dependencies>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -9,7 +9,7 @@
<groupId>com.github.christopheversieux</groupId>
<artifactId>holoeverywhere-parent</artifactId>
<packaging>pom</packaging>
<version>1.2.3-SNAPSHOT</version>
<version>1.2.4</version>
<name>HoloEverywhere (Parent)</name>
<description>Android library bringing Holo Theme to Android 1.6 and above.</description>
<url>https://github.com/ChristopheVersieux/HoloEverywhere</url>
Expand Down
Binary file modified website/screen1.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified website/screen2.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified website/screen3.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified website/screen4.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified website/screen5.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified website/screen6.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified website/screen7.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified website/screen8.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit da77a76

Please sign in to comment.