├── .gitignore ├── .idea ├── .name ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── encodings.xml ├── gradle.xml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── runConfigurations.xml └── vcs.xml ├── AndroidAllDemos.iml ├── README.md ├── app ├── .gitignore ├── app.iml ├── build.gradle ├── libs │ ├── BaiduLBS_Android.jar │ ├── MobLogCollector.jar │ ├── MobTools.jar │ ├── ShareSDK-Core-2.6.3.jar │ ├── ShareSDK-Email-2.6.3.jar │ ├── ShareSDK-QQ-2.6.3.jar │ ├── ShareSDK-QZone-2.6.3.jar │ ├── ShareSDK-SinaWeibo-2.6.3.jar │ ├── ShareSDK-Wechat-2.6.3.jar │ ├── ShareSDK-Wechat-Core-2.6.3.jar │ └── ShareSDK-Wechat-Moments-2.6.3.jar ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── allen │ │ └── androidalldemos │ │ └── ApplicationTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── assets │ │ ├── ShareSDK.xml │ │ ├── error.html │ │ ├── hvc_data.json │ │ ├── img │ │ │ └── opps.jpg │ │ └── login.html │ ├── java │ │ ├── cn │ │ │ └── sharesdk │ │ │ │ └── onekeyshare │ │ │ │ ├── CustomerLogo.java │ │ │ │ ├── EditPageFakeActivity.java │ │ │ │ ├── FollowerListFakeActivity.java │ │ │ │ ├── OnekeyShare.java │ │ │ │ ├── OnekeyShareTheme.java │ │ │ │ ├── PicViewer.java │ │ │ │ ├── PlatformListFakeActivity.java │ │ │ │ ├── ReflectableShareContentCustomizeCallback.java │ │ │ │ ├── Shake2Share.java │ │ │ │ ├── ShareContentCustomizeCallback.java │ │ │ │ ├── ShareCore.java │ │ │ │ ├── ThemeShareCallback.java │ │ │ │ └── theme │ │ │ │ ├── classic │ │ │ │ ├── EditPage.java │ │ │ │ ├── FollowListPage.java │ │ │ │ ├── PlatformGridView.java │ │ │ │ └── PlatformListPage.java │ │ │ │ └── skyblue │ │ │ │ ├── EditPage.java │ │ │ │ ├── FollowListPage.java │ │ │ │ ├── PlatformGridViewAdapter.java │ │ │ │ └── PlatformListPage.java │ │ └── com │ │ │ └── allen │ │ │ └── androidalldemos │ │ │ ├── AboutActivity.java │ │ │ ├── BaseActivity.java │ │ │ ├── MainActivity.java │ │ │ ├── MainDataBean.java │ │ │ ├── MainDataUtils.java │ │ │ ├── actionsheetdialog │ │ │ ├── activity │ │ │ │ └── ActionSheetDialogActivity.java │ │ │ ├── tools │ │ │ │ └── ImageTools.java │ │ │ └── view │ │ │ │ └── ActionSheetDialog.java │ │ │ ├── adapter │ │ │ ├── ListViewAdapter.java │ │ │ └── RecycleviewAdapter.java │ │ │ ├── applaction │ │ │ └── MyApplaction.java │ │ │ ├── asynchttp │ │ │ ├── activity │ │ │ │ └── AsyncHttpActivity.java │ │ │ ├── bean │ │ │ │ └── NewsListBean.java │ │ │ ├── common │ │ │ │ └── UrlString.java │ │ │ └── utils │ │ │ │ └── JsonUtils.java │ │ │ ├── bannerpager │ │ │ ├── activity │ │ │ │ └── BannerPagerActivity.java │ │ │ └── view │ │ │ │ └── BannerPager.java │ │ │ ├── bluetooth │ │ │ ├── activity │ │ │ │ ├── BluetoothChatActivity.java │ │ │ │ └── DeviceListActivity.java │ │ │ ├── adapter │ │ │ │ ├── BluetoothDvAdapter.java │ │ │ │ └── BluetoothMsgAdapter.java │ │ │ ├── bean │ │ │ │ ├── BluetoothBean.java │ │ │ │ └── MessageBean.java │ │ │ └── bluetoothtools │ │ │ │ ├── BluetoothChatService.java │ │ │ │ └── Constants.java │ │ │ ├── fixed │ │ │ ├── activity │ │ │ │ └── HVScorllListviewActivity.java │ │ │ ├── adapter │ │ │ │ ├── BaseAdapter.java │ │ │ │ └── BondSearchResultAdapter.java │ │ │ ├── tools │ │ │ │ └── ToolFile.java │ │ │ └── view │ │ │ │ ├── ObserverHScrollView.java │ │ │ │ └── ObserverHScrollViewIntercept.java │ │ │ ├── gesturelockpsd │ │ │ ├── activity │ │ │ │ └── LoginActivity.java │ │ │ └── gesture │ │ │ │ ├── activity │ │ │ │ ├── GestureEditActivity.java │ │ │ │ └── GestureVerifyActivity.java │ │ │ │ ├── common │ │ │ │ └── Constants.java │ │ │ │ ├── entity │ │ │ │ └── GesturePoint.java │ │ │ │ └── widget │ │ │ │ ├── GestureContentView.java │ │ │ │ ├── GestureDrawline.java │ │ │ │ └── LockIndicator.java │ │ │ ├── gson │ │ │ └── activity │ │ │ │ └── GsonActivity.java │ │ │ ├── imageloader │ │ │ ├── activity │ │ │ │ └── ImageLoaderActivity.java │ │ │ └── adapter │ │ │ │ └── ListAdapter.java │ │ │ ├── loading │ │ │ ├── activity │ │ │ │ └── LoadingActivity.java │ │ │ └── view │ │ │ │ ├── AVLoadingIndicatorView.java │ │ │ │ ├── CubicBezierInterpolator.java │ │ │ │ └── indicator │ │ │ │ ├── BallBeatIndicator.java │ │ │ │ ├── BallClipRotateIndicator.java │ │ │ │ ├── BallClipRotateMultipleIndicator.java │ │ │ │ ├── BallClipRotatePulseIndicator.java │ │ │ │ ├── BallGridBeatIndicator.java │ │ │ │ ├── BallGridPulseIndicator.java │ │ │ │ ├── BallPulseIndicator.java │ │ │ │ ├── BallPulseRiseIndicator.java │ │ │ │ ├── BallPulseSyncIndicator.java │ │ │ │ ├── BallRotateIndicator.java │ │ │ │ ├── BallScaleIndicator.java │ │ │ │ ├── BallScaleMultipleIndicator.java │ │ │ │ ├── BallScaleRippleIndicator.java │ │ │ │ ├── BallScaleRippleMultipleIndicator.java │ │ │ │ ├── BallSpinFadeLoaderIndicator.java │ │ │ │ ├── BallTrianglePathIndicator.java │ │ │ │ ├── BallZigZagDeflectIndicator.java │ │ │ │ ├── BallZigZagIndicator.java │ │ │ │ ├── BaseIndicatorController.java │ │ │ │ ├── CubeTransitionIndicator.java │ │ │ │ ├── LineScaleIndicator.java │ │ │ │ ├── LineScalePartyIndicator.java │ │ │ │ ├── LineScalePulseOutIndicator.java │ │ │ │ ├── LineScalePulseOutRapidIndicator.java │ │ │ │ ├── LineSpinFadeLoaderIndicator.java │ │ │ │ ├── PacmanIndicator.java │ │ │ │ ├── SemiCircleSpinIndicator.java │ │ │ │ ├── SquareSpinIndicator.java │ │ │ │ └── TriangleSkewSpinIndicator.java │ │ │ ├── loadingdialog │ │ │ ├── activity │ │ │ │ └── LoadingDialogActivity.java │ │ │ └── view │ │ │ │ └── LoadingView.java │ │ │ ├── material_design │ │ │ ├── activity │ │ │ │ ├── DesginActivity_Detail.java │ │ │ │ └── DesginActivity_Home.java │ │ │ ├── adapter │ │ │ │ ├── DesignHome_Fragment_Adapter.java │ │ │ │ └── RecyclerViewAdapter.java │ │ │ └── fragment │ │ │ │ ├── BaseFragment.java │ │ │ │ └── DesignFragment.java │ │ │ ├── nanohttpd_and_acache │ │ │ ├── activity │ │ │ │ └── NanoHttpdActivity.java │ │ │ ├── common │ │ │ │ └── UrlPath.java │ │ │ ├── nanohttpd_utils │ │ │ │ ├── NanoHTTPD.java │ │ │ │ └── SimpleServer.java │ │ │ └── webview │ │ │ │ ├── WebViewChromeListener.java │ │ │ │ ├── WebViewClientListener.java │ │ │ │ └── WebViewDealUrlData.java │ │ │ ├── navigation │ │ │ ├── activity │ │ │ │ ├── ChannelActivity.java │ │ │ │ └── NavigationActivity.java │ │ │ ├── adapter │ │ │ │ ├── DragAdapter.java │ │ │ │ ├── MyFragmentAdapter.java │ │ │ │ └── OtherAdapter.java │ │ │ ├── bean │ │ │ │ ├── ChannelItem.java │ │ │ │ └── ColumnBean.java │ │ │ ├── fragment │ │ │ │ └── TestFragment.java │ │ │ ├── tools │ │ │ │ └── NavigationUtils.java │ │ │ ├── utils │ │ │ │ └── navigationUtils.java │ │ │ └── view │ │ │ │ ├── DragGrid.java │ │ │ │ └── OtherGridView.java │ │ │ ├── qrcode │ │ │ ├── activity │ │ │ │ └── QrCodeActivity.java │ │ │ └── tools │ │ │ │ └── EncodingHandler.java │ │ │ ├── recycleview │ │ │ ├── activity │ │ │ │ ├── DragRecycleViewActivity.java │ │ │ │ └── RecycleViewActivity.java │ │ │ ├── adapter │ │ │ │ ├── ListView_Adapter.java │ │ │ │ ├── RecycleView_Drag_Adapter.java │ │ │ │ ├── RecycleView_Grid_Adapter.java │ │ │ │ ├── RecycleView_List_Adapter.java │ │ │ │ └── RecycleView_Staggered_Adapter.java │ │ │ ├── bean │ │ │ │ └── DataBean.java │ │ │ ├── data │ │ │ │ └── Data.java │ │ │ └── itemTouchHelper │ │ │ │ ├── ItemTouchHelperAdapter.java │ │ │ │ ├── ItemTouchHelperViewHolder.java │ │ │ │ ├── SimpleGridItemTouchHelperCallback.java │ │ │ │ └── SimpleItemTouchHelperCallback.java │ │ │ ├── sharesdk │ │ │ └── ShareActivity.java │ │ │ ├── sweetalertdialog │ │ │ ├── activity │ │ │ │ └── SweetAlertDialogActivity.java │ │ │ └── view │ │ │ │ ├── OptAnimationLoader.java │ │ │ │ ├── Rotate3dAnimation.java │ │ │ │ ├── SuccessTickView.java │ │ │ │ └── SweetAlertDialog.java │ │ │ ├── tabbottom │ │ │ ├── activity │ │ │ │ └── TabActivity.java │ │ │ ├── fragment │ │ │ │ ├── Fragment1.java │ │ │ │ ├── Fragment2.java │ │ │ │ ├── Fragment3.java │ │ │ │ ├── Fragment4.java │ │ │ │ └── Fragment5.java │ │ │ └── view │ │ │ │ ├── BottomMenu.java │ │ │ │ └── TabBottom.java │ │ │ ├── topbar │ │ │ └── TopBar.java │ │ │ ├── utils │ │ │ ├── ACache.java │ │ │ ├── AppUtils.java │ │ │ ├── DisplayUtil.java │ │ │ ├── GreenDaoUtils.java │ │ │ ├── LogUtil.java │ │ │ ├── NetUtils.java │ │ │ ├── NetWorkUtils.java │ │ │ ├── SPUtils.java │ │ │ ├── ScreenUtils.java │ │ │ ├── SmartWeatherUrlUtil.java │ │ │ ├── StringUtil.java │ │ │ ├── ToastUtils.java │ │ │ ├── ToolFor9Ge.java │ │ │ └── db │ │ │ │ └── greenrobot │ │ │ │ └── gen │ │ │ │ ├── ChannelItem.java │ │ │ │ ├── ChannelItemDao.java │ │ │ │ ├── DaoMaster.java │ │ │ │ └── DaoSession.java │ │ │ ├── weather │ │ │ ├── activity │ │ │ │ ├── WeatherActivity.java │ │ │ │ └── WeatherActivity_useGson.java │ │ │ ├── bean │ │ │ │ ├── WeatherBean.java │ │ │ │ ├── WeatherDataBean.java │ │ │ │ └── WeatherIndexBean.java │ │ │ └── utils │ │ │ │ ├── ImgUtil.java │ │ │ │ ├── JsonUtils.java │ │ │ │ ├── NetUtils.java │ │ │ │ └── WeatherUtil.java │ │ │ └── wxapi │ │ │ └── WXEntryActivity.java │ ├── jniLibs │ │ └── armeabi │ │ │ └── liblocSDK5.so │ └── res │ │ ├── anim │ │ ├── actionsheet_dialog_in.xml │ │ ├── actionsheet_dialog_out.xml │ │ ├── error_frame_in.xml │ │ ├── error_x_in.xml │ │ ├── modal_in.xml │ │ ├── modal_out.xml │ │ ├── shake.xml │ │ ├── success_bow_roate.xml │ │ └── success_mask_layout.xml │ │ ├── color │ │ ├── gesture_cancel_text_color.xml │ │ ├── subscribe_item_text_color.xml │ │ └── top_category_scroll_text_color_day.xml │ │ ├── drawable-hdpi │ │ ├── d0.png │ │ ├── ic_banner.png │ │ ├── ic_class_icon.jpg │ │ ├── main_bottom_tab_cart_focus.png │ │ ├── main_bottom_tab_cart_normal.png │ │ ├── main_bottom_tab_category_focus.png │ │ ├── main_bottom_tab_category_normal.png │ │ ├── main_bottom_tab_faxian_focus.png │ │ ├── main_bottom_tab_faxian_normal.png │ │ ├── main_bottom_tab_home_focus.png │ │ ├── main_bottom_tab_home_normal.png │ │ ├── main_bottom_tab_personal_focus.png │ │ └── main_bottom_tab_personal_normal.png │ │ ├── drawable-ldpi │ │ └── d0.png │ │ ├── drawable-mdpi │ │ └── d0.png │ │ ├── drawable-xhdpi │ │ ├── bt_message_sent_images_normal.9.png │ │ ├── bt_people_message_received_normal.9.png │ │ ├── cheese_3.jpg │ │ ├── common_icon_search_white.png │ │ ├── d0.png │ │ ├── image_loading.png │ │ ├── list_n.9.png │ │ ├── list_p.9.png │ │ ├── loading.png │ │ ├── loading_rotate_circle.png │ │ ├── logo_email.png │ │ ├── logo_qq.png │ │ ├── logo_qzone.png │ │ ├── logo_sinaweibo.png │ │ ├── logo_wechat.png │ │ ├── logo_wechatmoments.png │ │ ├── msg_receive_item_progress.9.png │ │ ├── msg_send_item_progress.9.png │ │ ├── send_msg_text_background.9.png │ │ ├── toast_actionsheet_bottom_normal.9.png │ │ ├── toast_actionsheet_bottom_pressed.9.png │ │ ├── toast_actionsheet_middle_normal.9.png │ │ ├── toast_actionsheet_middle_pressed.9.png │ │ ├── toast_actionsheet_single_normal.9.png │ │ ├── toast_actionsheet_single_pressed.9.png │ │ ├── toast_actionsheet_top_normal.9.png │ │ └── toast_actionsheet_top_pressed.9.png │ │ ├── drawable-xxhdpi │ │ └── d0.png │ │ ├── drawable-xxxhdpi │ │ └── d0.png │ │ ├── drawable │ │ ├── actionsheet_bottom_selector.xml │ │ ├── actionsheet_middle_selector.xml │ │ ├── actionsheet_single_selector.xml │ │ ├── actionsheet_top_selector.xml │ │ ├── blue_button_background.xml │ │ ├── button_bg.xml │ │ ├── cart_btn_selector.xml │ │ ├── category_btn_selector.xml │ │ ├── classic_platform_corners_bg.xml │ │ ├── demo_list_selector.xml │ │ ├── dialog_background.xml │ │ ├── dialog_style_xml_color.xml │ │ ├── error_center_x.xml │ │ ├── error_circle.xml │ │ ├── faxian_btn_selector.xml │ │ ├── gray_button_background.xml │ │ ├── home_btn_selector.xml │ │ ├── loading_dialog.xml │ │ ├── mine_btn_selector.xml │ │ ├── navigation_button_bg.xml │ │ ├── red_button_background.xml │ │ ├── selector_add_btn.xml │ │ ├── side_nav_bar.xml │ │ ├── skyblue_platform_list_item.xml │ │ ├── skyblue_platform_list_item_selected.xml │ │ ├── skyblue_platform_list_selector.xml │ │ ├── ssdk_recomm_def_app_image.xml │ │ ├── ssdk_recomm_friends_share_msg.xml │ │ ├── subscribe_item_bg.xml │ │ ├── success_bow.xml │ │ ├── success_circle.xml │ │ ├── warning_circle.xml │ │ └── warning_sigh.xml │ │ ├── layout │ │ ├── acitivty_device_list.xml │ │ ├── activity_about.xml │ │ ├── activity_actionsheet_dialog.xml │ │ ├── activity_asynchttp.xml │ │ ├── activity_bannerpager.xml │ │ ├── activity_bluetooth.xml │ │ ├── activity_bluetooth_chat.xml │ │ ├── activity_bluetooth_item.xml │ │ ├── activity_channel.xml │ │ ├── activity_design_datail.xml │ │ ├── activity_design_home.xml │ │ ├── activity_drag_recycleview.xml │ │ ├── activity_gesture_edit.xml │ │ ├── activity_gesture_verify.xml │ │ ├── activity_getsignature.xml │ │ ├── activity_hvscorll_listview.xml │ │ ├── activity_hvscorll_listview_item.xml │ │ ├── activity_imageloader.xml │ │ ├── activity_loading.xml │ │ ├── activity_loading_dialog.xml │ │ ├── activity_login.xml │ │ ├── activity_main.xml │ │ ├── activity_nanohttpd.xml │ │ ├── activity_navigation.xml │ │ ├── activity_qrcode.xml │ │ ├── activity_recycleview.xml │ │ ├── activity_recycleview_grid_item.xml │ │ ├── activity_recycleview_list_item.xml │ │ ├── activity_recycleview_staggered_item.xml │ │ ├── activity_scrolling.xml │ │ ├── activity_share.xml │ │ ├── activity_sweetalert_dialog.xml │ │ ├── activity_tabbottom.xml │ │ ├── activity_weather_main.xml │ │ ├── alert_dialog.xml │ │ ├── app_bar_main.xml │ │ ├── app_toolbar.xml │ │ ├── channel_item.xml │ │ ├── chatting_item_msg_text.xml │ │ ├── column_horizontalscrollview_layout.xml │ │ ├── content_main.xml │ │ ├── drag_list_item.xml │ │ ├── fragment_design.xml │ │ ├── fragment_tab.xml │ │ ├── fragment_test.xml │ │ ├── layout_topbar.xml │ │ ├── list_item_card_detail.xml │ │ ├── list_item_card_main.xml │ │ ├── main_list_item.xml │ │ ├── main_listview_item.xml │ │ ├── message.xml │ │ ├── nav_header_main.xml │ │ ├── skyblue_editpage.xml │ │ ├── skyblue_editpage_at_layout.xml │ │ ├── skyblue_editpage_inc_image_layout.xml │ │ ├── skyblue_share_actionbar.xml │ │ ├── skyblue_share_platform_list.xml │ │ ├── skyblue_share_platform_list_item.xml │ │ ├── tab_bottom_layout.xml │ │ ├── toast_view_actionsheet.xml │ │ └── weatherbody.xml │ │ ├── menu │ │ ├── activity_main_drawer.xml │ │ ├── bluetooth_menu.xml │ │ ├── main.xml │ │ ├── navigation_activity.xml │ │ └── recycleview_menu.xml │ │ ├── mipmap-hdpi │ │ ├── ad_tip_normal.png │ │ ├── ad_tip_selected.png │ │ ├── add_channel_glide.png │ │ ├── add_channel_glide_press.png │ │ ├── bg.png │ │ ├── d0.png │ │ ├── d1.png │ │ ├── d10.png │ │ ├── d11.png │ │ ├── d12.png │ │ ├── d13.png │ │ ├── d14.png │ │ ├── d15.png │ │ ├── d16.png │ │ ├── d17.png │ │ ├── d18.png │ │ ├── d19.png │ │ ├── d2.png │ │ ├── d20.png │ │ ├── d21.png │ │ ├── d22.png │ │ ├── d23.png │ │ ├── d24.png │ │ ├── d25.png │ │ ├── d26.png │ │ ├── d27.png │ │ ├── d28.png │ │ ├── d29.png │ │ ├── d3.png │ │ ├── d30.png │ │ ├── d31.png │ │ ├── d4.png │ │ ├── d5.png │ │ ├── d53.png │ │ ├── d6.png │ │ ├── d7.png │ │ ├── d8.png │ │ ├── d9.png │ │ ├── default_banner.jpg │ │ ├── gesture_lock_pattern_node_normal.png │ │ ├── gesture_lock_pattern_node_pressed.png │ │ ├── gesture_node_normal.png │ │ ├── gesture_node_pressed.png │ │ ├── gesture_node_wrong.png │ │ ├── ic_favorite_white_24dp.png │ │ ├── ic_launcher.png │ │ ├── ic_local_post_office_white_24dp.png │ │ ├── ic_menu.png │ │ ├── ic_person_white_24dp.png │ │ ├── icon.jpg │ │ ├── icon_01.jpg │ │ ├── icon_02.jpg │ │ ├── icon_03.jpg │ │ ├── icon_04.jpg │ │ ├── icon_05.jpg │ │ ├── icon_06.jpg │ │ ├── icon_07.jpg │ │ ├── icon_08.jpg │ │ ├── icon_09.jpg │ │ ├── icon_10.jpg │ │ ├── icon_11.jpg │ │ ├── icon_12.jpg │ │ ├── icon_13.jpg │ │ ├── icon_14.jpg │ │ ├── icon_15.jpg │ │ ├── icon_16.jpg │ │ ├── icon_17.jpg │ │ ├── icon_18.jpg │ │ ├── icon_19.jpg │ │ ├── icon_20.jpg │ │ ├── image_bg.jpg │ │ ├── p1.jpg │ │ ├── p10.jpg │ │ ├── p11.jpg │ │ ├── p12.jpg │ │ ├── p13.jpg │ │ ├── p14.jpg │ │ ├── p15.jpg │ │ ├── p16.jpg │ │ ├── p17.jpg │ │ ├── p18.jpg │ │ ├── p19.jpg │ │ ├── p2.jpg │ │ ├── p20.jpg │ │ ├── p3.jpg │ │ ├── p4.jpg │ │ ├── p5.jpg │ │ ├── p6.jpg │ │ ├── p7.jpg │ │ ├── p8.jpg │ │ ├── p9.jpg │ │ ├── test2.jpg │ │ ├── test3.jpg │ │ ├── titlebar_leftarrow_back.png │ │ └── user_logo.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ ├── btn_back_nor.png │ │ ├── ic_launcher.png │ │ ├── skyblue_actionbar_back_btn.png │ │ ├── skyblue_actionbar_ok_btn.png │ │ ├── skyblue_editpage_bg.png │ │ ├── skyblue_editpage_close.png │ │ ├── skyblue_editpage_divider.png │ │ ├── skyblue_editpage_image_bg.png │ │ ├── skyblue_editpage_image_remove.png │ │ ├── skyblue_platform_checked.png │ │ ├── skyblue_platform_checked_disabled.png │ │ ├── third_guide_head_1.png │ │ └── third_guide_head_2.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.png │ │ ├── values-v21 │ │ └── styles.xml │ │ ├── values-w820dp │ │ └── dimens.xml │ │ └── values │ │ ├── attrs.xml │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── instapaper_strings.xml │ │ ├── oks_strings.xml │ │ ├── ssdk_recomm_strings.xml │ │ ├── ssdk_strings.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── allen │ └── androidalldemos │ └── ExampleUnitTest.java ├── build.gradle ├── buletooth.gif ├── desgin.gif ├── dialog.gif ├── gesturelockpsd.gif ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── iosselect.gif ├── 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 │ │ │ │ │ ├── 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 │ │ │ │ │ └── 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 │ │ │ │ ├── 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 │ │ │ │ └── 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 │ │ │ ├── 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 │ │ ├── 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 │ │ │ │ │ ├── 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 │ │ │ │ │ └── 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 ├── lint.xml └── 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 ├── likeneteasy.gif ├── loading.gif ├── recyclerview.gif ├── settings.gradle └── shuiping.gif /.gitignore: -------------------------------------------------------------------------------- 1 | ### Android template 2 | # Built application files 3 | *.apk 4 | *.ap_ 5 | 6 | # Files for the Dalvik VM 7 | *.dex 8 | 9 | # Java class files 10 | *.class 11 | 12 | # Generated files 13 | bin/ 14 | gen/ 15 | 16 | # Gradle files 17 | .gradle/ 18 | build/ 19 | 20 | # Local configuration file (sdk path, etc) 21 | local.properties 22 | 23 | # Proguard folder generated by Eclipse 24 | proguard/ 25 | 26 | # Log Files 27 | *.log 28 | 29 | # OSX files 30 | .DS_Store 31 | 32 | #android studio 33 | *.iml 34 | .idea 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | AndroidAllDemos -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/libs/BaiduLBS_Android.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/libs/BaiduLBS_Android.jar -------------------------------------------------------------------------------- /app/libs/MobLogCollector.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/libs/MobLogCollector.jar -------------------------------------------------------------------------------- /app/libs/MobTools.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/libs/MobTools.jar -------------------------------------------------------------------------------- /app/libs/ShareSDK-Core-2.6.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/libs/ShareSDK-Core-2.6.3.jar -------------------------------------------------------------------------------- /app/libs/ShareSDK-Email-2.6.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/libs/ShareSDK-Email-2.6.3.jar -------------------------------------------------------------------------------- /app/libs/ShareSDK-QQ-2.6.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/libs/ShareSDK-QQ-2.6.3.jar -------------------------------------------------------------------------------- /app/libs/ShareSDK-QZone-2.6.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/libs/ShareSDK-QZone-2.6.3.jar -------------------------------------------------------------------------------- /app/libs/ShareSDK-SinaWeibo-2.6.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/libs/ShareSDK-SinaWeibo-2.6.3.jar -------------------------------------------------------------------------------- /app/libs/ShareSDK-Wechat-2.6.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/libs/ShareSDK-Wechat-2.6.3.jar -------------------------------------------------------------------------------- /app/libs/ShareSDK-Wechat-Core-2.6.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/libs/ShareSDK-Wechat-Core-2.6.3.jar -------------------------------------------------------------------------------- /app/libs/ShareSDK-Wechat-Moments-2.6.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/libs/ShareSDK-Wechat-Moments-2.6.3.jar -------------------------------------------------------------------------------- /app/src/androidTest/java/com/allen/androidalldemos/ApplicationTest.java: -------------------------------------------------------------------------------- 1 | package com.allen.androidalldemos; 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 | } -------------------------------------------------------------------------------- /app/src/main/assets/img/opps.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/assets/img/opps.jpg -------------------------------------------------------------------------------- /app/src/main/java/cn/sharesdk/onekeyshare/CustomerLogo.java: -------------------------------------------------------------------------------- 1 | /* 2 | * 官网地站:http://www.mob.com 3 | * 技术支持QQ: 4006852216 4 | * 官方微信:ShareSDK (如果发布新版本的话,我们将会第一时间通过微信将版本更新内容推送给您。如果使用过程中有任何问题,也可以通过微信与我们取得联系,我们将会在24小时内给予回复) 5 | * 6 | * Copyright (c) 2013年 mob.com. All rights reserved. 7 | */ 8 | 9 | package cn.sharesdk.onekeyshare; 10 | 11 | import android.graphics.Bitmap; 12 | import android.view.View.OnClickListener; 13 | 14 | /** 九宫格自定义的图标对象 */ 15 | public class CustomerLogo { 16 | public String label; 17 | public Bitmap enableLogo; 18 | public Bitmap disableLogo; 19 | public OnClickListener listener; 20 | } 21 | -------------------------------------------------------------------------------- /app/src/main/java/cn/sharesdk/onekeyshare/OnekeyShareTheme.java: -------------------------------------------------------------------------------- 1 | package cn.sharesdk.onekeyshare; 2 | 3 | public enum OnekeyShareTheme {CLASSIC, SKYBLUE} 4 | -------------------------------------------------------------------------------- /app/src/main/java/cn/sharesdk/onekeyshare/ShareContentCustomizeCallback.java: -------------------------------------------------------------------------------- 1 | package cn.sharesdk.onekeyshare; 2 | 3 | import cn.sharesdk.framework.Platform; 4 | import cn.sharesdk.framework.Platform.ShareParams; 5 | 6 | public interface ShareContentCustomizeCallback { 7 | 8 | public void onShare(Platform platform, ShareParams paramsToShare); 9 | 10 | } 11 | -------------------------------------------------------------------------------- /app/src/main/java/cn/sharesdk/onekeyshare/ThemeShareCallback.java: -------------------------------------------------------------------------------- 1 | /* 2 | * 官网地站:http://www.mob.com 3 | * 技术支持QQ: 4006852216 4 | * 官方微信:ShareSDK (如果发布新版本的话,我们将会第一时间通过微信将版本更新内容推送给您。如果使用过程中有任何问题,也可以通过微信与我们取得联系,我们将会在24小时内给予回复) 5 | * 6 | * Copyright (c) 2013年 mob.com. All rights reserved. 7 | */ 8 | 9 | package cn.sharesdk.onekeyshare; 10 | 11 | import java.util.HashMap; 12 | 13 | import cn.sharesdk.framework.Platform; 14 | 15 | public interface ThemeShareCallback { 16 | public void doShare(HashMap> shareData); 17 | } 18 | -------------------------------------------------------------------------------- /app/src/main/java/com/allen/androidalldemos/BaseActivity.java: -------------------------------------------------------------------------------- 1 | package com.allen.androidalldemos; 2 | 3 | import android.os.Bundle; 4 | import android.os.PersistableBundle; 5 | import android.support.v7.app.AppCompatActivity; 6 | 7 | import com.allen.androidalldemos.applaction.MyApplaction; 8 | 9 | /** 10 | * Created by hardy on 2015/10/23. 11 | */ 12 | public class BaseActivity extends AppCompatActivity { 13 | 14 | private MyApplaction myApplaction; 15 | 16 | @Override 17 | public void onCreate(Bundle savedInstanceState, PersistableBundle persistentState) { 18 | super.onCreate(savedInstanceState, persistentState); 19 | myApplaction = (MyApplaction) getApplication(); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /app/src/main/java/com/allen/androidalldemos/MainDataBean.java: -------------------------------------------------------------------------------- 1 | package com.allen.androidalldemos; 2 | 3 | /** 4 | * Created by Allen on 2015/12/17. 5 | */ 6 | public class MainDataBean { 7 | private int id; 8 | private String name; 9 | 10 | public int getId() { 11 | return id; 12 | } 13 | 14 | public void setId(int id) { 15 | this.id = id; 16 | } 17 | 18 | public String getName() { 19 | return name; 20 | } 21 | 22 | public void setName(String name) { 23 | this.name = name; 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /app/src/main/java/com/allen/androidalldemos/gesturelockpsd/gesture/common/Constants.java: -------------------------------------------------------------------------------- 1 | package com.allen.androidalldemos.gesturelockpsd.gesture.common; 2 | 3 | public class Constants { 4 | 5 | // */ 手势密码点的状态 6 | public static final int POINT_STATE_NORMAL = 0; // 正常状态 7 | 8 | public static final int POINT_STATE_SELECTED = 1; // 按下状态 9 | 10 | public static final int POINT_STATE_WRONG = 2; // 错误状态 11 | // */ 12 | } 13 | -------------------------------------------------------------------------------- /app/src/main/java/com/allen/androidalldemos/gson/activity/GsonActivity.java: -------------------------------------------------------------------------------- 1 | package com.allen.androidalldemos.gson.activity; 2 | 3 | import android.os.Bundle; 4 | import android.support.v7.app.AppCompatActivity; 5 | 6 | /** 7 | * Created by allen on 2015/11/5. 8 | */ 9 | public class GsonActivity extends AppCompatActivity { 10 | String urlString = "http://c.3g.163.com/nc/topicset/android/subscribe/manage/listspecial.html"; 11 | @Override 12 | protected void onCreate(Bundle savedInstanceState) { 13 | super.onCreate(savedInstanceState); 14 | } 15 | 16 | 17 | } 18 | -------------------------------------------------------------------------------- /app/src/main/java/com/allen/androidalldemos/loading/activity/LoadingActivity.java: -------------------------------------------------------------------------------- 1 | package com.allen.androidalldemos.loading.activity; 2 | 3 | import android.os.Bundle; 4 | import android.support.v7.app.AppCompatActivity; 5 | 6 | import com.allen.androidalldemos.R; 7 | 8 | /** 9 | * Created by allen on 2015/11/11. 10 | */ 11 | public class LoadingActivity extends AppCompatActivity { 12 | @Override 13 | protected void onCreate(Bundle savedInstanceState) { 14 | super.onCreate(savedInstanceState); 15 | setContentView(R.layout.activity_loading); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /app/src/main/java/com/allen/androidalldemos/nanohttpd_and_acache/common/UrlPath.java: -------------------------------------------------------------------------------- 1 | package com.allen.androidalldemos.nanohttpd_and_acache.common; 2 | 3 | /** 4 | * Created by allen on 2015/8/26. 5 | */ 6 | public class UrlPath { 7 | public static String rooturl = "http://lygttpod.com/web/"; 8 | public static String weatherUrl = "http://api.map.baidu.com/telematics/v3/weather?location=%E5%AE%9D%E4%B8%B0&output=json&ak=RUD7mk38fQdG0ZjcLCyigc2u"; 9 | } 10 | -------------------------------------------------------------------------------- /app/src/main/java/com/allen/androidalldemos/navigation/utils/navigationUtils.java: -------------------------------------------------------------------------------- 1 | package com.allen.androidalldemos.navigation.utils; 2 | 3 | /** 4 | * Created by hardy on 2015/10/23. 5 | */ 6 | public class navigationUtils { 7 | } 8 | -------------------------------------------------------------------------------- /app/src/main/java/com/allen/androidalldemos/navigation/view/OtherGridView.java: -------------------------------------------------------------------------------- 1 | package com.allen.androidalldemos.navigation.view; 2 | 3 | import android.content.Context; 4 | import android.util.AttributeSet; 5 | import android.widget.GridView; 6 | 7 | public class OtherGridView extends GridView { 8 | 9 | public OtherGridView(Context paramContext, AttributeSet paramAttributeSet) { 10 | super(paramContext, paramAttributeSet); 11 | } 12 | 13 | @Override 14 | public void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { 15 | int expandSpec = MeasureSpec.makeMeasureSpec(Integer.MAX_VALUE >> 2, 16 | MeasureSpec.AT_MOST); 17 | super.onMeasure(widthMeasureSpec, expandSpec); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /app/src/main/java/com/allen/androidalldemos/recycleview/bean/DataBean.java: -------------------------------------------------------------------------------- 1 | package com.allen.androidalldemos.recycleview.bean; 2 | 3 | /** 4 | * Created by Allen on 2015/12/16. 5 | */ 6 | public class DataBean { 7 | 8 | private int icon; 9 | private String title; 10 | 11 | public int getIcon() { 12 | return icon; 13 | } 14 | 15 | public void setIcon(int icon) { 16 | this.icon = icon; 17 | } 18 | 19 | public String getTitle() { 20 | return title; 21 | } 22 | 23 | public void setTitle(String title) { 24 | this.title = title; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi/liblocSDK5.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/jniLibs/armeabi/liblocSDK5.so -------------------------------------------------------------------------------- /app/src/main/res/anim/actionsheet_dialog_in.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/anim/actionsheet_dialog_out.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/anim/error_frame_in.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 11 | 12 | 19 | 20 | -------------------------------------------------------------------------------- /app/src/main/res/anim/modal_out.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 14 | 18 | -------------------------------------------------------------------------------- /app/src/main/res/anim/shake.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/anim/success_bow_roate.xml: -------------------------------------------------------------------------------- 1 | 2 | 12 | -------------------------------------------------------------------------------- /app/src/main/res/anim/success_mask_layout.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 10 | 11 | 12 | 19 | 20 | -------------------------------------------------------------------------------- /app/src/main/res/color/gesture_cancel_text_color.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/color/subscribe_item_text_color.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/color/top_category_scroll_text_color_day.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/d0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/drawable-hdpi/d0.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/drawable-hdpi/ic_banner.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_class_icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/drawable-hdpi/ic_class_icon.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/main_bottom_tab_cart_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/drawable-hdpi/main_bottom_tab_cart_focus.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/main_bottom_tab_cart_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/drawable-hdpi/main_bottom_tab_cart_normal.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/main_bottom_tab_category_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/drawable-hdpi/main_bottom_tab_category_focus.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/main_bottom_tab_category_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/drawable-hdpi/main_bottom_tab_category_normal.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/main_bottom_tab_faxian_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/drawable-hdpi/main_bottom_tab_faxian_focus.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/main_bottom_tab_faxian_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/drawable-hdpi/main_bottom_tab_faxian_normal.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/main_bottom_tab_home_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/drawable-hdpi/main_bottom_tab_home_focus.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/main_bottom_tab_home_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/drawable-hdpi/main_bottom_tab_home_normal.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/main_bottom_tab_personal_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/drawable-hdpi/main_bottom_tab_personal_focus.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/main_bottom_tab_personal_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/drawable-hdpi/main_bottom_tab_personal_normal.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/d0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/drawable-ldpi/d0.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/d0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/drawable-mdpi/d0.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/bt_message_sent_images_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/drawable-xhdpi/bt_message_sent_images_normal.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/bt_people_message_received_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/drawable-xhdpi/bt_people_message_received_normal.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/cheese_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/drawable-xhdpi/cheese_3.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/common_icon_search_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/drawable-xhdpi/common_icon_search_white.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/d0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/drawable-xhdpi/d0.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/image_loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/drawable-xhdpi/image_loading.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/list_n.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/drawable-xhdpi/list_n.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/list_p.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/drawable-xhdpi/list_p.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/drawable-xhdpi/loading.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/loading_rotate_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/drawable-xhdpi/loading_rotate_circle.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/logo_email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/drawable-xhdpi/logo_email.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/logo_qq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/drawable-xhdpi/logo_qq.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/logo_qzone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/drawable-xhdpi/logo_qzone.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/logo_sinaweibo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/drawable-xhdpi/logo_sinaweibo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/logo_wechat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/drawable-xhdpi/logo_wechat.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/logo_wechatmoments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/drawable-xhdpi/logo_wechatmoments.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/msg_receive_item_progress.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/drawable-xhdpi/msg_receive_item_progress.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/msg_send_item_progress.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/drawable-xhdpi/msg_send_item_progress.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/send_msg_text_background.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/drawable-xhdpi/send_msg_text_background.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/toast_actionsheet_bottom_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/drawable-xhdpi/toast_actionsheet_bottom_normal.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/toast_actionsheet_bottom_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/drawable-xhdpi/toast_actionsheet_bottom_pressed.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/toast_actionsheet_middle_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/drawable-xhdpi/toast_actionsheet_middle_normal.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/toast_actionsheet_middle_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/drawable-xhdpi/toast_actionsheet_middle_pressed.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/toast_actionsheet_single_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/drawable-xhdpi/toast_actionsheet_single_normal.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/toast_actionsheet_single_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/drawable-xhdpi/toast_actionsheet_single_pressed.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/toast_actionsheet_top_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/drawable-xhdpi/toast_actionsheet_top_normal.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/toast_actionsheet_top_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/drawable-xhdpi/toast_actionsheet_top_pressed.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/d0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/drawable-xxhdpi/d0.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/d0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/drawable-xxxhdpi/d0.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/actionsheet_bottom_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/actionsheet_middle_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/actionsheet_single_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/actionsheet_top_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/blue_button_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/cart_btn_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/category_btn_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/classic_platform_corners_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 11 | 12 | 15 | 16 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/dialog_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/error_circle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/faxian_btn_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/gray_button_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/loading_dialog.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/mine_btn_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/red_button_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/selector_add_btn.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/side_nav_bar.xml: -------------------------------------------------------------------------------- 1 | 3 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/skyblue_platform_list_item.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/skyblue_platform_list_item_selected.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/skyblue_platform_list_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 11 | 14 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ssdk_recomm_def_app_image.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ssdk_recomm_friends_share_msg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/success_bow.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/success_circle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/warning_circle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_navigation.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | 10 | 11 | 15 | 16 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_recycleview.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_design.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_tab.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | 16 | -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_test.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 15 | -------------------------------------------------------------------------------- /app/src/main/res/menu/bluetooth_menu.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/menu/main.xml: -------------------------------------------------------------------------------- 1 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/menu/navigation_activity.xml: -------------------------------------------------------------------------------- 1 | 5 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ad_tip_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/ad_tip_normal.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ad_tip_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/ad_tip_selected.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/add_channel_glide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/add_channel_glide.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/add_channel_glide_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/add_channel_glide_press.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/bg.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/d0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/d0.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/d1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/d1.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/d10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/d10.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/d11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/d11.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/d12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/d12.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/d13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/d13.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/d14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/d14.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/d15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/d15.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/d16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/d16.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/d17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/d17.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/d18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/d18.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/d19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/d19.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/d2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/d2.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/d20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/d20.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/d21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/d21.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/d22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/d22.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/d23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/d23.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/d24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/d24.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/d25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/d25.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/d26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/d26.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/d27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/d27.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/d28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/d28.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/d29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/d29.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/d3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/d3.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/d30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/d30.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/d31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/d31.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/d4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/d4.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/d5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/d5.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/d53.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/d53.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/d6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/d6.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/d7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/d7.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/d8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/d8.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/d9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/d9.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/default_banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/default_banner.jpg -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/gesture_lock_pattern_node_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/gesture_lock_pattern_node_normal.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/gesture_lock_pattern_node_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/gesture_lock_pattern_node_pressed.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/gesture_node_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/gesture_node_normal.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/gesture_node_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/gesture_node_pressed.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/gesture_node_wrong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/gesture_node_wrong.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_favorite_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/ic_favorite_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_local_post_office_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/ic_local_post_office_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/ic_menu.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_person_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/ic_person_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/icon.jpg -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/icon_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/icon_01.jpg -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/icon_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/icon_02.jpg -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/icon_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/icon_03.jpg -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/icon_04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/icon_04.jpg -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/icon_05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/icon_05.jpg -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/icon_06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/icon_06.jpg -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/icon_07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/icon_07.jpg -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/icon_08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/icon_08.jpg -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/icon_09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/icon_09.jpg -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/icon_10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/icon_10.jpg -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/icon_11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/icon_11.jpg -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/icon_12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/icon_12.jpg -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/icon_13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/icon_13.jpg -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/icon_14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/icon_14.jpg -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/icon_15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/icon_15.jpg -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/icon_16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/icon_16.jpg -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/icon_17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/icon_17.jpg -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/icon_18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/icon_18.jpg -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/icon_19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/icon_19.jpg -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/icon_20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/icon_20.jpg -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/image_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/image_bg.jpg -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/p1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/p1.jpg -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/p10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/p10.jpg -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/p11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/p11.jpg -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/p12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/p12.jpg -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/p13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/p13.jpg -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/p14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/p14.jpg -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/p15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/p15.jpg -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/p16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/p16.jpg -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/p17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/p17.jpg -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/p18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/p18.jpg -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/p19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/p19.jpg -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/p2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/p2.jpg -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/p20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/p20.jpg -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/p3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/p3.jpg -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/p4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/p4.jpg -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/p5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/p5.jpg -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/p6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/p6.jpg -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/p7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/p7.jpg -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/p8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/p8.jpg -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/p9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/p9.jpg -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/test2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/test2.jpg -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/test3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/test3.jpg -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/titlebar_leftarrow_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/titlebar_leftarrow_back.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/user_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-hdpi/user_logo.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/btn_back_nor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-xhdpi/btn_back_nor.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/skyblue_actionbar_back_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-xhdpi/skyblue_actionbar_back_btn.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/skyblue_actionbar_ok_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-xhdpi/skyblue_actionbar_ok_btn.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/skyblue_editpage_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-xhdpi/skyblue_editpage_bg.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/skyblue_editpage_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-xhdpi/skyblue_editpage_close.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/skyblue_editpage_divider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-xhdpi/skyblue_editpage_divider.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/skyblue_editpage_image_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-xhdpi/skyblue_editpage_image_bg.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/skyblue_editpage_image_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-xhdpi/skyblue_editpage_image_remove.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/skyblue_platform_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-xhdpi/skyblue_platform_checked.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/skyblue_platform_checked_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-xhdpi/skyblue_platform_checked_disabled.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/third_guide_head_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-xhdpi/third_guide_head_1.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/third_guide_head_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-xhdpi/third_guide_head_2.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- 1 | > 2 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 64dp 6 | 7 | -------------------------------------------------------------------------------- /app/src/test/java/com/allen/androidalldemos/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.allen.androidalldemos; 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 | } -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /buletooth.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/buletooth.gif -------------------------------------------------------------------------------- /desgin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/desgin.gif -------------------------------------------------------------------------------- /dialog.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/dialog.gif -------------------------------------------------------------------------------- /gesturelockpsd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/gesturelockpsd.gif -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Tue Oct 20 14:10:14 CST 2015 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 | -------------------------------------------------------------------------------- /iosselect.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/iosselect.gif -------------------------------------------------------------------------------- /library/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.library' 2 | 3 | android { 4 | compileSdkVersion 17 5 | buildToolsVersion "22.0.1" 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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/aapt/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/classes.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/bundles/debug/classes.jar -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/drawable-hdpi/default_ptr_flip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/bundles/debug/res/drawable-hdpi/default_ptr_flip.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/drawable-hdpi/default_ptr_rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/bundles/debug/res/drawable-hdpi/default_ptr_rotate.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/drawable-hdpi/indicator_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/bundles/debug/res/drawable-hdpi/indicator_arrow.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/drawable-mdpi/default_ptr_flip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/bundles/debug/res/drawable-mdpi/default_ptr_flip.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/drawable-mdpi/default_ptr_rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/bundles/debug/res/drawable-mdpi/default_ptr_rotate.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/drawable-mdpi/indicator_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/bundles/debug/res/drawable-mdpi/indicator_arrow.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/drawable-xhdpi/default_ptr_flip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/bundles/debug/res/drawable-xhdpi/default_ptr_flip.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/drawable-xhdpi/default_ptr_rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/bundles/debug/res/drawable-xhdpi/default_ptr_rotate.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/drawable-xhdpi/indicator_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/bundles/debug/res/drawable-xhdpi/indicator_arrow.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/values-ar/values-ar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | اسحب للتحديث… 6 | تحميل… 7 | اترك للتحديث… 8 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/values-he/values-he.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | משוך לרענון… 6 | טוען… 7 | שחרר לרענון… 8 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/values-iw/values-iw.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | משוך לרענון… 6 | טוען… 7 | שחרר לרענון… 8 | -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/values-ja/values-ja.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 画面を引っ張って… 6 | 読み込み中… 7 | 指を離して更新… 8 | -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/values-ko/values-ko.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 당겨서 새로 고침… 6 | 로드 중… 7 | 놓아서 새로 고침… 8 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/values-ru/values-ru.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Потяните для обновления… 6 | Загрузка… 7 | Отпустите для обновления… 8 | -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/values-zh/values-zh.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 下拉刷新… 6 | 正在载入… 7 | 放开以刷新… 8 | -------------------------------------------------------------------------------- /library/build/intermediates/bundles/release/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /library/build/intermediates/bundles/release/aapt/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /library/build/intermediates/bundles/release/classes.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/bundles/release/classes.jar -------------------------------------------------------------------------------- /library/build/intermediates/bundles/release/res/drawable-hdpi/default_ptr_flip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/bundles/release/res/drawable-hdpi/default_ptr_flip.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/release/res/drawable-hdpi/default_ptr_rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/bundles/release/res/drawable-hdpi/default_ptr_rotate.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/release/res/drawable-hdpi/indicator_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/bundles/release/res/drawable-hdpi/indicator_arrow.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/release/res/drawable-mdpi/default_ptr_flip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/bundles/release/res/drawable-mdpi/default_ptr_flip.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/release/res/drawable-mdpi/default_ptr_rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/bundles/release/res/drawable-mdpi/default_ptr_rotate.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/release/res/drawable-mdpi/indicator_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/bundles/release/res/drawable-mdpi/indicator_arrow.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/release/res/drawable-xhdpi/default_ptr_flip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/bundles/release/res/drawable-xhdpi/default_ptr_flip.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/release/res/drawable-xhdpi/default_ptr_rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/bundles/release/res/drawable-xhdpi/default_ptr_rotate.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/release/res/drawable-xhdpi/indicator_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/bundles/release/res/drawable-xhdpi/indicator_arrow.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/release/res/values-ar/values-ar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | اسحب للتحديث… 6 | تحميل… 7 | اترك للتحديث… 8 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /library/build/intermediates/bundles/release/res/values-he/values-he.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | משוך לרענון… 6 | טוען… 7 | שחרר לרענון… 8 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /library/build/intermediates/bundles/release/res/values-iw/values-iw.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | משוך לרענון… 6 | טוען… 7 | שחרר לרענון… 8 | -------------------------------------------------------------------------------- /library/build/intermediates/bundles/release/res/values-ja/values-ja.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 画面を引っ張って… 6 | 読み込み中… 7 | 指を離して更新… 8 | -------------------------------------------------------------------------------- /library/build/intermediates/bundles/release/res/values-ko/values-ko.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 당겨서 새로 고침… 6 | 로드 중… 7 | 놓아서 새로 고침… 8 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /library/build/intermediates/bundles/release/res/values-ru/values-ru.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Потяните для обновления… 6 | Загрузка… 7 | Отпустите для обновления… 8 | -------------------------------------------------------------------------------- /library/build/intermediates/bundles/release/res/values-zh/values-zh.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 下拉刷新… 6 | 正在载入… 7 | 放开以刷新… 8 | -------------------------------------------------------------------------------- /library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/BuildConfig.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/ILoadingLayout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/ILoadingLayout.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/IPullToRefresh.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/IPullToRefresh.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/LoadingLayoutProxy.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/LoadingLayoutProxy.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/OverscrollHelper$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/OverscrollHelper$1.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/OverscrollHelper.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/OverscrollHelper.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshAdapterViewBase$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshAdapterViewBase$1.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshAdapterViewBase.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshAdapterViewBase.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshBase$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshBase$1.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshBase$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshBase$2.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshBase$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshBase$3.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshBase$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshBase$4.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshBase$AnimationStyle.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshBase$AnimationStyle.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshBase$Mode.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshBase$Mode.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshBase$OnLastItemVisibleListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshBase$OnLastItemVisibleListener.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshBase$OnPullEventListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshBase$OnPullEventListener.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshBase$OnRefreshListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshBase$OnRefreshListener.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshBase$OnRefreshListener2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshBase$OnRefreshListener2.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshBase$OnSmoothScrollFinishedListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshBase$OnSmoothScrollFinishedListener.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshBase$Orientation.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshBase$Orientation.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshBase$SmoothScrollRunnable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshBase$SmoothScrollRunnable.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshBase$State.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshBase$State.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshBase.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshBase.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshExpandableListView$InternalExpandableListView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshExpandableListView$InternalExpandableListView.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshExpandableListView$InternalExpandableListViewSDK9.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshExpandableListView$InternalExpandableListViewSDK9.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshExpandableListView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshExpandableListView.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshGridView$InternalGridView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshGridView$InternalGridView.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshGridView$InternalGridViewSDK9.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshGridView$InternalGridViewSDK9.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshGridView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshGridView.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshHorizontalScrollView$InternalHorizontalScrollViewSDK9.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshHorizontalScrollView$InternalHorizontalScrollViewSDK9.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshHorizontalScrollView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshHorizontalScrollView.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshListView$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshListView$1.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshListView$InternalListView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshListView$InternalListView.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshListView$InternalListViewSDK9.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshListView$InternalListViewSDK9.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshListView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshListView.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshScrollView$InternalScrollViewSDK9.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshScrollView$InternalScrollViewSDK9.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshScrollView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshScrollView.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshWebView$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshWebView$1.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshWebView$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshWebView$2.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshWebView$InternalWebViewSDK9.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshWebView$InternalWebViewSDK9.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshWebView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/PullToRefreshWebView.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/R$anim.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/R$anim.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/R$attr.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/R$dimen.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/R$drawable.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/R$id.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/R$layout.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/R$string.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/R$styleable.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/R.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/extras/PullToRefreshWebView2$JsValueCallback.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/extras/PullToRefreshWebView2$JsValueCallback.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/extras/PullToRefreshWebView2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/extras/PullToRefreshWebView2.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/extras/SoundPullEventListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/extras/SoundPullEventListener.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/internal/EmptyViewMethodAccessor.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/internal/EmptyViewMethodAccessor.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/internal/FlipLoadingLayout$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/internal/FlipLoadingLayout$1.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/internal/FlipLoadingLayout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/internal/FlipLoadingLayout.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/internal/IndicatorLayout$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/internal/IndicatorLayout$1.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/internal/IndicatorLayout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/internal/IndicatorLayout.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/internal/LoadingLayout$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/internal/LoadingLayout$1.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/internal/LoadingLayout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/internal/LoadingLayout.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/internal/RotateLoadingLayout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/internal/RotateLoadingLayout.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/internal/Utils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/internal/Utils.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/internal/ViewCompat$SDK11.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/internal/ViewCompat$SDK11.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/internal/ViewCompat$SDK16.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/internal/ViewCompat$SDK16.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/internal/ViewCompat.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/debug/com/handmark/pulltorefresh/library/internal/ViewCompat.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/BuildConfig.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/ILoadingLayout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/ILoadingLayout.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/IPullToRefresh.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/IPullToRefresh.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/LoadingLayoutProxy.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/LoadingLayoutProxy.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/OverscrollHelper$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/OverscrollHelper$1.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/OverscrollHelper.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/OverscrollHelper.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshAdapterViewBase$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshAdapterViewBase$1.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshAdapterViewBase.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshAdapterViewBase.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshBase$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshBase$1.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshBase$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshBase$2.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshBase$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshBase$3.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshBase$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshBase$4.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshBase$AnimationStyle.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshBase$AnimationStyle.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshBase$Mode.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshBase$Mode.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshBase$OnLastItemVisibleListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshBase$OnLastItemVisibleListener.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshBase$OnPullEventListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshBase$OnPullEventListener.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshBase$OnRefreshListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshBase$OnRefreshListener.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshBase$OnRefreshListener2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshBase$OnRefreshListener2.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshBase$OnSmoothScrollFinishedListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshBase$OnSmoothScrollFinishedListener.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshBase$Orientation.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshBase$Orientation.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshBase$SmoothScrollRunnable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshBase$SmoothScrollRunnable.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshBase$State.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshBase$State.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshBase.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshBase.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshExpandableListView$InternalExpandableListView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshExpandableListView$InternalExpandableListView.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshExpandableListView$InternalExpandableListViewSDK9.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshExpandableListView$InternalExpandableListViewSDK9.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshExpandableListView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshExpandableListView.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshGridView$InternalGridView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshGridView$InternalGridView.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshGridView$InternalGridViewSDK9.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshGridView$InternalGridViewSDK9.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshGridView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshGridView.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshHorizontalScrollView$InternalHorizontalScrollViewSDK9.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshHorizontalScrollView$InternalHorizontalScrollViewSDK9.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshHorizontalScrollView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshHorizontalScrollView.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshListView$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshListView$1.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshListView$InternalListView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshListView$InternalListView.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshListView$InternalListViewSDK9.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshListView$InternalListViewSDK9.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshListView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshListView.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshScrollView$InternalScrollViewSDK9.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshScrollView$InternalScrollViewSDK9.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshScrollView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshScrollView.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshWebView$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshWebView$1.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshWebView$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshWebView$2.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshWebView$InternalWebViewSDK9.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshWebView$InternalWebViewSDK9.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshWebView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/PullToRefreshWebView.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/R$anim.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/R$anim.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/R$attr.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/R$dimen.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/R$drawable.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/R$id.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/R$layout.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/R$string.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/R$styleable.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/R.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/extras/PullToRefreshWebView2$JsValueCallback.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/extras/PullToRefreshWebView2$JsValueCallback.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/extras/PullToRefreshWebView2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/extras/PullToRefreshWebView2.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/extras/SoundPullEventListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/extras/SoundPullEventListener.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/internal/EmptyViewMethodAccessor.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/internal/EmptyViewMethodAccessor.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/internal/FlipLoadingLayout$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/internal/FlipLoadingLayout$1.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/internal/FlipLoadingLayout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/internal/FlipLoadingLayout.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/internal/IndicatorLayout$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/internal/IndicatorLayout$1.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/internal/IndicatorLayout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/internal/IndicatorLayout.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/internal/LoadingLayout$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/internal/LoadingLayout$1.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/internal/LoadingLayout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/internal/LoadingLayout.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/internal/RotateLoadingLayout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/internal/RotateLoadingLayout.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/internal/Utils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/internal/Utils.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/internal/ViewCompat$SDK11.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/internal/ViewCompat$SDK11.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/internal/ViewCompat$SDK16.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/internal/ViewCompat$SDK16.class -------------------------------------------------------------------------------- /library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/internal/ViewCompat.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/classes/release/com/handmark/pulltorefresh/library/internal/ViewCompat.class -------------------------------------------------------------------------------- /library/build/intermediates/incremental/aidl/androidTest/debug/dependency.store: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /library/build/intermediates/incremental/aidl/debug/dependency.store: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /library/build/intermediates/incremental/aidl/release/dependency.store: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /library/build/intermediates/incremental/mergeAssets/androidTest/debug/merger.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /library/build/intermediates/incremental/mergeAssets/debug/merger.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /library/build/intermediates/incremental/mergeAssets/release/merger.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/androidTest/debug/drawable-hdpi/default_ptr_flip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/res/merged/androidTest/debug/drawable-hdpi/default_ptr_flip.png -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/androidTest/debug/drawable-hdpi/default_ptr_rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/res/merged/androidTest/debug/drawable-hdpi/default_ptr_rotate.png -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/androidTest/debug/drawable-hdpi/indicator_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/res/merged/androidTest/debug/drawable-hdpi/indicator_arrow.png -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/androidTest/debug/drawable-mdpi/default_ptr_flip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/res/merged/androidTest/debug/drawable-mdpi/default_ptr_flip.png -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/androidTest/debug/drawable-mdpi/default_ptr_rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/res/merged/androidTest/debug/drawable-mdpi/default_ptr_rotate.png -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/androidTest/debug/drawable-mdpi/indicator_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/res/merged/androidTest/debug/drawable-mdpi/indicator_arrow.png -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi/default_ptr_flip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi/default_ptr_flip.png -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi/default_ptr_rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi/default_ptr_rotate.png -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi/indicator_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi/indicator_arrow.png -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/androidTest/debug/values-ar/values-ar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | اسحب للتحديث… 6 | تحميل… 7 | اترك للتحديث… 8 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/androidTest/debug/values-he/values-he.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | משוך לרענון… 6 | טוען… 7 | שחרר לרענון… 8 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/androidTest/debug/values-iw/values-iw.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | משוך לרענון… 6 | טוען… 7 | שחרר לרענון… 8 | -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/androidTest/debug/values-ja/values-ja.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 画面を引っ張って… 6 | 読み込み中… 7 | 指を離して更新… 8 | -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/androidTest/debug/values-ko/values-ko.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 당겨서 새로 고침… 6 | 로드 중… 7 | 놓아서 새로 고침… 8 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/androidTest/debug/values-ru/values-ru.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Потяните для обновления… 6 | Загрузка… 7 | Отпустите для обновления… 8 | -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/androidTest/debug/values-zh/values-zh.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 下拉刷新… 6 | 正在载入… 7 | 放开以刷新… 8 | -------------------------------------------------------------------------------- /library/build/intermediates/res/resources-debug-androidTest.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/intermediates/res/resources-debug-androidTest.ap_ -------------------------------------------------------------------------------- /library/build/outputs/aar/library-debug.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/outputs/aar/library-debug.aar -------------------------------------------------------------------------------- /library/build/outputs/aar/library-release.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/build/outputs/aar/library-release.aar -------------------------------------------------------------------------------- /library/build/tmp/packageDebugJar/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | 3 | -------------------------------------------------------------------------------- /library/build/tmp/packageReleaseJar/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | 3 | -------------------------------------------------------------------------------- /library/lint.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /library/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/default_ptr_flip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/src/main/res/drawable-hdpi/default_ptr_flip.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/default_ptr_rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/src/main/res/drawable-hdpi/default_ptr_rotate.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/indicator_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/src/main/res/drawable-hdpi/indicator_arrow.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/default_ptr_flip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/src/main/res/drawable-mdpi/default_ptr_flip.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/default_ptr_rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/src/main/res/drawable-mdpi/default_ptr_rotate.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/indicator_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/src/main/res/drawable-mdpi/indicator_arrow.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/default_ptr_flip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/src/main/res/drawable-xhdpi/default_ptr_flip.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/default_ptr_rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/src/main/res/drawable-xhdpi/default_ptr_rotate.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/indicator_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/library/src/main/res/drawable-xhdpi/indicator_arrow.png -------------------------------------------------------------------------------- /library/src/main/res/drawable/indicator_bg_bottom.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 11 | 17 | 18 | -------------------------------------------------------------------------------- /library/src/main/res/drawable/indicator_bg_top.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 11 | 17 | 18 | -------------------------------------------------------------------------------- /library/src/main/res/values-ar/pull_refresh_strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | اسحب للتحديث… 4 | اترك للتحديث… 5 | تحميل… 6 | 7 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /library/src/main/res/values-de/pull_refresh_strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Ziehen zum Aktualisieren… 4 | Loslassen zum Aktualisieren… 5 | Laden… 6 | 7 | -------------------------------------------------------------------------------- /library/src/main/res/values-es/pull_refresh_strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Tirar para actualizar… 4 | Soltar para actualizar… 5 | Cargando… 6 | 7 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /library/src/main/res/values-he/pull_refresh_strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | משוך לרענון… 4 | שחרר לרענון… 5 | טוען… 6 | 7 | -------------------------------------------------------------------------------- /library/src/main/res/values-it/pull_refresh_strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Tira per aggiornare… 4 | Rilascia per aggionare… 5 | Caricamento… 6 | 7 | -------------------------------------------------------------------------------- /library/src/main/res/values-iw/pull_refresh_strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | משוך לרענון… 4 | שחרר לרענון… 5 | טוען… 6 | 7 | -------------------------------------------------------------------------------- /library/src/main/res/values-ja/pull_refresh_strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 画面を引っ張って… 4 | 指を離して更新… 5 | 読み込み中… 6 | 7 | -------------------------------------------------------------------------------- /library/src/main/res/values-ko/pull_refresh_strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 당겨서 새로 고침… 4 | 놓아서 새로 고침… 5 | 로드 중… 6 | 7 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /library/src/main/res/values-ru/pull_refresh_strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Потяните для обновления… 4 | Отпустите для обновления… 5 | Загрузка… 6 | 7 | -------------------------------------------------------------------------------- /library/src/main/res/values-zh/pull_refresh_strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 下拉刷新… 4 | 放开以刷新… 5 | 正在载入… 6 | 7 | -------------------------------------------------------------------------------- /library/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10dp 5 | 12dp 6 | 4dp 7 | 24dp 8 | 12dp 9 | 10 | -------------------------------------------------------------------------------- /library/src/main/res/values/ids.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /likeneteasy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/likeneteasy.gif -------------------------------------------------------------------------------- /loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/loading.gif -------------------------------------------------------------------------------- /recyclerview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/recyclerview.gif -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':library' 2 | -------------------------------------------------------------------------------- /shuiping.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lygttpod/AndroidAllDemos/5354438e526bbf91c172e59991e217807dc9e74d/shuiping.gif --------------------------------------------------------------------------------