Skip to content

Commit

Permalink
update sdk version
Browse files Browse the repository at this point in the history
  • Loading branch information
sunfusheng committed Feb 14, 2018
1 parent 65a6700 commit f1868e0
Show file tree
Hide file tree
Showing 13 changed files with 45 additions and 44 deletions.
46 changes: 20 additions & 26 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,31 +11,21 @@ StickyHeaderListView是基于实际需求做出的灵活可变的UI视图,具
七、实现了数据不足一屏动态添加空数据占位。
八、数据为空时ListView多type加载暂无数据视图。

### 动态效果图
<br/>

### 应用截图

<img src="/screenshots/stickyheader.gif" style="width: 30%;"/>
<img src="/resources/res.png">

<br/>

<img src="/screenshots/stickyheader2.gif" style="width: 30%;"/>

### 应用截图
### 动态效果图

<table>
<tr>
<td><img src="/screenshots/StickyHeaderListView2.png" style="width: 30%;"></td>
<td><img src="/screenshots/StickyHeaderListView3.png" style="width: 30%;"></td>
</tr>
</table>
<img src="/resources/stickyheader.gif" style="width: 20%;"/>

<br/>

<table>
<tr>
<td><img src="/screenshots/StickyHeaderListView4.png" style="width: 30%;"></td>
<td><img src="/screenshots/StickyHeaderListView5.png" style="width: 30%;"></td>
</tr>
</table>
<img src="/resources/stickyheader2.gif" style="width: 20%;"/>

<br/>

Expand All @@ -47,21 +37,25 @@ StickyHeaderListView是基于实际需求做出的灵活可变的UI视图,具

<br/>

### 微信公众号

<img src="/screenshots/微信公众号.jpg" style="width: 30%;">
### 关注我吧,让我们做朋友^_^

### 关于我
<img src="http://ourvm0t8d.bkt.clouddn.com/follow_me.png">

个人邮箱:sfsheng0322@126.com
### 打个赏吧,给作者加点油^_^

[GitHub主页](https://github.com/sfsheng0322)
<img src="http://ourvm0t8d.bkt.clouddn.com/reward_me.png" >

[简书主页](http://www.jianshu.com/users/88509e7e2ed1/latest_articles)
### 关于我

[个人博客](http://sunfusheng.com/)
[GitHub: sfsheng0322](https://github.com/sfsheng0322)

[新浪微博](http://weibo.com/u/3852192525)
[个人邮箱: sfsheng0322@126.com](https://mail.126.com/)

[个人博客: sunfusheng.com](http://sunfusheng.com/)

[简书主页](http://www.jianshu.com/users/88509e7e2ed1/latest_articles)

[新浪微博](http://weibo.com/u/3852192525)



Expand Down
26 changes: 12 additions & 14 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@ apply plugin: 'com.android.application'
apply plugin: 'com.jakewharton.butterknife'

android {
compileSdkVersion 26
buildToolsVersion '26.0.2'
compileSdkVersion gradle.compileSdkVersion
buildToolsVersion gradle.buildToolsVersion

defaultConfig {
applicationId "com.sunfusheng.StickyHeaderListView"
minSdkVersion 14
targetSdkVersion 26
versionCode 8
versionName "1.7"
minSdkVersion gradle.minSdkVersion
targetSdkVersion gradle.targetSdkVersion
versionCode gradle.versionCode
versionName gradle.versionName
}

buildTypes {
Expand All @@ -22,14 +22,12 @@ android {
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:26.1.0'
compile 'com.android.support:design:26.1.0'

// ButterKnife
compile 'com.jakewharton:butterknife:8.8.1'
annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1'
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:' + gradle.supportLibraryVersion
implementation 'com.android.support:design:' + gradle.supportLibraryVersion
implementation 'com.jakewharton:butterknife:8.4.0'
annotationProcessor 'com.jakewharton:butterknife-compiler:8.4.0'

// GlideImageView
compile 'com.sunfusheng:glideimageview:1.2.0'
implementation 'com.sunfusheng:glideimageview:1.2.0'
}
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.3'
classpath 'com.jakewharton:butterknife-gradle-plugin:8.8.1'
classpath 'com.android.tools.build:gradle:3.0.1'
classpath 'com.jakewharton:butterknife-gradle-plugin:8.4.0'
}
}

Expand Down
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Mon Dec 28 10:00:20 PST 2015
#Wed Nov 29 10:42:33 CST 2017
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.10-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-4.5-all.zip
Binary file added resources/res.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
File renamed without changes
Binary file removed screenshots/StickyHeaderListView2.png
Binary file not shown.
Binary file removed screenshots/StickyHeaderListView3.png
Binary file not shown.
Binary file removed screenshots/StickyHeaderListView4.png
Binary file not shown.
Binary file removed screenshots/StickyHeaderListView5.png
Binary file not shown.
Binary file removed screenshots/微信公众号.jpg
Binary file not shown.
9 changes: 9 additions & 0 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -1 +1,10 @@
include ':app'

gradle.ext.compileSdkVersion = 27
gradle.ext.buildToolsVersion = '27.0.3'
gradle.ext.supportLibraryVersion = '27.0.2'

gradle.ext.minSdkVersion = 14
gradle.ext.targetSdkVersion = 27
gradle.ext.versionCode = 8
gradle.ext.versionName = "1.7"

0 comments on commit f1868e0

Please sign in to comment.