Skip to content

Commit bcf746c

Browse files
committed
Update README.md
1 parent ceac99d commit bcf746c

File tree

1 file changed

+49
-7
lines changed

1 file changed

+49
-7
lines changed

README.md

+49-7
Original file line numberDiff line numberDiff line change
@@ -10,30 +10,72 @@ I think, we need a hover view, to show menu, to show messages.
1010

1111
![](http://ww2.sinaimg.cn/mw690/610dc034jw1ej5iihjtl5g208z0f2npd.gif)
1212

13-
Watch in [YouTube](http://www.youtube.com/watch?v=bsDQbMTtPvM)
13+
Watch HD in [YouTube](http://www.youtube.com/watch?v=bsDQbMTtPvM).
1414

15+
## Usage
1516

16-
If you can not watch this video, please click this link:
17+
### Step0
1718

18-
## Usage
19+
Set up RenderScript
20+
21+
- Eclipse, please visit [official tutorial](http://developer.android.com/guide/topics/renderscript/compute.html#access-rs-apis).
22+
- Android Studio, add
23+
```groovy
24+
25+
renderscriptTargetApi 19
26+
renderscriptSupportMode true
27+
```
28+
in `build.gradle` `defaultConfig`, here is a [sample](https://github.com/daimajia/AndroidViewHover/blob/master/library/build.gradle#L12-L13)
29+
1930

2031
### Step1
2132

2233
#### Gradle
2334
```groovy
2435
dependencies {
2536
compile "com.android.support:support-v4:20.+"
26-
compile 'com.nineoldandroids:library:2.4.0'
27-
compile 'com.daimajia.easing:library:1.0.0@aar'
28-
compile 'com.daimajia.androidanimations:library:1.1.2@aar'
37+
compile 'com.nineoldandroids:library:2.4.0'
38+
compile 'com.daimajia.easing:library:1.0.0@aar'
39+
compile 'com.daimajia.androidanimations:library:1.1.2@aar'
40+
compile 'com.daimajia.androidviewhover:library:1.0.0@aar'
2941
}
3042
```
3143

3244
#### Maven
3345

46+
```xml
47+
<dependency>
48+
<groupId>com.nineoldandroids</groupId>
49+
<artifactId>library</artifactId>
50+
<version>2.4.0</version>
51+
</dependency>
52+
<dependency>
53+
<groupId>com.daimajia.androidanimation</groupId>
54+
<artifactId>library</artifactId>
55+
<version>1.1.2</version>
56+
<type>apklib</type>
57+
</dependency>
58+
<dependency>
59+
<groupId>com.daimajia.easing</groupId>
60+
<artifactId>library</artifactId>
61+
<version>1.0.0</version>
62+
<type>apklib</type>
63+
</dependency>
64+
<dependency>
65+
<groupId>com.daimajia.androidviewhover</groupId>
66+
<artifactId>library</artifactId>
67+
<version>1.0.0</version>
68+
<type>apklib</type>
69+
</dependency>
70+
```
71+
3472

3573
#### Eclipse
3674

75+
- [NineOldAndroids-2.4.0](https://github.com/downloads/JakeWharton/NineOldAndroids/nineoldandroids-2.4.0.jar)
76+
- [AndroidViewAnimations-1.1.2](https://github.com/daimajia/AndroidViewAnimations/releases/download/v1.1.2/AndroidViewAnimations-1.1.2.jar)
77+
- [AndroidEasingFunctions-1.0.0](https://github.com/daimajia/AndroidViewAnimations/releases/download/v1.0.6/AndroidEasingFunctions-1.0.0.jar)
78+
-
3779
### Step2
3880

3981
![](http://ww4.sinaimg.cn/mw690/610dc034jw1ej5giogymhj20dw085q36.jpg)
@@ -75,7 +117,7 @@ dependencies {
75117
sampleLayout.addChildDisappearAnimator(hover, R.id.heart, Techniques.FlipOutX);
76118
```
77119

78-
You can view the samples in my preset examples.
120+
You can view the samples in my [preset examples](https://github.com/daimajia/AndroidViewHover/blob/master/demo/src/main/java/com/daimajia/androidviewhover/demo/MainActivity.java).
79121

80122
# Thanks
81123

0 commit comments

Comments
 (0)