Skip to content

Commit

Permalink
change commit
Browse files Browse the repository at this point in the history
  • Loading branch information
yanyiqun001 committed Nov 21, 2017
1 parent 7ea2f05 commit 94e117d
Show file tree
Hide file tree
Showing 32 changed files with 24 additions and 2,022 deletions.
2 changes: 1 addition & 1 deletion .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ dependencies {
compile 'com.android.support:cardview-v7:26.1.0'
compile 'de.hdodenhof:circleimageview:2.2.0'


compile project(':refreshlayout')
compile project(':refreshlayout_lottie')

}
3 changes: 1 addition & 2 deletions app/src/main/java/com/refreshDemo/LottieActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,9 @@
import android.widget.LinearLayout;
import android.widget.TextView;

import com.GoRefesh_core.LottieView;
import com.GoRefresh.GoRefreshLayout;
import com.GoRefresh.LoadmoreListener;
import com.GoRefresh.LottieView;

import com.GoRefresh.RefreshListener;
import com.airbnb.lottie.LottieAnimationView;
import com.bumptech.glide.Glide;
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/java/com/refreshDemo/MyLottileView.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import android.content.Context;
import android.widget.TextView;

import com.GoRefresh.LottieView;
import com.GoRefesh_core.LottieView;

/**
* Created by Administrator on 2017/10/23 0023.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
import android.widget.ImageView;
import android.widget.TextView;

import com.GoRefesh_core.LottieView;
import com.GoRefresh.GoRefreshLayout;
import com.GoRefresh.LoadmoreListener;
import com.GoRefresh.LottieView;
import com.GoRefresh.RefreshListener;
import com.bumptech.glide.Glide;

Expand Down
10 changes: 4 additions & 6 deletions refreshlayout/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ apply plugin: 'com.github.dcendents.android-maven'

group='com.github.yanyiqun001'
android {
compileSdkVersion 26
buildToolsVersion "26.0.2"
compileSdkVersion 25
buildToolsVersion "25.0.2"

defaultConfig {
minSdkVersion 15
targetSdkVersion 26
targetSdkVersion 25
versionCode 1
versionName "1.0"

Expand All @@ -28,8 +28,6 @@ dependencies {
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:26.1.0'
compile 'com.android.support:recyclerview-v7:26.1.0'
compile 'com.android.support:recyclerview-v7:25.3.1'
testCompile 'junit:junit:4.12'
compile 'com.airbnb.android:lottie:2.2.5'
}
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ public DefaultHeaderLayout(@NonNull Context context) {

private void initView() {
mHeaderView=LayoutInflater.from(context).inflate(R.layout.headerview,null);
icon=mHeaderView.findViewById(R.id.arrow);
text=mHeaderView.findViewById(R.id.text);
progressBar=mHeaderView.findViewById(R.id.progressbar);
icon= (ImageView) mHeaderView.findViewById(R.id.arrow);
text= (TextView) mHeaderView.findViewById(R.id.text);
progressBar= (RingProgressBar) mHeaderView.findViewById(R.id.progressbar);
icon.setVisibility(View.VISIBLE);
icon.setImageResource(R.drawable.arrow);
}
Expand Down Expand Up @@ -97,7 +97,4 @@ private void reset() {
progressBar.stopAnimation();
}




}

This file was deleted.

This file was deleted.

Loading

0 comments on commit 94e117d

Please sign in to comment.