We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ee3bf1 commit 7ab1996Copy full SHA for 7ab1996
README.md
@@ -3,6 +3,30 @@
3
2. 支持手势显示当前值
4
3. 支持当前的区域颜色渐变
5
4. 
6
+> # Get it
7
+Add it in your root build.gradle at the end of repositories:
8
+```groovy
9
+allprojects {
10
+ repositories {
11
+ ...
12
+ maven { url "https://jitpack.io" }
13
+ }
14
+}
15
+```
16
+Add the dependency
17
18
+dependencies {
19
+ compile 'compile 'com.allen.linechart:linechart:0.0.1'
20
21
22
23
+<dependency>
24
+ <groupId>com.allen.linechart</groupId>
25
+ <artifactId>linechart</artifactId>
26
+ <version>0.0.1</version>
27
+ <type>pom</type>
28
+</dependency>
29
30
5.如果ListView中的单个Item的view中存在checkbox,button等view,会导致ListView.setOnItemClickListener无效,
31
事件会被子View捕获到,ListView无法捕获处理该事件.
32
解决方法:
0 commit comments