@@ -10,30 +10,72 @@ I think, we need a hover view, to show menu, to show messages.
10
10
11
11
![ ] ( http://ww2.sinaimg.cn/mw690/610dc034jw1ej5iihjtl5g208z0f2npd.gif )
12
12
13
- Watch in [ YouTube] ( http://www.youtube.com/watch?v=bsDQbMTtPvM )
13
+ Watch HD in [ YouTube] ( http://www.youtube.com/watch?v=bsDQbMTtPvM ) .
14
14
15
+ ## Usage
15
16
16
- If you can not watch this video, please click this link:
17
+ ### Step0
17
18
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
+
19
30
20
31
### Step1
21
32
22
33
#### Gradle
23
34
``` groovy
24
35
dependencies {
25
36
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'
29
41
}
30
42
```
31
43
32
44
#### Maven
33
45
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
+
34
72
35
73
#### Eclipse
36
74
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
+ -
37
79
### Step2
38
80
39
81
![ ] ( http://ww4.sinaimg.cn/mw690/610dc034jw1ej5giogymhj20dw085q36.jpg )
@@ -75,7 +117,7 @@ dependencies {
75
117
sampleLayout.addChildDisappearAnimator(hover, R.id.heart, Techniques.FlipOutX);
76
118
```
77
119
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 ) .
79
121
80
122
# Thanks
81
123
0 commit comments