tngou) {
20 | this.tngou = tngou;
21 | }
22 |
23 | public boolean isStatus() {
24 | return status;
25 | }
26 |
27 | public void setStatus(boolean status) {
28 | this.status = status;
29 | }
30 |
31 | public String getTotal() {
32 | return total;
33 | }
34 |
35 | public void setTotal(String total) {
36 | this.total = total;
37 | }
38 |
39 |
40 | @Override
41 | public String toString() {
42 | return "CKListData{" +
43 | "tngou=" + tngou +
44 | ", total='" + total + '\'' +
45 | ", status=" + status +
46 | '}';
47 | }
48 | }
49 |
--------------------------------------------------------------------------------
/CookBook/app/src/main/java/com/example/wcg/cookbook/Model/Classfy/ErrorModel.java:
--------------------------------------------------------------------------------
1 | package com.example.wcg.cookbook.Model.Classfy;
2 |
3 | import java.security.PublicKey;
4 |
5 | /**
6 | * Created by wcg on 16/3/8.
7 | */
8 | public class ErrorModel {
9 |
10 | private String errNum;
11 | private String errMsg;
12 |
13 |
14 | public String getErrNum() {
15 | return errNum;
16 | }
17 |
18 | public void setErrNum(String errNum) {
19 | this.errNum = errNum;
20 | }
21 |
22 | public String getErrMsg() {
23 | return errMsg;
24 | }
25 |
26 | public void setErrMsg(String errMsg) {
27 | this.errMsg = errMsg;
28 | }
29 |
30 | public static ErrorModel requestFail(String errorMsg){
31 | ErrorModel errorModel =new ErrorModel();
32 | errorModel.errMsg = errorMsg;
33 | errorModel.errNum = "0";
34 | return errorModel;
35 | }
36 |
37 | }
38 |
--------------------------------------------------------------------------------
/CookBook/app/src/main/java/com/example/wcg/cookbook/Utils/Dimension.java:
--------------------------------------------------------------------------------
1 | package com.example.wcg.cookbook.Utils;
2 |
3 | import android.content.Context;
4 |
5 | /**
6 | * android显示器尺寸转换工具类.
7 | *
8 | * @author 赵尉尉
9 | */
10 | public class Dimension {
11 |
12 | private Dimension(){
13 |
14 | }
15 |
16 | /**
17 | * dp转px
18 | * @param context 上下文
19 | * @param value dp值
20 | * @return
21 | */
22 | public static int dp2px(Context context, float value){
23 | final float scale = Screen.getDensity(context);
24 | return (int)(value * scale + 0.5f);
25 | }
26 |
27 | /**
28 | * px转dp
29 | * @param context 上下文
30 | * @param value px值
31 | * @return
32 | */
33 | public static int px2dp(Context context, float value){
34 | final float scale = Screen.getDensity(context);
35 | return (int)(value / scale + 0.5f);
36 | }
37 |
38 | /**
39 | * sp转px
40 | * @param context 上下文
41 | * @param value sp值
42 | * @return
43 | */
44 | public static int sp2px(Context context, float value){
45 | final float scale = Screen.getDensity(context);
46 | return (int)(value * scale +0.5f);
47 | }
48 |
49 | /**
50 | * px转sp
51 | * @param context 上下文
52 | * @param value px值
53 | * @return
54 | */
55 | public static int px2sp(Context context, float value){
56 | final float scale = Screen.getDensity(context);
57 | return (int) (value / scale + 0.5f);
58 | }
59 |
60 | }
61 |
--------------------------------------------------------------------------------
/CookBook/app/src/main/java/com/example/wcg/cookbook/View/CKEmptyView.java:
--------------------------------------------------------------------------------
1 | package com.example.wcg.cookbook.View;
2 |
3 | import android.content.Context;
4 | import android.util.AttributeSet;
5 | import android.view.Gravity;
6 | import android.view.ViewGroup;
7 | import android.widget.RelativeLayout;
8 | import android.widget.TextView;
9 |
10 | /**
11 | * Created by wcg on 16/3/28.
12 | */
13 | public class CKEmptyView extends RelativeLayout {
14 |
15 | private TextView textView;
16 |
17 | public CKEmptyView(Context context) {
18 | super(context);
19 | init(context);
20 | }
21 |
22 | public CKEmptyView(Context context, AttributeSet attrs) {
23 | super(context, attrs);
24 | init(context);
25 | }
26 |
27 | public CKEmptyView(Context context, AttributeSet attrs, int defStyleAttr) {
28 | super(context, attrs, defStyleAttr);
29 | init(context);
30 | }
31 |
32 | public void init(Context context){
33 |
34 | textView = new TextView(context);
35 | textView.setText("没有找到相应菜谱!");
36 | LayoutParams layoutParams = new LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT);
37 | layoutParams.addRule(Gravity.CENTER);
38 | layoutParams.addRule(CENTER_IN_PARENT);
39 | addView(textView, layoutParams);
40 |
41 | }
42 | }
43 |
--------------------------------------------------------------------------------
/CookBook/app/src/main/res/drawable-xhdpi/cart_add_btn_normal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/app/src/main/res/drawable-xhdpi/cart_add_btn_normal.png
--------------------------------------------------------------------------------
/CookBook/app/src/main/res/drawable-xhdpi/cart_add_btn_press.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/app/src/main/res/drawable-xhdpi/cart_add_btn_press.png
--------------------------------------------------------------------------------
/CookBook/app/src/main/res/drawable-xhdpi/comment_default_photo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/app/src/main/res/drawable-xhdpi/comment_default_photo.png
--------------------------------------------------------------------------------
/CookBook/app/src/main/res/drawable-xhdpi/common_go_back_normal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/app/src/main/res/drawable-xhdpi/common_go_back_normal.png
--------------------------------------------------------------------------------
/CookBook/app/src/main/res/drawable-xhdpi/common_go_back_press.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/app/src/main/res/drawable-xhdpi/common_go_back_press.png
--------------------------------------------------------------------------------
/CookBook/app/src/main/res/drawable-xhdpi/dash_gap.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/CookBook/app/src/main/res/drawable-xhdpi/detail_collected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/app/src/main/res/drawable-xhdpi/detail_collected.png
--------------------------------------------------------------------------------
/CookBook/app/src/main/res/drawable-xhdpi/ic_main_tab_selector1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/CookBook/app/src/main/res/drawable-xhdpi/ic_main_tab_selector2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/CookBook/app/src/main/res/drawable-xhdpi/ic_main_tab_selector3.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/CookBook/app/src/main/res/drawable-xhdpi/navigation_cartbutton_normal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/app/src/main/res/drawable-xhdpi/navigation_cartbutton_normal.png
--------------------------------------------------------------------------------
/CookBook/app/src/main/res/drawable-xhdpi/navigation_cartbutton_press.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/app/src/main/res/drawable-xhdpi/navigation_cartbutton_press.png
--------------------------------------------------------------------------------
/CookBook/app/src/main/res/drawable-xhdpi/navigation_datebutton_normal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/app/src/main/res/drawable-xhdpi/navigation_datebutton_normal.png
--------------------------------------------------------------------------------
/CookBook/app/src/main/res/drawable-xhdpi/navigation_datebutton_press.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/app/src/main/res/drawable-xhdpi/navigation_datebutton_press.png
--------------------------------------------------------------------------------
/CookBook/app/src/main/res/drawable-xhdpi/navigation_homebutton_normal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/app/src/main/res/drawable-xhdpi/navigation_homebutton_normal.png
--------------------------------------------------------------------------------
/CookBook/app/src/main/res/drawable-xhdpi/navigation_homebutton_press.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/app/src/main/res/drawable-xhdpi/navigation_homebutton_press.png
--------------------------------------------------------------------------------
/CookBook/app/src/main/res/drawable-xhdpi/navigation_mystorebutton_normal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/app/src/main/res/drawable-xhdpi/navigation_mystorebutton_normal.png
--------------------------------------------------------------------------------
/CookBook/app/src/main/res/drawable-xhdpi/navigation_mystorebutton_press.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/app/src/main/res/drawable-xhdpi/navigation_mystorebutton_press.png
--------------------------------------------------------------------------------
/CookBook/app/src/main/res/drawable-xhdpi/pay_checkout_arrow_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/app/src/main/res/drawable-xhdpi/pay_checkout_arrow_right.png
--------------------------------------------------------------------------------
/CookBook/app/src/main/res/drawable-xhdpi/shape_textview.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
10 |
--------------------------------------------------------------------------------
/CookBook/app/src/main/res/drawable-xxxhdpi/ic_main_tab_checked.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/app/src/main/res/drawable-xxxhdpi/ic_main_tab_checked.png
--------------------------------------------------------------------------------
/CookBook/app/src/main/res/drawable-xxxhdpi/ic_main_tab_normal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/app/src/main/res/drawable-xxxhdpi/ic_main_tab_normal.png
--------------------------------------------------------------------------------
/CookBook/app/src/main/res/drawable/classify_cell_selector.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/CookBook/app/src/main/res/drawable/common_go_back_image.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/CookBook/app/src/main/res/drawable/ic_main_tab_selector.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/CookBook/app/src/main/res/drawable/tab_text_color_selector.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/CookBook/app/src/main/res/layout/activity_main.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/CookBook/app/src/main/res/layout/classify_drawer_cell.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
15 |
16 |
28 |
29 |
30 |
--------------------------------------------------------------------------------
/CookBook/app/src/main/res/layout/fragment_classify.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
6 |
12 |
13 |
--------------------------------------------------------------------------------
/CookBook/app/src/main/res/layout/fragment_detail.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
12 |
13 |
--------------------------------------------------------------------------------
/CookBook/app/src/main/res/layout/fragment_list.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
19 |
20 |
21 |
22 |
--------------------------------------------------------------------------------
/CookBook/app/src/main/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/app/src/main/res/mipmap-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/CookBook/app/src/main/res/mipmap-hdpi/my_icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/app/src/main/res/mipmap-hdpi/my_icon.png
--------------------------------------------------------------------------------
/CookBook/app/src/main/res/mipmap-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/app/src/main/res/mipmap-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/CookBook/app/src/main/res/mipmap-mdpi/my_icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/app/src/main/res/mipmap-mdpi/my_icon.png
--------------------------------------------------------------------------------
/CookBook/app/src/main/res/mipmap-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/app/src/main/res/mipmap-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/CookBook/app/src/main/res/mipmap-xhdpi/my_icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/app/src/main/res/mipmap-xhdpi/my_icon.png
--------------------------------------------------------------------------------
/CookBook/app/src/main/res/mipmap-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/CookBook/app/src/main/res/mipmap-xxhdpi/my_icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/app/src/main/res/mipmap-xxhdpi/my_icon.png
--------------------------------------------------------------------------------
/CookBook/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/CookBook/app/src/main/res/values-w820dp/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 | 64dp
6 |
7 |
--------------------------------------------------------------------------------
/CookBook/app/src/main/res/values/colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #3F51B5
4 | #303F9F
5 | #FF4081
6 | #d8d8d8
7 | #CCCCCC
8 | #000000
9 | #C0C0C0
10 | #FFFFFF
11 | #db384c
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/CookBook/app/src/main/res/values/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 16dp
4 | 16dp
5 |
6 |
--------------------------------------------------------------------------------
/CookBook/app/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | 小孟菜谱
3 | "09b836726e8224a7abfe31b82129ddbf"
4 | http://apis.baidu.com/tngou/cook/name
5 | http://apis.baidu.com/tngou/cook/show
6 | http://apis.baidu.com/tngou/cook/list
7 | http://apis.baidu.com/tngou/cook/classify
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/CookBook/app/src/main/res/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/CookBook/app/src/main/res/values/topBarAtts.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/CookBook/app/src/test/java/com/example/wcg/cookbook/ExampleUnitTest.java:
--------------------------------------------------------------------------------
1 | package com.example.wcg.cookbook;
2 |
3 | import org.junit.Test;
4 |
5 | import static org.junit.Assert.*;
6 |
7 | /**
8 | * To work on unit tests, switch the Test Artifact in the Build Variants view.
9 | */
10 | public class ExampleUnitTest {
11 | @Test
12 | public void addition_isCorrect() throws Exception {
13 | assertEquals(4, 2 + 2);
14 | }
15 | }
--------------------------------------------------------------------------------
/CookBook/build.gradle:
--------------------------------------------------------------------------------
1 | // Top-level build file where you can add configuration options common to all sub-projects/modules.
2 |
3 | buildscript {
4 | repositories {
5 | jcenter()
6 | }
7 | dependencies {
8 | classpath 'com.android.tools.build:gradle:1.3.0'
9 |
10 | // NOTE: Do not place your application dependencies here; they belong
11 | // in the individual module build.gradle files
12 | }
13 | }
14 |
15 | allprojects {
16 | repositories {
17 | jcenter()
18 | }
19 | }
20 |
21 | task clean(type: Delete) {
22 | delete rootProject.buildDir
23 | }
24 |
--------------------------------------------------------------------------------
/CookBook/gradle.properties:
--------------------------------------------------------------------------------
1 | # Project-wide Gradle settings.
2 |
3 | # IDE (e.g. Android Studio) users:
4 | # Gradle settings configured through the IDE *will override*
5 | # any settings specified in this file.
6 |
7 | # For more details on how to configure your build environment visit
8 | # http://www.gradle.org/docs/current/userguide/build_environment.html
9 |
10 | # Specifies the JVM arguments used for the daemon process.
11 | # The setting is particularly useful for tweaking memory settings.
12 | # Default value: -Xmx10248m -XX:MaxPermSize=256m
13 | # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
14 |
15 | # When configured, Gradle will run in incubating parallel mode.
16 | # This option should only be used with decoupled projects. More details, visit
17 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
18 | # org.gradle.parallel=true
--------------------------------------------------------------------------------
/CookBook/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/CookBook/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Mon Mar 07 14:00:07 CST 2016
2 | distributionBase=GRADLE_USER_HOME
3 | distributionPath=wrapper/dists
4 | zipStoreBase=GRADLE_USER_HOME
5 | zipStorePath=wrapper/dists
6 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.4-all.zip
7 |
--------------------------------------------------------------------------------
/CookBook/library/build.gradle:
--------------------------------------------------------------------------------
1 | apply plugin: 'com.android.library'
2 |
3 | android {
4 | compileSdkVersion 16
5 | buildToolsVersion "19.1.0"
6 |
7 | defaultConfig {
8 | minSdkVersion 4
9 | targetSdkVersion 4
10 | }
11 |
12 | buildTypes {
13 | release {
14 | minifyEnabled false
15 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
16 | }
17 | }
18 | }
19 |
--------------------------------------------------------------------------------
/CookBook/library/build/generated/source/buildConfig/androidTest/debug/com/handmark/pulltorefresh/library/test/BuildConfig.java:
--------------------------------------------------------------------------------
1 | /**
2 | * Automatically generated file. DO NOT MODIFY
3 | */
4 | package com.handmark.pulltorefresh.library.test;
5 |
6 | public final class BuildConfig {
7 | public static final boolean DEBUG = Boolean.parseBoolean("true");
8 | public static final String APPLICATION_ID = "com.handmark.pulltorefresh.library.test";
9 | public static final String BUILD_TYPE = "debug";
10 | public static final String FLAVOR = "";
11 | public static final int VERSION_CODE = -1;
12 | public static final String VERSION_NAME = "";
13 | }
14 |
--------------------------------------------------------------------------------
/CookBook/library/build/generated/source/buildConfig/debug/com/handmark/pulltorefresh/library/BuildConfig.java:
--------------------------------------------------------------------------------
1 | /**
2 | * Automatically generated file. DO NOT MODIFY
3 | */
4 | package com.handmark.pulltorefresh.library;
5 |
6 | public final class BuildConfig {
7 | public static final boolean DEBUG = Boolean.parseBoolean("true");
8 | public static final String APPLICATION_ID = "com.handmark.pulltorefresh.library";
9 | public static final String BUILD_TYPE = "debug";
10 | public static final String FLAVOR = "";
11 | public static final int VERSION_CODE = 2110;
12 | public static final String VERSION_NAME = "";
13 | }
14 |
--------------------------------------------------------------------------------
/CookBook/library/build/generated/source/buildConfig/release/com/handmark/pulltorefresh/library/BuildConfig.java:
--------------------------------------------------------------------------------
1 | /**
2 | * Automatically generated file. DO NOT MODIFY
3 | */
4 | package com.handmark.pulltorefresh.library;
5 |
6 | public final class BuildConfig {
7 | public static final boolean DEBUG = false;
8 | public static final String APPLICATION_ID = "com.handmark.pulltorefresh.library";
9 | public static final String BUILD_TYPE = "release";
10 | public static final String FLAVOR = "";
11 | public static final int VERSION_CODE = 2110;
12 | public static final String VERSION_NAME = "";
13 | }
14 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/debug/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/debug/aapt/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/debug/classes.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/bundles/debug/classes.jar
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/debug/res/anim/slide_in_from_bottom.xml:
--------------------------------------------------------------------------------
1 |
2 |
17 |
18 |
22 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/debug/res/anim/slide_in_from_top.xml:
--------------------------------------------------------------------------------
1 |
2 |
17 |
18 |
22 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/debug/res/anim/slide_out_to_bottom.xml:
--------------------------------------------------------------------------------
1 |
2 |
17 |
18 |
22 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/debug/res/anim/slide_out_to_top.xml:
--------------------------------------------------------------------------------
1 |
2 |
17 |
18 |
22 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/debug/res/drawable-hdpi-v4/default_ptr_flip.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/bundles/debug/res/drawable-hdpi-v4/default_ptr_flip.png
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/debug/res/drawable-hdpi-v4/default_ptr_rotate.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/bundles/debug/res/drawable-hdpi-v4/default_ptr_rotate.png
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/debug/res/drawable-hdpi-v4/indicator_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/bundles/debug/res/drawable-hdpi-v4/indicator_arrow.png
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/debug/res/drawable-mdpi-v4/default_ptr_flip.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/bundles/debug/res/drawable-mdpi-v4/default_ptr_flip.png
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/debug/res/drawable-mdpi-v4/default_ptr_rotate.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/bundles/debug/res/drawable-mdpi-v4/default_ptr_rotate.png
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/debug/res/drawable-mdpi-v4/indicator_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/bundles/debug/res/drawable-mdpi-v4/indicator_arrow.png
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/default_ptr_flip.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/default_ptr_flip.png
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/default_ptr_rotate.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/default_ptr_rotate.png
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/indicator_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/indicator_arrow.png
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/debug/res/drawable/indicator_bg_bottom.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
7 |
11 |
17 |
18 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/debug/res/drawable/indicator_bg_top.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
7 |
11 |
17 |
18 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/debug/res/layout/pull_to_refresh_header_horizontal.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
12 |
13 |
18 |
19 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/debug/res/values-ar/values-ar.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | اسحب للتحديث…
6 | تحميل…
7 | اترك للتحديث…
8 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/debug/res/values-cs/values-cs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Tažením aktualizujete…
6 | Načítání…
7 | Uvolněním aktualizujete…
8 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/debug/res/values-de/values-de.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Ziehen zum Aktualisieren…
6 | Laden…
7 | Loslassen zum Aktualisieren…
8 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/debug/res/values-es/values-es.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Tirar para actualizar…
6 | Cargando…
7 | Soltar para actualizar…
8 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/debug/res/values-fi/values-fi.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Päivitä vetämällä ylös…
6 | @string/pull_to_refresh_refreshing_label
7 | @string/pull_to_refresh_release_label
8 | Päivitä vetämällä alas…
9 | Päivitetään…
10 | Päivitä vapauttamalla…
11 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/debug/res/values-fr/values-fr.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Tirez pour rafraîchir…
6 | Chargement…
7 | Relâcher pour rafraîchir…
8 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/debug/res/values-he/values-he.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | משוך לרענון…
6 | טוען…
7 | שחרר לרענון…
8 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/debug/res/values-it/values-it.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Tira per aggiornare…
6 | Caricamento…
7 | Rilascia per aggionare…
8 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/debug/res/values-iw/values-iw.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | משוך לרענון…
6 | טוען…
7 | שחרר לרענון…
8 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/debug/res/values-ja/values-ja.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | 画面を引っ張って…
6 | 読み込み中…
7 | 指を離して更新…
8 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/debug/res/values-ko/values-ko.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | 당겨서 새로 고침…
6 | 로드 중…
7 | 놓아서 새로 고침…
8 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/debug/res/values-nl/values-nl.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Sleep om te vernieuwen…
6 | Laden…
7 | Loslaten om te vernieuwen…
8 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/debug/res/values-pl/values-pl.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Pociągnij, aby odświeżyć…
6 | Wczytywanie…
7 | Puść, aby odświeżyć…
8 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/debug/res/values-pt-rBR/values-pt-rBR.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Puxe para atualizar…
6 | Carregando…
7 | Libere para atualizar…
8 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/debug/res/values-pt/values-pt.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Puxe para atualizar…
6 | A carregar…
7 | Liberação para atualizar…
8 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/debug/res/values-ro/values-ro.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Trage pentru a reîmprospăta…
6 | Încărcare…
7 | Eliberează pentru a reîmprospăta…
8 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/debug/res/values-ru/values-ru.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Потяните для обновления…
6 | Загрузка…
7 | Отпустите для обновления…
8 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/debug/res/values-zh/values-zh.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | 下拉刷新…
6 | 正在载入…
7 | 放开以刷新…
8 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/release/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/release/aapt/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/release/classes.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/bundles/release/classes.jar
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/release/res/anim/slide_in_from_bottom.xml:
--------------------------------------------------------------------------------
1 |
2 |
17 |
18 |
22 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/release/res/anim/slide_in_from_top.xml:
--------------------------------------------------------------------------------
1 |
2 |
17 |
18 |
22 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/release/res/anim/slide_out_to_bottom.xml:
--------------------------------------------------------------------------------
1 |
2 |
17 |
18 |
22 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/release/res/anim/slide_out_to_top.xml:
--------------------------------------------------------------------------------
1 |
2 |
17 |
18 |
22 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/release/res/drawable-hdpi-v4/default_ptr_flip.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/bundles/release/res/drawable-hdpi-v4/default_ptr_flip.png
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/release/res/drawable-hdpi-v4/default_ptr_rotate.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/bundles/release/res/drawable-hdpi-v4/default_ptr_rotate.png
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/release/res/drawable-hdpi-v4/indicator_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/bundles/release/res/drawable-hdpi-v4/indicator_arrow.png
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/release/res/drawable-mdpi-v4/default_ptr_flip.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/bundles/release/res/drawable-mdpi-v4/default_ptr_flip.png
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/release/res/drawable-mdpi-v4/default_ptr_rotate.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/bundles/release/res/drawable-mdpi-v4/default_ptr_rotate.png
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/release/res/drawable-mdpi-v4/indicator_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/bundles/release/res/drawable-mdpi-v4/indicator_arrow.png
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/release/res/drawable-xhdpi-v4/default_ptr_flip.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/bundles/release/res/drawable-xhdpi-v4/default_ptr_flip.png
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/release/res/drawable-xhdpi-v4/default_ptr_rotate.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/bundles/release/res/drawable-xhdpi-v4/default_ptr_rotate.png
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/release/res/drawable-xhdpi-v4/indicator_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/bundles/release/res/drawable-xhdpi-v4/indicator_arrow.png
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/release/res/drawable/indicator_bg_bottom.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
7 |
11 |
17 |
18 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/release/res/drawable/indicator_bg_top.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
7 |
11 |
17 |
18 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/release/res/layout/pull_to_refresh_header_horizontal.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
12 |
13 |
18 |
19 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/release/res/values-ar/values-ar.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | اسحب للتحديث…
6 | تحميل…
7 | اترك للتحديث…
8 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/release/res/values-cs/values-cs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Tažením aktualizujete…
6 | Načítání…
7 | Uvolněním aktualizujete…
8 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/release/res/values-de/values-de.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Ziehen zum Aktualisieren…
6 | Laden…
7 | Loslassen zum Aktualisieren…
8 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/release/res/values-es/values-es.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Tirar para actualizar…
6 | Cargando…
7 | Soltar para actualizar…
8 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/release/res/values-fi/values-fi.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Päivitä vetämällä ylös…
6 | @string/pull_to_refresh_refreshing_label
7 | @string/pull_to_refresh_release_label
8 | Päivitä vetämällä alas…
9 | Päivitetään…
10 | Päivitä vapauttamalla…
11 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/release/res/values-fr/values-fr.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Tirez pour rafraîchir…
6 | Chargement…
7 | Relâcher pour rafraîchir…
8 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/release/res/values-he/values-he.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | משוך לרענון…
6 | טוען…
7 | שחרר לרענון…
8 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/release/res/values-it/values-it.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Tira per aggiornare…
6 | Caricamento…
7 | Rilascia per aggionare…
8 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/release/res/values-iw/values-iw.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | משוך לרענון…
6 | טוען…
7 | שחרר לרענון…
8 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/release/res/values-ja/values-ja.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | 画面を引っ張って…
6 | 読み込み中…
7 | 指を離して更新…
8 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/release/res/values-ko/values-ko.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | 당겨서 새로 고침…
6 | 로드 중…
7 | 놓아서 새로 고침…
8 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/release/res/values-nl/values-nl.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Sleep om te vernieuwen…
6 | Laden…
7 | Loslaten om te vernieuwen…
8 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/release/res/values-pl/values-pl.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Pociągnij, aby odświeżyć…
6 | Wczytywanie…
7 | Puść, aby odświeżyć…
8 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/release/res/values-pt-rBR/values-pt-rBR.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Puxe para atualizar…
6 | Carregando…
7 | Libere para atualizar…
8 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/release/res/values-pt/values-pt.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Puxe para atualizar…
6 | A carregar…
7 | Liberação para atualizar…
8 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/release/res/values-ro/values-ro.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Trage pentru a reîmprospăta…
6 | Încărcare…
7 | Eliberează pentru a reîmprospăta…
8 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/release/res/values-ru/values-ru.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Потяните для обновления…
6 | Загрузка…
7 | Отпустите для обновления…
8 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/bundles/release/res/values-zh/values-zh.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | 下拉刷新…
6 | 正在载入…
7 | 放开以刷新…
8 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/androidTest/debug/com/handmark/pulltorefresh/library/R$anim.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/androidTest/debug/com/handmark/pulltorefresh/library/R$anim.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/androidTest/debug/com/handmark/pulltorefresh/library/R$attr.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/androidTest/debug/com/handmark/pulltorefresh/library/R$attr.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/androidTest/debug/com/handmark/pulltorefresh/library/R$dimen.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/androidTest/debug/com/handmark/pulltorefresh/library/R$dimen.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/androidTest/debug/com/handmark/pulltorefresh/library/R$drawable.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/androidTest/debug/com/handmark/pulltorefresh/library/R$drawable.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/androidTest/debug/com/handmark/pulltorefresh/library/R$id.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/androidTest/debug/com/handmark/pulltorefresh/library/R$id.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/androidTest/debug/com/handmark/pulltorefresh/library/R$layout.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/androidTest/debug/com/handmark/pulltorefresh/library/R$layout.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/androidTest/debug/com/handmark/pulltorefresh/library/R$string.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/androidTest/debug/com/handmark/pulltorefresh/library/R$string.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/androidTest/debug/com/handmark/pulltorefresh/library/R$styleable.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/androidTest/debug/com/handmark/pulltorefresh/library/R$styleable.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/androidTest/debug/com/handmark/pulltorefresh/library/R.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/androidTest/debug/com/handmark/pulltorefresh/library/R.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/androidTest/debug/com/handmark/pulltorefresh/library/test/BuildConfig.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/androidTest/debug/com/handmark/pulltorefresh/library/test/BuildConfig.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/androidTest/debug/com/handmark/pulltorefresh/library/test/R$anim.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/androidTest/debug/com/handmark/pulltorefresh/library/test/R$anim.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/androidTest/debug/com/handmark/pulltorefresh/library/test/R$attr.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/androidTest/debug/com/handmark/pulltorefresh/library/test/R$attr.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/androidTest/debug/com/handmark/pulltorefresh/library/test/R$dimen.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/androidTest/debug/com/handmark/pulltorefresh/library/test/R$dimen.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/androidTest/debug/com/handmark/pulltorefresh/library/test/R$drawable.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/androidTest/debug/com/handmark/pulltorefresh/library/test/R$drawable.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/androidTest/debug/com/handmark/pulltorefresh/library/test/R$id.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/androidTest/debug/com/handmark/pulltorefresh/library/test/R$id.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/androidTest/debug/com/handmark/pulltorefresh/library/test/R$layout.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/androidTest/debug/com/handmark/pulltorefresh/library/test/R$layout.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/androidTest/debug/com/handmark/pulltorefresh/library/test/R$string.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/androidTest/debug/com/handmark/pulltorefresh/library/test/R$string.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/androidTest/debug/com/handmark/pulltorefresh/library/test/R$styleable.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/androidTest/debug/com/handmark/pulltorefresh/library/test/R$styleable.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/androidTest/debug/com/handmark/pulltorefresh/library/test/R.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/androidTest/debug/com/handmark/pulltorefresh/library/test/R.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/BuildConfig.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/BuildConfig.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/ILoadingLayout.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/ILoadingLayout.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/IPullToRefresh.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/IPullToRefresh.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/LoadingLayoutProxy.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/LoadingLayoutProxy.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/OverscrollHelper$1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/OverscrollHelper$1.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/OverscrollHelper.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/OverscrollHelper.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshAdapterViewBase$1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshAdapterViewBase$1.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshAdapterViewBase.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshAdapterViewBase.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshBase$1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshBase$1.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshBase$2.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshBase$2.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshBase$3.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshBase$3.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshBase$4.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshBase$4.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshBase$AnimationStyle.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshBase$AnimationStyle.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshBase$Mode.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshBase$Mode.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshBase$OnLastItemVisibleListener.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshBase$OnLastItemVisibleListener.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshBase$OnPullEventListener.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshBase$OnPullEventListener.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshBase$OnRefreshListener.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshBase$OnRefreshListener.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshBase$OnRefreshListener2.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshBase$OnRefreshListener2.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshBase$OnSmoothScrollFinishedListener.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshBase$OnSmoothScrollFinishedListener.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshBase$Orientation.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshBase$Orientation.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshBase$SmoothScrollRunnable.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshBase$SmoothScrollRunnable.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshBase$State.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshBase$State.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshBase.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshBase.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshExpandableListView$InternalExpandableListView.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshExpandableListView$InternalExpandableListView.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshExpandableListView$InternalExpandableListViewSDK9.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshExpandableListView$InternalExpandableListViewSDK9.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshExpandableListView.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshExpandableListView.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshGridView$InternalGridView.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshGridView$InternalGridView.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshGridView$InternalGridViewSDK9.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshGridView$InternalGridViewSDK9.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshGridView.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshGridView.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshHorizontalScrollView$InternalHorizontalScrollViewSDK9.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshHorizontalScrollView$InternalHorizontalScrollViewSDK9.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshHorizontalScrollView.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshHorizontalScrollView.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshListView$1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshListView$1.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshListView$InternalListView.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshListView$InternalListView.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshListView$InternalListViewSDK9.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshListView$InternalListViewSDK9.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshListView.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshListView.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshScrollView$InternalScrollViewSDK9.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshScrollView$InternalScrollViewSDK9.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshScrollView.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshScrollView.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshWebView$1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshWebView$1.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshWebView$2.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshWebView$2.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshWebView$InternalWebViewSDK9.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshWebView$InternalWebViewSDK9.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshWebView.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshWebView.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/R$anim.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/R$anim.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/R$attr.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/R$attr.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/R$dimen.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/R$dimen.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/R$drawable.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/R$drawable.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/R$id.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/R$id.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/R$layout.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/R$layout.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/R$string.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/R$string.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/R$styleable.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/R$styleable.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/R.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/R.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/extras/PullToRefreshWebView2$JsValueCallback.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/extras/PullToRefreshWebView2$JsValueCallback.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/extras/PullToRefreshWebView2.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/extras/PullToRefreshWebView2.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/extras/SoundPullEventListener.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/extras/SoundPullEventListener.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/internal/EmptyViewMethodAccessor.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/internal/EmptyViewMethodAccessor.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/internal/FlipLoadingLayout$1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/internal/FlipLoadingLayout$1.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/internal/FlipLoadingLayout.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/internal/FlipLoadingLayout.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/internal/IndicatorLayout$1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/internal/IndicatorLayout$1.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/internal/IndicatorLayout.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/internal/IndicatorLayout.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/internal/LoadingLayout$1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/internal/LoadingLayout$1.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/internal/LoadingLayout.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/internal/LoadingLayout.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/internal/RotateLoadingLayout.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/internal/RotateLoadingLayout.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/internal/Utils.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/internal/Utils.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/internal/ViewCompat$SDK11.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/internal/ViewCompat$SDK11.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/internal/ViewCompat$SDK16.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/internal/ViewCompat$SDK16.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/internal/ViewCompat.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/internal/ViewCompat.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/BuildConfig.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/BuildConfig.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/ILoadingLayout.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/ILoadingLayout.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/IPullToRefresh.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/IPullToRefresh.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/LoadingLayoutProxy.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/LoadingLayoutProxy.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/OverscrollHelper$1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/OverscrollHelper$1.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/OverscrollHelper.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/OverscrollHelper.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshAdapterViewBase$1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshAdapterViewBase$1.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshAdapterViewBase.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshAdapterViewBase.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshBase$1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshBase$1.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshBase$2.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshBase$2.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshBase$3.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshBase$3.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshBase$4.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshBase$4.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshBase$AnimationStyle.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshBase$AnimationStyle.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshBase$Mode.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshBase$Mode.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshBase$OnLastItemVisibleListener.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshBase$OnLastItemVisibleListener.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshBase$OnPullEventListener.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshBase$OnPullEventListener.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshBase$OnRefreshListener.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshBase$OnRefreshListener.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshBase$OnRefreshListener2.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshBase$OnRefreshListener2.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshBase$OnSmoothScrollFinishedListener.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshBase$OnSmoothScrollFinishedListener.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshBase$Orientation.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshBase$Orientation.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshBase$SmoothScrollRunnable.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshBase$SmoothScrollRunnable.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshBase$State.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshBase$State.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshBase.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshBase.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshExpandableListView$InternalExpandableListView.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshExpandableListView$InternalExpandableListView.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshExpandableListView$InternalExpandableListViewSDK9.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshExpandableListView$InternalExpandableListViewSDK9.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshExpandableListView.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshExpandableListView.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshGridView$InternalGridView.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshGridView$InternalGridView.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshGridView$InternalGridViewSDK9.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshGridView$InternalGridViewSDK9.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshGridView.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshGridView.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshHorizontalScrollView$InternalHorizontalScrollViewSDK9.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshHorizontalScrollView$InternalHorizontalScrollViewSDK9.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshHorizontalScrollView.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshHorizontalScrollView.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshListView$1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshListView$1.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshListView$InternalListView.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshListView$InternalListView.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshListView$InternalListViewSDK9.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshListView$InternalListViewSDK9.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshListView.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshListView.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshScrollView$InternalScrollViewSDK9.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshScrollView$InternalScrollViewSDK9.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshScrollView.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshScrollView.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshWebView$1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshWebView$1.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshWebView$2.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshWebView$2.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshWebView$InternalWebViewSDK9.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshWebView$InternalWebViewSDK9.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshWebView.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshWebView.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/R$anim.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/R$anim.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/R$attr.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/R$attr.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/R$dimen.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/R$dimen.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/R$drawable.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/R$drawable.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/R$id.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/R$id.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/R$layout.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/R$layout.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/R$string.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/R$string.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/R$styleable.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/R$styleable.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/R.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/R.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/extras/PullToRefreshWebView2$JsValueCallback.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/extras/PullToRefreshWebView2$JsValueCallback.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/extras/PullToRefreshWebView2.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/extras/PullToRefreshWebView2.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/extras/SoundPullEventListener.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/extras/SoundPullEventListener.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/internal/EmptyViewMethodAccessor.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/internal/EmptyViewMethodAccessor.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/internal/FlipLoadingLayout$1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/internal/FlipLoadingLayout$1.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/internal/FlipLoadingLayout.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/internal/FlipLoadingLayout.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/internal/IndicatorLayout$1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/internal/IndicatorLayout$1.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/internal/IndicatorLayout.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/internal/IndicatorLayout.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/internal/LoadingLayout$1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/internal/LoadingLayout$1.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/internal/LoadingLayout.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/internal/LoadingLayout.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/internal/RotateLoadingLayout.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/internal/RotateLoadingLayout.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/internal/Utils.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/internal/Utils.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/internal/ViewCompat$SDK11.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/internal/ViewCompat$SDK11.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/internal/ViewCompat$SDK16.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/internal/ViewCompat$SDK16.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/internal/ViewCompat.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/internal/ViewCompat.class
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/incremental/aidl/androidTest/debug/dependency.store:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/incremental/aidl/debug/dependency.store:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/incremental/aidl/release/dependency.store:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/incremental/mergeAssets/androidTest/debug/merger.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/incremental/mergeAssets/debug/merger.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/incremental/mergeAssets/release/merger.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/manifest/androidTest/debug/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
8 |
9 |
15 |
16 |
17 |
18 |
19 |
20 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/manifest/tmp/manifestMerger22007460127612603.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
16 |
17 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/manifest/tmp/manifestMerger3962836545439202261.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
16 |
17 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/manifest/tmp/manifestMerger4765063895974516274.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
16 |
17 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/res/merged/androidTest/debug/anim/slide_in_from_bottom.xml:
--------------------------------------------------------------------------------
1 |
2 |
17 |
18 |
22 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/res/merged/androidTest/debug/anim/slide_in_from_top.xml:
--------------------------------------------------------------------------------
1 |
2 |
17 |
18 |
22 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/res/merged/androidTest/debug/anim/slide_out_to_bottom.xml:
--------------------------------------------------------------------------------
1 |
2 |
17 |
18 |
22 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/res/merged/androidTest/debug/anim/slide_out_to_top.xml:
--------------------------------------------------------------------------------
1 |
2 |
17 |
18 |
22 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/default_ptr_flip.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/default_ptr_flip.png
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/default_ptr_rotate.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/default_ptr_rotate.png
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/indicator_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/indicator_arrow.png
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/default_ptr_flip.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/default_ptr_flip.png
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/default_ptr_rotate.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/default_ptr_rotate.png
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/indicator_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/indicator_arrow.png
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/default_ptr_flip.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/default_ptr_flip.png
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/default_ptr_rotate.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/default_ptr_rotate.png
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/indicator_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/indicator_arrow.png
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/res/merged/androidTest/debug/drawable/indicator_bg_bottom.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
7 |
11 |
17 |
18 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/res/merged/androidTest/debug/drawable/indicator_bg_top.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
7 |
11 |
17 |
18 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/res/merged/androidTest/debug/values-ar/values-ar.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | اسحب للتحديث…
6 | تحميل…
7 | اترك للتحديث…
8 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/res/merged/androidTest/debug/values-cs/values-cs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Tažením aktualizujete…
6 | Načítání…
7 | Uvolněním aktualizujete…
8 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/res/merged/androidTest/debug/values-de/values-de.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Ziehen zum Aktualisieren…
6 | Laden…
7 | Loslassen zum Aktualisieren…
8 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/res/merged/androidTest/debug/values-es/values-es.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Tirar para actualizar…
6 | Cargando…
7 | Soltar para actualizar…
8 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/res/merged/androidTest/debug/values-fi/values-fi.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Päivitä vetämällä ylös…
6 | @string/pull_to_refresh_refreshing_label
7 | @string/pull_to_refresh_release_label
8 | Päivitä vetämällä alas…
9 | Päivitetään…
10 | Päivitä vapauttamalla…
11 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/res/merged/androidTest/debug/values-fr/values-fr.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Tirez pour rafraîchir…
6 | Chargement…
7 | Relâcher pour rafraîchir…
8 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/res/merged/androidTest/debug/values-he/values-he.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | משוך לרענון…
6 | טוען…
7 | שחרר לרענון…
8 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/res/merged/androidTest/debug/values-it/values-it.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Tira per aggiornare…
6 | Caricamento…
7 | Rilascia per aggionare…
8 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/res/merged/androidTest/debug/values-iw/values-iw.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | משוך לרענון…
6 | טוען…
7 | שחרר לרענון…
8 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/res/merged/androidTest/debug/values-ja/values-ja.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | 画面を引っ張って…
6 | 読み込み中…
7 | 指を離して更新…
8 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/res/merged/androidTest/debug/values-ko/values-ko.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | 당겨서 새로 고침…
6 | 로드 중…
7 | 놓아서 새로 고침…
8 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/res/merged/androidTest/debug/values-nl/values-nl.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Sleep om te vernieuwen…
6 | Laden…
7 | Loslaten om te vernieuwen…
8 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/res/merged/androidTest/debug/values-pl/values-pl.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Pociągnij, aby odświeżyć…
6 | Wczytywanie…
7 | Puść, aby odświeżyć…
8 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/res/merged/androidTest/debug/values-pt-rBR/values-pt-rBR.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Puxe para atualizar…
6 | Carregando…
7 | Libere para atualizar…
8 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/res/merged/androidTest/debug/values-pt/values-pt.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Puxe para atualizar…
6 | A carregar…
7 | Liberação para atualizar…
8 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/res/merged/androidTest/debug/values-ro/values-ro.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Trage pentru a reîmprospăta…
6 | Încărcare…
7 | Eliberează pentru a reîmprospăta…
8 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/res/merged/androidTest/debug/values-ru/values-ru.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Потяните для обновления…
6 | Загрузка…
7 | Отпустите для обновления…
8 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/res/merged/androidTest/debug/values-zh/values-zh.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | 下拉刷新…
6 | 正在载入…
7 | 放开以刷新…
8 |
--------------------------------------------------------------------------------
/CookBook/library/build/intermediates/res/resources-debug-androidTest.ap_:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/intermediates/res/resources-debug-androidTest.ap_
--------------------------------------------------------------------------------
/CookBook/library/build/outputs/aar/library-debug.aar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/outputs/aar/library-debug.aar
--------------------------------------------------------------------------------
/CookBook/library/build/outputs/aar/library-release.aar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/build/outputs/aar/library-release.aar
--------------------------------------------------------------------------------
/CookBook/library/build/tmp/packageDebugJar/MANIFEST.MF:
--------------------------------------------------------------------------------
1 | Manifest-Version: 1.0
2 |
3 |
--------------------------------------------------------------------------------
/CookBook/library/build/tmp/packageReleaseJar/MANIFEST.MF:
--------------------------------------------------------------------------------
1 | Manifest-Version: 1.0
2 |
3 |
--------------------------------------------------------------------------------
/CookBook/library/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/CookBook/library/src/main/java/com/handmark/pulltorefresh/library/internal/Utils.java:
--------------------------------------------------------------------------------
1 | package com.handmark.pulltorefresh.library.internal;
2 |
3 | import android.util.Log;
4 |
5 | public class Utils {
6 |
7 | static final String LOG_TAG = "PullToRefresh";
8 |
9 | public static void warnDeprecation(String depreacted, String replacement) {
10 | Log.w(LOG_TAG, "You're using the deprecated " + depreacted + " attr, please switch over to " + replacement);
11 | }
12 |
13 | }
14 |
--------------------------------------------------------------------------------
/CookBook/library/src/main/res/anim/slide_in_from_bottom.xml:
--------------------------------------------------------------------------------
1 |
2 |
17 |
18 |
22 |
--------------------------------------------------------------------------------
/CookBook/library/src/main/res/anim/slide_in_from_top.xml:
--------------------------------------------------------------------------------
1 |
2 |
17 |
18 |
22 |
--------------------------------------------------------------------------------
/CookBook/library/src/main/res/anim/slide_out_to_bottom.xml:
--------------------------------------------------------------------------------
1 |
2 |
17 |
18 |
22 |
--------------------------------------------------------------------------------
/CookBook/library/src/main/res/anim/slide_out_to_top.xml:
--------------------------------------------------------------------------------
1 |
2 |
17 |
18 |
22 |
--------------------------------------------------------------------------------
/CookBook/library/src/main/res/drawable-hdpi/default_ptr_flip.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/src/main/res/drawable-hdpi/default_ptr_flip.png
--------------------------------------------------------------------------------
/CookBook/library/src/main/res/drawable-hdpi/default_ptr_rotate.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/src/main/res/drawable-hdpi/default_ptr_rotate.png
--------------------------------------------------------------------------------
/CookBook/library/src/main/res/drawable-hdpi/indicator_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/src/main/res/drawable-hdpi/indicator_arrow.png
--------------------------------------------------------------------------------
/CookBook/library/src/main/res/drawable-mdpi/default_ptr_flip.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/src/main/res/drawable-mdpi/default_ptr_flip.png
--------------------------------------------------------------------------------
/CookBook/library/src/main/res/drawable-mdpi/default_ptr_rotate.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/src/main/res/drawable-mdpi/default_ptr_rotate.png
--------------------------------------------------------------------------------
/CookBook/library/src/main/res/drawable-mdpi/indicator_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/src/main/res/drawable-mdpi/indicator_arrow.png
--------------------------------------------------------------------------------
/CookBook/library/src/main/res/drawable-xhdpi/default_ptr_flip.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/src/main/res/drawable-xhdpi/default_ptr_flip.png
--------------------------------------------------------------------------------
/CookBook/library/src/main/res/drawable-xhdpi/default_ptr_rotate.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/src/main/res/drawable-xhdpi/default_ptr_rotate.png
--------------------------------------------------------------------------------
/CookBook/library/src/main/res/drawable-xhdpi/indicator_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/library/src/main/res/drawable-xhdpi/indicator_arrow.png
--------------------------------------------------------------------------------
/CookBook/library/src/main/res/drawable/indicator_bg_bottom.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
7 |
11 |
17 |
18 |
--------------------------------------------------------------------------------
/CookBook/library/src/main/res/drawable/indicator_bg_top.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
7 |
11 |
17 |
18 |
--------------------------------------------------------------------------------
/CookBook/library/src/main/res/layout/pull_to_refresh_header_horizontal.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
12 |
13 |
18 |
19 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/CookBook/library/src/main/res/values-ar/pull_refresh_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | اسحب للتحديث…
4 | اترك للتحديث…
5 | تحميل…
6 |
7 |
--------------------------------------------------------------------------------
/CookBook/library/src/main/res/values-cs/pull_refresh_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | Tažením aktualizujete…
4 | Uvolněním aktualizujete…
5 | Načítání…
6 |
7 |
--------------------------------------------------------------------------------
/CookBook/library/src/main/res/values-de/pull_refresh_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | Ziehen zum Aktualisieren…
4 | Loslassen zum Aktualisieren…
5 | Laden…
6 |
7 |
--------------------------------------------------------------------------------
/CookBook/library/src/main/res/values-es/pull_refresh_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | Tirar para actualizar…
4 | Soltar para actualizar…
5 | Cargando…
6 |
7 |
--------------------------------------------------------------------------------
/CookBook/library/src/main/res/values-fi/pull_refresh_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Päivitä vetämällä alas…
5 | Päivitä vapauttamalla…
6 | Päivitetään…
7 |
8 |
9 | Päivitä vetämällä ylös…
10 | @string/pull_to_refresh_release_label
11 | @string/pull_to_refresh_refreshing_label
12 |
13 |
--------------------------------------------------------------------------------
/CookBook/library/src/main/res/values-fr/pull_refresh_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | Tirez pour rafraîchir…
4 | Relâcher pour rafraîchir…
5 | Chargement…
6 |
7 |
--------------------------------------------------------------------------------
/CookBook/library/src/main/res/values-he/pull_refresh_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | משוך לרענון…
4 | שחרר לרענון…
5 | טוען…
6 |
7 |
--------------------------------------------------------------------------------
/CookBook/library/src/main/res/values-it/pull_refresh_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | Tira per aggiornare…
4 | Rilascia per aggionare…
5 | Caricamento…
6 |
7 |
--------------------------------------------------------------------------------
/CookBook/library/src/main/res/values-iw/pull_refresh_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | משוך לרענון…
4 | שחרר לרענון…
5 | טוען…
6 |
7 |
--------------------------------------------------------------------------------
/CookBook/library/src/main/res/values-ja/pull_refresh_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 画面を引っ張って…
4 | 指を離して更新…
5 | 読み込み中…
6 |
7 |
--------------------------------------------------------------------------------
/CookBook/library/src/main/res/values-ko/pull_refresh_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 당겨서 새로 고침…
4 | 놓아서 새로 고침…
5 | 로드 중…
6 |
7 |
--------------------------------------------------------------------------------
/CookBook/library/src/main/res/values-nl/pull_refresh_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | Sleep om te vernieuwen…
4 | Loslaten om te vernieuwen…
5 | Laden…
6 |
7 |
--------------------------------------------------------------------------------
/CookBook/library/src/main/res/values-pl/pull_refresh_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | Pociągnij, aby odświeżyć…
4 | Puść, aby odświeżyć…
5 | Wczytywanie…
6 |
7 |
--------------------------------------------------------------------------------
/CookBook/library/src/main/res/values-pt-rBR/pull_refresh_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | Puxe para atualizar…
4 | Libere para atualizar…
5 | Carregando…
6 |
7 |
--------------------------------------------------------------------------------
/CookBook/library/src/main/res/values-pt/pull_refresh_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | Puxe para atualizar…
4 | Liberação para atualizar…
5 | A carregar…
6 |
7 |
--------------------------------------------------------------------------------
/CookBook/library/src/main/res/values-ro/pull_refresh_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | Trage pentru a reîmprospăta…
4 | Eliberează pentru a reîmprospăta…
5 | Încărcare…
6 |
7 |
--------------------------------------------------------------------------------
/CookBook/library/src/main/res/values-ru/pull_refresh_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | Потяните для обновления…
4 | Отпустите для обновления…
5 | Загрузка…
6 |
7 |
--------------------------------------------------------------------------------
/CookBook/library/src/main/res/values-zh/pull_refresh_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 下拉刷新…
4 | 放开以刷新…
5 | 正在载入…
6 |
7 |
--------------------------------------------------------------------------------
/CookBook/library/src/main/res/values/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 10dp
5 | 12dp
6 | 4dp
7 | 24dp
8 | 12dp
9 |
10 |
--------------------------------------------------------------------------------
/CookBook/library/src/main/res/values/ids.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/CookBook/library/src/main/res/values/pull_refresh_strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Pull to refresh…
5 | Release to refresh…
6 | Loading…
7 |
8 |
9 | @string/pull_to_refresh_pull_label
10 | @string/pull_to_refresh_release_label
11 | @string/pull_to_refresh_refreshing_label
12 |
13 |
--------------------------------------------------------------------------------
/CookBook/settings.gradle:
--------------------------------------------------------------------------------
1 | include ':app'
2 | include ':library'
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # CookBook
2 | 个人开源Android项目:健康菜谱
3 |
4 | ## How does it look like?
5 |
6 | * First
7 |
8 | 
9 |
10 | * Second
11 |
12 | 
13 |
14 | * Third
15 |
16 | 
17 |
18 | 不好意思,图片有点大!
19 |
20 |
21 | ## Related content
22 |
23 | compileSdkVersion 23
24 | buildToolsVersion "23.0.2"
25 |
26 | ## dependencies
27 |
28 | dependencies {
29 | compile fileTree(include: ['*.jar'], dir: 'libs')
30 | testCompile 'junit:junit:4.12'
31 | compile 'com.android.support:appcompat-v7:23.1.0'
32 | compile files('libs/gson-2.3.1.jar')
33 | compile files('libs/Volley.jar')
34 | compile files('libs/universal-image-loader-1.9.5.jar')
35 | compile project(':library')
36 |
37 | }
38 |
39 | ## Enjoy
40 |
41 |
42 |
43 |
--------------------------------------------------------------------------------
/first.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/first.png
--------------------------------------------------------------------------------
/second.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/second.png
--------------------------------------------------------------------------------
/third.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/third.png
--------------------------------------------------------------------------------