├── CookBook ├── .gitignore ├── .idea │ ├── .name │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ ├── runConfigurations.xml │ └── vcs.xml ├── CookBook.iml ├── app │ ├── .gitignore │ ├── app-release.apk │ ├── app.iml │ ├── build.gradle │ ├── libs │ │ ├── Volley.jar │ │ ├── gson-2.3.1.jar │ │ └── universal-image-loader-1.9.5.jar │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── wcg │ │ │ └── cookbook │ │ │ └── ApplicationTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── wcg │ │ │ │ └── cookbook │ │ │ │ ├── BaseActivity.java │ │ │ │ ├── CKApplication.java │ │ │ │ ├── CKNetStatus.java │ │ │ │ ├── CKNetStatusReceiver.java │ │ │ │ ├── CKRootActivity.java │ │ │ │ ├── Controller │ │ │ │ ├── CKClassifyFragment.java │ │ │ │ ├── CKClassifyFragmentAdapter.java │ │ │ │ ├── CKClassifyFragmentDrawerView.java │ │ │ │ ├── CKDetailActivity.java │ │ │ │ ├── CKDetailFragment.java │ │ │ │ ├── CKListFragment.java │ │ │ │ ├── CKListFragmentAdapter.java │ │ │ │ └── CKNameFragment.java │ │ │ │ ├── Http │ │ │ │ └── HttpClient.java │ │ │ │ ├── Model │ │ │ │ └── Classfy │ │ │ │ │ ├── CKClassifyContent.java │ │ │ │ │ ├── CKClassifyData.java │ │ │ │ │ ├── CKDetailContent.java │ │ │ │ │ ├── CKListContent.java │ │ │ │ │ ├── CKListData.java │ │ │ │ │ └── ErrorModel.java │ │ │ │ ├── Utils │ │ │ │ ├── Dimension.java │ │ │ │ └── Screen.java │ │ │ │ └── View │ │ │ │ ├── CKEmptyView.java │ │ │ │ ├── CKNameCell.java │ │ │ │ └── CKTopBar.java │ │ └── res │ │ │ ├── drawable-xhdpi │ │ │ ├── cart_add_btn_normal.png │ │ │ ├── cart_add_btn_press.png │ │ │ ├── comment_default_photo.png │ │ │ ├── common_go_back_normal.png │ │ │ ├── common_go_back_press.png │ │ │ ├── dash_gap.xml │ │ │ ├── detail_collected.png │ │ │ ├── ic_main_tab_selector1.xml │ │ │ ├── ic_main_tab_selector2.xml │ │ │ ├── ic_main_tab_selector3.xml │ │ │ ├── navigation_cartbutton_normal.png │ │ │ ├── navigation_cartbutton_press.png │ │ │ ├── navigation_datebutton_normal.png │ │ │ ├── navigation_datebutton_press.png │ │ │ ├── navigation_homebutton_normal.png │ │ │ ├── navigation_homebutton_press.png │ │ │ ├── navigation_mystorebutton_normal.png │ │ │ ├── navigation_mystorebutton_press.png │ │ │ ├── pay_checkout_arrow_right.png │ │ │ └── shape_textview.xml │ │ │ ├── drawable-xxxhdpi │ │ │ ├── ic_main_tab_checked.png │ │ │ └── ic_main_tab_normal.png │ │ │ ├── drawable │ │ │ ├── classify_cell_selector.xml │ │ │ ├── common_go_back_image.xml │ │ │ ├── ic_main_tab_selector.xml │ │ │ └── tab_text_color_selector.xml │ │ │ ├── layout │ │ │ ├── activity_ckroot.xml │ │ │ ├── activity_detail.xml │ │ │ ├── activity_main.xml │ │ │ ├── classify_drawer_cell.xml │ │ │ ├── classify_fragment_list_cell.xml │ │ │ ├── fragment_classify.xml │ │ │ ├── fragment_detail.xml │ │ │ ├── fragment_list.xml │ │ │ ├── fragment_name.xml │ │ │ └── list_fragment_cell.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── my_icon.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── my_icon.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── my_icon.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── my_icon.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ ├── styles.xml │ │ │ └── topBarAtts.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── wcg │ │ └── cookbook │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── library │ ├── build.gradle │ ├── build │ │ ├── generated │ │ │ └── source │ │ │ │ ├── buildConfig │ │ │ │ ├── androidTest │ │ │ │ │ └── debug │ │ │ │ │ │ └── com │ │ │ │ │ │ └── handmark │ │ │ │ │ │ └── pulltorefresh │ │ │ │ │ │ └── library │ │ │ │ │ │ └── test │ │ │ │ │ │ └── BuildConfig.java │ │ │ │ ├── debug │ │ │ │ │ └── com │ │ │ │ │ │ └── handmark │ │ │ │ │ │ └── pulltorefresh │ │ │ │ │ │ └── library │ │ │ │ │ │ └── BuildConfig.java │ │ │ │ └── release │ │ │ │ │ └── com │ │ │ │ │ └── handmark │ │ │ │ │ └── pulltorefresh │ │ │ │ │ └── library │ │ │ │ │ └── BuildConfig.java │ │ │ │ └── r │ │ │ │ ├── androidTest │ │ │ │ └── debug │ │ │ │ │ └── com │ │ │ │ │ └── handmark │ │ │ │ │ └── pulltorefresh │ │ │ │ │ └── library │ │ │ │ │ ├── R.java │ │ │ │ │ └── test │ │ │ │ │ └── R.java │ │ │ │ ├── debug │ │ │ │ └── com │ │ │ │ │ └── handmark │ │ │ │ │ └── pulltorefresh │ │ │ │ │ └── library │ │ │ │ │ └── R.java │ │ │ │ └── release │ │ │ │ └── com │ │ │ │ └── handmark │ │ │ │ └── pulltorefresh │ │ │ │ └── library │ │ │ │ └── R.java │ │ ├── intermediates │ │ │ ├── bundles │ │ │ │ ├── debug │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── R.txt │ │ │ │ │ ├── aapt │ │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ ├── classes.jar │ │ │ │ │ └── res │ │ │ │ │ │ ├── anim │ │ │ │ │ │ ├── slide_in_from_bottom.xml │ │ │ │ │ │ ├── slide_in_from_top.xml │ │ │ │ │ │ ├── slide_out_to_bottom.xml │ │ │ │ │ │ └── slide_out_to_top.xml │ │ │ │ │ │ ├── drawable-hdpi-v4 │ │ │ │ │ │ ├── default_ptr_flip.png │ │ │ │ │ │ ├── default_ptr_rotate.png │ │ │ │ │ │ └── indicator_arrow.png │ │ │ │ │ │ ├── drawable-mdpi-v4 │ │ │ │ │ │ ├── default_ptr_flip.png │ │ │ │ │ │ ├── default_ptr_rotate.png │ │ │ │ │ │ └── indicator_arrow.png │ │ │ │ │ │ ├── drawable-xhdpi-v4 │ │ │ │ │ │ ├── default_ptr_flip.png │ │ │ │ │ │ ├── default_ptr_rotate.png │ │ │ │ │ │ └── indicator_arrow.png │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── indicator_bg_bottom.xml │ │ │ │ │ │ └── indicator_bg_top.xml │ │ │ │ │ │ ├── layout │ │ │ │ │ │ ├── pull_to_refresh_header_horizontal.xml │ │ │ │ │ │ └── pull_to_refresh_header_vertical.xml │ │ │ │ │ │ ├── values-ar │ │ │ │ │ │ └── values-ar.xml │ │ │ │ │ │ ├── values-cs │ │ │ │ │ │ └── values-cs.xml │ │ │ │ │ │ ├── values-de │ │ │ │ │ │ └── values-de.xml │ │ │ │ │ │ ├── values-es │ │ │ │ │ │ └── values-es.xml │ │ │ │ │ │ ├── values-fi │ │ │ │ │ │ └── values-fi.xml │ │ │ │ │ │ ├── values-fr │ │ │ │ │ │ └── values-fr.xml │ │ │ │ │ │ ├── values-he │ │ │ │ │ │ └── values-he.xml │ │ │ │ │ │ ├── values-it │ │ │ │ │ │ └── values-it.xml │ │ │ │ │ │ ├── values-iw │ │ │ │ │ │ └── values-iw.xml │ │ │ │ │ │ ├── values-ja │ │ │ │ │ │ └── values-ja.xml │ │ │ │ │ │ ├── values-ko │ │ │ │ │ │ └── values-ko.xml │ │ │ │ │ │ ├── values-nl │ │ │ │ │ │ └── values-nl.xml │ │ │ │ │ │ ├── values-pl │ │ │ │ │ │ └── values-pl.xml │ │ │ │ │ │ ├── values-pt-rBR │ │ │ │ │ │ └── values-pt-rBR.xml │ │ │ │ │ │ ├── values-pt │ │ │ │ │ │ └── values-pt.xml │ │ │ │ │ │ ├── values-ro │ │ │ │ │ │ └── values-ro.xml │ │ │ │ │ │ ├── values-ru │ │ │ │ │ │ └── values-ru.xml │ │ │ │ │ │ ├── values-zh │ │ │ │ │ │ └── values-zh.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── values.xml │ │ │ │ └── release │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── R.txt │ │ │ │ │ ├── aapt │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ ├── classes.jar │ │ │ │ │ └── res │ │ │ │ │ ├── anim │ │ │ │ │ ├── slide_in_from_bottom.xml │ │ │ │ │ ├── slide_in_from_top.xml │ │ │ │ │ ├── slide_out_to_bottom.xml │ │ │ │ │ └── slide_out_to_top.xml │ │ │ │ │ ├── drawable-hdpi-v4 │ │ │ │ │ ├── default_ptr_flip.png │ │ │ │ │ ├── default_ptr_rotate.png │ │ │ │ │ └── indicator_arrow.png │ │ │ │ │ ├── drawable-mdpi-v4 │ │ │ │ │ ├── default_ptr_flip.png │ │ │ │ │ ├── default_ptr_rotate.png │ │ │ │ │ └── indicator_arrow.png │ │ │ │ │ ├── drawable-xhdpi-v4 │ │ │ │ │ ├── default_ptr_flip.png │ │ │ │ │ ├── default_ptr_rotate.png │ │ │ │ │ └── indicator_arrow.png │ │ │ │ │ ├── drawable │ │ │ │ │ ├── indicator_bg_bottom.xml │ │ │ │ │ └── indicator_bg_top.xml │ │ │ │ │ ├── layout │ │ │ │ │ ├── pull_to_refresh_header_horizontal.xml │ │ │ │ │ └── pull_to_refresh_header_vertical.xml │ │ │ │ │ ├── values-ar │ │ │ │ │ └── values-ar.xml │ │ │ │ │ ├── values-cs │ │ │ │ │ └── values-cs.xml │ │ │ │ │ ├── values-de │ │ │ │ │ └── values-de.xml │ │ │ │ │ ├── values-es │ │ │ │ │ └── values-es.xml │ │ │ │ │ ├── values-fi │ │ │ │ │ └── values-fi.xml │ │ │ │ │ ├── values-fr │ │ │ │ │ └── values-fr.xml │ │ │ │ │ ├── values-he │ │ │ │ │ └── values-he.xml │ │ │ │ │ ├── values-it │ │ │ │ │ └── values-it.xml │ │ │ │ │ ├── values-iw │ │ │ │ │ └── values-iw.xml │ │ │ │ │ ├── values-ja │ │ │ │ │ └── values-ja.xml │ │ │ │ │ ├── values-ko │ │ │ │ │ └── values-ko.xml │ │ │ │ │ ├── values-nl │ │ │ │ │ └── values-nl.xml │ │ │ │ │ ├── values-pl │ │ │ │ │ └── values-pl.xml │ │ │ │ │ ├── values-pt-rBR │ │ │ │ │ └── values-pt-rBR.xml │ │ │ │ │ ├── values-pt │ │ │ │ │ └── values-pt.xml │ │ │ │ │ ├── values-ro │ │ │ │ │ └── values-ro.xml │ │ │ │ │ ├── values-ru │ │ │ │ │ └── values-ru.xml │ │ │ │ │ ├── values-zh │ │ │ │ │ └── values-zh.xml │ │ │ │ │ └── values │ │ │ │ │ └── values.xml │ │ │ ├── classes │ │ │ │ ├── androidTest │ │ │ │ │ └── debug │ │ │ │ │ │ └── com │ │ │ │ │ │ └── handmark │ │ │ │ │ │ └── pulltorefresh │ │ │ │ │ │ └── library │ │ │ │ │ │ ├── R$anim.class │ │ │ │ │ │ ├── R$attr.class │ │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ │ ├── R$id.class │ │ │ │ │ │ ├── R$layout.class │ │ │ │ │ │ ├── R$string.class │ │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ │ ├── R.class │ │ │ │ │ │ └── test │ │ │ │ │ │ ├── BuildConfig.class │ │ │ │ │ │ ├── R$anim.class │ │ │ │ │ │ ├── R$attr.class │ │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ │ ├── R$id.class │ │ │ │ │ │ ├── R$layout.class │ │ │ │ │ │ ├── R$string.class │ │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ │ └── R.class │ │ │ │ ├── debug │ │ │ │ │ └── com │ │ │ │ │ │ └── handmark │ │ │ │ │ │ └── pulltorefresh │ │ │ │ │ │ └── library │ │ │ │ │ │ ├── BuildConfig.class │ │ │ │ │ │ ├── ILoadingLayout.class │ │ │ │ │ │ ├── IPullToRefresh.class │ │ │ │ │ │ ├── LoadingLayoutProxy.class │ │ │ │ │ │ ├── OverscrollHelper$1.class │ │ │ │ │ │ ├── OverscrollHelper.class │ │ │ │ │ │ ├── PullToRefreshAdapterViewBase$1.class │ │ │ │ │ │ ├── PullToRefreshAdapterViewBase.class │ │ │ │ │ │ ├── PullToRefreshBase$1.class │ │ │ │ │ │ ├── PullToRefreshBase$2.class │ │ │ │ │ │ ├── PullToRefreshBase$3.class │ │ │ │ │ │ ├── PullToRefreshBase$4.class │ │ │ │ │ │ ├── PullToRefreshBase$AnimationStyle.class │ │ │ │ │ │ ├── PullToRefreshBase$Mode.class │ │ │ │ │ │ ├── PullToRefreshBase$OnLastItemVisibleListener.class │ │ │ │ │ │ ├── PullToRefreshBase$OnPullEventListener.class │ │ │ │ │ │ ├── PullToRefreshBase$OnRefreshListener.class │ │ │ │ │ │ ├── PullToRefreshBase$OnRefreshListener2.class │ │ │ │ │ │ ├── PullToRefreshBase$OnSmoothScrollFinishedListener.class │ │ │ │ │ │ ├── PullToRefreshBase$Orientation.class │ │ │ │ │ │ ├── PullToRefreshBase$SmoothScrollRunnable.class │ │ │ │ │ │ ├── PullToRefreshBase$State.class │ │ │ │ │ │ ├── PullToRefreshBase.class │ │ │ │ │ │ ├── PullToRefreshExpandableListView$InternalExpandableListView.class │ │ │ │ │ │ ├── PullToRefreshExpandableListView$InternalExpandableListViewSDK9.class │ │ │ │ │ │ ├── PullToRefreshExpandableListView.class │ │ │ │ │ │ ├── PullToRefreshGridView$InternalGridView.class │ │ │ │ │ │ ├── PullToRefreshGridView$InternalGridViewSDK9.class │ │ │ │ │ │ ├── PullToRefreshGridView.class │ │ │ │ │ │ ├── PullToRefreshHorizontalScrollView$InternalHorizontalScrollViewSDK9.class │ │ │ │ │ │ ├── PullToRefreshHorizontalScrollView.class │ │ │ │ │ │ ├── PullToRefreshListView$1.class │ │ │ │ │ │ ├── PullToRefreshListView$InternalListView.class │ │ │ │ │ │ ├── PullToRefreshListView$InternalListViewSDK9.class │ │ │ │ │ │ ├── PullToRefreshListView.class │ │ │ │ │ │ ├── PullToRefreshScrollView$InternalScrollViewSDK9.class │ │ │ │ │ │ ├── PullToRefreshScrollView.class │ │ │ │ │ │ ├── PullToRefreshWebView$1.class │ │ │ │ │ │ ├── PullToRefreshWebView$2.class │ │ │ │ │ │ ├── PullToRefreshWebView$InternalWebViewSDK9.class │ │ │ │ │ │ ├── PullToRefreshWebView.class │ │ │ │ │ │ ├── R$anim.class │ │ │ │ │ │ ├── R$attr.class │ │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ │ ├── R$id.class │ │ │ │ │ │ ├── R$layout.class │ │ │ │ │ │ ├── R$string.class │ │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ │ ├── R.class │ │ │ │ │ │ ├── extras │ │ │ │ │ │ ├── PullToRefreshWebView2$JsValueCallback.class │ │ │ │ │ │ ├── PullToRefreshWebView2.class │ │ │ │ │ │ └── SoundPullEventListener.class │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── EmptyViewMethodAccessor.class │ │ │ │ │ │ ├── FlipLoadingLayout$1.class │ │ │ │ │ │ ├── FlipLoadingLayout.class │ │ │ │ │ │ ├── IndicatorLayout$1.class │ │ │ │ │ │ ├── IndicatorLayout.class │ │ │ │ │ │ ├── LoadingLayout$1.class │ │ │ │ │ │ ├── LoadingLayout.class │ │ │ │ │ │ ├── RotateLoadingLayout.class │ │ │ │ │ │ ├── Utils.class │ │ │ │ │ │ ├── ViewCompat$SDK11.class │ │ │ │ │ │ ├── ViewCompat$SDK16.class │ │ │ │ │ │ └── ViewCompat.class │ │ │ │ └── release │ │ │ │ │ └── com │ │ │ │ │ └── handmark │ │ │ │ │ └── pulltorefresh │ │ │ │ │ └── library │ │ │ │ │ ├── BuildConfig.class │ │ │ │ │ ├── ILoadingLayout.class │ │ │ │ │ ├── IPullToRefresh.class │ │ │ │ │ ├── LoadingLayoutProxy.class │ │ │ │ │ ├── OverscrollHelper$1.class │ │ │ │ │ ├── OverscrollHelper.class │ │ │ │ │ ├── PullToRefreshAdapterViewBase$1.class │ │ │ │ │ ├── PullToRefreshAdapterViewBase.class │ │ │ │ │ ├── PullToRefreshBase$1.class │ │ │ │ │ ├── PullToRefreshBase$2.class │ │ │ │ │ ├── PullToRefreshBase$3.class │ │ │ │ │ ├── PullToRefreshBase$4.class │ │ │ │ │ ├── PullToRefreshBase$AnimationStyle.class │ │ │ │ │ ├── PullToRefreshBase$Mode.class │ │ │ │ │ ├── PullToRefreshBase$OnLastItemVisibleListener.class │ │ │ │ │ ├── PullToRefreshBase$OnPullEventListener.class │ │ │ │ │ ├── PullToRefreshBase$OnRefreshListener.class │ │ │ │ │ ├── PullToRefreshBase$OnRefreshListener2.class │ │ │ │ │ ├── PullToRefreshBase$OnSmoothScrollFinishedListener.class │ │ │ │ │ ├── PullToRefreshBase$Orientation.class │ │ │ │ │ ├── PullToRefreshBase$SmoothScrollRunnable.class │ │ │ │ │ ├── PullToRefreshBase$State.class │ │ │ │ │ ├── PullToRefreshBase.class │ │ │ │ │ ├── PullToRefreshExpandableListView$InternalExpandableListView.class │ │ │ │ │ ├── PullToRefreshExpandableListView$InternalExpandableListViewSDK9.class │ │ │ │ │ ├── PullToRefreshExpandableListView.class │ │ │ │ │ ├── PullToRefreshGridView$InternalGridView.class │ │ │ │ │ ├── PullToRefreshGridView$InternalGridViewSDK9.class │ │ │ │ │ ├── PullToRefreshGridView.class │ │ │ │ │ ├── PullToRefreshHorizontalScrollView$InternalHorizontalScrollViewSDK9.class │ │ │ │ │ ├── PullToRefreshHorizontalScrollView.class │ │ │ │ │ ├── PullToRefreshListView$1.class │ │ │ │ │ ├── PullToRefreshListView$InternalListView.class │ │ │ │ │ ├── PullToRefreshListView$InternalListViewSDK9.class │ │ │ │ │ ├── PullToRefreshListView.class │ │ │ │ │ ├── PullToRefreshScrollView$InternalScrollViewSDK9.class │ │ │ │ │ ├── PullToRefreshScrollView.class │ │ │ │ │ ├── PullToRefreshWebView$1.class │ │ │ │ │ ├── PullToRefreshWebView$2.class │ │ │ │ │ ├── PullToRefreshWebView$InternalWebViewSDK9.class │ │ │ │ │ ├── PullToRefreshWebView.class │ │ │ │ │ ├── R$anim.class │ │ │ │ │ ├── R$attr.class │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ ├── R$id.class │ │ │ │ │ ├── R$layout.class │ │ │ │ │ ├── R$string.class │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ ├── R.class │ │ │ │ │ ├── extras │ │ │ │ │ ├── PullToRefreshWebView2$JsValueCallback.class │ │ │ │ │ ├── PullToRefreshWebView2.class │ │ │ │ │ └── SoundPullEventListener.class │ │ │ │ │ └── internal │ │ │ │ │ ├── EmptyViewMethodAccessor.class │ │ │ │ │ ├── FlipLoadingLayout$1.class │ │ │ │ │ ├── FlipLoadingLayout.class │ │ │ │ │ ├── IndicatorLayout$1.class │ │ │ │ │ ├── IndicatorLayout.class │ │ │ │ │ ├── LoadingLayout$1.class │ │ │ │ │ ├── LoadingLayout.class │ │ │ │ │ ├── RotateLoadingLayout.class │ │ │ │ │ ├── Utils.class │ │ │ │ │ ├── ViewCompat$SDK11.class │ │ │ │ │ ├── ViewCompat$SDK16.class │ │ │ │ │ └── ViewCompat.class │ │ │ ├── incremental │ │ │ │ ├── aidl │ │ │ │ │ ├── androidTest │ │ │ │ │ │ └── debug │ │ │ │ │ │ │ └── dependency.store │ │ │ │ │ ├── debug │ │ │ │ │ │ └── dependency.store │ │ │ │ │ └── release │ │ │ │ │ │ └── dependency.store │ │ │ │ ├── mergeAssets │ │ │ │ │ ├── androidTest │ │ │ │ │ │ └── debug │ │ │ │ │ │ │ └── merger.xml │ │ │ │ │ ├── debug │ │ │ │ │ │ └── merger.xml │ │ │ │ │ └── release │ │ │ │ │ │ └── merger.xml │ │ │ │ ├── mergeResourcesandroidTest │ │ │ │ │ └── debug │ │ │ │ │ │ └── merger.xml │ │ │ │ ├── packageResourcesdebug │ │ │ │ │ └── merger.xml │ │ │ │ └── packageResourcesrelease │ │ │ │ │ └── merger.xml │ │ │ ├── manifest │ │ │ │ ├── androidTest │ │ │ │ │ └── debug │ │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ └── tmp │ │ │ │ │ ├── manifestMerger22007460127612603.xml │ │ │ │ │ ├── manifestMerger3962836545439202261.xml │ │ │ │ │ └── manifestMerger4765063895974516274.xml │ │ │ ├── res │ │ │ │ ├── merged │ │ │ │ │ └── androidTest │ │ │ │ │ │ └── debug │ │ │ │ │ │ ├── anim │ │ │ │ │ │ ├── slide_in_from_bottom.xml │ │ │ │ │ │ ├── slide_in_from_top.xml │ │ │ │ │ │ ├── slide_out_to_bottom.xml │ │ │ │ │ │ └── slide_out_to_top.xml │ │ │ │ │ │ ├── drawable-hdpi-v4 │ │ │ │ │ │ ├── default_ptr_flip.png │ │ │ │ │ │ ├── default_ptr_rotate.png │ │ │ │ │ │ └── indicator_arrow.png │ │ │ │ │ │ ├── drawable-mdpi-v4 │ │ │ │ │ │ ├── default_ptr_flip.png │ │ │ │ │ │ ├── default_ptr_rotate.png │ │ │ │ │ │ └── indicator_arrow.png │ │ │ │ │ │ ├── drawable-xhdpi-v4 │ │ │ │ │ │ ├── default_ptr_flip.png │ │ │ │ │ │ ├── default_ptr_rotate.png │ │ │ │ │ │ └── indicator_arrow.png │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── indicator_bg_bottom.xml │ │ │ │ │ │ └── indicator_bg_top.xml │ │ │ │ │ │ ├── layout │ │ │ │ │ │ ├── pull_to_refresh_header_horizontal.xml │ │ │ │ │ │ └── pull_to_refresh_header_vertical.xml │ │ │ │ │ │ ├── values-ar │ │ │ │ │ │ └── values-ar.xml │ │ │ │ │ │ ├── values-cs │ │ │ │ │ │ └── values-cs.xml │ │ │ │ │ │ ├── values-de │ │ │ │ │ │ └── values-de.xml │ │ │ │ │ │ ├── values-es │ │ │ │ │ │ └── values-es.xml │ │ │ │ │ │ ├── values-fi │ │ │ │ │ │ └── values-fi.xml │ │ │ │ │ │ ├── values-fr │ │ │ │ │ │ └── values-fr.xml │ │ │ │ │ │ ├── values-he │ │ │ │ │ │ └── values-he.xml │ │ │ │ │ │ ├── values-it │ │ │ │ │ │ └── values-it.xml │ │ │ │ │ │ ├── values-iw │ │ │ │ │ │ └── values-iw.xml │ │ │ │ │ │ ├── values-ja │ │ │ │ │ │ └── values-ja.xml │ │ │ │ │ │ ├── values-ko │ │ │ │ │ │ └── values-ko.xml │ │ │ │ │ │ ├── values-nl │ │ │ │ │ │ └── values-nl.xml │ │ │ │ │ │ ├── values-pl │ │ │ │ │ │ └── values-pl.xml │ │ │ │ │ │ ├── values-pt-rBR │ │ │ │ │ │ └── values-pt-rBR.xml │ │ │ │ │ │ ├── values-pt │ │ │ │ │ │ └── values-pt.xml │ │ │ │ │ │ ├── values-ro │ │ │ │ │ │ └── values-ro.xml │ │ │ │ │ │ ├── values-ru │ │ │ │ │ │ └── values-ru.xml │ │ │ │ │ │ ├── values-zh │ │ │ │ │ │ └── values-zh.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── values.xml │ │ │ │ └── resources-debug-androidTest.ap_ │ │ │ └── symbols │ │ │ │ └── androidTest │ │ │ │ └── debug │ │ │ │ └── R.txt │ │ ├── outputs │ │ │ └── aar │ │ │ │ ├── library-debug.aar │ │ │ │ └── library-release.aar │ │ └── tmp │ │ │ ├── packageDebugJar │ │ │ └── MANIFEST.MF │ │ │ └── packageReleaseJar │ │ │ └── MANIFEST.MF │ ├── library.iml │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── handmark │ │ │ └── pulltorefresh │ │ │ └── library │ │ │ ├── ILoadingLayout.java │ │ │ ├── IPullToRefresh.java │ │ │ ├── LoadingLayoutProxy.java │ │ │ ├── OverscrollHelper.java │ │ │ ├── PullToRefreshAdapterViewBase.java │ │ │ ├── PullToRefreshBase.java │ │ │ ├── PullToRefreshExpandableListView.java │ │ │ ├── PullToRefreshGridView.java │ │ │ ├── PullToRefreshHorizontalScrollView.java │ │ │ ├── PullToRefreshListView.java │ │ │ ├── PullToRefreshScrollView.java │ │ │ ├── PullToRefreshWebView.java │ │ │ ├── extras │ │ │ ├── PullToRefreshWebView2.java │ │ │ └── SoundPullEventListener.java │ │ │ └── internal │ │ │ ├── EmptyViewMethodAccessor.java │ │ │ ├── FlipLoadingLayout.java │ │ │ ├── IndicatorLayout.java │ │ │ ├── LoadingLayout.java │ │ │ ├── RotateLoadingLayout.java │ │ │ ├── Utils.java │ │ │ └── ViewCompat.java │ │ └── res │ │ ├── anim │ │ ├── slide_in_from_bottom.xml │ │ ├── slide_in_from_top.xml │ │ ├── slide_out_to_bottom.xml │ │ └── slide_out_to_top.xml │ │ ├── drawable-hdpi │ │ ├── default_ptr_flip.png │ │ ├── default_ptr_rotate.png │ │ └── indicator_arrow.png │ │ ├── drawable-mdpi │ │ ├── default_ptr_flip.png │ │ ├── default_ptr_rotate.png │ │ └── indicator_arrow.png │ │ ├── drawable-xhdpi │ │ ├── default_ptr_flip.png │ │ ├── default_ptr_rotate.png │ │ └── indicator_arrow.png │ │ ├── drawable │ │ ├── indicator_bg_bottom.xml │ │ └── indicator_bg_top.xml │ │ ├── layout │ │ ├── pull_to_refresh_header_horizontal.xml │ │ └── pull_to_refresh_header_vertical.xml │ │ ├── values-ar │ │ └── pull_refresh_strings.xml │ │ ├── values-cs │ │ └── pull_refresh_strings.xml │ │ ├── values-de │ │ └── pull_refresh_strings.xml │ │ ├── values-es │ │ └── pull_refresh_strings.xml │ │ ├── values-fi │ │ └── pull_refresh_strings.xml │ │ ├── values-fr │ │ └── pull_refresh_strings.xml │ │ ├── values-he │ │ └── pull_refresh_strings.xml │ │ ├── values-it │ │ └── pull_refresh_strings.xml │ │ ├── values-iw │ │ └── pull_refresh_strings.xml │ │ ├── values-ja │ │ └── pull_refresh_strings.xml │ │ ├── values-ko │ │ └── pull_refresh_strings.xml │ │ ├── values-nl │ │ └── pull_refresh_strings.xml │ │ ├── values-pl │ │ └── pull_refresh_strings.xml │ │ ├── values-pt-rBR │ │ └── pull_refresh_strings.xml │ │ ├── values-pt │ │ └── pull_refresh_strings.xml │ │ ├── values-ro │ │ └── pull_refresh_strings.xml │ │ ├── values-ru │ │ └── pull_refresh_strings.xml │ │ ├── values-zh │ │ └── pull_refresh_strings.xml │ │ └── values │ │ ├── attrs.xml │ │ ├── dimens.xml │ │ ├── ids.xml │ │ └── pull_refresh_strings.xml └── settings.gradle ├── README.md ├── first.png ├── second.png └── third.png /CookBook/.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | /local.properties 3 | /.idea/workspace.xml 4 | /.idea/libraries 5 | .DS_Store 6 | /build 7 | /captures 8 | -------------------------------------------------------------------------------- /CookBook/.idea/.name: -------------------------------------------------------------------------------- 1 | CookBook -------------------------------------------------------------------------------- /CookBook/.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /CookBook/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /CookBook/.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 19 | 20 | -------------------------------------------------------------------------------- /CookBook/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /CookBook/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | -------------------------------------------------------------------------------- /CookBook/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /CookBook/CookBook.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /CookBook/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /CookBook/app/app-release.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/app/app-release.apk -------------------------------------------------------------------------------- /CookBook/app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.application' 2 | 3 | android { 4 | compileSdkVersion 23 5 | buildToolsVersion "23.0.2" 6 | 7 | defaultConfig { 8 | applicationId "com.example.wcg.cookbook" 9 | minSdkVersion 15 10 | targetSdkVersion 23 11 | versionCode 1 12 | versionName "1.0" 13 | } 14 | buildTypes { 15 | release { 16 | minifyEnabled false 17 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 18 | } 19 | } 20 | } 21 | 22 | dependencies { 23 | compile fileTree(include: ['*.jar'], dir: 'libs') 24 | testCompile 'junit:junit:4.12' 25 | compile 'com.android.support:appcompat-v7:23.1.0' 26 | compile files('libs/gson-2.3.1.jar') 27 | compile files('libs/Volley.jar') 28 | compile files('libs/universal-image-loader-1.9.5.jar') 29 | compile project(':library') 30 | 31 | } 32 | -------------------------------------------------------------------------------- /CookBook/app/libs/Volley.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/app/libs/Volley.jar -------------------------------------------------------------------------------- /CookBook/app/libs/gson-2.3.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/app/libs/gson-2.3.1.jar -------------------------------------------------------------------------------- /CookBook/app/libs/universal-image-loader-1.9.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchenguang1/CookBook/50139bc2faa87ea69cace27f9d235c00a9630e8b/CookBook/app/libs/universal-image-loader-1.9.5.jar -------------------------------------------------------------------------------- /CookBook/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /Users/wcg/Library/Android/sdk/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /CookBook/app/src/androidTest/java/com/example/wcg/cookbook/ApplicationTest.java: -------------------------------------------------------------------------------- 1 | package com.example.wcg.cookbook; 2 | 3 | import android.app.Application; 4 | import android.test.ApplicationTestCase; 5 | 6 | /** 7 | * Testing Fundamentals 8 | */ 9 | public class ApplicationTest extends ApplicationTestCase { 10 | public ApplicationTest() { 11 | super(Application.class); 12 | } 13 | } -------------------------------------------------------------------------------- /CookBook/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /CookBook/app/src/main/java/com/example/wcg/cookbook/CKNetStatus.java: -------------------------------------------------------------------------------- 1 | package com.example.wcg.cookbook; 2 | 3 | /** 4 | * Created by wcg on 16/3/8. 5 | */ 6 | 7 | // 枚举 网络类型 8 | public enum CKNetStatus { 9 | NetAvailable , 10 | NetError; 11 | } 12 | -------------------------------------------------------------------------------- /CookBook/app/src/main/java/com/example/wcg/cookbook/CKNetStatusReceiver.java: -------------------------------------------------------------------------------- 1 | package com.example.wcg.cookbook; 2 | 3 | import android.content.BroadcastReceiver; 4 | import android.content.Context; 5 | import android.content.Intent; 6 | import android.net.ConnectivityManager; 7 | import android.net.NetworkInfo; 8 | import android.widget.Toast; 9 | 10 | import com.example.wcg.cookbook.Http.HttpClient; 11 | 12 | /** 13 | * Created by wcg on 16/3/8. 14 | */ 15 | public class CKNetStatusReceiver extends BroadcastReceiver { 16 | 17 | @Override 18 | public void onReceive(Context context, Intent intent) { 19 | 20 | ConnectivityManager manager = (ConnectivityManager) context.getSystemService(Context.CONNECTIVITY_SERVICE); 21 | NetworkInfo mobileInfo = manager.getNetworkInfo(ConnectivityManager.TYPE_MOBILE); 22 | NetworkInfo wifiInfo = manager.getNetworkInfo(ConnectivityManager.TYPE_WIFI); 23 | NetworkInfo activeInfo = manager.getActiveNetworkInfo(); 24 | 25 | if (activeInfo == null){ 26 | HttpClient.netStatus = CKNetStatus.NetError; 27 | Toast.makeText(context, "网络连接错误", 1).show(); 28 | } else { 29 | HttpClient.netStatus = CKNetStatus.NetAvailable; 30 | Toast.makeText(context, "网络已连接", Toast.LENGTH_SHORT).show(); 31 | } 32 | 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /CookBook/app/src/main/java/com/example/wcg/cookbook/Controller/CKDetailFragment.java: -------------------------------------------------------------------------------- 1 | package com.example.wcg.cookbook.Controller; 2 | 3 | import android.os.Bundle; 4 | import android.support.v4.app.Fragment; 5 | import android.view.LayoutInflater; 6 | import android.view.View; 7 | import android.view.ViewGroup; 8 | 9 | import com.example.wcg.cookbook.R; 10 | 11 | /** 12 | * Created by wcg on 16/3/9. 13 | */ 14 | public class CKDetailFragment extends Fragment { 15 | 16 | 17 | public static CKDetailFragment newInstance(){ 18 | 19 | CKDetailFragment fragment = new CKDetailFragment(); 20 | return fragment; 21 | } 22 | 23 | public CKDetailFragment(){ 24 | 25 | System.out.println("init"); 26 | 27 | } 28 | 29 | @Override 30 | public void onCreate(Bundle savedInstanceState) { 31 | super.onCreate(savedInstanceState); 32 | 33 | System.out.println("detail Oncreate"); 34 | } 35 | 36 | @Override 37 | public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { 38 | 39 | System.out.println("detail OncreateView"); 40 | 41 | return inflater.inflate(R.layout.fragment_detail, container, false); 42 | 43 | } 44 | 45 | 46 | 47 | 48 | } 49 | -------------------------------------------------------------------------------- /CookBook/app/src/main/java/com/example/wcg/cookbook/Controller/CKNameFragment.java: -------------------------------------------------------------------------------- 1 | package com.example.wcg.cookbook.Controller; 2 | 3 | import android.os.Bundle; 4 | import android.support.v4.app.Fragment; 5 | import android.view.LayoutInflater; 6 | import android.view.View; 7 | import android.view.ViewGroup; 8 | 9 | import com.example.wcg.cookbook.R; 10 | import com.example.wcg.cookbook.View.CKNameCell; 11 | 12 | /** 13 | * Created by wcg on 16/3/9. 14 | */ 15 | public class CKNameFragment extends Fragment { 16 | 17 | 18 | public static CKNameFragment newInstance(){ 19 | 20 | CKNameFragment fragment = new CKNameFragment(); 21 | return fragment; 22 | 23 | } 24 | 25 | public CKNameFragment(){ 26 | 27 | } 28 | 29 | @Override 30 | public void onCreate(Bundle savedInstanceState) { 31 | super.onCreate(savedInstanceState); 32 | } 33 | 34 | @Override 35 | public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { 36 | 37 | View view = null; 38 | view = inflater.inflate(R.layout.fragment_name, container, false); 39 | 40 | CKNameCell collection= (CKNameCell) view.findViewById(R.id.collection); 41 | collection.setCkNameCellListener(new CKNameCell.CKNameCellListener() { 42 | @Override 43 | public void click() { 44 | System.out.println("123456778"); 45 | } 46 | }); 47 | 48 | 49 | 50 | return view; 51 | 52 | } 53 | } 54 | -------------------------------------------------------------------------------- /CookBook/app/src/main/java/com/example/wcg/cookbook/Model/Classfy/CKClassifyData.java: -------------------------------------------------------------------------------- 1 | package com.example.wcg.cookbook.Model.Classfy; 2 | 3 | import java.util.ArrayList; 4 | 5 | /** 6 | * Created by wcg on 16/3/8. 7 | */ 8 | public class CKClassifyData { 9 | 10 | private ArrayList tngou; 11 | private boolean status; 12 | 13 | 14 | public ArrayList getTngou() { 15 | return tngou; 16 | } 17 | 18 | public void setTngou(ArrayList tngou) { 19 | this.tngou = tngou; 20 | } 21 | 22 | public boolean isStatus() { 23 | return status; 24 | } 25 | 26 | public void setStatus(boolean status) { 27 | this.status = status; 28 | } 29 | 30 | 31 | 32 | } 33 | -------------------------------------------------------------------------------- /CookBook/app/src/main/java/com/example/wcg/cookbook/Model/Classfy/CKListData.java: -------------------------------------------------------------------------------- 1 | package com.example.wcg.cookbook.Model.Classfy; 2 | 3 | import java.util.ArrayList; 4 | 5 | /** 6 | * Created by wcg on 16/3/17. 7 | */ 8 | public class CKListData { 9 | 10 | private ArrayList tngou; 11 | private String total; 12 | private boolean status; 13 | 14 | 15 | public ArrayList getTngou() { 16 | return tngou; 17 | } 18 | 19 | public void setTngou(ArrayList 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 | ![](./first.png) 9 | 10 | * Second 11 | 12 | ![](./second.png) 13 | 14 | * Third 15 | 16 | ![](./third.png) 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 --------------------------------------------------------------------------------