├── .gitattributes ├── .gitignore ├── Lib ├── .classpath ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── libs │ ├── clog-1.0.2-sources.jar │ └── clog-1.0.2.jar ├── proguard-project.txt ├── project.properties ├── res │ ├── drawable-xhdpi │ │ └── ptr_rotate_arrow.png │ ├── layout │ │ ├── cube_ptr_classic_default_header.xml │ │ └── cube_ptr_simple_loading.xml │ ├── values-zh │ │ └── cube_ptr_string.xml │ └── values │ │ ├── cube_ptr_attrs.xml │ │ └── cube_ptr_string.xml └── src │ └── in │ └── srain │ └── cube │ └── views │ └── ptr │ ├── PtrClassicDefaultHeader.java │ ├── PtrClassicFrameLayout.java │ ├── PtrDefaultHandler.java │ ├── PtrFrameLayout.java │ ├── PtrHandler.java │ ├── PtrUIHandler.java │ ├── PtrUIHandlerHolder.java │ ├── header │ ├── StoreHouseBarItem.java │ ├── StoreHouseHeader.java │ └── StoreHousePath.java │ └── util │ └── PtrLocalDisplay.java ├── UPTR ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── assets │ └── request_init │ │ └── demo │ │ └── image-list.json ├── ic_launcher-web.png ├── libs │ ├── clog-1.0.2-sources.jar │ ├── clog-1.0.2.jar │ ├── cube-sdk-1.0.40.apklib │ ├── support-v4-r7-sources.jar │ ├── support-v4-r7.jar │ └── ultra-ptr-1.0.2.apklib ├── proguard-project.txt ├── project.properties ├── res │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ ├── drawable │ │ └── with_long_press_list_item_background.xml │ ├── layout │ │ ├── activity_main.xml │ │ ├── fragmengt_ptr_home.xml │ │ ├── fragment_classic_header_with_gridview.xml │ │ ├── fragment_classic_header_with_textview.xml │ │ ├── fragment_classic_header_with_viewgroup.xml │ │ ├── fragment_storehouse_header.xml │ │ ├── fragment_with_long_press.xml │ │ ├── with_grid_view_item_image_list_grid.xml │ │ └── with_long_press_list_view_item.xml │ ├── values-zh │ │ └── strings.xml │ └── values │ │ ├── arrays.xml │ │ └── strings.xml └── src │ └── in │ └── srain │ └── cube │ └── views │ └── ptr │ └── demo │ ├── app │ └── CubeDemoApplication.java │ ├── data │ └── DemoRequestData.java │ ├── image │ ├── DemoDuiTangImageResizer.java │ └── Images.java │ └── ui │ ├── HomeFragment.java │ ├── Utils.java │ ├── WithLongPressFragment.java │ ├── activity │ └── HomeActivity.java │ ├── classic │ ├── AutoRefresh.java │ ├── EvenOnlyATextView.java │ ├── HideHeader.java │ ├── KeepHeader.java │ ├── PullToRefresh.java │ ├── ReleaseToRefresh.java │ ├── WithGridView.java │ └── WithTextViewInFrameLayoutFragment.java │ └── storehouse │ ├── StoreHouseUsingString.java │ └── StoreHouseUsingStringArray.java ├── appcompat ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── README.txt ├── libs │ ├── android-support-v4.jar │ └── android-support-v7-appcompat.jar ├── project.properties ├── res │ ├── anim │ │ ├── abc_fade_in.xml │ │ ├── abc_fade_out.xml │ │ ├── abc_slide_in_bottom.xml │ │ ├── abc_slide_in_top.xml │ │ ├── abc_slide_out_bottom.xml │ │ └── abc_slide_out_top.xml │ ├── color │ │ └── abc_search_url_text_holo.xml │ ├── drawable-hdpi │ │ ├── abc_ab_bottom_solid_dark_holo.9.png │ │ ├── abc_ab_bottom_solid_light_holo.9.png │ │ ├── abc_ab_bottom_transparent_dark_holo.9.png │ │ ├── abc_ab_bottom_transparent_light_holo.9.png │ │ ├── abc_ab_share_pack_holo_dark.9.png │ │ ├── abc_ab_share_pack_holo_light.9.png │ │ ├── abc_ab_solid_dark_holo.9.png │ │ ├── abc_ab_solid_light_holo.9.png │ │ ├── abc_ab_stacked_solid_dark_holo.9.png │ │ ├── abc_ab_stacked_solid_light_holo.9.png │ │ ├── abc_ab_stacked_transparent_dark_holo.9.png │ │ ├── abc_ab_stacked_transparent_light_holo.9.png │ │ ├── abc_ab_transparent_dark_holo.9.png │ │ ├── abc_ab_transparent_light_holo.9.png │ │ ├── abc_cab_background_bottom_holo_dark.9.png │ │ ├── abc_cab_background_bottom_holo_light.9.png │ │ ├── abc_cab_background_top_holo_dark.9.png │ │ ├── abc_cab_background_top_holo_light.9.png │ │ ├── abc_ic_ab_back_holo_dark.png │ │ ├── abc_ic_ab_back_holo_light.png │ │ ├── abc_ic_cab_done_holo_dark.png │ │ ├── abc_ic_cab_done_holo_light.png │ │ ├── abc_ic_clear_disabled.png │ │ ├── abc_ic_clear_normal.png │ │ ├── abc_ic_clear_search_api_disabled_holo_light.png │ │ ├── abc_ic_clear_search_api_holo_light.png │ │ ├── abc_ic_commit_search_api_holo_dark.png │ │ ├── abc_ic_commit_search_api_holo_light.png │ │ ├── abc_ic_go.png │ │ ├── abc_ic_go_search_api_holo_light.png │ │ ├── abc_ic_menu_moreoverflow_normal_holo_dark.png │ │ ├── abc_ic_menu_moreoverflow_normal_holo_light.png │ │ ├── abc_ic_menu_share_holo_dark.png │ │ ├── abc_ic_menu_share_holo_light.png │ │ ├── abc_ic_search.png │ │ ├── abc_ic_search_api_holo_light.png │ │ ├── abc_ic_voice_search.png │ │ ├── abc_ic_voice_search_api_holo_light.png │ │ ├── abc_list_divider_holo_dark.9.png │ │ ├── abc_list_divider_holo_light.9.png │ │ ├── abc_list_focused_holo.9.png │ │ ├── abc_list_longpressed_holo.9.png │ │ ├── abc_list_pressed_holo_dark.9.png │ │ ├── abc_list_pressed_holo_light.9.png │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ ├── abc_menu_dropdown_panel_holo_dark.9.png │ │ ├── abc_menu_dropdown_panel_holo_light.9.png │ │ ├── abc_menu_hardkey_panel_holo_dark.9.png │ │ ├── abc_menu_hardkey_panel_holo_light.9.png │ │ ├── abc_spinner_ab_default_holo_dark.9.png │ │ ├── abc_spinner_ab_default_holo_light.9.png │ │ ├── abc_spinner_ab_disabled_holo_dark.9.png │ │ ├── abc_spinner_ab_disabled_holo_light.9.png │ │ ├── abc_spinner_ab_focused_holo_dark.9.png │ │ ├── abc_spinner_ab_focused_holo_light.9.png │ │ ├── abc_spinner_ab_pressed_holo_dark.9.png │ │ ├── abc_spinner_ab_pressed_holo_light.9.png │ │ ├── abc_tab_selected_focused_holo.9.png │ │ ├── abc_tab_selected_holo.9.png │ │ ├── abc_tab_selected_pressed_holo.9.png │ │ ├── abc_tab_unselected_pressed_holo.9.png │ │ ├── abc_textfield_search_default_holo_dark.9.png │ │ ├── abc_textfield_search_default_holo_light.9.png │ │ ├── abc_textfield_search_right_default_holo_dark.9.png │ │ ├── abc_textfield_search_right_default_holo_light.9.png │ │ ├── abc_textfield_search_right_selected_holo_dark.9.png │ │ ├── abc_textfield_search_right_selected_holo_light.9.png │ │ ├── abc_textfield_search_selected_holo_dark.9.png │ │ └── abc_textfield_search_selected_holo_light.9.png │ ├── drawable-mdpi │ │ ├── abc_ab_bottom_solid_dark_holo.9.png │ │ ├── abc_ab_bottom_solid_light_holo.9.png │ │ ├── abc_ab_bottom_transparent_dark_holo.9.png │ │ ├── abc_ab_bottom_transparent_light_holo.9.png │ │ ├── abc_ab_share_pack_holo_dark.9.png │ │ ├── abc_ab_share_pack_holo_light.9.png │ │ ├── abc_ab_solid_dark_holo.9.png │ │ ├── abc_ab_solid_light_holo.9.png │ │ ├── abc_ab_stacked_solid_dark_holo.9.png │ │ ├── abc_ab_stacked_solid_light_holo.9.png │ │ ├── abc_ab_stacked_transparent_dark_holo.9.png │ │ ├── abc_ab_stacked_transparent_light_holo.9.png │ │ ├── abc_ab_transparent_dark_holo.9.png │ │ ├── abc_ab_transparent_light_holo.9.png │ │ ├── abc_cab_background_bottom_holo_dark.9.png │ │ ├── abc_cab_background_bottom_holo_light.9.png │ │ ├── abc_cab_background_top_holo_dark.9.png │ │ ├── abc_cab_background_top_holo_light.9.png │ │ ├── abc_ic_ab_back_holo_dark.png │ │ ├── abc_ic_ab_back_holo_light.png │ │ ├── abc_ic_cab_done_holo_dark.png │ │ ├── abc_ic_cab_done_holo_light.png │ │ ├── abc_ic_clear_disabled.png │ │ ├── abc_ic_clear_normal.png │ │ ├── abc_ic_clear_search_api_disabled_holo_light.png │ │ ├── abc_ic_clear_search_api_holo_light.png │ │ ├── abc_ic_commit_search_api_holo_dark.png │ │ ├── abc_ic_commit_search_api_holo_light.png │ │ ├── abc_ic_go.png │ │ ├── abc_ic_go_search_api_holo_light.png │ │ ├── abc_ic_menu_moreoverflow_normal_holo_dark.png │ │ ├── abc_ic_menu_moreoverflow_normal_holo_light.png │ │ ├── abc_ic_menu_share_holo_dark.png │ │ ├── abc_ic_menu_share_holo_light.png │ │ ├── abc_ic_search.png │ │ ├── abc_ic_search_api_holo_light.png │ │ ├── abc_ic_voice_search.png │ │ ├── abc_ic_voice_search_api_holo_light.png │ │ ├── abc_list_divider_holo_dark.9.png │ │ ├── abc_list_divider_holo_light.9.png │ │ ├── abc_list_focused_holo.9.png │ │ ├── abc_list_longpressed_holo.9.png │ │ ├── abc_list_pressed_holo_dark.9.png │ │ ├── abc_list_pressed_holo_light.9.png │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ ├── abc_menu_dropdown_panel_holo_dark.9.png │ │ ├── abc_menu_dropdown_panel_holo_light.9.png │ │ ├── abc_menu_hardkey_panel_holo_dark.9.png │ │ ├── abc_menu_hardkey_panel_holo_light.9.png │ │ ├── abc_spinner_ab_default_holo_dark.9.png │ │ ├── abc_spinner_ab_default_holo_light.9.png │ │ ├── abc_spinner_ab_disabled_holo_dark.9.png │ │ ├── abc_spinner_ab_disabled_holo_light.9.png │ │ ├── abc_spinner_ab_focused_holo_dark.9.png │ │ ├── abc_spinner_ab_focused_holo_light.9.png │ │ ├── abc_spinner_ab_pressed_holo_dark.9.png │ │ ├── abc_spinner_ab_pressed_holo_light.9.png │ │ ├── abc_tab_selected_focused_holo.9.png │ │ ├── abc_tab_selected_holo.9.png │ │ ├── abc_tab_selected_pressed_holo.9.png │ │ ├── abc_tab_unselected_pressed_holo.9.png │ │ ├── abc_textfield_search_default_holo_dark.9.png │ │ ├── abc_textfield_search_default_holo_light.9.png │ │ ├── abc_textfield_search_right_default_holo_dark.9.png │ │ ├── abc_textfield_search_right_default_holo_light.9.png │ │ ├── abc_textfield_search_right_selected_holo_dark.9.png │ │ ├── abc_textfield_search_right_selected_holo_light.9.png │ │ ├── abc_textfield_search_selected_holo_dark.9.png │ │ └── abc_textfield_search_selected_holo_light.9.png │ ├── drawable-xhdpi │ │ ├── abc_ab_bottom_solid_dark_holo.9.png │ │ ├── abc_ab_bottom_solid_light_holo.9.png │ │ ├── abc_ab_bottom_transparent_dark_holo.9.png │ │ ├── abc_ab_bottom_transparent_light_holo.9.png │ │ ├── abc_ab_share_pack_holo_dark.9.png │ │ ├── abc_ab_share_pack_holo_light.9.png │ │ ├── abc_ab_solid_dark_holo.9.png │ │ ├── abc_ab_solid_light_holo.9.png │ │ ├── abc_ab_stacked_solid_dark_holo.9.png │ │ ├── abc_ab_stacked_solid_light_holo.9.png │ │ ├── abc_ab_stacked_transparent_dark_holo.9.png │ │ ├── abc_ab_stacked_transparent_light_holo.9.png │ │ ├── abc_ab_transparent_dark_holo.9.png │ │ ├── abc_ab_transparent_light_holo.9.png │ │ ├── abc_cab_background_bottom_holo_dark.9.png │ │ ├── abc_cab_background_bottom_holo_light.9.png │ │ ├── abc_cab_background_top_holo_dark.9.png │ │ ├── abc_cab_background_top_holo_light.9.png │ │ ├── abc_ic_ab_back_holo_dark.png │ │ ├── abc_ic_ab_back_holo_light.png │ │ ├── abc_ic_cab_done_holo_dark.png │ │ ├── abc_ic_cab_done_holo_light.png │ │ ├── abc_ic_clear_disabled.png │ │ ├── abc_ic_clear_search_api_disabled_holo_light.png │ │ ├── abc_ic_clear_search_api_holo_light.png │ │ ├── abc_ic_commit_search_api_holo_dark.png │ │ ├── abc_ic_commit_search_api_holo_light.png │ │ ├── abc_ic_go.png │ │ ├── abc_ic_go_search_api_holo_light.png │ │ ├── abc_ic_menu_moreoverflow_normal_holo_dark.png │ │ ├── abc_ic_menu_moreoverflow_normal_holo_light.png │ │ ├── abc_ic_menu_share_holo_dark.png │ │ ├── abc_ic_menu_share_holo_light.png │ │ ├── abc_ic_search.png │ │ ├── abc_ic_search_api_holo_light.png │ │ ├── abc_ic_voice_search.png │ │ ├── abc_ic_voice_search_api_holo_light.png │ │ ├── abc_list_divider_holo_dark.9.png │ │ ├── abc_list_divider_holo_light.9.png │ │ ├── abc_list_focused_holo.9.png │ │ ├── abc_list_longpressed_holo.9.png │ │ ├── abc_list_pressed_holo_dark.9.png │ │ ├── abc_list_pressed_holo_light.9.png │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ ├── abc_menu_dropdown_panel_holo_dark.9.png │ │ ├── abc_menu_dropdown_panel_holo_light.9.png │ │ ├── abc_menu_hardkey_panel_holo_dark.9.png │ │ ├── abc_menu_hardkey_panel_holo_light.9.png │ │ ├── abc_spinner_ab_default_holo_dark.9.png │ │ ├── abc_spinner_ab_default_holo_light.9.png │ │ ├── abc_spinner_ab_disabled_holo_dark.9.png │ │ ├── abc_spinner_ab_disabled_holo_light.9.png │ │ ├── abc_spinner_ab_focused_holo_dark.9.png │ │ ├── abc_spinner_ab_focused_holo_light.9.png │ │ ├── abc_spinner_ab_pressed_holo_dark.9.png │ │ ├── abc_spinner_ab_pressed_holo_light.9.png │ │ ├── abc_tab_selected_focused_holo.9.png │ │ ├── abc_tab_selected_holo.9.png │ │ ├── abc_tab_selected_pressed_holo.9.png │ │ ├── abc_tab_unselected_pressed_holo.9.png │ │ ├── abc_textfield_search_default_holo_dark.9.png │ │ ├── abc_textfield_search_default_holo_light.9.png │ │ ├── abc_textfield_search_right_default_holo_dark.9.png │ │ ├── abc_textfield_search_right_default_holo_light.9.png │ │ ├── abc_textfield_search_right_selected_holo_dark.9.png │ │ ├── abc_textfield_search_right_selected_holo_light.9.png │ │ ├── abc_textfield_search_selected_holo_dark.9.png │ │ └── abc_textfield_search_selected_holo_light.9.png │ ├── drawable │ │ ├── abc_ic_clear.xml │ │ ├── abc_ic_clear_holo_light.xml │ │ ├── abc_item_background_holo_dark.xml │ │ ├── abc_item_background_holo_light.xml │ │ ├── abc_list_selector_background_transition_holo_dark.xml │ │ ├── abc_list_selector_background_transition_holo_light.xml │ │ ├── abc_list_selector_holo_dark.xml │ │ ├── abc_list_selector_holo_light.xml │ │ ├── abc_search_dropdown_dark.xml │ │ ├── abc_search_dropdown_light.xml │ │ ├── abc_spinner_ab_holo_dark.xml │ │ ├── abc_spinner_ab_holo_light.xml │ │ ├── abc_tab_indicator_ab_holo.xml │ │ ├── abc_textfield_searchview_holo_dark.xml │ │ ├── abc_textfield_searchview_holo_light.xml │ │ ├── abc_textfield_searchview_right_holo_dark.xml │ │ └── abc_textfield_searchview_right_holo_light.xml │ ├── layout-v11 │ │ └── abc_action_bar_decor.xml │ ├── layout-v14 │ │ └── abc_activity_chooser_view.xml │ ├── layout │ │ ├── abc_action_bar_decor.xml │ │ ├── abc_action_bar_decor_include.xml │ │ ├── abc_action_bar_decor_overlay.xml │ │ ├── abc_action_bar_home.xml │ │ ├── abc_action_bar_tab.xml │ │ ├── abc_action_bar_tabbar.xml │ │ ├── abc_action_bar_title_item.xml │ │ ├── abc_action_bar_view_list_nav_layout.xml │ │ ├── abc_action_menu_item_layout.xml │ │ ├── abc_action_menu_layout.xml │ │ ├── abc_action_mode_bar.xml │ │ ├── abc_action_mode_close_item.xml │ │ ├── abc_activity_chooser_view.xml │ │ ├── abc_activity_chooser_view_include.xml │ │ ├── abc_activity_chooser_view_list_item.xml │ │ ├── abc_expanded_menu_layout.xml │ │ ├── abc_list_menu_item_checkbox.xml │ │ ├── abc_list_menu_item_icon.xml │ │ ├── abc_list_menu_item_layout.xml │ │ ├── abc_list_menu_item_radio.xml │ │ ├── abc_popup_menu_item_layout.xml │ │ ├── abc_search_dropdown_item_icons_2line.xml │ │ ├── abc_search_view.xml │ │ └── support_simple_spinner_dropdown_item.xml │ ├── values-af │ │ └── strings.xml │ ├── values-am │ │ └── strings.xml │ ├── values-ar │ │ └── strings.xml │ ├── values-bg │ │ └── strings.xml │ ├── values-ca │ │ └── strings.xml │ ├── values-cs │ │ └── strings.xml │ ├── values-da │ │ └── strings.xml │ ├── values-de │ │ └── strings.xml │ ├── values-el │ │ └── strings.xml │ ├── values-en-rGB │ │ └── strings.xml │ ├── values-en-rIN │ │ └── strings.xml │ ├── values-es-rUS │ │ └── strings.xml │ ├── values-es │ │ └── strings.xml │ ├── values-et-rEE │ │ └── strings.xml │ ├── values-fa │ │ └── strings.xml │ ├── values-fi │ │ └── strings.xml │ ├── values-fr-rCA │ │ └── strings.xml │ ├── values-fr │ │ └── strings.xml │ ├── values-hi │ │ └── strings.xml │ ├── values-hr │ │ └── strings.xml │ ├── values-hu │ │ └── strings.xml │ ├── values-hy-rAM │ │ └── strings.xml │ ├── values-in │ │ └── strings.xml │ ├── values-it │ │ └── strings.xml │ ├── values-iw │ │ └── strings.xml │ ├── values-ja │ │ └── strings.xml │ ├── values-ka-rGE │ │ └── strings.xml │ ├── values-km-rKH │ │ └── strings.xml │ ├── values-ko │ │ └── strings.xml │ ├── values-land │ │ ├── bools.xml │ │ ├── config.xml │ │ └── dimens.xml │ ├── values-large │ │ ├── bools.xml │ │ ├── config.xml │ │ └── dimens.xml │ ├── values-lo-rLA │ │ └── strings.xml │ ├── values-lt │ │ └── strings.xml │ ├── values-lv │ │ └── strings.xml │ ├── values-mn-rMN │ │ └── strings.xml │ ├── values-ms-rMY │ │ └── strings.xml │ ├── values-nb │ │ └── strings.xml │ ├── values-nl │ │ └── strings.xml │ ├── values-pl │ │ └── strings.xml │ ├── values-pt-rPT │ │ └── strings.xml │ ├── values-pt │ │ └── strings.xml │ ├── values-ro │ │ └── strings.xml │ ├── values-ru │ │ └── strings.xml │ ├── values-sk │ │ └── strings.xml │ ├── values-sl │ │ └── strings.xml │ ├── values-sr │ │ └── strings.xml │ ├── values-sv │ │ └── strings.xml │ ├── values-sw │ │ └── strings.xml │ ├── values-sw600dp │ │ ├── config.xml │ │ └── dimens.xml │ ├── values-th │ │ └── strings.xml │ ├── values-tl │ │ └── strings.xml │ ├── values-tr │ │ └── strings.xml │ ├── values-uk │ │ └── strings.xml │ ├── values-v11 │ │ ├── styles_base.xml │ │ └── themes_base.xml │ ├── values-v14 │ │ ├── styles_base.xml │ │ └── themes_base.xml │ ├── values-vi │ │ └── strings.xml │ ├── values-w360dp │ │ └── dimens.xml │ ├── values-w480dp │ │ ├── bools.xml │ │ └── config.xml │ ├── values-w500dp │ │ └── dimens.xml │ ├── values-w600dp │ │ └── dimens.xml │ ├── values-w720dp │ │ └── bools.xml │ ├── values-xlarge │ │ ├── bools.xml │ │ └── dimens.xml │ ├── values-zh-rCN │ │ └── strings.xml │ ├── values-zh-rHK │ │ └── strings.xml │ ├── values-zh-rTW │ │ └── strings.xml │ ├── values-zu │ │ └── strings.xml │ └── values │ │ ├── attrs.xml │ │ ├── bools.xml │ │ ├── colors.xml │ │ ├── config.xml │ │ ├── dimens.xml │ │ ├── ids.xml │ │ ├── strings.xml │ │ ├── styles.xml │ │ ├── styles_base.xml │ │ ├── themes.xml │ │ └── themes_base.xml └── src │ └── .readme ├── cube ├── .classpath ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── libs │ └── android-support-v4.jar ├── lint.xml ├── proguard-project.txt ├── project.properties ├── res │ ├── drawable-xxhdpi │ │ └── cube_mints_icon_top_back.png │ ├── layout │ │ ├── cube_mints_base_block_menu_item.xml │ │ ├── cube_mints_base_content_frame_with_title_header.xml │ │ ├── cube_mints_base_fragment_block_menu.xml │ │ └── cube_mints_base_header_bar_title.xml │ ├── values-zh │ │ └── cube_core_strings.xml │ └── values │ │ ├── cube_core_attrs_dotview.xml │ │ ├── cube_core_attrs_more_action_view.xml │ │ ├── cube_core_attrs_scrollheaderframe.xml │ │ ├── cube_core_attrs_slider_banner.xml │ │ ├── cube_core_colors_holo.xml │ │ ├── cube_core_strings.xml │ │ ├── cube_core_styles.xml │ │ ├── cube_mints_colors.xml │ │ ├── cube_mints_dimens.xml │ │ └── cube_mints_strings.xml └── src │ └── in │ └── srain │ └── cube │ ├── Cube.java │ ├── app │ ├── CubeFragment.java │ ├── CubeFragmentActivity.java │ ├── FragmentParam.java │ ├── ICubeFragment.java │ ├── XActivity.java │ └── lifecycle │ │ ├── IComponentContainer.java │ │ ├── LifeCycleComponent.java │ │ └── LifeCycleComponentManager.java │ ├── cache │ ├── CacheInfo.java │ ├── CacheManager.java │ ├── CacheResultType.java │ ├── ICacheAble.java │ ├── IFileCache.java │ ├── Query.java │ └── QueryHandler.java │ ├── concurrent │ ├── BlockingDeque.java │ ├── Deque.java │ ├── LinkedBlockingDeque.java │ ├── SimpleExecutor.java │ └── SimpleTask.java │ ├── file │ ├── DiskLruCache.java │ ├── FileUtil.java │ └── LruFileCache.java │ ├── image │ ├── CubeImageView.java │ ├── ImageLoader.java │ ├── ImageLoaderFactory.java │ ├── ImagePerformanceStatistics.java │ ├── ImageProvider.java │ ├── ImageReuseInfo.java │ ├── ImageReuseInfoManger.java │ ├── ImageTask.java │ ├── ImageTaskStatistics.java │ ├── drawable │ │ ├── RecyclingBitmapDrawable.java │ │ └── RoundedDrawable.java │ ├── iface │ │ ├── ImageFileProvider.java │ │ ├── ImageLoadHandler.java │ │ ├── ImageMemoryCache.java │ │ ├── ImageResizer.java │ │ └── ImageTaskExecutor.java │ └── impl │ │ ├── DefaultImageLoadHandler.java │ │ ├── DefaultImageResizer.java │ │ ├── DefaultImageTaskExecutor.java │ │ ├── DefaultMemoryCache.java │ │ ├── LruImageFileProvider.java │ │ └── SimpleDownloader.java │ ├── mints │ └── base │ │ ├── BlockMenuFragment.java │ │ ├── DemoBaseActivity.java │ │ ├── TitleBaseActivity.java │ │ ├── TitleBaseFragment.java │ │ └── TitleHeaderBar.java │ ├── request │ ├── CacheAbleRequest.java │ ├── CacheAbleRequestDefaultHandler.java │ ├── CacheAbleRequestHandler.java │ ├── CacheAbleRequestJsonHandler.java │ ├── FailData.java │ ├── ICacheAbleRequest.java │ ├── IRequest.java │ ├── JsonData.java │ ├── RequestBase.java │ ├── RequestCacheManager.java │ ├── RequestData.java │ ├── RequestDefaultHandler.java │ ├── RequestFinishHandler.java │ ├── RequestHandler.java │ ├── RequestJsonHandler.java │ ├── SimpleJsonRequest.java │ ├── SimpleRequest.java │ └── SimpleRequestManager.java │ ├── uri │ └── CustomizedUri.java │ ├── util │ ├── Debug.java │ ├── Encrypt.java │ ├── Env.java │ ├── LocalDisplay.java │ ├── NetworkStatusManager.java │ ├── ResourceMan.java │ ├── SystemWatcher.java │ └── Version.java │ └── views │ ├── DotView.java │ ├── IScrollHeaderFrameHandler.java │ ├── MoreActionView.java │ ├── ScrollHeaderFrame.java │ ├── banner │ ├── BannerAdapter.java │ ├── PagerIndicator.java │ └── SliderBanner.java │ ├── block │ ├── BlockListAdapter.java │ └── BlockListView.java │ ├── list │ ├── ListPageInfo.java │ ├── ListViewDataAdapter.java │ ├── ListViewDataAdapterBase.java │ ├── PagedListDataModel.java │ ├── PagedListViewDataAdapter.java │ ├── ViewHolderBase.java │ └── ViewHolderCreator.java │ ├── mix │ └── AutoPlayer.java │ └── pager │ ├── PageIndicator.java │ └── TabPageIndicator.java └── simplepicture ├── .classpath ├── .project ├── .settings └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── assets ├── category.json ├── category_cover_app.jpg ├── category_cover_car.jpg ├── category_cover_craft.jpg ├── category_cover_edu.jpg ├── category_cover_fashion.jpg ├── category_cover_funny.jpg ├── category_cover_game.jpg ├── category_cover_gongyi.jpg ├── category_cover_journey.jpg ├── category_cover_life.jpg ├── category_cover_originality.jpg ├── category_cover_qinzi.jpg ├── category_cover_sport.jpg ├── category_cover_tech.jpg ├── ico_favorite.png ├── ico_feedback.png ├── ico_hot.png ├── ico_new.png ├── ico_random.png ├── ico_setting.png ├── ico_upload.png └── menu.json ├── ic_launcher-web.png ├── libs ├── Baidu_CyberPlayer_SDK_1.7s.jar ├── SocialSDK_QQZone_1.jar ├── SocialSDK_QQZone_2.jar ├── SocialSDK_QQZone_3.jar ├── SocialSDK_Sina.jar ├── SocialSDK_WeiXin_1.jar ├── SocialSDK_WeiXin_2.jar ├── SocialSDK_tencentWB_1.jar ├── SocialSDK_tencentWB_2.jar ├── SocialSDK_tencentWB_3.jar ├── YoumiSdk_v5.00_2015-01-08.jar ├── android-async-http-1.4.6.jar ├── armeabi-v7a │ ├── libcyberplayer-core.so │ ├── libcyberplayer.so │ └── libumeng_opustool.so ├── armeabi │ ├── libbspatch.so │ └── libumeng_opustool.so ├── avoscloud-sdk-v2.6.10.4.jar ├── com.umeng.fb.v5.1.0.jar ├── fastjson.jar ├── gson-2.2.1.jar ├── httpmime-4.2.4.jar ├── mips │ └── libumeng_opustool.so ├── umeng-analytics-v5.4.1.jar ├── umeng-update-v2.5.0.jar ├── umeng_social_sdk.jar └── x86 │ └── libumeng_opustool.so ├── lint.xml ├── proguard-project.txt ├── project.properties ├── res ├── anim │ ├── new_dync_in_from_right.xml │ ├── new_dync_no.xml │ ├── new_dync_out_to_left.xml │ ├── umeng_fb_audio_play_anim.xml │ ├── umeng_socialize_fade_in.xml │ ├── umeng_socialize_fade_out.xml │ ├── umeng_socialize_shareboard_animation_in.xml │ ├── umeng_socialize_shareboard_animation_out.xml │ ├── umeng_socialize_slide_in_from_bottom.xml │ └── umeng_socialize_slide_out_from_bottom.xml ├── color │ └── tab_text_color.xml ├── drawable-hdpi │ ├── alert_bg.9.png │ ├── alert_btn_left_pressed.9.png │ ├── alert_btn_right_pressed.9.png │ ├── alert_btn_single_pressed.9.png │ ├── bg_tab.9.png │ ├── cyberplayer_listbtn_normal.png │ ├── cyberplayer_listbtn_pressed.png │ ├── cyberplayer_next_play.png │ ├── cyberplayer_next_play_disable.png │ ├── cyberplayer_next_play_pressed.png │ ├── cyberplayer_play_media.png │ ├── cyberplayer_play_media_disable.png │ ├── cyberplayer_play_media_pressed.png │ ├── cyberplayer_retreat_media.png │ ├── cyberplayer_retreat_media_disable.png │ ├── cyberplayer_retreat_media_pressed.png │ ├── cyberplayer_seekbar_background.png │ ├── cyberplayer_seekbar_background_normal.9.png │ ├── cyberplayer_seekbar_background_process.9.png │ ├── cyberplayer_seekbar_background_sound_normal.9.png │ ├── cyberplayer_seekbar_background_sound_process.9.png │ ├── cyberplayer_seekbar_cache.png │ ├── cyberplayer_seekbar_normal.png │ ├── cyberplayer_seekbar_ratio.png │ ├── cyberplayer_seekbar_ratio_white.png │ ├── cyberplayer_stop_media.png │ ├── cyberplayer_stop_media_disable.png │ ├── cyberplayer_stop_media_pressed.png │ ├── cyberplayer_textbtn_background_blue.9.png │ ├── cyberplayer_titlebar_return.png │ ├── cyberplayer_volumebar_background.9.png │ ├── hcw.png │ ├── ic_ab_back_holo_light.png │ ├── ic_drawer.png │ ├── ic_launcher.png │ ├── ic_menu_send.png │ ├── ic_pause_normal.png │ ├── ic_pause_press.png │ ├── ic_play_normal.png │ ├── ic_play_pressed.png │ ├── ic_tv_rest.jpg │ ├── ic_vidcontrol_fullscreen_off.png │ ├── ic_vidcontrol_fullscreen_off_pressed.png │ ├── ic_vidcontrol_fullscreen_on.png │ ├── ic_vidcontrol_fullscreen_on_pressed.png │ ├── line.png │ ├── list_item_bg_normal.9.png │ ├── login.png │ ├── name.png │ ├── qq_login.png │ ├── sina_login.png │ ├── spinner_small_inner.png │ ├── spinner_small_outer.png │ ├── splash.png │ ├── toggle_btn_off.png │ ├── toggle_btn_on.png │ ├── trans_bg.png │ ├── umeng_logo_big.png │ ├── umeng_logo_big_subtitle.png │ ├── umeng_socialize_light_bar_bg_pad.9.png │ ├── umeng_socialize_nav_bar_bg_pad.9.png │ ├── umeng_socialize_oauth_check_off.png │ ├── umeng_socialize_oauth_check_on.png │ ├── umeng_socialize_share_music.png │ ├── umeng_socialize_share_pic.png │ ├── umeng_socialize_share_video.png │ ├── umeng_update_btn_check_off_focused_holo_light.png │ ├── umeng_update_btn_check_off_holo_light.png │ ├── umeng_update_btn_check_off_pressed_holo_light.png │ ├── umeng_update_btn_check_on_focused_holo_light.png │ ├── umeng_update_btn_check_on_holo_light.png │ ├── umeng_update_btn_check_on_pressed_holo_light.png │ ├── umeng_update_close_bg_normal.png │ ├── umeng_update_close_bg_tap.png │ └── v.png ├── drawable-mdpi │ ├── ic_drawer.png │ └── ic_launcher.png ├── drawable-xhdpi │ ├── card_frame.9.png │ ├── gif_loading1.png │ ├── gif_loading1_1.png │ ├── gif_loading2.png │ ├── gif_loading2_1.png │ ├── gif_loading3.png │ ├── gif_loading3_1.png │ ├── gif_loading4.png │ ├── gif_loading4_1.png │ ├── gif_loading5.png │ ├── gif_loading5_1.png │ ├── gif_loading6.png │ ├── gif_loading6_1.png │ ├── gif_loading7.png │ ├── gif_loading7_1.png │ ├── hao123_mybar_empty_icon.png │ ├── ic_action_important.png │ ├── ic_action_not_important.png │ ├── ic_action_share.png │ ├── ic_dark.png │ ├── ic_eye.png │ ├── ic_launcher.png │ ├── ic_light.png │ ├── ic_play.png │ ├── icon_toast_game_error.png │ ├── icon_toast_game_ok.png │ ├── net_refresh_emotion.png │ ├── net_refresh_emotion_1.png │ ├── qq.png │ ├── qq_pressed.png │ ├── qqkongjian.png │ ├── qqkongjian_pressed.png │ ├── sina.png │ ├── sina_pressed.png │ ├── splash.png │ ├── tengxunwb.png │ ├── tengxunwb_pressed.png │ ├── umeng_fb_audio_dialog_cancel.png │ ├── umeng_fb_audio_dialog_content.png │ ├── umeng_fb_audio_play_01.png │ ├── umeng_fb_audio_play_02.png │ ├── umeng_fb_audio_play_03.png │ ├── umeng_fb_audio_play_bg.9.png │ ├── umeng_fb_keyboard.png │ ├── umeng_fb_record.png │ ├── wechat.png │ ├── wechat_pressed.png │ ├── wechatmoment.png │ └── wechatmoment_pressed.png ├── drawable-xxhdpi │ ├── ic_drawer.png │ └── ic_launcher.png ├── drawable │ ├── alertdialog_left_selector.xml │ ├── alertdialog_right_selector.xml │ ├── alertdialog_single_selector.xml │ ├── background_tab.xml │ ├── bg_tab_text.xml │ ├── btn_bg_selector.xml │ ├── button_bg_normal.xml │ ├── button_bg_pressed.xml │ ├── custom_toast_shape_bg.xml │ ├── list_item_bg.xml │ ├── load_animation.xml │ ├── load_animation_black.xml │ ├── pause_btn_style.xml │ ├── play_btn_style.xml │ ├── progress_small.xml │ ├── qq.png │ ├── qq_selector.xml │ ├── qzone_selector.xml │ ├── radius_bg.xml │ ├── screensize_zoomin_button.xml │ ├── screensize_zoomout_button.xml │ ├── selector_toggle_button.xml │ ├── setting_item_bg.xml │ ├── setting_item_bottom_bg_normal.xml │ ├── setting_item_bottom_bg_pressed.xml │ ├── setting_item_bottom_bg_selector.xml │ ├── setting_item_middle_bg_normal.xml │ ├── setting_item_middle_bg_pressed.xml │ ├── setting_item_middle_bg_selector.xml │ ├── setting_item_up_bg_normal.xml │ ├── setting_item_up_bg_pressed.xml │ ├── setting_item_up_bg_selector.xml │ ├── share_header_bg.xml │ ├── sina_selector.xml │ ├── tb_munion_icon.xml │ ├── tb_munion_item_selector.xml │ ├── tencent_selector.xml │ ├── umeng_analytics.jpg │ ├── umeng_common_gradient_green.xml │ ├── umeng_common_gradient_orange.xml │ ├── umeng_common_gradient_red.xml │ ├── umeng_fb_action_replay.png │ ├── umeng_fb_arrow_right.png │ ├── umeng_socialize_action_back.xml │ ├── umeng_socialize_action_back_normal.png │ ├── umeng_socialize_action_back_selected.png │ ├── umeng_socialize_at_button.xml │ ├── umeng_socialize_at_normal.png │ ├── umeng_socialize_at_selected.png │ ├── umeng_socialize_bind_bg.9.png │ ├── umeng_socialize_button_blue.9.png │ ├── umeng_socialize_button_grey.9.png │ ├── umeng_socialize_button_grey_blue.xml │ ├── umeng_socialize_button_login.xml │ ├── umeng_socialize_button_login_normal.png │ ├── umeng_socialize_button_login_pressed.png │ ├── umeng_socialize_button_red.9.png │ ├── umeng_socialize_button_red_blue.xml │ ├── umeng_socialize_button_white.9.png │ ├── umeng_socialize_button_white_blue.xml │ ├── umeng_socialize_default_avatar.png │ ├── umeng_socialize_douban_off.png │ ├── umeng_socialize_douban_on.png │ ├── umeng_socialize_facebook.png │ ├── umeng_socialize_fetch_image.png │ ├── umeng_socialize_follow_check.xml │ ├── umeng_socialize_follow_off.png │ ├── umeng_socialize_follow_on.png │ ├── umeng_socialize_google.png │ ├── umeng_socialize_light_bar_bg.9.png │ ├── umeng_socialize_location_ic.png │ ├── umeng_socialize_location_off.png │ ├── umeng_socialize_location_on.png │ ├── umeng_socialize_nav_bar_bg.png │ ├── umeng_socialize_oauth_check.xml │ ├── umeng_socialize_oauth_check_off.png │ ├── umeng_socialize_oauth_check_on.png │ ├── umeng_socialize_qq_off.png │ ├── umeng_socialize_qq_on.png │ ├── umeng_socialize_qzone_off.png │ ├── umeng_socialize_qzone_on.png │ ├── umeng_socialize_refersh.png │ ├── umeng_socialize_renren_off.png │ ├── umeng_socialize_renren_on.png │ ├── umeng_socialize_search_icon.png │ ├── umeng_socialize_shape_solid_black.xml │ ├── umeng_socialize_shape_solid_grey.xml │ ├── umeng_socialize_share_to_button.xml │ ├── umeng_socialize_share_transparent_corner.xml │ ├── umeng_socialize_shareboard_item_background.xml │ ├── umeng_socialize_sidebar_normal.xml │ ├── umeng_socialize_sidebar_selected.xml │ ├── umeng_socialize_sidebar_selector.xml │ ├── umeng_socialize_sina_off.png │ ├── umeng_socialize_sina_on.png │ ├── umeng_socialize_title_back_bt.xml │ ├── umeng_socialize_title_back_bt_normal.png │ ├── umeng_socialize_title_back_bt_selected.png │ ├── umeng_socialize_title_right_bt.xml │ ├── umeng_socialize_title_right_bt_normal.png │ ├── umeng_socialize_title_right_bt_selected.png │ ├── umeng_socialize_title_tab_button_left.xml │ ├── umeng_socialize_title_tab_button_right.xml │ ├── umeng_socialize_title_tab_left_normal.png │ ├── umeng_socialize_title_tab_left_pressed.png │ ├── umeng_socialize_title_tab_right_normal.png │ ├── umeng_socialize_title_tab_right_pressed.png │ ├── umeng_socialize_twitter.png │ ├── umeng_socialize_tx_off.png │ ├── umeng_socialize_tx_on.png │ ├── umeng_socialize_wechat.png │ ├── umeng_socialize_wechat_gray.png │ ├── umeng_socialize_window_shadow_pad.xml │ ├── umeng_socialize_wxcircle.png │ ├── umeng_socialize_wxcircle_gray.png │ ├── umeng_socialize_x_button.png │ ├── umeng_strock_bg_1.xml │ ├── umeng_tools.jpg │ ├── umeng_update_button_cancel_bg_focused.xml │ ├── umeng_update_button_cancel_bg_normal.xml │ ├── umeng_update_button_cancel_bg_selector.xml │ ├── umeng_update_button_cancel_bg_tap.xml │ ├── umeng_update_button_check_selector.xml │ ├── umeng_update_button_close_bg_selector.xml │ ├── umeng_update_button_ok_bg_focused.xml │ ├── umeng_update_button_ok_bg_normal.xml │ ├── umeng_update_button_ok_bg_selector.xml │ ├── umeng_update_button_ok_bg_tap.xml │ ├── umeng_update_dialog_bg.xml │ ├── umeng_update_title_bg.xml │ ├── umeng_update_wifi_disable.png │ ├── wechat_selector.xml │ ├── wechatmoment_selector.xml │ └── while_circle_bg.xml ├── layout-sw550dp-large │ ├── umeng_socialize_full_alert_dialog.xml │ ├── umeng_socialize_oauth_dialog.xml │ ├── umeng_socialize_post_share.xml │ └── umeng_socialize_titile_bar.xml ├── layout-v9 │ └── umeng_common_download_notification.xml ├── layout │ ├── activity_login.xml │ ├── activity_material.xml │ ├── activity_menu.xml │ ├── activity_play.xml │ ├── activity_sample.xml │ ├── activity_setting.xml │ ├── activity_splash.xml │ ├── cate_item.xml │ ├── comment_footer.xml │ ├── comment_item.xml │ ├── customer_toast.xml │ ├── edit_item.xml │ ├── edit_view.xml │ ├── fragment_grid.xml │ ├── fragment_list.xml │ ├── list_more_error.xml │ ├── list_more_loading.xml │ ├── loading_page_empty.xml │ ├── loading_page_error.xml │ ├── loading_page_loading.xml │ ├── menu_item.xml │ ├── play_item.xml │ ├── res_item.xml │ ├── share_dialog.xml │ ├── share_item.xml │ ├── tb_munion_aditem.xml │ ├── tb_munion_adview.xml │ ├── umeng_bak_at_list.xml │ ├── umeng_bak_at_list_item.xml │ ├── umeng_bak_platform_item_simple.xml │ ├── umeng_bak_platform_selector_dialog.xml │ ├── umeng_common_download_notification.xml │ ├── umeng_fb_activity_conversation.xml │ ├── umeng_fb_audio_dialog.xml │ ├── umeng_fb_contact.xml │ ├── umeng_fb_contact_spinner.xml │ ├── umeng_fb_fragment.xml │ ├── umeng_fb_input_contact.xml │ ├── umeng_fb_input_conversation.xml │ ├── umeng_fb_input_conversation_audio.xml │ ├── umeng_fb_reply_item_audio.xml │ ├── umeng_fb_reply_item_text.xml │ ├── umeng_fb_welcome_item.xml │ ├── umeng_socialize_at_item.xml │ ├── umeng_socialize_at_overlay.xml │ ├── umeng_socialize_at_view.xml │ ├── umeng_socialize_base_alert_dialog.xml │ ├── umeng_socialize_base_alert_dialog_button.xml │ ├── umeng_socialize_bind_select_dialog.xml │ ├── umeng_socialize_composer_header.xml │ ├── umeng_socialize_failed_load_page.xml │ ├── umeng_socialize_full_alert_dialog.xml │ ├── umeng_socialize_full_alert_dialog_item.xml │ ├── umeng_socialize_full_curtain.xml │ ├── umeng_socialize_oauth_dialog.xml │ ├── umeng_socialize_post_share.xml │ ├── umeng_socialize_shareboard_item.xml │ ├── umeng_socialize_simple_spinner_item.xml │ ├── umeng_socialize_titile_bar.xml │ ├── umeng_update_dialog.xml │ └── view_alertdialog.xml ├── menu │ ├── activity_index.xml │ └── activity_play.xml ├── values-1280x720 │ └── dimens.xml ├── values-1920x1080 │ └── dimens.xml ├── values-2560x1440 │ └── dimens.xml ├── values-800x480 │ └── dimens.xml ├── values-960x540 │ └── dimens.xml ├── values-ja │ └── umeng_fb_strings.xml ├── values-sw600dp │ └── dimens.xml ├── values-sw720dp-land │ └── dimens.xml ├── values-v11 │ └── styles.xml ├── values-v14 │ └── styles.xml ├── values-zh │ ├── umeng_common_strings.xml │ ├── umeng_fb_strings.xml │ └── umeng_update_string.xml └── values │ ├── attrs.xml │ ├── color.xml │ ├── dimens.xml │ ├── strings.xml │ ├── styles.xml │ ├── tb_munion_strings.xml │ ├── umeng_common_strings.xml │ ├── umeng_fb_color.xml │ ├── umeng_fb_dimens.xml │ ├── umeng_fb_strings.xml │ ├── umeng_fb_style.xml │ ├── umeng_socialize_colors.xml │ ├── umeng_socialize_strings.xml │ ├── umeng_socialize_style.xml │ └── umeng_update_string.xml └── src └── com ├── nhaarman └── listviewanimations │ ├── ArrayAdapter.java │ ├── BaseAdapterDecorator.java │ ├── appearance │ ├── AnimationAdapter.java │ ├── ResourceAnimationAdapter.java │ ├── SingleAnimationAdapter.java │ ├── ViewAnimator.java │ └── simple │ │ ├── AlphaInAnimationAdapter.java │ │ ├── RotateBottomAnimationAdapter.java │ │ ├── ScaleInAnimationAdapter.java │ │ ├── SwingBottomInAnimationAdapter.java │ │ ├── SwingLeftInAnimationAdapter.java │ │ └── SwingRightInAnimationAdapter.java │ ├── itemmanipulation │ ├── TouchEventHandler.java │ └── swipedismiss │ │ ├── DismissableManager.java │ │ ├── OnDismissCallback.java │ │ ├── SwipeDismissAdapter.java │ │ ├── SwipeDismissTouchListener.java │ │ └── SwipeTouchListener.java │ └── util │ ├── AbsListViewWrapper.java │ ├── AdapterViewUtil.java │ ├── AnimatorUtil.java │ ├── Insertable.java │ ├── ListViewWrapper.java │ ├── ListViewWrapperSetter.java │ └── Swappable.java ├── nineoldandroids ├── animation │ ├── Animator.java │ ├── AnimatorInflater.java │ ├── AnimatorListenerAdapter.java │ ├── AnimatorSet.java │ ├── ArgbEvaluator.java │ ├── FloatEvaluator.java │ ├── FloatKeyframeSet.java │ ├── IntEvaluator.java │ ├── IntKeyframeSet.java │ ├── Keyframe.java │ ├── KeyframeSet.java │ ├── ObjectAnimator.java │ ├── PreHoneycombCompat.java │ ├── PropertyValuesHolder.java │ ├── TimeAnimator.java │ ├── TypeEvaluator.java │ └── ValueAnimator.java ├── util │ ├── FloatProperty.java │ ├── IntProperty.java │ ├── NoSuchPropertyException.java │ ├── Property.java │ └── ReflectiveProperty.java └── view │ ├── ViewHelper.java │ ├── ViewPropertyAnimator.java │ ├── ViewPropertyAnimatorHC.java │ ├── ViewPropertyAnimatorICS.java │ ├── ViewPropertyAnimatorPreHC.java │ └── animation │ └── AnimatorProxy.java ├── pan └── simplepicture │ ├── ConstantValue.java │ ├── PanApplication.java │ ├── activity │ ├── BaseActivity.java │ ├── CollectionActivity.java │ ├── LoginActivity.java │ ├── MainActivity.java │ ├── PlayActivity.java │ ├── ProvideMaterialActivity.java │ ├── ResourcesActivity.java │ ├── SettingActivity.java │ └── SplashActivity.java │ ├── adapter │ └── BaseListAdapter.java │ ├── annotations │ ├── NonNull.java │ └── Nullable.java │ ├── been │ ├── Category.java │ ├── Comment.java │ ├── Material.java │ ├── Menu.java │ ├── Module.java │ ├── ShortVideo.java │ └── User.java │ ├── fragment │ ├── AllFragment.java │ ├── BaseFragment.java │ ├── ClassifyFragment.java │ └── FragmentFactory.java │ ├── holder │ ├── BaseHolder.java │ ├── ClassifyHolder.java │ ├── CommentHolder.java │ ├── MenuHeaderHolder.java │ ├── MenuHolder.java │ └── ResourcesHolder.java │ ├── http │ ├── HttpClientFactory.java │ ├── HttpHelper.java │ ├── HttpRetry.java │ └── protocol │ │ ├── BaseProtocol.java │ │ ├── ClassifyProtocol.java │ │ ├── HomeProtocol.java │ │ ├── HotProtocol.java │ │ ├── PlayAddressProtocol.java │ │ ├── ProvideMaterialProtocol.java │ │ └── ResourcesProtocol.java │ ├── manager │ ├── SystemBarTintManager.java │ └── ThreadManager.java │ ├── utils │ ├── AppUtils.java │ ├── IOUtils.java │ ├── MD5Utils.java │ ├── MapUtil.java │ ├── SharedPreferencesUtils.java │ ├── StringUtils.java │ └── ViewUtils.java │ ├── widget │ ├── ActionBarDrawerToggle.java │ ├── AlertDialog.java │ ├── CommentLinearLayout.java │ ├── DrawerArrowDrawable.java │ ├── LoadingPage.java │ ├── MeterailEditText.java │ ├── PagerSlidingTabStrip.java │ ├── PagerTab.java │ ├── ShareDialog.java │ ├── grid │ │ ├── ClassLoaderSavedState.java │ │ ├── ExtendableListView.java │ │ ├── HeaderViewListAdapter.java │ │ ├── StaggeredGridView.java │ │ └── util │ │ │ ├── DynamicHeightImageView.java │ │ │ └── DynamicHeightTextView.java │ ├── loadmore │ │ └── PtrUIRefreshCompleteHandler.java │ └── scrollview │ │ ├── OverScrollView.java │ │ └── OverScrollWarpLayout.java │ └── wxapi │ └── WXEntryActivity.java └── romainpiel └── shimmer ├── Shimmer.java ├── ShimmerButton.java ├── ShimmerTextView.java ├── ShimmerViewBase.java └── ShimmerViewHelper.java /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | 7 | # Standard to msysgit 8 | *.doc diff=astextplain 9 | *.DOC diff=astextplain 10 | *.docx diff=astextplain 11 | *.DOCX diff=astextplain 12 | *.dot diff=astextplain 13 | *.DOT diff=astextplain 14 | *.pdf diff=astextplain 15 | *.PDF diff=astextplain 16 | *.rtf diff=astextplain 17 | *.RTF diff=astextplain 18 | -------------------------------------------------------------------------------- /Lib/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Lib/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /Lib/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /Lib/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /Lib/libs/clog-1.0.2-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/Lib/libs/clog-1.0.2-sources.jar -------------------------------------------------------------------------------- /Lib/libs/clog-1.0.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/Lib/libs/clog-1.0.2.jar -------------------------------------------------------------------------------- /Lib/res/drawable-xhdpi/ptr_rotate_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/Lib/res/drawable-xhdpi/ptr_rotate_arrow.png -------------------------------------------------------------------------------- /Lib/res/layout/cube_ptr_simple_loading.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | -------------------------------------------------------------------------------- /UPTR/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /UPTR/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /UPTR/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/UPTR/ic_launcher-web.png -------------------------------------------------------------------------------- /UPTR/libs/clog-1.0.2-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/UPTR/libs/clog-1.0.2-sources.jar -------------------------------------------------------------------------------- /UPTR/libs/clog-1.0.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/UPTR/libs/clog-1.0.2.jar -------------------------------------------------------------------------------- /UPTR/libs/cube-sdk-1.0.40.apklib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/UPTR/libs/cube-sdk-1.0.40.apklib -------------------------------------------------------------------------------- /UPTR/libs/support-v4-r7-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/UPTR/libs/support-v4-r7-sources.jar -------------------------------------------------------------------------------- /UPTR/libs/support-v4-r7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/UPTR/libs/support-v4-r7.jar -------------------------------------------------------------------------------- /UPTR/libs/ultra-ptr-1.0.2.apklib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/UPTR/libs/ultra-ptr-1.0.2.apklib -------------------------------------------------------------------------------- /UPTR/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/UPTR/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /UPTR/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/UPTR/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /UPTR/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/UPTR/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /UPTR/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/UPTR/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /UPTR/res/drawable/with_long_press_list_item_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /UPTR/res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /UPTR/src/in/srain/cube/views/ptr/demo/ui/classic/KeepHeader.java: -------------------------------------------------------------------------------- 1 | package in.srain.cube.views.ptr.demo.ui.classic; 2 | 3 | import in.srain.cube.views.ptr.PtrClassicFrameLayout; 4 | import in.srain.cube.views.ptr.demo.R; 5 | 6 | public class KeepHeader extends WithTextViewInFrameLayoutFragment { 7 | 8 | @Override 9 | protected void setupViews(PtrClassicFrameLayout ptrFrame) { 10 | setHeaderTitle(R.string.ptr_demo_block_keep_header); 11 | ptrFrame.setKeepHeaderWhenRefresh(true); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /UPTR/src/in/srain/cube/views/ptr/demo/ui/classic/PullToRefresh.java: -------------------------------------------------------------------------------- 1 | package in.srain.cube.views.ptr.demo.ui.classic; 2 | 3 | import in.srain.cube.views.ptr.PtrClassicFrameLayout; 4 | import in.srain.cube.views.ptr.demo.R; 5 | 6 | public class PullToRefresh extends WithTextViewInFrameLayoutFragment { 7 | 8 | @Override 9 | protected void setupViews(PtrClassicFrameLayout ptrFrame) { 10 | setHeaderTitle(R.string.ptr_demo_block_pull_to_refresh); 11 | ptrFrame.setPullToRefresh(true); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /UPTR/src/in/srain/cube/views/ptr/demo/ui/classic/ReleaseToRefresh.java: -------------------------------------------------------------------------------- 1 | package in.srain.cube.views.ptr.demo.ui.classic; 2 | 3 | import in.srain.cube.views.ptr.PtrClassicFrameLayout; 4 | import in.srain.cube.views.ptr.demo.R; 5 | 6 | public class ReleaseToRefresh extends WithTextViewInFrameLayoutFragment { 7 | 8 | @Override 9 | protected void setupViews(PtrClassicFrameLayout ptrFrame) { 10 | setHeaderTitle(R.string.ptr_demo_block_release_to_refresh); 11 | ptrFrame.setPullToRefresh(false); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /appcompat/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /appcompat/README.txt: -------------------------------------------------------------------------------- 1 | Library Project including compatibility ActionBar. 2 | 3 | This can be used by an Android project to provide 4 | access to ActionBar on applications running on API 7+. 5 | 6 | There is technically no source, but the src folder is necessary 7 | to ensure that the build system works. The content is actually 8 | located in libs/android-support-v7-appcompat.jar. 9 | The accompanying resources must also be included in the application. 10 | 11 | -------------------------------------------------------------------------------- /appcompat/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/libs/android-support-v4.jar -------------------------------------------------------------------------------- /appcompat/libs/android-support-v7-appcompat.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/libs/android-support-v7-appcompat.jar -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ab_bottom_solid_dark_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-hdpi/abc_ab_bottom_solid_dark_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ab_bottom_solid_light_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-hdpi/abc_ab_bottom_solid_light_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ab_bottom_transparent_dark_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-hdpi/abc_ab_bottom_transparent_dark_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ab_bottom_transparent_light_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-hdpi/abc_ab_bottom_transparent_light_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ab_share_pack_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-hdpi/abc_ab_share_pack_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ab_share_pack_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-hdpi/abc_ab_share_pack_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ab_solid_dark_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-hdpi/abc_ab_solid_dark_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ab_solid_light_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-hdpi/abc_ab_solid_light_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ab_stacked_solid_dark_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-hdpi/abc_ab_stacked_solid_dark_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ab_stacked_solid_light_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-hdpi/abc_ab_stacked_solid_light_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ab_stacked_transparent_dark_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-hdpi/abc_ab_stacked_transparent_dark_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ab_stacked_transparent_light_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-hdpi/abc_ab_stacked_transparent_light_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ab_transparent_dark_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-hdpi/abc_ab_transparent_dark_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ab_transparent_light_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-hdpi/abc_ab_transparent_light_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_cab_background_bottom_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-hdpi/abc_cab_background_bottom_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_cab_background_bottom_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-hdpi/abc_cab_background_bottom_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_cab_background_top_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-hdpi/abc_cab_background_top_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_cab_background_top_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-hdpi/abc_cab_background_top_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_ab_back_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-hdpi/abc_ic_ab_back_holo_dark.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_ab_back_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-hdpi/abc_ic_ab_back_holo_light.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_cab_done_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-hdpi/abc_ic_cab_done_holo_dark.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_cab_done_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-hdpi/abc_ic_cab_done_holo_light.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_clear_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-hdpi/abc_ic_clear_disabled.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_clear_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-hdpi/abc_ic_clear_normal.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_clear_search_api_disabled_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-hdpi/abc_ic_clear_search_api_disabled_holo_light.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_clear_search_api_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-hdpi/abc_ic_clear_search_api_holo_light.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_commit_search_api_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-hdpi/abc_ic_commit_search_api_holo_dark.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_commit_search_api_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-hdpi/abc_ic_commit_search_api_holo_light.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-hdpi/abc_ic_go.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_go_search_api_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-hdpi/abc_ic_go_search_api_holo_light.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_menu_moreoverflow_normal_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-hdpi/abc_ic_menu_moreoverflow_normal_holo_dark.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_menu_moreoverflow_normal_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-hdpi/abc_ic_menu_moreoverflow_normal_holo_light.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_menu_share_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-hdpi/abc_ic_menu_share_holo_dark.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_menu_share_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-hdpi/abc_ic_menu_share_holo_light.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-hdpi/abc_ic_search.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_search_api_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-hdpi/abc_ic_search_api_holo_light.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_voice_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-hdpi/abc_ic_voice_search.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_ic_voice_search_api_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-hdpi/abc_ic_voice_search_api_holo_light.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_list_divider_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-hdpi/abc_list_divider_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_list_divider_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-hdpi/abc_list_divider_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-hdpi/abc_list_focused_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-hdpi/abc_list_longpressed_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_list_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-hdpi/abc_list_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_list_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-hdpi/abc_list_pressed_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_list_selector_disabled_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-hdpi/abc_list_selector_disabled_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_list_selector_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-hdpi/abc_list_selector_disabled_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_menu_dropdown_panel_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-hdpi/abc_menu_dropdown_panel_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_menu_dropdown_panel_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-hdpi/abc_menu_dropdown_panel_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_menu_hardkey_panel_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-hdpi/abc_menu_hardkey_panel_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_menu_hardkey_panel_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-hdpi/abc_menu_hardkey_panel_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_spinner_ab_default_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-hdpi/abc_spinner_ab_default_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_spinner_ab_default_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-hdpi/abc_spinner_ab_default_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_spinner_ab_disabled_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-hdpi/abc_spinner_ab_disabled_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_spinner_ab_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-hdpi/abc_spinner_ab_disabled_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_spinner_ab_focused_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-hdpi/abc_spinner_ab_focused_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_spinner_ab_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-hdpi/abc_spinner_ab_focused_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_spinner_ab_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-hdpi/abc_spinner_ab_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_spinner_ab_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-hdpi/abc_spinner_ab_pressed_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_tab_selected_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-hdpi/abc_tab_selected_focused_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_tab_selected_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-hdpi/abc_tab_selected_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_tab_selected_pressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-hdpi/abc_tab_selected_pressed_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_tab_unselected_pressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-hdpi/abc_tab_unselected_pressed_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_textfield_search_default_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-hdpi/abc_textfield_search_default_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_textfield_search_default_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-hdpi/abc_textfield_search_default_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_textfield_search_right_default_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-hdpi/abc_textfield_search_right_default_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_textfield_search_right_default_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-hdpi/abc_textfield_search_right_default_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_textfield_search_right_selected_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-hdpi/abc_textfield_search_right_selected_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_textfield_search_right_selected_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-hdpi/abc_textfield_search_right_selected_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_textfield_search_selected_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-hdpi/abc_textfield_search_selected_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-hdpi/abc_textfield_search_selected_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-hdpi/abc_textfield_search_selected_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ab_bottom_solid_dark_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-mdpi/abc_ab_bottom_solid_dark_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ab_bottom_solid_light_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-mdpi/abc_ab_bottom_solid_light_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ab_bottom_transparent_dark_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-mdpi/abc_ab_bottom_transparent_dark_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ab_bottom_transparent_light_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-mdpi/abc_ab_bottom_transparent_light_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ab_share_pack_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-mdpi/abc_ab_share_pack_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ab_share_pack_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-mdpi/abc_ab_share_pack_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ab_solid_dark_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-mdpi/abc_ab_solid_dark_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ab_solid_light_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-mdpi/abc_ab_solid_light_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ab_stacked_solid_dark_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-mdpi/abc_ab_stacked_solid_dark_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ab_stacked_solid_light_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-mdpi/abc_ab_stacked_solid_light_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ab_stacked_transparent_dark_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-mdpi/abc_ab_stacked_transparent_dark_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ab_stacked_transparent_light_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-mdpi/abc_ab_stacked_transparent_light_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ab_transparent_dark_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-mdpi/abc_ab_transparent_dark_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ab_transparent_light_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-mdpi/abc_ab_transparent_light_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_cab_background_bottom_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-mdpi/abc_cab_background_bottom_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_cab_background_bottom_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-mdpi/abc_cab_background_bottom_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_cab_background_top_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-mdpi/abc_cab_background_top_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_cab_background_top_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-mdpi/abc_cab_background_top_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_ab_back_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-mdpi/abc_ic_ab_back_holo_dark.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_ab_back_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-mdpi/abc_ic_ab_back_holo_light.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_cab_done_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-mdpi/abc_ic_cab_done_holo_dark.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_cab_done_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-mdpi/abc_ic_cab_done_holo_light.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_clear_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-mdpi/abc_ic_clear_disabled.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_clear_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-mdpi/abc_ic_clear_normal.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_clear_search_api_disabled_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-mdpi/abc_ic_clear_search_api_disabled_holo_light.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_clear_search_api_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-mdpi/abc_ic_clear_search_api_holo_light.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_commit_search_api_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-mdpi/abc_ic_commit_search_api_holo_dark.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_commit_search_api_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-mdpi/abc_ic_commit_search_api_holo_light.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-mdpi/abc_ic_go.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_go_search_api_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-mdpi/abc_ic_go_search_api_holo_light.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_menu_moreoverflow_normal_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-mdpi/abc_ic_menu_moreoverflow_normal_holo_dark.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_menu_moreoverflow_normal_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-mdpi/abc_ic_menu_moreoverflow_normal_holo_light.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_menu_share_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-mdpi/abc_ic_menu_share_holo_dark.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_menu_share_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-mdpi/abc_ic_menu_share_holo_light.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-mdpi/abc_ic_search.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_search_api_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-mdpi/abc_ic_search_api_holo_light.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_voice_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-mdpi/abc_ic_voice_search.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_ic_voice_search_api_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-mdpi/abc_ic_voice_search_api_holo_light.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_list_divider_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-mdpi/abc_list_divider_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_list_divider_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-mdpi/abc_list_divider_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-mdpi/abc_list_focused_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-mdpi/abc_list_longpressed_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_list_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-mdpi/abc_list_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_list_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-mdpi/abc_list_pressed_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_list_selector_disabled_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-mdpi/abc_list_selector_disabled_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_list_selector_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-mdpi/abc_list_selector_disabled_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_menu_dropdown_panel_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-mdpi/abc_menu_dropdown_panel_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_menu_dropdown_panel_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-mdpi/abc_menu_dropdown_panel_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_menu_hardkey_panel_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-mdpi/abc_menu_hardkey_panel_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_menu_hardkey_panel_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-mdpi/abc_menu_hardkey_panel_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_spinner_ab_default_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-mdpi/abc_spinner_ab_default_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_spinner_ab_default_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-mdpi/abc_spinner_ab_default_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_spinner_ab_disabled_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-mdpi/abc_spinner_ab_disabled_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_spinner_ab_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-mdpi/abc_spinner_ab_disabled_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_spinner_ab_focused_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-mdpi/abc_spinner_ab_focused_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_spinner_ab_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-mdpi/abc_spinner_ab_focused_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_spinner_ab_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-mdpi/abc_spinner_ab_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_spinner_ab_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-mdpi/abc_spinner_ab_pressed_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_tab_selected_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-mdpi/abc_tab_selected_focused_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_tab_selected_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-mdpi/abc_tab_selected_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_tab_selected_pressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-mdpi/abc_tab_selected_pressed_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_tab_unselected_pressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-mdpi/abc_tab_unselected_pressed_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_textfield_search_default_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-mdpi/abc_textfield_search_default_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_textfield_search_default_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-mdpi/abc_textfield_search_default_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_textfield_search_right_default_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-mdpi/abc_textfield_search_right_default_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_textfield_search_right_default_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-mdpi/abc_textfield_search_right_default_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_textfield_search_right_selected_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-mdpi/abc_textfield_search_right_selected_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_textfield_search_right_selected_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-mdpi/abc_textfield_search_right_selected_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_textfield_search_selected_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-mdpi/abc_textfield_search_selected_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-mdpi/abc_textfield_search_selected_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-mdpi/abc_textfield_search_selected_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ab_bottom_solid_dark_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-xhdpi/abc_ab_bottom_solid_dark_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ab_bottom_solid_light_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-xhdpi/abc_ab_bottom_solid_light_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ab_bottom_transparent_dark_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-xhdpi/abc_ab_bottom_transparent_dark_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ab_bottom_transparent_light_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-xhdpi/abc_ab_bottom_transparent_light_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ab_share_pack_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-xhdpi/abc_ab_share_pack_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ab_share_pack_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-xhdpi/abc_ab_share_pack_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ab_solid_dark_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-xhdpi/abc_ab_solid_dark_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ab_solid_light_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-xhdpi/abc_ab_solid_light_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ab_stacked_solid_dark_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-xhdpi/abc_ab_stacked_solid_dark_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ab_stacked_solid_light_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-xhdpi/abc_ab_stacked_solid_light_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ab_stacked_transparent_dark_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-xhdpi/abc_ab_stacked_transparent_dark_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ab_stacked_transparent_light_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-xhdpi/abc_ab_stacked_transparent_light_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ab_transparent_dark_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-xhdpi/abc_ab_transparent_dark_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ab_transparent_light_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-xhdpi/abc_ab_transparent_light_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_cab_background_bottom_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-xhdpi/abc_cab_background_bottom_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_cab_background_bottom_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-xhdpi/abc_cab_background_bottom_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_cab_background_top_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-xhdpi/abc_cab_background_top_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_cab_background_top_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-xhdpi/abc_cab_background_top_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_ab_back_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-xhdpi/abc_ic_ab_back_holo_dark.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_ab_back_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-xhdpi/abc_ic_ab_back_holo_light.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_cab_done_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-xhdpi/abc_ic_cab_done_holo_dark.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_cab_done_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-xhdpi/abc_ic_cab_done_holo_light.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_clear_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-xhdpi/abc_ic_clear_disabled.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_clear_search_api_disabled_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-xhdpi/abc_ic_clear_search_api_disabled_holo_light.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_clear_search_api_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-xhdpi/abc_ic_clear_search_api_holo_light.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_commit_search_api_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-xhdpi/abc_ic_commit_search_api_holo_dark.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_commit_search_api_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-xhdpi/abc_ic_commit_search_api_holo_light.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-xhdpi/abc_ic_go.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_go_search_api_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-xhdpi/abc_ic_go_search_api_holo_light.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_menu_moreoverflow_normal_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-xhdpi/abc_ic_menu_moreoverflow_normal_holo_dark.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_menu_moreoverflow_normal_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-xhdpi/abc_ic_menu_moreoverflow_normal_holo_light.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_menu_share_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-xhdpi/abc_ic_menu_share_holo_dark.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_menu_share_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-xhdpi/abc_ic_menu_share_holo_light.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-xhdpi/abc_ic_search.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_search_api_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-xhdpi/abc_ic_search_api_holo_light.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_voice_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-xhdpi/abc_ic_voice_search.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_ic_voice_search_api_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-xhdpi/abc_ic_voice_search_api_holo_light.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_list_divider_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-xhdpi/abc_list_divider_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_list_divider_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-xhdpi/abc_list_divider_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-xhdpi/abc_list_focused_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-xhdpi/abc_list_longpressed_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_list_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-xhdpi/abc_list_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_list_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-xhdpi/abc_list_pressed_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_list_selector_disabled_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-xhdpi/abc_list_selector_disabled_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_list_selector_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-xhdpi/abc_list_selector_disabled_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_menu_dropdown_panel_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-xhdpi/abc_menu_dropdown_panel_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_menu_dropdown_panel_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-xhdpi/abc_menu_dropdown_panel_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_menu_hardkey_panel_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-xhdpi/abc_menu_hardkey_panel_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_menu_hardkey_panel_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-xhdpi/abc_menu_hardkey_panel_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_spinner_ab_default_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-xhdpi/abc_spinner_ab_default_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_spinner_ab_default_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-xhdpi/abc_spinner_ab_default_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_spinner_ab_disabled_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-xhdpi/abc_spinner_ab_disabled_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_spinner_ab_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-xhdpi/abc_spinner_ab_disabled_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_spinner_ab_focused_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-xhdpi/abc_spinner_ab_focused_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_spinner_ab_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-xhdpi/abc_spinner_ab_focused_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_spinner_ab_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-xhdpi/abc_spinner_ab_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_spinner_ab_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-xhdpi/abc_spinner_ab_pressed_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_tab_selected_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-xhdpi/abc_tab_selected_focused_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_tab_selected_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-xhdpi/abc_tab_selected_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_tab_selected_pressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-xhdpi/abc_tab_selected_pressed_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_tab_unselected_pressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-xhdpi/abc_tab_unselected_pressed_holo.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_textfield_search_default_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-xhdpi/abc_textfield_search_default_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_textfield_search_default_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-xhdpi/abc_textfield_search_default_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_textfield_search_right_default_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-xhdpi/abc_textfield_search_right_default_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_textfield_search_right_default_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-xhdpi/abc_textfield_search_right_default_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_textfield_search_right_selected_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-xhdpi/abc_textfield_search_right_selected_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_textfield_search_right_selected_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-xhdpi/abc_textfield_search_right_selected_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_textfield_search_selected_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-xhdpi/abc_textfield_search_selected_holo_dark.9.png -------------------------------------------------------------------------------- /appcompat/res/drawable-xhdpi/abc_textfield_search_selected_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/appcompat/res/drawable-xhdpi/abc_textfield_search_selected_holo_light.9.png -------------------------------------------------------------------------------- /appcompat/src/.readme: -------------------------------------------------------------------------------- 1 | This hidden file is there to ensure there is an src folder. 2 | Once we support binary library this will go away. -------------------------------------------------------------------------------- /cube/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /cube/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /cube/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /cube/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /cube/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/cube/libs/android-support-v4.jar -------------------------------------------------------------------------------- /cube/lint.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /cube/res/drawable-xxhdpi/cube_mints_icon_top_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/cube/res/drawable-xxhdpi/cube_mints_icon_top_back.png -------------------------------------------------------------------------------- /cube/res/values-zh/cube_core_strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 再按一次,退出程序 5 | 6 | -------------------------------------------------------------------------------- /cube/res/values/cube_core_attrs_dotview.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /cube/res/values/cube_core_attrs_more_action_view.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /cube/res/values/cube_core_attrs_scrollheaderframe.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /cube/res/values/cube_core_attrs_slider_banner.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /cube/res/values/cube_core_strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /cube/res/values/cube_mints_dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 44dp 4 | 12.5dp 5 | -------------------------------------------------------------------------------- /cube/res/values/cube_mints_strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Tap back once more to exit. 5 | 6 | -------------------------------------------------------------------------------- /cube/src/in/srain/cube/app/FragmentParam.java: -------------------------------------------------------------------------------- 1 | package in.srain.cube.app; 2 | 3 | 4 | public class FragmentParam { 5 | 6 | public CubeFragment from; 7 | public Class cls; 8 | public Object data; 9 | } -------------------------------------------------------------------------------- /cube/src/in/srain/cube/app/lifecycle/IComponentContainer.java: -------------------------------------------------------------------------------- 1 | package in.srain.cube.app.lifecycle; 2 | 3 | public interface IComponentContainer { 4 | public void addComponent(LifeCycleComponent component); 5 | } -------------------------------------------------------------------------------- /cube/src/in/srain/cube/cache/CacheResultType.java: -------------------------------------------------------------------------------- 1 | package in.srain.cube.cache; 2 | 3 | public enum CacheResultType { 4 | FROM_INIT_FILE, 5 | FROM_CACHE_FILE, 6 | FROM_CREATED, 7 | FROM_MEMORY, 8 | } -------------------------------------------------------------------------------- /cube/src/in/srain/cube/cache/IFileCache.java: -------------------------------------------------------------------------------- 1 | package in.srain.cube.cache; 2 | 3 | public interface IFileCache { 4 | 5 | public String getCachePath(); 6 | 7 | public long getUsedSpace(); 8 | 9 | public void clearCache(); 10 | 11 | public long getMaxSize(); 12 | 13 | public boolean has(String key); 14 | } 15 | -------------------------------------------------------------------------------- /cube/src/in/srain/cube/image/ImagePerformanceStatistics.java: -------------------------------------------------------------------------------- 1 | package in.srain.cube.image; 2 | 3 | public class ImagePerformanceStatistics { 4 | 5 | private static int sSAMPLE_NUM = 0; 6 | 7 | public static void setSample(int num) { 8 | sSAMPLE_NUM = num; 9 | } 10 | 11 | public static boolean sample(int id) { 12 | return sSAMPLE_NUM != 0 && id % sSAMPLE_NUM == 0; 13 | } 14 | } -------------------------------------------------------------------------------- /cube/src/in/srain/cube/image/iface/ImageFileProvider.java: -------------------------------------------------------------------------------- 1 | package in.srain.cube.image.iface; 2 | 3 | import in.srain.cube.cache.IFileCache; 4 | 5 | import java.io.FileInputStream; 6 | 7 | public interface ImageFileProvider extends IFileCache { 8 | 9 | public FileInputStream getInputStream(String key); 10 | 11 | public FileInputStream downloadAndGetInputStream(String key, String url); 12 | 13 | public void flushDiskCacheAsync(); 14 | 15 | public void initDiskCacheAsync(); 16 | } -------------------------------------------------------------------------------- /cube/src/in/srain/cube/image/iface/ImageTaskExecutor.java: -------------------------------------------------------------------------------- 1 | package in.srain.cube.image.iface; 2 | 3 | import in.srain.cube.image.ImageLoader.ImageTaskOrder; 4 | 5 | import java.util.concurrent.Executor; 6 | 7 | /** 8 | * An Executor to execute ImageTask, it allows the task can be executed in different order. 9 | */ 10 | public interface ImageTaskExecutor extends Executor { 11 | void setTaskOrder(ImageTaskOrder order); 12 | } -------------------------------------------------------------------------------- /cube/src/in/srain/cube/mints/base/DemoBaseActivity.java: -------------------------------------------------------------------------------- 1 | package in.srain.cube.mints.base; 2 | 3 | import in.srain.cube.R; 4 | import in.srain.cube.app.XActivity; 5 | 6 | public abstract class DemoBaseActivity extends XActivity { 7 | 8 | @Override 9 | protected String getCloseWarning() { 10 | return getString(R.string.cube_mints_exit_tip); 11 | } 12 | 13 | @Override 14 | protected int getFragmentContainerId() { 15 | return 0; 16 | } 17 | } -------------------------------------------------------------------------------- /cube/src/in/srain/cube/request/CacheAbleRequestDefaultHandler.java: -------------------------------------------------------------------------------- 1 | package in.srain.cube.request; 2 | 3 | public abstract class CacheAbleRequestDefaultHandler implements CacheAbleRequestHandler { 4 | 5 | public void onCacheData(T1 data, boolean outOfDate) { 6 | } 7 | 8 | @Override 9 | public void onRequestFail(FailData failData) { 10 | } 11 | 12 | @Override 13 | public void onRequestFinish(T1 data) { 14 | 15 | } 16 | } -------------------------------------------------------------------------------- /cube/src/in/srain/cube/request/CacheAbleRequestHandler.java: -------------------------------------------------------------------------------- 1 | package in.srain.cube.request; 2 | 3 | public interface CacheAbleRequestHandler extends RequestHandler { 4 | 5 | /** 6 | * the data from cache, outOfDate detective if the data is out of date. 7 | */ 8 | public void onCacheData(T1 data, boolean outOfDate); 9 | 10 | public void onCacheAbleRequestFinish(T1 data, CacheAbleRequest.ResultType type, boolean outOfDate); 11 | } -------------------------------------------------------------------------------- /cube/src/in/srain/cube/request/CacheAbleRequestJsonHandler.java: -------------------------------------------------------------------------------- 1 | package in.srain.cube.request; 2 | 3 | public abstract class CacheAbleRequestJsonHandler extends CacheAbleRequestDefaultHandler { 4 | 5 | @Override 6 | public JsonData processOriginData(JsonData jsonData) { 7 | return jsonData; 8 | } 9 | } -------------------------------------------------------------------------------- /cube/src/in/srain/cube/request/FailData.java: -------------------------------------------------------------------------------- 1 | package in.srain.cube.request; 2 | 3 | public class FailData { 4 | public Object object; 5 | 6 | public FailData(Object o) { 7 | object = o; 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /cube/src/in/srain/cube/request/RequestDefaultHandler.java: -------------------------------------------------------------------------------- 1 | package in.srain.cube.request; 2 | 3 | public abstract class RequestDefaultHandler implements RequestHandler { 4 | 5 | public void onRequestFail(FailData failData) { 6 | 7 | } 8 | } -------------------------------------------------------------------------------- /cube/src/in/srain/cube/request/RequestFinishHandler.java: -------------------------------------------------------------------------------- 1 | package in.srain.cube.request; 2 | 3 | public interface RequestFinishHandler { 4 | 5 | public void onRequestFinish(T data); 6 | } -------------------------------------------------------------------------------- /cube/src/in/srain/cube/request/RequestHandler.java: -------------------------------------------------------------------------------- 1 | package in.srain.cube.request; 2 | 3 | public interface RequestHandler extends RequestFinishHandler { 4 | 5 | public T processOriginData(JsonData jsonData); 6 | 7 | public void onRequestFail(FailData failData); 8 | } -------------------------------------------------------------------------------- /cube/src/in/srain/cube/request/RequestJsonHandler.java: -------------------------------------------------------------------------------- 1 | package in.srain.cube.request; 2 | 3 | public abstract class RequestJsonHandler extends RequestDefaultHandler { 4 | 5 | @Override 6 | public JsonData processOriginData(JsonData jsonData) { 7 | return jsonData; 8 | } 9 | } -------------------------------------------------------------------------------- /cube/src/in/srain/cube/request/SimpleJsonRequest.java: -------------------------------------------------------------------------------- 1 | package in.srain.cube.request; 2 | 3 | /** 4 | * @author http://www.liaohuqiu.net 5 | */ 6 | public class SimpleJsonRequest extends SimpleRequest { 7 | 8 | public SimpleJsonRequest(RequestJsonHandler requestHandler) { 9 | super(requestHandler); 10 | } 11 | } -------------------------------------------------------------------------------- /cube/src/in/srain/cube/util/ResourceMan.java: -------------------------------------------------------------------------------- 1 | package in.srain.cube.util; 2 | 3 | import java.lang.reflect.Field; 4 | 5 | public class ResourceMan { 6 | 7 | public static int getResId(String variableName, Class c) { 8 | try { 9 | Field idField = c.getDeclaredField(variableName); 10 | return idField.getInt(idField); 11 | } catch (Exception e) { 12 | e.printStackTrace(); 13 | return -1; 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /cube/src/in/srain/cube/views/IScrollHeaderFrameHandler.java: -------------------------------------------------------------------------------- 1 | package in.srain.cube.views; 2 | 3 | public interface IScrollHeaderFrameHandler { 4 | public boolean hasReachTop(); 5 | } -------------------------------------------------------------------------------- /cube/src/in/srain/cube/views/banner/PagerIndicator.java: -------------------------------------------------------------------------------- 1 | package in.srain.cube.views.banner; 2 | 3 | public interface PagerIndicator { 4 | 5 | public void setNum(int num); 6 | 7 | public int getTotal(); 8 | 9 | public void setSelected(int index); 10 | 11 | public int getCurrentIndex(); 12 | } 13 | -------------------------------------------------------------------------------- /cube/src/in/srain/cube/views/list/ViewHolderCreator.java: -------------------------------------------------------------------------------- 1 | package in.srain.cube.views.list; 2 | 3 | /** 4 | * A interface that defines what a View Holder Creator should do. 5 | * 6 | * @param the generic type of the data in each item of a list. 7 | * @author http://www.liaohuqiu.net 8 | */ 9 | public interface ViewHolderCreator { 10 | public ViewHolderBase createViewHolder(); 11 | } -------------------------------------------------------------------------------- /simplepicture/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /simplepicture/assets/category_cover_app.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/assets/category_cover_app.jpg -------------------------------------------------------------------------------- /simplepicture/assets/category_cover_car.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/assets/category_cover_car.jpg -------------------------------------------------------------------------------- /simplepicture/assets/category_cover_craft.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/assets/category_cover_craft.jpg -------------------------------------------------------------------------------- /simplepicture/assets/category_cover_edu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/assets/category_cover_edu.jpg -------------------------------------------------------------------------------- /simplepicture/assets/category_cover_fashion.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/assets/category_cover_fashion.jpg -------------------------------------------------------------------------------- /simplepicture/assets/category_cover_funny.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/assets/category_cover_funny.jpg -------------------------------------------------------------------------------- /simplepicture/assets/category_cover_game.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/assets/category_cover_game.jpg -------------------------------------------------------------------------------- /simplepicture/assets/category_cover_gongyi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/assets/category_cover_gongyi.jpg -------------------------------------------------------------------------------- /simplepicture/assets/category_cover_journey.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/assets/category_cover_journey.jpg -------------------------------------------------------------------------------- /simplepicture/assets/category_cover_life.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/assets/category_cover_life.jpg -------------------------------------------------------------------------------- /simplepicture/assets/category_cover_originality.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/assets/category_cover_originality.jpg -------------------------------------------------------------------------------- /simplepicture/assets/category_cover_qinzi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/assets/category_cover_qinzi.jpg -------------------------------------------------------------------------------- /simplepicture/assets/category_cover_sport.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/assets/category_cover_sport.jpg -------------------------------------------------------------------------------- /simplepicture/assets/category_cover_tech.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/assets/category_cover_tech.jpg -------------------------------------------------------------------------------- /simplepicture/assets/ico_favorite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/assets/ico_favorite.png -------------------------------------------------------------------------------- /simplepicture/assets/ico_feedback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/assets/ico_feedback.png -------------------------------------------------------------------------------- /simplepicture/assets/ico_hot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/assets/ico_hot.png -------------------------------------------------------------------------------- /simplepicture/assets/ico_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/assets/ico_new.png -------------------------------------------------------------------------------- /simplepicture/assets/ico_random.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/assets/ico_random.png -------------------------------------------------------------------------------- /simplepicture/assets/ico_setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/assets/ico_setting.png -------------------------------------------------------------------------------- /simplepicture/assets/ico_upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/assets/ico_upload.png -------------------------------------------------------------------------------- /simplepicture/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/ic_launcher-web.png -------------------------------------------------------------------------------- /simplepicture/libs/Baidu_CyberPlayer_SDK_1.7s.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/libs/Baidu_CyberPlayer_SDK_1.7s.jar -------------------------------------------------------------------------------- /simplepicture/libs/SocialSDK_QQZone_1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/libs/SocialSDK_QQZone_1.jar -------------------------------------------------------------------------------- /simplepicture/libs/SocialSDK_QQZone_2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/libs/SocialSDK_QQZone_2.jar -------------------------------------------------------------------------------- /simplepicture/libs/SocialSDK_QQZone_3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/libs/SocialSDK_QQZone_3.jar -------------------------------------------------------------------------------- /simplepicture/libs/SocialSDK_Sina.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/libs/SocialSDK_Sina.jar -------------------------------------------------------------------------------- /simplepicture/libs/SocialSDK_WeiXin_1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/libs/SocialSDK_WeiXin_1.jar -------------------------------------------------------------------------------- /simplepicture/libs/SocialSDK_WeiXin_2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/libs/SocialSDK_WeiXin_2.jar -------------------------------------------------------------------------------- /simplepicture/libs/SocialSDK_tencentWB_1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/libs/SocialSDK_tencentWB_1.jar -------------------------------------------------------------------------------- /simplepicture/libs/SocialSDK_tencentWB_2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/libs/SocialSDK_tencentWB_2.jar -------------------------------------------------------------------------------- /simplepicture/libs/SocialSDK_tencentWB_3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/libs/SocialSDK_tencentWB_3.jar -------------------------------------------------------------------------------- /simplepicture/libs/YoumiSdk_v5.00_2015-01-08.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/libs/YoumiSdk_v5.00_2015-01-08.jar -------------------------------------------------------------------------------- /simplepicture/libs/android-async-http-1.4.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/libs/android-async-http-1.4.6.jar -------------------------------------------------------------------------------- /simplepicture/libs/armeabi-v7a/libcyberplayer-core.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/libs/armeabi-v7a/libcyberplayer-core.so -------------------------------------------------------------------------------- /simplepicture/libs/armeabi-v7a/libcyberplayer.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/libs/armeabi-v7a/libcyberplayer.so -------------------------------------------------------------------------------- /simplepicture/libs/armeabi-v7a/libumeng_opustool.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/libs/armeabi-v7a/libumeng_opustool.so -------------------------------------------------------------------------------- /simplepicture/libs/armeabi/libbspatch.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/libs/armeabi/libbspatch.so -------------------------------------------------------------------------------- /simplepicture/libs/armeabi/libumeng_opustool.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/libs/armeabi/libumeng_opustool.so -------------------------------------------------------------------------------- /simplepicture/libs/avoscloud-sdk-v2.6.10.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/libs/avoscloud-sdk-v2.6.10.4.jar -------------------------------------------------------------------------------- /simplepicture/libs/com.umeng.fb.v5.1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/libs/com.umeng.fb.v5.1.0.jar -------------------------------------------------------------------------------- /simplepicture/libs/fastjson.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/libs/fastjson.jar -------------------------------------------------------------------------------- /simplepicture/libs/gson-2.2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/libs/gson-2.2.1.jar -------------------------------------------------------------------------------- /simplepicture/libs/httpmime-4.2.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/libs/httpmime-4.2.4.jar -------------------------------------------------------------------------------- /simplepicture/libs/mips/libumeng_opustool.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/libs/mips/libumeng_opustool.so -------------------------------------------------------------------------------- /simplepicture/libs/umeng-analytics-v5.4.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/libs/umeng-analytics-v5.4.1.jar -------------------------------------------------------------------------------- /simplepicture/libs/umeng-update-v2.5.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/libs/umeng-update-v2.5.0.jar -------------------------------------------------------------------------------- /simplepicture/libs/umeng_social_sdk.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/libs/umeng_social_sdk.jar -------------------------------------------------------------------------------- /simplepicture/libs/x86/libumeng_opustool.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/libs/x86/libumeng_opustool.so -------------------------------------------------------------------------------- /simplepicture/lint.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /simplepicture/res/anim/new_dync_in_from_right.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | -------------------------------------------------------------------------------- /simplepicture/res/anim/new_dync_no.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /simplepicture/res/anim/umeng_socialize_fade_in.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 9 | 10 | -------------------------------------------------------------------------------- /simplepicture/res/anim/umeng_socialize_fade_out.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 9 | 10 | -------------------------------------------------------------------------------- /simplepicture/res/anim/umeng_socialize_shareboard_animation_out.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /simplepicture/res/anim/umeng_socialize_slide_in_from_bottom.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | -------------------------------------------------------------------------------- /simplepicture/res/anim/umeng_socialize_slide_out_from_bottom.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /simplepicture/res/color/tab_text_color.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/alert_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/alert_bg.9.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/alert_btn_left_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/alert_btn_left_pressed.9.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/alert_btn_right_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/alert_btn_right_pressed.9.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/alert_btn_single_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/alert_btn_single_pressed.9.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/bg_tab.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/bg_tab.9.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/cyberplayer_listbtn_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/cyberplayer_listbtn_normal.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/cyberplayer_listbtn_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/cyberplayer_listbtn_pressed.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/cyberplayer_next_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/cyberplayer_next_play.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/cyberplayer_next_play_disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/cyberplayer_next_play_disable.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/cyberplayer_next_play_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/cyberplayer_next_play_pressed.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/cyberplayer_play_media.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/cyberplayer_play_media.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/cyberplayer_play_media_disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/cyberplayer_play_media_disable.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/cyberplayer_play_media_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/cyberplayer_play_media_pressed.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/cyberplayer_retreat_media.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/cyberplayer_retreat_media.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/cyberplayer_retreat_media_disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/cyberplayer_retreat_media_disable.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/cyberplayer_retreat_media_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/cyberplayer_retreat_media_pressed.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/cyberplayer_seekbar_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/cyberplayer_seekbar_background.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/cyberplayer_seekbar_background_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/cyberplayer_seekbar_background_normal.9.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/cyberplayer_seekbar_background_process.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/cyberplayer_seekbar_background_process.9.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/cyberplayer_seekbar_background_sound_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/cyberplayer_seekbar_background_sound_normal.9.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/cyberplayer_seekbar_background_sound_process.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/cyberplayer_seekbar_background_sound_process.9.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/cyberplayer_seekbar_cache.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/cyberplayer_seekbar_cache.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/cyberplayer_seekbar_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/cyberplayer_seekbar_normal.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/cyberplayer_seekbar_ratio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/cyberplayer_seekbar_ratio.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/cyberplayer_seekbar_ratio_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/cyberplayer_seekbar_ratio_white.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/cyberplayer_stop_media.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/cyberplayer_stop_media.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/cyberplayer_stop_media_disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/cyberplayer_stop_media_disable.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/cyberplayer_stop_media_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/cyberplayer_stop_media_pressed.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/cyberplayer_textbtn_background_blue.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/cyberplayer_textbtn_background_blue.9.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/cyberplayer_titlebar_return.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/cyberplayer_titlebar_return.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/cyberplayer_volumebar_background.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/cyberplayer_volumebar_background.9.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/hcw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/hcw.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/ic_ab_back_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/ic_ab_back_holo_light.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/ic_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/ic_drawer.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/ic_menu_send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/ic_menu_send.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/ic_pause_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/ic_pause_normal.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/ic_pause_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/ic_pause_press.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/ic_play_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/ic_play_normal.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/ic_play_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/ic_play_pressed.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/ic_tv_rest.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/ic_tv_rest.jpg -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/ic_vidcontrol_fullscreen_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/ic_vidcontrol_fullscreen_off.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/ic_vidcontrol_fullscreen_off_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/ic_vidcontrol_fullscreen_off_pressed.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/ic_vidcontrol_fullscreen_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/ic_vidcontrol_fullscreen_on.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/ic_vidcontrol_fullscreen_on_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/ic_vidcontrol_fullscreen_on_pressed.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/line.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/list_item_bg_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/list_item_bg_normal.9.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/login.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/name.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/qq_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/qq_login.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/sina_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/sina_login.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/spinner_small_inner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/spinner_small_inner.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/spinner_small_outer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/spinner_small_outer.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/splash.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/toggle_btn_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/toggle_btn_off.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/toggle_btn_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/toggle_btn_on.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/trans_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/trans_bg.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/umeng_logo_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/umeng_logo_big.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/umeng_logo_big_subtitle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/umeng_logo_big_subtitle.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/umeng_socialize_light_bar_bg_pad.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/umeng_socialize_light_bar_bg_pad.9.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/umeng_socialize_nav_bar_bg_pad.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/umeng_socialize_nav_bar_bg_pad.9.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/umeng_socialize_oauth_check_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/umeng_socialize_oauth_check_off.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/umeng_socialize_oauth_check_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/umeng_socialize_oauth_check_on.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/umeng_socialize_share_music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/umeng_socialize_share_music.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/umeng_socialize_share_pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/umeng_socialize_share_pic.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/umeng_socialize_share_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/umeng_socialize_share_video.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/umeng_update_btn_check_off_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/umeng_update_btn_check_off_focused_holo_light.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/umeng_update_btn_check_off_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/umeng_update_btn_check_off_holo_light.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/umeng_update_btn_check_off_pressed_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/umeng_update_btn_check_off_pressed_holo_light.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/umeng_update_btn_check_on_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/umeng_update_btn_check_on_focused_holo_light.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/umeng_update_btn_check_on_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/umeng_update_btn_check_on_holo_light.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/umeng_update_btn_check_on_pressed_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/umeng_update_btn_check_on_pressed_holo_light.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/umeng_update_close_bg_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/umeng_update_close_bg_normal.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/umeng_update_close_bg_tap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/umeng_update_close_bg_tap.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-hdpi/v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-hdpi/v.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-mdpi/ic_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-mdpi/ic_drawer.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-xhdpi/card_frame.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-xhdpi/card_frame.9.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-xhdpi/gif_loading1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-xhdpi/gif_loading1.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-xhdpi/gif_loading1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-xhdpi/gif_loading1_1.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-xhdpi/gif_loading2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-xhdpi/gif_loading2.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-xhdpi/gif_loading2_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-xhdpi/gif_loading2_1.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-xhdpi/gif_loading3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-xhdpi/gif_loading3.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-xhdpi/gif_loading3_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-xhdpi/gif_loading3_1.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-xhdpi/gif_loading4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-xhdpi/gif_loading4.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-xhdpi/gif_loading4_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-xhdpi/gif_loading4_1.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-xhdpi/gif_loading5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-xhdpi/gif_loading5.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-xhdpi/gif_loading5_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-xhdpi/gif_loading5_1.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-xhdpi/gif_loading6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-xhdpi/gif_loading6.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-xhdpi/gif_loading6_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-xhdpi/gif_loading6_1.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-xhdpi/gif_loading7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-xhdpi/gif_loading7.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-xhdpi/gif_loading7_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-xhdpi/gif_loading7_1.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-xhdpi/hao123_mybar_empty_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-xhdpi/hao123_mybar_empty_icon.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-xhdpi/ic_action_important.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-xhdpi/ic_action_important.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-xhdpi/ic_action_not_important.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-xhdpi/ic_action_not_important.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-xhdpi/ic_action_share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-xhdpi/ic_action_share.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-xhdpi/ic_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-xhdpi/ic_dark.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-xhdpi/ic_eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-xhdpi/ic_eye.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-xhdpi/ic_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-xhdpi/ic_light.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-xhdpi/ic_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-xhdpi/ic_play.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-xhdpi/icon_toast_game_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-xhdpi/icon_toast_game_error.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-xhdpi/icon_toast_game_ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-xhdpi/icon_toast_game_ok.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-xhdpi/net_refresh_emotion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-xhdpi/net_refresh_emotion.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-xhdpi/net_refresh_emotion_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-xhdpi/net_refresh_emotion_1.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-xhdpi/qq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-xhdpi/qq.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-xhdpi/qq_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-xhdpi/qq_pressed.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-xhdpi/qqkongjian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-xhdpi/qqkongjian.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-xhdpi/qqkongjian_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-xhdpi/qqkongjian_pressed.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-xhdpi/sina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-xhdpi/sina.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-xhdpi/sina_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-xhdpi/sina_pressed.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-xhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-xhdpi/splash.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-xhdpi/tengxunwb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-xhdpi/tengxunwb.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-xhdpi/tengxunwb_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-xhdpi/tengxunwb_pressed.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-xhdpi/umeng_fb_audio_dialog_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-xhdpi/umeng_fb_audio_dialog_cancel.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-xhdpi/umeng_fb_audio_dialog_content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-xhdpi/umeng_fb_audio_dialog_content.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-xhdpi/umeng_fb_audio_play_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-xhdpi/umeng_fb_audio_play_01.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-xhdpi/umeng_fb_audio_play_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-xhdpi/umeng_fb_audio_play_02.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-xhdpi/umeng_fb_audio_play_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-xhdpi/umeng_fb_audio_play_03.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-xhdpi/umeng_fb_audio_play_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-xhdpi/umeng_fb_audio_play_bg.9.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-xhdpi/umeng_fb_keyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-xhdpi/umeng_fb_keyboard.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-xhdpi/umeng_fb_record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-xhdpi/umeng_fb_record.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-xhdpi/wechat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-xhdpi/wechat.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-xhdpi/wechat_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-xhdpi/wechat_pressed.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-xhdpi/wechatmoment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-xhdpi/wechatmoment.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-xhdpi/wechatmoment_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-xhdpi/wechatmoment_pressed.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-xxhdpi/ic_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-xxhdpi/ic_drawer.png -------------------------------------------------------------------------------- /simplepicture/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /simplepicture/res/drawable/alertdialog_left_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /simplepicture/res/drawable/alertdialog_right_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /simplepicture/res/drawable/alertdialog_single_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /simplepicture/res/drawable/background_tab.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /simplepicture/res/drawable/bg_tab_text.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /simplepicture/res/drawable/btn_bg_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /simplepicture/res/drawable/button_bg_normal.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /simplepicture/res/drawable/button_bg_pressed.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /simplepicture/res/drawable/custom_toast_shape_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /simplepicture/res/drawable/list_item_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /simplepicture/res/drawable/pause_btn_style.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /simplepicture/res/drawable/play_btn_style.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /simplepicture/res/drawable/qq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable/qq.png -------------------------------------------------------------------------------- /simplepicture/res/drawable/qq_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /simplepicture/res/drawable/qzone_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /simplepicture/res/drawable/radius_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /simplepicture/res/drawable/screensize_zoomin_button.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /simplepicture/res/drawable/screensize_zoomout_button.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /simplepicture/res/drawable/selector_toggle_button.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /simplepicture/res/drawable/setting_item_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /simplepicture/res/drawable/setting_item_bottom_bg_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /simplepicture/res/drawable/setting_item_middle_bg_normal.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /simplepicture/res/drawable/setting_item_middle_bg_pressed.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /simplepicture/res/drawable/setting_item_middle_bg_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /simplepicture/res/drawable/setting_item_up_bg_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /simplepicture/res/drawable/sina_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /simplepicture/res/drawable/tb_munion_icon.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /simplepicture/res/drawable/tb_munion_item_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /simplepicture/res/drawable/tencent_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_analytics.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable/umeng_analytics.jpg -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_common_gradient_green.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_common_gradient_orange.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_common_gradient_red.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_fb_action_replay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable/umeng_fb_action_replay.png -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_fb_arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable/umeng_fb_arrow_right.png -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_socialize_action_back_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable/umeng_socialize_action_back_normal.png -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_socialize_action_back_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable/umeng_socialize_action_back_selected.png -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_socialize_at_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable/umeng_socialize_at_normal.png -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_socialize_at_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable/umeng_socialize_at_selected.png -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_socialize_bind_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable/umeng_socialize_bind_bg.9.png -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_socialize_button_blue.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable/umeng_socialize_button_blue.9.png -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_socialize_button_grey.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable/umeng_socialize_button_grey.9.png -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_socialize_button_login_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable/umeng_socialize_button_login_normal.png -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_socialize_button_login_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable/umeng_socialize_button_login_pressed.png -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_socialize_button_red.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable/umeng_socialize_button_red.9.png -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_socialize_button_white.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable/umeng_socialize_button_white.9.png -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_socialize_default_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable/umeng_socialize_default_avatar.png -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_socialize_douban_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable/umeng_socialize_douban_off.png -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_socialize_douban_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable/umeng_socialize_douban_on.png -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_socialize_facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable/umeng_socialize_facebook.png -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_socialize_fetch_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable/umeng_socialize_fetch_image.png -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_socialize_follow_check.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_socialize_follow_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable/umeng_socialize_follow_off.png -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_socialize_follow_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable/umeng_socialize_follow_on.png -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_socialize_google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable/umeng_socialize_google.png -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_socialize_light_bar_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable/umeng_socialize_light_bar_bg.9.png -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_socialize_location_ic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable/umeng_socialize_location_ic.png -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_socialize_location_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable/umeng_socialize_location_off.png -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_socialize_location_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable/umeng_socialize_location_on.png -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_socialize_nav_bar_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable/umeng_socialize_nav_bar_bg.png -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_socialize_oauth_check.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_socialize_oauth_check_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable/umeng_socialize_oauth_check_off.png -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_socialize_oauth_check_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable/umeng_socialize_oauth_check_on.png -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_socialize_qq_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable/umeng_socialize_qq_off.png -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_socialize_qq_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable/umeng_socialize_qq_on.png -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_socialize_qzone_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable/umeng_socialize_qzone_off.png -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_socialize_qzone_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable/umeng_socialize_qzone_on.png -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_socialize_refersh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable/umeng_socialize_refersh.png -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_socialize_renren_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable/umeng_socialize_renren_off.png -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_socialize_renren_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable/umeng_socialize_renren_on.png -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_socialize_search_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable/umeng_socialize_search_icon.png -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_socialize_shape_solid_black.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_socialize_shape_solid_grey.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_socialize_share_to_button.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_socialize_share_transparent_corner.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_socialize_sidebar_normal.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_socialize_sidebar_selected.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_socialize_sidebar_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_socialize_sina_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable/umeng_socialize_sina_off.png -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_socialize_sina_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable/umeng_socialize_sina_on.png -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_socialize_title_back_bt_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable/umeng_socialize_title_back_bt_normal.png -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_socialize_title_back_bt_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable/umeng_socialize_title_back_bt_selected.png -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_socialize_title_right_bt_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable/umeng_socialize_title_right_bt_normal.png -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_socialize_title_right_bt_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable/umeng_socialize_title_right_bt_selected.png -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_socialize_title_tab_left_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable/umeng_socialize_title_tab_left_normal.png -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_socialize_title_tab_left_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable/umeng_socialize_title_tab_left_pressed.png -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_socialize_title_tab_right_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable/umeng_socialize_title_tab_right_normal.png -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_socialize_title_tab_right_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable/umeng_socialize_title_tab_right_pressed.png -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_socialize_twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable/umeng_socialize_twitter.png -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_socialize_tx_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable/umeng_socialize_tx_off.png -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_socialize_tx_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable/umeng_socialize_tx_on.png -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_socialize_wechat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable/umeng_socialize_wechat.png -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_socialize_wechat_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable/umeng_socialize_wechat_gray.png -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_socialize_wxcircle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable/umeng_socialize_wxcircle.png -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_socialize_wxcircle_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable/umeng_socialize_wxcircle_gray.png -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_socialize_x_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable/umeng_socialize_x_button.png -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_tools.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable/umeng_tools.jpg -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_update_button_cancel_bg_focused.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_update_button_cancel_bg_normal.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_update_button_cancel_bg_tap.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_update_button_ok_bg_focused.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_update_button_ok_bg_normal.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_update_button_ok_bg_tap.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_update_dialog_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_update_title_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /simplepicture/res/drawable/umeng_update_wifi_disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panjichang/small_video/cffe38de6db33b765d2b5ac63b1253b2923f4926/simplepicture/res/drawable/umeng_update_wifi_disable.png -------------------------------------------------------------------------------- /simplepicture/res/drawable/wechat_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /simplepicture/res/drawable/wechatmoment_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /simplepicture/res/drawable/while_circle_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /simplepicture/res/layout/comment_footer.xml: -------------------------------------------------------------------------------- 1 | 2 | 11 | -------------------------------------------------------------------------------- /simplepicture/res/layout/umeng_fb_activity_conversation.xml: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /simplepicture/res/layout/umeng_fb_contact_spinner.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /simplepicture/res/layout/umeng_socialize_composer_header.xml: -------------------------------------------------------------------------------- 1 | 2 | 10 | -------------------------------------------------------------------------------- /simplepicture/res/menu/activity_play.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | 12 | 13 | -------------------------------------------------------------------------------- /simplepicture/res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /simplepicture/res/values-sw720dp-land/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 128dp 8 | 9 | 10 | -------------------------------------------------------------------------------- /simplepicture/res/values-v11/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /simplepicture/res/values-v14/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /simplepicture/res/values/tb_munion_strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | #e3e3e3 5 | 正在下载: 6 | 7 | -------------------------------------------------------------------------------- /simplepicture/res/values/umeng_fb_color.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FF0FB0A8 4 | #FFD8D8D8 5 | #DCDCDC 6 | #8A000000 7 | #FFFFFF 8 | #F4F0745F 9 | -------------------------------------------------------------------------------- /simplepicture/res/values/umeng_fb_dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 48dp 3 | 14sp 4 | 12sp 5 | 0.8dp 6 | 12dp 7 | 20sp 8 | 9 | -------------------------------------------------------------------------------- /simplepicture/res/values/umeng_fb_style.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | -------------------------------------------------------------------------------- /simplepicture/src/com/nhaarman/listviewanimations/itemmanipulation/TouchEventHandler.java: -------------------------------------------------------------------------------- 1 | package com.nhaarman.listviewanimations.itemmanipulation; 2 | 3 | import android.view.MotionEvent; 4 | 5 | import com.pan.simplepicture.annotations.NonNull; 6 | 7 | public interface TouchEventHandler { 8 | 9 | boolean onTouchEvent(@NonNull MotionEvent event); 10 | 11 | boolean isInteracting(); 12 | 13 | } 14 | -------------------------------------------------------------------------------- /simplepicture/src/com/pan/simplepicture/been/Category.java: -------------------------------------------------------------------------------- 1 | package com.pan.simplepicture.been; 2 | 3 | import java.io.Serializable; 4 | 5 | public class Category implements Serializable{ 6 | /** 7 | * 8 | */ 9 | private static final long serialVersionUID = 1734593154041509860L; 10 | public String count; 11 | public String id; 12 | public String name; 13 | public String icon; 14 | } 15 | -------------------------------------------------------------------------------- /simplepicture/src/com/pan/simplepicture/been/Comment.java: -------------------------------------------------------------------------------- 1 | package com.pan.simplepicture.been; 2 | 3 | 4 | public class Comment{ 5 | public String commentId; 6 | public String content; 7 | public String flag; 8 | public String published; 9 | public User user; 10 | } 11 | -------------------------------------------------------------------------------- /simplepicture/src/com/pan/simplepicture/been/Material.java: -------------------------------------------------------------------------------- 1 | package com.pan.simplepicture.been; 2 | 3 | public class Material { 4 | public String email; 5 | public String title; 6 | public String des; 7 | } 8 | -------------------------------------------------------------------------------- /simplepicture/src/com/pan/simplepicture/been/Menu.java: -------------------------------------------------------------------------------- 1 | package com.pan.simplepicture.been; 2 | 3 | import java.io.Serializable; 4 | 5 | public class Menu implements Serializable{ 6 | /** 7 | * 8 | */ 9 | private static final long serialVersionUID = 1615706284945560694L; 10 | public String name; 11 | public String icon; 12 | public int id; 13 | } 14 | -------------------------------------------------------------------------------- /simplepicture/src/com/pan/simplepicture/been/Module.java: -------------------------------------------------------------------------------- 1 | package com.pan.simplepicture.been; 2 | 3 | import java.io.Serializable; 4 | 5 | public class Module implements Serializable { 6 | 7 | /** 8 | * 9 | */ 10 | private static final long serialVersionUID = 7906082295649320247L; 11 | 12 | public int modulesId; 13 | public String modulesName; 14 | public int sort; 15 | public String flag; 16 | public String icon; 17 | } 18 | -------------------------------------------------------------------------------- /simplepicture/src/com/pan/simplepicture/wxapi/WXEntryActivity.java: -------------------------------------------------------------------------------- 1 | 2 | package com.pan.simplepicture.wxapi; 3 | 4 | import com.umeng.socialize.weixin.view.WXCallbackActivity; 5 | 6 | public class WXEntryActivity extends WXCallbackActivity { 7 | 8 | } 9 | --------------------------------------------------------------------------------