├── 2015届实习任务说明书V1.3.doc ├── README ├── app ├── app │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── AndroidManifest.xml │ ├── ic_launcher-web.png │ ├── libs │ │ └── android-support-v4.jar │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ ├── ablum_deflaut.png │ │ │ ├── cut_line.png │ │ │ ├── dc.png │ │ │ ├── gly.png │ │ │ ├── handle_next.png │ │ │ ├── handle_pause_normal.png │ │ │ ├── handle_play_normal.png │ │ │ ├── ic_launcher.png │ │ │ ├── list_pause_icon.png │ │ │ ├── list_play_icon.png │ │ │ ├── listlayout_bg.9.png │ │ │ ├── menu.png │ │ │ ├── menu_top.png │ │ │ ├── menuitem_f.png │ │ │ ├── meun_about.png │ │ │ ├── music_bg.jpg │ │ │ ├── playcontrol_bg.png │ │ │ ├── player_next.png │ │ │ ├── player_pause.png │ │ │ ├── player_play.png │ │ │ ├── player_pre.png │ │ │ ├── progress_buffering.png │ │ │ ├── progress_playing.png │ │ │ ├── progresslayout_bg.png │ │ │ ├── repeat.png │ │ │ ├── repeatone.png │ │ │ ├── straight.png │ │ │ ├── thumb_f.png │ │ │ ├── thumb_normal.png │ │ │ ├── toggle.png │ │ │ ├── vertical_line.png │ │ │ ├── wlh.png │ │ │ └── zly.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ │ └── ic_launcher.png │ │ ├── drawable │ │ │ ├── seekbar_style.xml │ │ │ ├── seekbar_thumb.xml │ │ │ ├── selector_list_item.xml │ │ │ ├── selector_music_btn.xml │ │ │ ├── shape_list_item.xml │ │ │ └── shape_music_btn.xml │ │ ├── layout │ │ │ ├── activity_landevice_ctrl.xml │ │ │ ├── activity_main.xml │ │ │ ├── activity_welcome.xml │ │ │ ├── fragment_lan_chat.xml │ │ │ ├── fragment_lan_file_test.xml │ │ │ ├── fragment_lan_music.xml │ │ │ ├── fragment_lan_musiclist_test.xml │ │ │ ├── fragment_lanmsg_test.xml │ │ │ ├── fragment_local_music.xml │ │ │ ├── fragment_scan_landevice.xml │ │ │ ├── fragment_viewpager1.xml │ │ │ ├── listview_item.xml │ │ │ ├── listview_muscilist_item.xml │ │ │ ├── main.xml │ │ │ ├── music_list.xml │ │ │ ├── music_lyrics.xml │ │ │ └── welcome.xml │ │ ├── menu │ │ │ ├── main.xml │ │ │ └── welcome.xml │ │ ├── values-v11 │ │ │ └── styles.xml │ │ ├── values-v14 │ │ │ └── styles.xml │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ └── values │ │ │ ├── color.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ └── src │ │ └── com │ │ └── cvte │ │ └── lanplayer │ │ ├── GlobalData.java │ │ ├── MainActivity.java │ │ ├── MusicFilter.java │ │ ├── WelcomeActivity.java │ │ ├── adapter │ │ ├── ListViewAdapter.java │ │ ├── MusicListAdapter.java │ │ ├── MyListAdapter.java │ │ └── MyViewPagerAdapter.java │ │ ├── constant │ │ ├── AppConstant.java │ │ └── AppFunction.java │ │ ├── data │ │ ├── MusicData.java │ │ └── MusicList.java │ │ ├── entity │ │ └── SocketTranEntity.java │ │ ├── holder │ │ └── ListViewHolder.java │ │ ├── interfaces │ │ └── IOnServiceConnectComplete.java │ │ ├── service │ │ ├── PlayerService.java │ │ └── RecvLanDataService.java │ │ ├── utils │ │ ├── CheckSDCardUtil.java │ │ ├── CheckWIFIConnectUtil.java │ │ ├── MediaPlayerUtil.java │ │ ├── RecvLanScanDeviceUtil.java │ │ ├── RecvSocketFileUtil.java │ │ ├── RecvSocketMessageUtil.java │ │ ├── ScanLanDeviceUtil.java │ │ ├── SendSocketFileUtil.java │ │ ├── SendSocketMessageUtil.java │ │ └── ShowToastMsgUtil.java │ │ └── view │ │ ├── LocalPlayerFragment.java │ │ ├── MyViewGroup.java │ │ ├── OnViewChangeListener.java │ │ ├── ScanLanDeviceFragment.java │ │ ├── device │ │ ├── LanChatFragment.java │ │ ├── LanDeviceControlActivity.java │ │ └── LanMusicFragment.java │ │ └── test │ │ ├── LanTestFileFragment.java │ │ ├── LanTestMsgFragment.java │ │ └── LanTestMusicListFragment.java └── library │ └── appcompat_v7 │ ├── .classpath │ ├── .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 └── demo ├── Socket传输List数据 ├── SocketRecvListDemo │ ├── .classpath │ ├── .project │ ├── AndroidManifest.xml │ ├── ic_launcher-web.png │ ├── libs │ │ └── android-support-v4.jar │ ├── 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 │ │ ├── layout │ │ │ └── activity_main.xml │ │ ├── menu │ │ │ └── main.xml │ │ ├── values-v11 │ │ │ └── styles.xml │ │ ├── values-v14 │ │ │ └── styles.xml │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ └── values │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ └── src │ │ └── com │ │ └── example │ │ └── socketsendlistdemo │ │ ├── MainActivity.java │ │ └── SongList.java └── SocketSendListDemo │ ├── .classpath │ ├── .project │ ├── AndroidManifest.xml │ ├── ic_launcher-web.png │ ├── libs │ └── android-support-v4.jar │ ├── 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 │ ├── layout │ │ └── activity_main.xml │ ├── menu │ │ └── main.xml │ ├── values-v11 │ │ └── styles.xml │ ├── values-v14 │ │ └── styles.xml │ ├── values-w820dp │ │ └── dimens.xml │ └── values │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── src │ └── com │ └── example │ └── socketsendlistdemo │ ├── MainActivity.java │ └── SongList.java ├── 在手机扫描同局域网的其他设备IP地址 └── ScanLanDevice │ ├── .classpath │ ├── .project │ ├── AndroidManifest.xml │ ├── bin │ ├── AndroidManifest.xml │ ├── R.txt │ ├── ScanLanDevice.apk │ ├── classes.dex │ ├── classes │ │ ├── android │ │ │ └── support │ │ │ │ └── v7 │ │ │ │ └── appcompat │ │ │ │ ├── R$anim.class │ │ │ │ ├── R$attr.class │ │ │ │ ├── R$bool.class │ │ │ │ ├── R$color.class │ │ │ │ ├── R$dimen.class │ │ │ │ ├── R$drawable.class │ │ │ │ ├── R$id.class │ │ │ │ ├── R$integer.class │ │ │ │ ├── R$layout.class │ │ │ │ ├── R$string.class │ │ │ │ ├── R$style.class │ │ │ │ ├── R$styleable.class │ │ │ │ └── R.class │ │ └── com │ │ │ └── example │ │ │ └── scanlandevice │ │ │ ├── BuildConfig.class │ │ │ ├── MainActivity$1.class │ │ │ ├── MainActivity$2.class │ │ │ ├── MainActivity$3.class │ │ │ ├── MainActivity$4.class │ │ │ ├── MainActivity.class │ │ │ ├── R$anim.class │ │ │ ├── R$attr.class │ │ │ ├── R$bool.class │ │ │ ├── R$color.class │ │ │ ├── R$dimen.class │ │ │ ├── R$drawable.class │ │ │ ├── R$id.class │ │ │ ├── R$integer.class │ │ │ ├── R$layout.class │ │ │ ├── R$menu.class │ │ │ ├── R$string.class │ │ │ ├── R$style.class │ │ │ ├── R$styleable.class │ │ │ └── R.class │ ├── dexedLibs │ │ ├── android-support-v4-cc0d6567bd0c716b311b0a3616703dcd.jar │ │ ├── android-support-v7-appcompat-a0cbf78850a3bd85503ba8dd57733116.jar │ │ └── appcompat_v7-55017593bb929634de84e9a59478620f.jar │ ├── jarlist.cache │ ├── res │ │ └── crunch │ │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ │ └── drawable-xxhdpi │ │ │ └── ic_launcher.png │ └── resources.ap_ │ ├── gen │ ├── android │ │ └── support │ │ │ └── v7 │ │ │ └── appcompat │ │ │ └── R.java │ └── com │ │ └── example │ │ └── scanlandevice │ │ ├── BuildConfig.java │ │ └── R.java │ ├── ic_launcher-web.png │ ├── libs │ └── android-support-v4.jar │ ├── 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 │ ├── layout │ │ └── activity_main.xml │ ├── menu │ │ └── main.xml │ ├── values-v11 │ │ └── styles.xml │ ├── values-v14 │ │ └── styles.xml │ ├── values-w820dp │ │ └── dimens.xml │ └── values │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── src │ └── com │ └── example │ └── scanlandevice │ └── MainActivity.java ├── 局域网文件传输 └── FileTransmit │ ├── AndroidManifest.xml │ ├── libs │ └── android-support-v4.jar │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ ├── drawable-hdpi │ │ ├── Thumbs.db │ │ ├── file.PNG │ │ ├── folder.PNG │ │ ├── ic_launcher.png │ │ ├── selected.PNG │ │ └── unselected.PNG │ ├── drawable-mdpi │ │ ├── Thumbs.db │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ ├── Thumbs.db │ │ └── ic_launcher.png │ ├── drawable-xxhdpi │ │ ├── Thumbs.db │ │ └── ic_launcher.png │ ├── layout │ │ ├── activity_main.xml │ │ ├── file_view.xml │ │ └── item_view.xml │ ├── menu │ │ └── main.xml │ ├── values-sw600dp │ │ └── dimens.xml │ ├── values-sw720dp-land │ │ └── dimens.xml │ └── values │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── src │ └── com │ └── ssydiai │ └── filetransmit │ ├── FilesViewActivity.java │ ├── MainActivity.java │ └── SocketManager.java ├── 手机与PC的TCP通信 ├── SimpleClient │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── AndroidManifest.xml │ ├── bin │ │ ├── AndroidManifest.xml │ │ ├── SimpleClient.apk │ │ ├── classes.dex │ │ ├── classes │ │ │ └── org │ │ │ │ └── crazyit │ │ │ │ └── net │ │ │ │ ├── BuildConfig.class │ │ │ │ ├── R$attr.class │ │ │ │ ├── R$drawable.class │ │ │ │ ├── R$id.class │ │ │ │ ├── R$layout.class │ │ │ │ ├── R$string.class │ │ │ │ ├── R.class │ │ │ │ └── SimpleClient.class │ │ ├── res │ │ │ └── crunch │ │ │ │ ├── drawable-hdpi │ │ │ │ └── icon.png │ │ │ │ ├── drawable-ldpi │ │ │ │ └── icon.png │ │ │ │ └── drawable-mdpi │ │ │ │ └── icon.png │ │ └── resources.ap_ │ ├── gen │ │ └── org │ │ │ └── crazyit │ │ │ └── net │ │ │ ├── BuildConfig.java │ │ │ └── R.java │ ├── proguard.cfg │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ ├── drawable-ldpi │ │ │ └── icon.png │ │ ├── drawable-mdpi │ │ │ └── icon.png │ │ ├── layout │ │ │ └── main.xml │ │ └── values │ │ │ └── strings.xml │ └── src │ │ └── org │ │ └── crazyit │ │ └── net │ │ └── SimpleClient.java └── SimpleServer │ ├── .classpath │ ├── .project │ ├── .settings │ └── org.eclipse.jdt.core.prefs │ ├── bin │ └── SimpleServer.class │ └── src │ └── SimpleServer.java ├── 手机与手机之间的文件传输 └── LANFileSendOrRev │ ├── .classpath │ ├── .project │ ├── AndroidManifest.xml │ ├── assets │ └── yuenanyueai.mp3 │ ├── bin │ ├── AndroidManifest.xml │ ├── LANFileSendOrRev.apk │ ├── R.txt │ ├── classes.dex │ ├── classes │ │ ├── android │ │ │ └── support │ │ │ │ └── v7 │ │ │ │ └── appcompat │ │ │ │ ├── R$anim.class │ │ │ │ ├── R$attr.class │ │ │ │ ├── R$bool.class │ │ │ │ ├── R$color.class │ │ │ │ ├── R$dimen.class │ │ │ │ ├── R$drawable.class │ │ │ │ ├── R$id.class │ │ │ │ ├── R$integer.class │ │ │ │ ├── R$layout.class │ │ │ │ ├── R$string.class │ │ │ │ ├── R$style.class │ │ │ │ ├── R$styleable.class │ │ │ │ └── R.class │ │ └── com │ │ │ └── yin │ │ │ └── lanfilesendorrev │ │ │ ├── BuildConfig.class │ │ │ ├── MainActivity$1.class │ │ │ ├── MainActivity$2.class │ │ │ ├── MainActivity.class │ │ │ ├── R$anim.class │ │ │ ├── R$attr.class │ │ │ ├── R$bool.class │ │ │ ├── R$color.class │ │ │ ├── R$dimen.class │ │ │ ├── R$drawable.class │ │ │ ├── R$id.class │ │ │ ├── R$integer.class │ │ │ ├── R$layout.class │ │ │ ├── R$menu.class │ │ │ ├── R$string.class │ │ │ ├── R$style.class │ │ │ ├── R$styleable.class │ │ │ └── R.class │ ├── dexedLibs │ │ ├── android-support-v4-b54d2b58ac847342ffc2ebd7167b2d94.jar │ │ ├── android-support-v7-appcompat-a0cbf78850a3bd85503ba8dd57733116.jar │ │ └── appcompat_v7-55017593bb929634de84e9a59478620f.jar │ ├── jarlist.cache │ ├── res │ │ └── crunch │ │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ │ └── drawable-xxhdpi │ │ │ └── ic_launcher.png │ └── resources.ap_ │ ├── gen │ ├── android │ │ └── support │ │ │ └── v7 │ │ │ └── appcompat │ │ │ └── R.java │ └── com │ │ └── yin │ │ └── lanfilesendorrev │ │ ├── BuildConfig.java │ │ └── R.java │ ├── ic_launcher-web.png │ ├── libs │ └── android-support-v4.jar │ ├── 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 │ ├── layout │ │ └── activity_main.xml │ ├── menu │ │ └── main.xml │ ├── values-v11 │ │ └── styles.xml │ ├── values-v14 │ │ └── styles.xml │ ├── values-w820dp │ │ └── dimens.xml │ └── values │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── src │ └── com │ └── yin │ └── lanfilesendorrev │ └── MainActivity.java ├── 手机与手机的TCP通信 ├── README.txt ├── SimpleClient │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── AndroidManifest.xml │ ├── bin │ │ ├── AndroidManifest.xml │ │ └── classes │ │ │ ├── .gitignore │ │ │ └── org │ │ │ └── crazyit │ │ │ └── net │ │ │ ├── BuildConfig.class │ │ │ ├── R$attr.class │ │ │ ├── R$drawable.class │ │ │ ├── R$id.class │ │ │ ├── R$layout.class │ │ │ ├── R$string.class │ │ │ ├── R.class │ │ │ └── SimpleClient.class │ ├── gen │ │ └── org │ │ │ └── crazyit │ │ │ └── net │ │ │ ├── BuildConfig.java │ │ │ └── R.java │ ├── proguard.cfg │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ ├── drawable-ldpi │ │ │ └── icon.png │ │ ├── drawable-mdpi │ │ │ └── icon.png │ │ ├── layout │ │ │ └── main.xml │ │ └── values │ │ │ └── strings.xml │ └── src │ │ └── org │ │ └── crazyit │ │ └── net │ │ └── SimpleClient.java └── androidServer │ ├── .classpath │ ├── .project │ ├── AndroidManifest.xml │ ├── bin │ ├── AndroidManifest.xml │ ├── classes │ │ ├── .gitignore │ │ └── com │ │ │ └── example │ │ │ └── androidserver │ │ │ ├── BuildConfig.class │ │ │ └── MainActivity.class │ └── jarlist.cache │ ├── gen │ └── com │ │ └── example │ │ └── androidserver │ │ └── BuildConfig.java │ ├── ic_launcher-web.png │ ├── libs │ └── android-support-v4.jar │ ├── 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 │ ├── layout │ │ └── activity_main.xml │ ├── menu │ │ └── main.xml │ ├── values-v11 │ │ └── styles.xml │ ├── values-v14 │ │ └── styles.xml │ ├── values-w820dp │ │ └── dimens.xml │ └── values │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── src │ └── com │ └── example │ └── androidserver │ └── MainActivity.java ├── 扫描手机SD卡文件 ├── README └── ScanFile │ ├── .classpath │ ├── .project │ ├── AndroidManifest.xml │ ├── bin │ ├── AndroidManifest.xml │ ├── R.txt │ ├── ScanFile.apk │ ├── classes.dex │ ├── classes │ │ ├── android │ │ │ └── support │ │ │ │ └── v7 │ │ │ │ └── appcompat │ │ │ │ ├── R$anim.class │ │ │ │ ├── R$attr.class │ │ │ │ ├── R$bool.class │ │ │ │ ├── R$color.class │ │ │ │ ├── R$dimen.class │ │ │ │ ├── R$drawable.class │ │ │ │ ├── R$id.class │ │ │ │ ├── R$integer.class │ │ │ │ ├── R$layout.class │ │ │ │ ├── R$string.class │ │ │ │ ├── R$style.class │ │ │ │ ├── R$styleable.class │ │ │ │ └── R.class │ │ └── com │ │ │ └── example │ │ │ └── scanfile │ │ │ ├── BuildConfig.class │ │ │ ├── MainActivity$1.class │ │ │ ├── MainActivity.class │ │ │ ├── R$anim.class │ │ │ ├── R$attr.class │ │ │ ├── R$bool.class │ │ │ ├── R$color.class │ │ │ ├── R$dimen.class │ │ │ ├── R$drawable.class │ │ │ ├── R$id.class │ │ │ ├── R$integer.class │ │ │ ├── R$layout.class │ │ │ ├── R$menu.class │ │ │ ├── R$string.class │ │ │ ├── R$style.class │ │ │ ├── R$styleable.class │ │ │ └── R.class │ ├── dexedLibs │ │ ├── android-support-v4-43034a2ad0ba5c9b91469c71a4ef0a4e.jar │ │ ├── android-support-v7-appcompat-a0cbf78850a3bd85503ba8dd57733116.jar │ │ └── appcompat_v7-55017593bb929634de84e9a59478620f.jar │ ├── jarlist.cache │ ├── res │ │ └── crunch │ │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ │ └── drawable-xxhdpi │ │ │ └── ic_launcher.png │ └── resources.ap_ │ ├── gen │ ├── android │ │ └── support │ │ │ └── v7 │ │ │ └── appcompat │ │ │ └── R.java │ └── com │ │ └── example │ │ └── scanfile │ │ ├── BuildConfig.java │ │ └── R.java │ ├── ic_launcher-web.png │ ├── libs │ └── android-support-v4.jar │ ├── 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 │ ├── layout │ │ ├── activity_main.xml │ │ └── musicitme.xml │ ├── menu │ │ └── main.xml │ ├── values-v11 │ │ └── styles.xml │ ├── values-v14 │ │ └── styles.xml │ ├── values-w820dp │ │ └── dimens.xml │ └── values │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── src │ └── com │ └── example │ └── scanfile │ └── MainActivity.java ├── 简易音乐播放器 └── musicPlayer │ └── musicPlayer │ ├── .classpath │ ├── .project │ ├── .settings │ └── org.eclipse.jdt.core.prefs │ ├── AndroidManifest.xml │ ├── bin │ ├── AndroidManifest.xml │ ├── classes.dex │ ├── classes │ │ └── com │ │ │ └── terry │ │ │ ├── BuildConfig.class │ │ │ ├── MusicFilter.class │ │ │ ├── R$attr.class │ │ │ ├── R$drawable.class │ │ │ ├── R$id.class │ │ │ ├── R$layout.class │ │ │ ├── R$string.class │ │ │ ├── R.class │ │ │ ├── musicActivity$1.class │ │ │ ├── musicActivity$2.class │ │ │ ├── musicActivity$3.class │ │ │ ├── musicActivity$4.class │ │ │ ├── musicActivity$5.class │ │ │ ├── musicActivity$6.class │ │ │ ├── musicActivity.class │ │ │ └── viewHolder.class │ ├── musicPlayer.apk │ ├── res │ │ └── crunch │ │ │ ├── drawable-hdpi │ │ │ ├── icon.png │ │ │ ├── last.png │ │ │ ├── next.png │ │ │ ├── pause.png │ │ │ ├── start.png │ │ │ └── stop.png │ │ │ ├── drawable-ldpi │ │ │ └── icon.png │ │ │ └── drawable-mdpi │ │ │ └── icon.png │ └── resources.ap_ │ ├── gen │ └── com │ │ └── terry │ │ ├── BuildConfig.java │ │ └── R.java │ ├── project.properties │ ├── res │ ├── drawable-hdpi │ │ ├── icon.png │ │ ├── last.png │ │ ├── next.png │ │ ├── pause.png │ │ ├── start.png │ │ └── stop.png │ ├── drawable-ldpi │ │ └── icon.png │ ├── drawable-mdpi │ │ └── icon.png │ ├── layout │ │ ├── main.xml │ │ └── musicitme.xml │ └── values │ │ └── strings.xml │ └── src │ └── com │ └── terry │ ├── MusicFilter.java │ ├── musicActivity.java │ └── viewHolder.java └── 采用UDP广播扫描Demo(采用Service) ├── SendUDPBroadcastTest ├── .classpath ├── .project ├── .settings │ └── org.eclipse.core.resources.prefs ├── AndroidManifest.xml ├── ic_launcher-web.png ├── libs │ └── android-support-v4.jar ├── proguard-project.txt ├── project.properties ├── res │ ├── drawable-hdpi │ │ ├── ic_action_search.png │ │ └── ic_launcher.png │ ├── drawable-ldpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ ├── ic_action_search.png │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ ├── ic_action_search.png │ │ └── ic_launcher.png │ ├── layout │ │ └── activity_main.xml │ ├── menu │ │ └── activity_main.xml │ ├── values-large │ │ └── dimens.xml │ └── values │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml └── src │ └── com │ └── example │ └── sendudpbroadcasttest │ ├── MainActivity.java │ └── SendLanDataService.java └── ServerUDPTest ├── .classpath ├── .project ├── AndroidManifest.xml ├── ic_launcher-web.png ├── libs └── android-support-v4.jar ├── 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 ├── layout │ └── activity_main.xml ├── values-sw600dp │ └── dimens.xml ├── values-v11 │ └── styles.xml ├── values-v14 │ └── styles.xml └── values │ ├── dimens.xml │ ├── strings.xml │ ├── styles.xml │ └── values-sw720dp-land │ └── dimens.xml └── src └── com └── example └── serverudp ├── MainActivity.java └── RecvLanDataService.java /2015届实习任务说明书V1.3.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/2015届实习任务说明书V1.3.doc -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/README -------------------------------------------------------------------------------- /app/app/.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 | -------------------------------------------------------------------------------- /app/app/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/app/ic_launcher-web.png -------------------------------------------------------------------------------- /app/app/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/app/libs/android-support-v4.jar -------------------------------------------------------------------------------- /app/app/res/drawable-hdpi/ablum_deflaut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/app/res/drawable-hdpi/ablum_deflaut.png -------------------------------------------------------------------------------- /app/app/res/drawable-hdpi/cut_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/app/res/drawable-hdpi/cut_line.png -------------------------------------------------------------------------------- /app/app/res/drawable-hdpi/dc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/app/res/drawable-hdpi/dc.png -------------------------------------------------------------------------------- /app/app/res/drawable-hdpi/gly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/app/res/drawable-hdpi/gly.png -------------------------------------------------------------------------------- /app/app/res/drawable-hdpi/handle_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/app/res/drawable-hdpi/handle_next.png -------------------------------------------------------------------------------- /app/app/res/drawable-hdpi/handle_pause_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/app/res/drawable-hdpi/handle_pause_normal.png -------------------------------------------------------------------------------- /app/app/res/drawable-hdpi/handle_play_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/app/res/drawable-hdpi/handle_play_normal.png -------------------------------------------------------------------------------- /app/app/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/app/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/app/res/drawable-hdpi/list_pause_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/app/res/drawable-hdpi/list_pause_icon.png -------------------------------------------------------------------------------- /app/app/res/drawable-hdpi/list_play_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/app/res/drawable-hdpi/list_play_icon.png -------------------------------------------------------------------------------- /app/app/res/drawable-hdpi/listlayout_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/app/res/drawable-hdpi/listlayout_bg.9.png -------------------------------------------------------------------------------- /app/app/res/drawable-hdpi/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/app/res/drawable-hdpi/menu.png -------------------------------------------------------------------------------- /app/app/res/drawable-hdpi/menu_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/app/res/drawable-hdpi/menu_top.png -------------------------------------------------------------------------------- /app/app/res/drawable-hdpi/menuitem_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/app/res/drawable-hdpi/menuitem_f.png -------------------------------------------------------------------------------- /app/app/res/drawable-hdpi/meun_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/app/res/drawable-hdpi/meun_about.png -------------------------------------------------------------------------------- /app/app/res/drawable-hdpi/music_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/app/res/drawable-hdpi/music_bg.jpg -------------------------------------------------------------------------------- /app/app/res/drawable-hdpi/playcontrol_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/app/res/drawable-hdpi/playcontrol_bg.png -------------------------------------------------------------------------------- /app/app/res/drawable-hdpi/player_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/app/res/drawable-hdpi/player_next.png -------------------------------------------------------------------------------- /app/app/res/drawable-hdpi/player_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/app/res/drawable-hdpi/player_pause.png -------------------------------------------------------------------------------- /app/app/res/drawable-hdpi/player_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/app/res/drawable-hdpi/player_play.png -------------------------------------------------------------------------------- /app/app/res/drawable-hdpi/player_pre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/app/res/drawable-hdpi/player_pre.png -------------------------------------------------------------------------------- /app/app/res/drawable-hdpi/progress_buffering.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/app/res/drawable-hdpi/progress_buffering.png -------------------------------------------------------------------------------- /app/app/res/drawable-hdpi/progress_playing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/app/res/drawable-hdpi/progress_playing.png -------------------------------------------------------------------------------- /app/app/res/drawable-hdpi/progresslayout_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/app/res/drawable-hdpi/progresslayout_bg.png -------------------------------------------------------------------------------- /app/app/res/drawable-hdpi/repeat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/app/res/drawable-hdpi/repeat.png -------------------------------------------------------------------------------- /app/app/res/drawable-hdpi/repeatone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/app/res/drawable-hdpi/repeatone.png -------------------------------------------------------------------------------- /app/app/res/drawable-hdpi/straight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/app/res/drawable-hdpi/straight.png -------------------------------------------------------------------------------- /app/app/res/drawable-hdpi/thumb_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/app/res/drawable-hdpi/thumb_f.png -------------------------------------------------------------------------------- /app/app/res/drawable-hdpi/thumb_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/app/res/drawable-hdpi/thumb_normal.png -------------------------------------------------------------------------------- /app/app/res/drawable-hdpi/toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/app/res/drawable-hdpi/toggle.png -------------------------------------------------------------------------------- /app/app/res/drawable-hdpi/vertical_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/app/res/drawable-hdpi/vertical_line.png -------------------------------------------------------------------------------- /app/app/res/drawable-hdpi/wlh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/app/res/drawable-hdpi/wlh.png -------------------------------------------------------------------------------- /app/app/res/drawable-hdpi/zly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/app/res/drawable-hdpi/zly.png -------------------------------------------------------------------------------- /app/app/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/app/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/app/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/app/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/app/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/app/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/app/res/drawable/selector_list_item.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | -------------------------------------------------------------------------------- /app/app/res/menu/welcome.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | -------------------------------------------------------------------------------- /app/app/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16dp 5 | 16dp 6 | 7 | 8 | -------------------------------------------------------------------------------- /app/app/src/com/cvte/lanplayer/GlobalData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/app/src/com/cvte/lanplayer/GlobalData.java -------------------------------------------------------------------------------- /app/app/src/com/cvte/lanplayer/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/app/src/com/cvte/lanplayer/MainActivity.java -------------------------------------------------------------------------------- /app/app/src/com/cvte/lanplayer/WelcomeActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/app/src/com/cvte/lanplayer/WelcomeActivity.java -------------------------------------------------------------------------------- /app/app/src/com/cvte/lanplayer/adapter/ListViewAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/app/src/com/cvte/lanplayer/adapter/ListViewAdapter.java -------------------------------------------------------------------------------- /app/app/src/com/cvte/lanplayer/adapter/MusicListAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/app/src/com/cvte/lanplayer/adapter/MusicListAdapter.java -------------------------------------------------------------------------------- /app/app/src/com/cvte/lanplayer/adapter/MyListAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/app/src/com/cvte/lanplayer/adapter/MyListAdapter.java -------------------------------------------------------------------------------- /app/app/src/com/cvte/lanplayer/constant/AppConstant.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/app/src/com/cvte/lanplayer/constant/AppConstant.java -------------------------------------------------------------------------------- /app/app/src/com/cvte/lanplayer/constant/AppFunction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/app/src/com/cvte/lanplayer/constant/AppFunction.java -------------------------------------------------------------------------------- /app/app/src/com/cvte/lanplayer/data/MusicData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/app/src/com/cvte/lanplayer/data/MusicData.java -------------------------------------------------------------------------------- /app/app/src/com/cvte/lanplayer/data/MusicList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/app/src/com/cvte/lanplayer/data/MusicList.java -------------------------------------------------------------------------------- /app/app/src/com/cvte/lanplayer/entity/SocketTranEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/app/src/com/cvte/lanplayer/entity/SocketTranEntity.java -------------------------------------------------------------------------------- /app/app/src/com/cvte/lanplayer/holder/ListViewHolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/app/src/com/cvte/lanplayer/holder/ListViewHolder.java -------------------------------------------------------------------------------- /app/app/src/com/cvte/lanplayer/interfaces/IOnServiceConnectComplete.java: -------------------------------------------------------------------------------- 1 | package com.cvte.lanplayer.interfaces; 2 | 3 | public interface IOnServiceConnectComplete { 4 | 5 | public void OnServiceConnectComplete(); 6 | } 7 | -------------------------------------------------------------------------------- /app/app/src/com/cvte/lanplayer/service/PlayerService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/app/src/com/cvte/lanplayer/service/PlayerService.java -------------------------------------------------------------------------------- /app/app/src/com/cvte/lanplayer/service/RecvLanDataService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/app/src/com/cvte/lanplayer/service/RecvLanDataService.java -------------------------------------------------------------------------------- /app/app/src/com/cvte/lanplayer/utils/CheckSDCardUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/app/src/com/cvte/lanplayer/utils/CheckSDCardUtil.java -------------------------------------------------------------------------------- /app/app/src/com/cvte/lanplayer/utils/CheckWIFIConnectUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/app/src/com/cvte/lanplayer/utils/CheckWIFIConnectUtil.java -------------------------------------------------------------------------------- /app/app/src/com/cvte/lanplayer/utils/MediaPlayerUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/app/src/com/cvte/lanplayer/utils/MediaPlayerUtil.java -------------------------------------------------------------------------------- /app/app/src/com/cvte/lanplayer/utils/RecvLanScanDeviceUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/app/src/com/cvte/lanplayer/utils/RecvLanScanDeviceUtil.java -------------------------------------------------------------------------------- /app/app/src/com/cvte/lanplayer/utils/RecvSocketFileUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/app/src/com/cvte/lanplayer/utils/RecvSocketFileUtil.java -------------------------------------------------------------------------------- /app/app/src/com/cvte/lanplayer/utils/RecvSocketMessageUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/app/src/com/cvte/lanplayer/utils/RecvSocketMessageUtil.java -------------------------------------------------------------------------------- /app/app/src/com/cvte/lanplayer/utils/ScanLanDeviceUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/app/src/com/cvte/lanplayer/utils/ScanLanDeviceUtil.java -------------------------------------------------------------------------------- /app/app/src/com/cvte/lanplayer/utils/SendSocketFileUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/app/src/com/cvte/lanplayer/utils/SendSocketFileUtil.java -------------------------------------------------------------------------------- /app/app/src/com/cvte/lanplayer/utils/SendSocketMessageUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/app/src/com/cvte/lanplayer/utils/SendSocketMessageUtil.java -------------------------------------------------------------------------------- /app/app/src/com/cvte/lanplayer/utils/ShowToastMsgUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/app/src/com/cvte/lanplayer/utils/ShowToastMsgUtil.java -------------------------------------------------------------------------------- /app/app/src/com/cvte/lanplayer/view/LocalPlayerFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/app/src/com/cvte/lanplayer/view/LocalPlayerFragment.java -------------------------------------------------------------------------------- /app/app/src/com/cvte/lanplayer/view/OnViewChangeListener.java: -------------------------------------------------------------------------------- 1 | package com.cvte.lanplayer.view; 2 | 3 | public interface OnViewChangeListener { 4 | public void OnViewChange(int view); 5 | } 6 | -------------------------------------------------------------------------------- /app/app/src/com/cvte/lanplayer/view/ScanLanDeviceFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/app/src/com/cvte/lanplayer/view/ScanLanDeviceFragment.java -------------------------------------------------------------------------------- /app/app/src/com/cvte/lanplayer/view/device/LanChatFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/app/src/com/cvte/lanplayer/view/device/LanChatFragment.java -------------------------------------------------------------------------------- /app/app/src/com/cvte/lanplayer/view/device/LanDeviceControlActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/app/src/com/cvte/lanplayer/view/device/LanDeviceControlActivity.java -------------------------------------------------------------------------------- /app/app/src/com/cvte/lanplayer/view/device/LanMusicFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/app/src/com/cvte/lanplayer/view/device/LanMusicFragment.java -------------------------------------------------------------------------------- /app/app/src/com/cvte/lanplayer/view/test/LanTestFileFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/app/src/com/cvte/lanplayer/view/test/LanTestFileFragment.java -------------------------------------------------------------------------------- /app/app/src/com/cvte/lanplayer/view/test/LanTestMsgFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/app/src/com/cvte/lanplayer/view/test/LanTestMsgFragment.java -------------------------------------------------------------------------------- /app/app/src/com/cvte/lanplayer/view/test/LanTestMusicListFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/app/src/com/cvte/lanplayer/view/test/LanTestMusicListFragment.java -------------------------------------------------------------------------------- /app/library/appcompat_v7/.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 | -------------------------------------------------------------------------------- /app/library/appcompat_v7/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/libs/android-support-v4.jar -------------------------------------------------------------------------------- /app/library/appcompat_v7/libs/android-support-v7-appcompat.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/libs/android-support-v7-appcompat.jar -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-hdpi/abc_ab_bottom_solid_dark_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-hdpi/abc_ab_bottom_solid_dark_holo.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-hdpi/abc_ab_bottom_solid_light_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-hdpi/abc_ab_bottom_solid_light_holo.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-hdpi/abc_ab_bottom_transparent_dark_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-hdpi/abc_ab_bottom_transparent_dark_holo.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-hdpi/abc_ab_bottom_transparent_light_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-hdpi/abc_ab_bottom_transparent_light_holo.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-hdpi/abc_ab_share_pack_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-hdpi/abc_ab_share_pack_holo_dark.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-hdpi/abc_ab_share_pack_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-hdpi/abc_ab_share_pack_holo_light.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-hdpi/abc_ab_solid_dark_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-hdpi/abc_ab_solid_dark_holo.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-hdpi/abc_ab_solid_light_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-hdpi/abc_ab_solid_light_holo.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-hdpi/abc_ab_stacked_solid_dark_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-hdpi/abc_ab_stacked_solid_dark_holo.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-hdpi/abc_ab_stacked_solid_light_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-hdpi/abc_ab_stacked_solid_light_holo.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-hdpi/abc_ab_stacked_transparent_dark_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-hdpi/abc_ab_stacked_transparent_dark_holo.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-hdpi/abc_ab_stacked_transparent_light_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-hdpi/abc_ab_stacked_transparent_light_holo.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-hdpi/abc_ab_transparent_dark_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-hdpi/abc_ab_transparent_dark_holo.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-hdpi/abc_ab_transparent_light_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-hdpi/abc_ab_transparent_light_holo.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-hdpi/abc_cab_background_bottom_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-hdpi/abc_cab_background_bottom_holo_dark.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-hdpi/abc_cab_background_bottom_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-hdpi/abc_cab_background_bottom_holo_light.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-hdpi/abc_cab_background_top_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-hdpi/abc_cab_background_top_holo_dark.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-hdpi/abc_cab_background_top_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-hdpi/abc_cab_background_top_holo_light.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-hdpi/abc_ic_ab_back_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-hdpi/abc_ic_ab_back_holo_dark.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-hdpi/abc_ic_ab_back_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-hdpi/abc_ic_ab_back_holo_light.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-hdpi/abc_ic_cab_done_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-hdpi/abc_ic_cab_done_holo_dark.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-hdpi/abc_ic_cab_done_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-hdpi/abc_ic_cab_done_holo_light.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-hdpi/abc_ic_clear_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-hdpi/abc_ic_clear_disabled.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-hdpi/abc_ic_clear_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-hdpi/abc_ic_clear_normal.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-hdpi/abc_ic_clear_search_api_disabled_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-hdpi/abc_ic_clear_search_api_disabled_holo_light.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-hdpi/abc_ic_clear_search_api_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-hdpi/abc_ic_clear_search_api_holo_light.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-hdpi/abc_ic_commit_search_api_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-hdpi/abc_ic_commit_search_api_holo_dark.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-hdpi/abc_ic_commit_search_api_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-hdpi/abc_ic_commit_search_api_holo_light.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-hdpi/abc_ic_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-hdpi/abc_ic_go.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-hdpi/abc_ic_go_search_api_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-hdpi/abc_ic_go_search_api_holo_light.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-hdpi/abc_ic_menu_moreoverflow_normal_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-hdpi/abc_ic_menu_moreoverflow_normal_holo_dark.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-hdpi/abc_ic_menu_moreoverflow_normal_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-hdpi/abc_ic_menu_moreoverflow_normal_holo_light.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-hdpi/abc_ic_menu_share_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-hdpi/abc_ic_menu_share_holo_dark.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-hdpi/abc_ic_menu_share_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-hdpi/abc_ic_menu_share_holo_light.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-hdpi/abc_ic_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-hdpi/abc_ic_search.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-hdpi/abc_ic_search_api_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-hdpi/abc_ic_search_api_holo_light.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-hdpi/abc_ic_voice_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-hdpi/abc_ic_voice_search.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-hdpi/abc_ic_voice_search_api_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-hdpi/abc_ic_voice_search_api_holo_light.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-hdpi/abc_list_divider_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-hdpi/abc_list_divider_holo_dark.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-hdpi/abc_list_divider_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-hdpi/abc_list_divider_holo_light.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-hdpi/abc_list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-hdpi/abc_list_focused_holo.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-hdpi/abc_list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-hdpi/abc_list_longpressed_holo.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-hdpi/abc_list_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-hdpi/abc_list_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-hdpi/abc_list_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-hdpi/abc_list_pressed_holo_light.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-hdpi/abc_list_selector_disabled_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-hdpi/abc_list_selector_disabled_holo_dark.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-hdpi/abc_list_selector_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-hdpi/abc_list_selector_disabled_holo_light.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-hdpi/abc_menu_dropdown_panel_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-hdpi/abc_menu_dropdown_panel_holo_dark.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-hdpi/abc_menu_dropdown_panel_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-hdpi/abc_menu_dropdown_panel_holo_light.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-hdpi/abc_menu_hardkey_panel_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-hdpi/abc_menu_hardkey_panel_holo_dark.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-hdpi/abc_menu_hardkey_panel_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-hdpi/abc_menu_hardkey_panel_holo_light.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-hdpi/abc_spinner_ab_default_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-hdpi/abc_spinner_ab_default_holo_dark.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-hdpi/abc_spinner_ab_default_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-hdpi/abc_spinner_ab_default_holo_light.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-hdpi/abc_spinner_ab_disabled_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-hdpi/abc_spinner_ab_disabled_holo_dark.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-hdpi/abc_spinner_ab_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-hdpi/abc_spinner_ab_disabled_holo_light.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-hdpi/abc_spinner_ab_focused_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-hdpi/abc_spinner_ab_focused_holo_dark.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-hdpi/abc_spinner_ab_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-hdpi/abc_spinner_ab_focused_holo_light.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-hdpi/abc_spinner_ab_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-hdpi/abc_spinner_ab_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-hdpi/abc_spinner_ab_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-hdpi/abc_spinner_ab_pressed_holo_light.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-hdpi/abc_tab_selected_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-hdpi/abc_tab_selected_focused_holo.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-hdpi/abc_tab_selected_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-hdpi/abc_tab_selected_holo.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-hdpi/abc_tab_selected_pressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-hdpi/abc_tab_selected_pressed_holo.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-hdpi/abc_tab_unselected_pressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-hdpi/abc_tab_unselected_pressed_holo.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-hdpi/abc_textfield_search_default_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-hdpi/abc_textfield_search_default_holo_dark.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-hdpi/abc_textfield_search_default_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-hdpi/abc_textfield_search_default_holo_light.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-hdpi/abc_textfield_search_right_default_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-hdpi/abc_textfield_search_right_default_holo_dark.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-hdpi/abc_textfield_search_right_default_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-hdpi/abc_textfield_search_right_default_holo_light.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-hdpi/abc_textfield_search_right_selected_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-hdpi/abc_textfield_search_right_selected_holo_dark.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-hdpi/abc_textfield_search_right_selected_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-hdpi/abc_textfield_search_right_selected_holo_light.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-hdpi/abc_textfield_search_selected_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-hdpi/abc_textfield_search_selected_holo_dark.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-hdpi/abc_textfield_search_selected_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-hdpi/abc_textfield_search_selected_holo_light.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-mdpi/abc_ab_bottom_solid_dark_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-mdpi/abc_ab_bottom_solid_dark_holo.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-mdpi/abc_ab_bottom_solid_light_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-mdpi/abc_ab_bottom_solid_light_holo.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-mdpi/abc_ab_bottom_transparent_dark_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-mdpi/abc_ab_bottom_transparent_dark_holo.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-mdpi/abc_ab_bottom_transparent_light_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-mdpi/abc_ab_bottom_transparent_light_holo.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-mdpi/abc_ab_share_pack_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-mdpi/abc_ab_share_pack_holo_dark.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-mdpi/abc_ab_share_pack_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-mdpi/abc_ab_share_pack_holo_light.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-mdpi/abc_ab_solid_dark_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-mdpi/abc_ab_solid_dark_holo.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-mdpi/abc_ab_solid_light_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-mdpi/abc_ab_solid_light_holo.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-mdpi/abc_ab_stacked_solid_dark_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-mdpi/abc_ab_stacked_solid_dark_holo.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-mdpi/abc_ab_stacked_solid_light_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-mdpi/abc_ab_stacked_solid_light_holo.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-mdpi/abc_ab_stacked_transparent_dark_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-mdpi/abc_ab_stacked_transparent_dark_holo.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-mdpi/abc_ab_stacked_transparent_light_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-mdpi/abc_ab_stacked_transparent_light_holo.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-mdpi/abc_ab_transparent_dark_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-mdpi/abc_ab_transparent_dark_holo.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-mdpi/abc_ab_transparent_light_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-mdpi/abc_ab_transparent_light_holo.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-mdpi/abc_cab_background_bottom_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-mdpi/abc_cab_background_bottom_holo_dark.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-mdpi/abc_cab_background_bottom_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-mdpi/abc_cab_background_bottom_holo_light.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-mdpi/abc_cab_background_top_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-mdpi/abc_cab_background_top_holo_dark.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-mdpi/abc_cab_background_top_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-mdpi/abc_cab_background_top_holo_light.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-mdpi/abc_ic_ab_back_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-mdpi/abc_ic_ab_back_holo_dark.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-mdpi/abc_ic_ab_back_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-mdpi/abc_ic_ab_back_holo_light.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-mdpi/abc_ic_cab_done_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-mdpi/abc_ic_cab_done_holo_dark.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-mdpi/abc_ic_cab_done_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-mdpi/abc_ic_cab_done_holo_light.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-mdpi/abc_ic_clear_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-mdpi/abc_ic_clear_disabled.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-mdpi/abc_ic_clear_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-mdpi/abc_ic_clear_normal.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-mdpi/abc_ic_clear_search_api_disabled_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-mdpi/abc_ic_clear_search_api_disabled_holo_light.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-mdpi/abc_ic_clear_search_api_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-mdpi/abc_ic_clear_search_api_holo_light.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-mdpi/abc_ic_commit_search_api_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-mdpi/abc_ic_commit_search_api_holo_dark.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-mdpi/abc_ic_commit_search_api_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-mdpi/abc_ic_commit_search_api_holo_light.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-mdpi/abc_ic_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-mdpi/abc_ic_go.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-mdpi/abc_ic_go_search_api_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-mdpi/abc_ic_go_search_api_holo_light.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-mdpi/abc_ic_menu_moreoverflow_normal_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-mdpi/abc_ic_menu_moreoverflow_normal_holo_dark.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-mdpi/abc_ic_menu_moreoverflow_normal_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-mdpi/abc_ic_menu_moreoverflow_normal_holo_light.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-mdpi/abc_ic_menu_share_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-mdpi/abc_ic_menu_share_holo_dark.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-mdpi/abc_ic_menu_share_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-mdpi/abc_ic_menu_share_holo_light.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-mdpi/abc_ic_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-mdpi/abc_ic_search.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-mdpi/abc_ic_search_api_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-mdpi/abc_ic_search_api_holo_light.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-mdpi/abc_ic_voice_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-mdpi/abc_ic_voice_search.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-mdpi/abc_ic_voice_search_api_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-mdpi/abc_ic_voice_search_api_holo_light.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-mdpi/abc_list_divider_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-mdpi/abc_list_divider_holo_dark.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-mdpi/abc_list_divider_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-mdpi/abc_list_divider_holo_light.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-mdpi/abc_list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-mdpi/abc_list_focused_holo.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-mdpi/abc_list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-mdpi/abc_list_longpressed_holo.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-mdpi/abc_list_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-mdpi/abc_list_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-mdpi/abc_list_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-mdpi/abc_list_pressed_holo_light.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-mdpi/abc_list_selector_disabled_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-mdpi/abc_list_selector_disabled_holo_dark.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-mdpi/abc_list_selector_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-mdpi/abc_list_selector_disabled_holo_light.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-mdpi/abc_menu_dropdown_panel_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-mdpi/abc_menu_dropdown_panel_holo_dark.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-mdpi/abc_menu_dropdown_panel_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-mdpi/abc_menu_dropdown_panel_holo_light.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-mdpi/abc_menu_hardkey_panel_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-mdpi/abc_menu_hardkey_panel_holo_dark.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-mdpi/abc_menu_hardkey_panel_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-mdpi/abc_menu_hardkey_panel_holo_light.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-mdpi/abc_spinner_ab_default_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-mdpi/abc_spinner_ab_default_holo_dark.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-mdpi/abc_spinner_ab_default_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-mdpi/abc_spinner_ab_default_holo_light.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-mdpi/abc_spinner_ab_disabled_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-mdpi/abc_spinner_ab_disabled_holo_dark.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-mdpi/abc_spinner_ab_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-mdpi/abc_spinner_ab_disabled_holo_light.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-mdpi/abc_spinner_ab_focused_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-mdpi/abc_spinner_ab_focused_holo_dark.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-mdpi/abc_spinner_ab_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-mdpi/abc_spinner_ab_focused_holo_light.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-mdpi/abc_spinner_ab_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-mdpi/abc_spinner_ab_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-mdpi/abc_spinner_ab_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-mdpi/abc_spinner_ab_pressed_holo_light.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-mdpi/abc_tab_selected_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-mdpi/abc_tab_selected_focused_holo.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-mdpi/abc_tab_selected_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-mdpi/abc_tab_selected_holo.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-mdpi/abc_tab_selected_pressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-mdpi/abc_tab_selected_pressed_holo.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-mdpi/abc_tab_unselected_pressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-mdpi/abc_tab_unselected_pressed_holo.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-mdpi/abc_textfield_search_default_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-mdpi/abc_textfield_search_default_holo_dark.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-mdpi/abc_textfield_search_default_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-mdpi/abc_textfield_search_default_holo_light.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-mdpi/abc_textfield_search_right_default_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-mdpi/abc_textfield_search_right_default_holo_dark.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-mdpi/abc_textfield_search_right_default_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-mdpi/abc_textfield_search_right_default_holo_light.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-mdpi/abc_textfield_search_right_selected_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-mdpi/abc_textfield_search_right_selected_holo_dark.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-mdpi/abc_textfield_search_right_selected_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-mdpi/abc_textfield_search_right_selected_holo_light.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-mdpi/abc_textfield_search_selected_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-mdpi/abc_textfield_search_selected_holo_dark.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-mdpi/abc_textfield_search_selected_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-mdpi/abc_textfield_search_selected_holo_light.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-xhdpi/abc_ab_bottom_solid_dark_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-xhdpi/abc_ab_bottom_solid_dark_holo.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-xhdpi/abc_ab_bottom_solid_light_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-xhdpi/abc_ab_bottom_solid_light_holo.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-xhdpi/abc_ab_bottom_transparent_dark_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-xhdpi/abc_ab_bottom_transparent_dark_holo.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-xhdpi/abc_ab_bottom_transparent_light_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-xhdpi/abc_ab_bottom_transparent_light_holo.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-xhdpi/abc_ab_share_pack_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-xhdpi/abc_ab_share_pack_holo_dark.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-xhdpi/abc_ab_share_pack_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-xhdpi/abc_ab_share_pack_holo_light.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-xhdpi/abc_ab_solid_dark_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-xhdpi/abc_ab_solid_dark_holo.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-xhdpi/abc_ab_solid_light_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-xhdpi/abc_ab_solid_light_holo.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-xhdpi/abc_ab_stacked_solid_dark_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-xhdpi/abc_ab_stacked_solid_dark_holo.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-xhdpi/abc_ab_stacked_solid_light_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-xhdpi/abc_ab_stacked_solid_light_holo.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-xhdpi/abc_ab_stacked_transparent_dark_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-xhdpi/abc_ab_stacked_transparent_dark_holo.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-xhdpi/abc_ab_stacked_transparent_light_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-xhdpi/abc_ab_stacked_transparent_light_holo.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-xhdpi/abc_ab_transparent_dark_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-xhdpi/abc_ab_transparent_dark_holo.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-xhdpi/abc_ab_transparent_light_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-xhdpi/abc_ab_transparent_light_holo.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-xhdpi/abc_cab_background_bottom_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-xhdpi/abc_cab_background_bottom_holo_dark.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-xhdpi/abc_cab_background_bottom_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-xhdpi/abc_cab_background_bottom_holo_light.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-xhdpi/abc_cab_background_top_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-xhdpi/abc_cab_background_top_holo_dark.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-xhdpi/abc_cab_background_top_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-xhdpi/abc_cab_background_top_holo_light.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-xhdpi/abc_ic_ab_back_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-xhdpi/abc_ic_ab_back_holo_dark.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-xhdpi/abc_ic_ab_back_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-xhdpi/abc_ic_ab_back_holo_light.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-xhdpi/abc_ic_cab_done_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-xhdpi/abc_ic_cab_done_holo_dark.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-xhdpi/abc_ic_cab_done_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-xhdpi/abc_ic_cab_done_holo_light.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-xhdpi/abc_ic_clear_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-xhdpi/abc_ic_clear_disabled.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-xhdpi/abc_ic_clear_search_api_disabled_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-xhdpi/abc_ic_clear_search_api_disabled_holo_light.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-xhdpi/abc_ic_clear_search_api_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-xhdpi/abc_ic_clear_search_api_holo_light.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-xhdpi/abc_ic_commit_search_api_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-xhdpi/abc_ic_commit_search_api_holo_dark.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-xhdpi/abc_ic_commit_search_api_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-xhdpi/abc_ic_commit_search_api_holo_light.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-xhdpi/abc_ic_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-xhdpi/abc_ic_go.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-xhdpi/abc_ic_go_search_api_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-xhdpi/abc_ic_go_search_api_holo_light.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-xhdpi/abc_ic_menu_moreoverflow_normal_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-xhdpi/abc_ic_menu_moreoverflow_normal_holo_dark.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-xhdpi/abc_ic_menu_moreoverflow_normal_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-xhdpi/abc_ic_menu_moreoverflow_normal_holo_light.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-xhdpi/abc_ic_menu_share_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-xhdpi/abc_ic_menu_share_holo_dark.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-xhdpi/abc_ic_menu_share_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-xhdpi/abc_ic_menu_share_holo_light.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-xhdpi/abc_ic_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-xhdpi/abc_ic_search.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-xhdpi/abc_ic_search_api_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-xhdpi/abc_ic_search_api_holo_light.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-xhdpi/abc_ic_voice_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-xhdpi/abc_ic_voice_search.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-xhdpi/abc_ic_voice_search_api_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-xhdpi/abc_ic_voice_search_api_holo_light.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-xhdpi/abc_list_divider_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-xhdpi/abc_list_divider_holo_dark.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-xhdpi/abc_list_divider_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-xhdpi/abc_list_divider_holo_light.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-xhdpi/abc_list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-xhdpi/abc_list_focused_holo.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-xhdpi/abc_list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-xhdpi/abc_list_longpressed_holo.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-xhdpi/abc_list_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-xhdpi/abc_list_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-xhdpi/abc_list_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-xhdpi/abc_list_pressed_holo_light.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-xhdpi/abc_list_selector_disabled_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-xhdpi/abc_list_selector_disabled_holo_dark.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-xhdpi/abc_list_selector_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-xhdpi/abc_list_selector_disabled_holo_light.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-xhdpi/abc_menu_dropdown_panel_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-xhdpi/abc_menu_dropdown_panel_holo_dark.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-xhdpi/abc_menu_dropdown_panel_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-xhdpi/abc_menu_dropdown_panel_holo_light.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-xhdpi/abc_menu_hardkey_panel_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-xhdpi/abc_menu_hardkey_panel_holo_dark.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-xhdpi/abc_menu_hardkey_panel_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-xhdpi/abc_menu_hardkey_panel_holo_light.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-xhdpi/abc_spinner_ab_default_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-xhdpi/abc_spinner_ab_default_holo_dark.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-xhdpi/abc_spinner_ab_default_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-xhdpi/abc_spinner_ab_default_holo_light.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-xhdpi/abc_spinner_ab_disabled_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-xhdpi/abc_spinner_ab_disabled_holo_dark.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-xhdpi/abc_spinner_ab_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-xhdpi/abc_spinner_ab_disabled_holo_light.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-xhdpi/abc_spinner_ab_focused_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-xhdpi/abc_spinner_ab_focused_holo_dark.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-xhdpi/abc_spinner_ab_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-xhdpi/abc_spinner_ab_focused_holo_light.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-xhdpi/abc_spinner_ab_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-xhdpi/abc_spinner_ab_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-xhdpi/abc_spinner_ab_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-xhdpi/abc_spinner_ab_pressed_holo_light.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-xhdpi/abc_tab_selected_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-xhdpi/abc_tab_selected_focused_holo.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-xhdpi/abc_tab_selected_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-xhdpi/abc_tab_selected_holo.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-xhdpi/abc_tab_selected_pressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-xhdpi/abc_tab_selected_pressed_holo.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-xhdpi/abc_tab_unselected_pressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-xhdpi/abc_tab_unselected_pressed_holo.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-xhdpi/abc_textfield_search_default_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-xhdpi/abc_textfield_search_default_holo_dark.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-xhdpi/abc_textfield_search_default_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-xhdpi/abc_textfield_search_default_holo_light.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-xhdpi/abc_textfield_search_right_default_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-xhdpi/abc_textfield_search_right_default_holo_dark.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-xhdpi/abc_textfield_search_right_default_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-xhdpi/abc_textfield_search_right_default_holo_light.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-xhdpi/abc_textfield_search_right_selected_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-xhdpi/abc_textfield_search_right_selected_holo_dark.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-xhdpi/abc_textfield_search_right_selected_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-xhdpi/abc_textfield_search_right_selected_holo_light.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-xhdpi/abc_textfield_search_selected_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-xhdpi/abc_textfield_search_selected_holo_dark.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/res/drawable-xhdpi/abc_textfield_search_selected_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/app/library/appcompat_v7/res/drawable-xhdpi/abc_textfield_search_selected_holo_light.9.png -------------------------------------------------------------------------------- /app/library/appcompat_v7/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. -------------------------------------------------------------------------------- /demo/Socket传输List数据/SocketRecvListDemo/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/Socket传输List数据/SocketRecvListDemo/ic_launcher-web.png -------------------------------------------------------------------------------- /demo/Socket传输List数据/SocketRecvListDemo/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/Socket传输List数据/SocketRecvListDemo/libs/android-support-v4.jar -------------------------------------------------------------------------------- /demo/Socket传输List数据/SocketRecvListDemo/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/Socket传输List数据/SocketRecvListDemo/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/Socket传输List数据/SocketRecvListDemo/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/Socket传输List数据/SocketRecvListDemo/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/Socket传输List数据/SocketRecvListDemo/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/Socket传输List数据/SocketRecvListDemo/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/Socket传输List数据/SocketRecvListDemo/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/Socket传输List数据/SocketRecvListDemo/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/Socket传输List数据/SocketRecvListDemo/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16dp 5 | 16dp 6 | 7 | 8 | -------------------------------------------------------------------------------- /demo/Socket传输List数据/SocketRecvListDemo/src/com/example/socketsendlistdemo/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/Socket传输List数据/SocketRecvListDemo/src/com/example/socketsendlistdemo/MainActivity.java -------------------------------------------------------------------------------- /demo/Socket传输List数据/SocketSendListDemo/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/Socket传输List数据/SocketSendListDemo/ic_launcher-web.png -------------------------------------------------------------------------------- /demo/Socket传输List数据/SocketSendListDemo/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/Socket传输List数据/SocketSendListDemo/libs/android-support-v4.jar -------------------------------------------------------------------------------- /demo/Socket传输List数据/SocketSendListDemo/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/Socket传输List数据/SocketSendListDemo/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/Socket传输List数据/SocketSendListDemo/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/Socket传输List数据/SocketSendListDemo/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/Socket传输List数据/SocketSendListDemo/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/Socket传输List数据/SocketSendListDemo/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/Socket传输List数据/SocketSendListDemo/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/Socket传输List数据/SocketSendListDemo/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/Socket传输List数据/SocketSendListDemo/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16dp 5 | 16dp 6 | 7 | 8 | -------------------------------------------------------------------------------- /demo/Socket传输List数据/SocketSendListDemo/src/com/example/socketsendlistdemo/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/Socket传输List数据/SocketSendListDemo/src/com/example/socketsendlistdemo/MainActivity.java -------------------------------------------------------------------------------- /demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/ScanLanDevice.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/ScanLanDevice.apk -------------------------------------------------------------------------------- /demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/classes.dex -------------------------------------------------------------------------------- /demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/classes/android/support/v7/appcompat/R$anim.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/classes/android/support/v7/appcompat/R$anim.class -------------------------------------------------------------------------------- /demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/classes/android/support/v7/appcompat/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/classes/android/support/v7/appcompat/R$attr.class -------------------------------------------------------------------------------- /demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/classes/android/support/v7/appcompat/R$bool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/classes/android/support/v7/appcompat/R$bool.class -------------------------------------------------------------------------------- /demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/classes/android/support/v7/appcompat/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/classes/android/support/v7/appcompat/R$color.class -------------------------------------------------------------------------------- /demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/classes/android/support/v7/appcompat/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/classes/android/support/v7/appcompat/R$dimen.class -------------------------------------------------------------------------------- /demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/classes/android/support/v7/appcompat/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/classes/android/support/v7/appcompat/R$drawable.class -------------------------------------------------------------------------------- /demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/classes/android/support/v7/appcompat/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/classes/android/support/v7/appcompat/R$id.class -------------------------------------------------------------------------------- /demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/classes/android/support/v7/appcompat/R$integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/classes/android/support/v7/appcompat/R$integer.class -------------------------------------------------------------------------------- /demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/classes/android/support/v7/appcompat/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/classes/android/support/v7/appcompat/R$layout.class -------------------------------------------------------------------------------- /demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/classes/android/support/v7/appcompat/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/classes/android/support/v7/appcompat/R$string.class -------------------------------------------------------------------------------- /demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/classes/android/support/v7/appcompat/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/classes/android/support/v7/appcompat/R$style.class -------------------------------------------------------------------------------- /demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/classes/android/support/v7/appcompat/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/classes/android/support/v7/appcompat/R$styleable.class -------------------------------------------------------------------------------- /demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/classes/android/support/v7/appcompat/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/classes/android/support/v7/appcompat/R.class -------------------------------------------------------------------------------- /demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/classes/com/example/scanlandevice/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/classes/com/example/scanlandevice/BuildConfig.class -------------------------------------------------------------------------------- /demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/classes/com/example/scanlandevice/MainActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/classes/com/example/scanlandevice/MainActivity$1.class -------------------------------------------------------------------------------- /demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/classes/com/example/scanlandevice/MainActivity$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/classes/com/example/scanlandevice/MainActivity$2.class -------------------------------------------------------------------------------- /demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/classes/com/example/scanlandevice/MainActivity$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/classes/com/example/scanlandevice/MainActivity$3.class -------------------------------------------------------------------------------- /demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/classes/com/example/scanlandevice/MainActivity$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/classes/com/example/scanlandevice/MainActivity$4.class -------------------------------------------------------------------------------- /demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/classes/com/example/scanlandevice/MainActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/classes/com/example/scanlandevice/MainActivity.class -------------------------------------------------------------------------------- /demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/classes/com/example/scanlandevice/R$anim.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/classes/com/example/scanlandevice/R$anim.class -------------------------------------------------------------------------------- /demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/classes/com/example/scanlandevice/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/classes/com/example/scanlandevice/R$attr.class -------------------------------------------------------------------------------- /demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/classes/com/example/scanlandevice/R$bool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/classes/com/example/scanlandevice/R$bool.class -------------------------------------------------------------------------------- /demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/classes/com/example/scanlandevice/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/classes/com/example/scanlandevice/R$color.class -------------------------------------------------------------------------------- /demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/classes/com/example/scanlandevice/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/classes/com/example/scanlandevice/R$dimen.class -------------------------------------------------------------------------------- /demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/classes/com/example/scanlandevice/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/classes/com/example/scanlandevice/R$drawable.class -------------------------------------------------------------------------------- /demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/classes/com/example/scanlandevice/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/classes/com/example/scanlandevice/R$id.class -------------------------------------------------------------------------------- /demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/classes/com/example/scanlandevice/R$integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/classes/com/example/scanlandevice/R$integer.class -------------------------------------------------------------------------------- /demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/classes/com/example/scanlandevice/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/classes/com/example/scanlandevice/R$layout.class -------------------------------------------------------------------------------- /demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/classes/com/example/scanlandevice/R$menu.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/classes/com/example/scanlandevice/R$menu.class -------------------------------------------------------------------------------- /demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/classes/com/example/scanlandevice/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/classes/com/example/scanlandevice/R$string.class -------------------------------------------------------------------------------- /demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/classes/com/example/scanlandevice/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/classes/com/example/scanlandevice/R$style.class -------------------------------------------------------------------------------- /demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/classes/com/example/scanlandevice/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/classes/com/example/scanlandevice/R$styleable.class -------------------------------------------------------------------------------- /demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/classes/com/example/scanlandevice/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/classes/com/example/scanlandevice/R.class -------------------------------------------------------------------------------- /demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/dexedLibs/android-support-v4-cc0d6567bd0c716b311b0a3616703dcd.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/dexedLibs/android-support-v4-cc0d6567bd0c716b311b0a3616703dcd.jar -------------------------------------------------------------------------------- /demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/dexedLibs/appcompat_v7-55017593bb929634de84e9a59478620f.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/dexedLibs/appcompat_v7-55017593bb929634de84e9a59478620f.jar -------------------------------------------------------------------------------- /demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/res/crunch/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/res/crunch/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/res/crunch/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/res/crunch/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/res/crunch/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/res/crunch/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/res/crunch/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/res/crunch/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/bin/resources.ap_ -------------------------------------------------------------------------------- /demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/gen/com/example/scanlandevice/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.example.scanlandevice; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/ic_launcher-web.png -------------------------------------------------------------------------------- /demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/libs/android-support-v4.jar -------------------------------------------------------------------------------- /demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16dp 5 | 16dp 6 | 7 | 8 | -------------------------------------------------------------------------------- /demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ScanLanDevice 5 | Hello world! 6 | Settings 7 | 8 | 9 | -------------------------------------------------------------------------------- /demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/src/com/example/scanlandevice/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/在手机扫描同局域网的其他设备IP地址/ScanLanDevice/src/com/example/scanlandevice/MainActivity.java -------------------------------------------------------------------------------- /demo/局域网文件传输/FileTransmit/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/局域网文件传输/FileTransmit/libs/android-support-v4.jar -------------------------------------------------------------------------------- /demo/局域网文件传输/FileTransmit/res/drawable-hdpi/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/局域网文件传输/FileTransmit/res/drawable-hdpi/Thumbs.db -------------------------------------------------------------------------------- /demo/局域网文件传输/FileTransmit/res/drawable-hdpi/file.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/局域网文件传输/FileTransmit/res/drawable-hdpi/file.PNG -------------------------------------------------------------------------------- /demo/局域网文件传输/FileTransmit/res/drawable-hdpi/folder.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/局域网文件传输/FileTransmit/res/drawable-hdpi/folder.PNG -------------------------------------------------------------------------------- /demo/局域网文件传输/FileTransmit/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/局域网文件传输/FileTransmit/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/局域网文件传输/FileTransmit/res/drawable-hdpi/selected.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/局域网文件传输/FileTransmit/res/drawable-hdpi/selected.PNG -------------------------------------------------------------------------------- /demo/局域网文件传输/FileTransmit/res/drawable-hdpi/unselected.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/局域网文件传输/FileTransmit/res/drawable-hdpi/unselected.PNG -------------------------------------------------------------------------------- /demo/局域网文件传输/FileTransmit/res/drawable-mdpi/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/局域网文件传输/FileTransmit/res/drawable-mdpi/Thumbs.db -------------------------------------------------------------------------------- /demo/局域网文件传输/FileTransmit/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/局域网文件传输/FileTransmit/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/局域网文件传输/FileTransmit/res/drawable-xhdpi/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/局域网文件传输/FileTransmit/res/drawable-xhdpi/Thumbs.db -------------------------------------------------------------------------------- /demo/局域网文件传输/FileTransmit/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/局域网文件传输/FileTransmit/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/局域网文件传输/FileTransmit/res/drawable-xxhdpi/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/局域网文件传输/FileTransmit/res/drawable-xxhdpi/Thumbs.db -------------------------------------------------------------------------------- /demo/局域网文件传输/FileTransmit/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/局域网文件传输/FileTransmit/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/局域网文件传输/FileTransmit/res/menu/main.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | -------------------------------------------------------------------------------- /demo/局域网文件传输/FileTransmit/res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | -------------------------------------------------------------------------------- /demo/局域网文件传输/FileTransmit/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10dp 5 | 10dp 6 | 7 | -------------------------------------------------------------------------------- /demo/局域网文件传输/FileTransmit/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 文件传输 5 | Settings 6 | Hello world! 7 | 8 | -------------------------------------------------------------------------------- /demo/局域网文件传输/FileTransmit/src/com/ssydiai/filetransmit/FilesViewActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/局域网文件传输/FileTransmit/src/com/ssydiai/filetransmit/FilesViewActivity.java -------------------------------------------------------------------------------- /demo/局域网文件传输/FileTransmit/src/com/ssydiai/filetransmit/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/局域网文件传输/FileTransmit/src/com/ssydiai/filetransmit/MainActivity.java -------------------------------------------------------------------------------- /demo/局域网文件传输/FileTransmit/src/com/ssydiai/filetransmit/SocketManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/局域网文件传输/FileTransmit/src/com/ssydiai/filetransmit/SocketManager.java -------------------------------------------------------------------------------- /demo/手机与PC的TCP通信/SimpleClient/.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 | -------------------------------------------------------------------------------- /demo/手机与PC的TCP通信/SimpleClient/bin/SimpleClient.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与PC的TCP通信/SimpleClient/bin/SimpleClient.apk -------------------------------------------------------------------------------- /demo/手机与PC的TCP通信/SimpleClient/bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与PC的TCP通信/SimpleClient/bin/classes.dex -------------------------------------------------------------------------------- /demo/手机与PC的TCP通信/SimpleClient/bin/classes/org/crazyit/net/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与PC的TCP通信/SimpleClient/bin/classes/org/crazyit/net/BuildConfig.class -------------------------------------------------------------------------------- /demo/手机与PC的TCP通信/SimpleClient/bin/classes/org/crazyit/net/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与PC的TCP通信/SimpleClient/bin/classes/org/crazyit/net/R$attr.class -------------------------------------------------------------------------------- /demo/手机与PC的TCP通信/SimpleClient/bin/classes/org/crazyit/net/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与PC的TCP通信/SimpleClient/bin/classes/org/crazyit/net/R$drawable.class -------------------------------------------------------------------------------- /demo/手机与PC的TCP通信/SimpleClient/bin/classes/org/crazyit/net/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与PC的TCP通信/SimpleClient/bin/classes/org/crazyit/net/R$id.class -------------------------------------------------------------------------------- /demo/手机与PC的TCP通信/SimpleClient/bin/classes/org/crazyit/net/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与PC的TCP通信/SimpleClient/bin/classes/org/crazyit/net/R$layout.class -------------------------------------------------------------------------------- /demo/手机与PC的TCP通信/SimpleClient/bin/classes/org/crazyit/net/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与PC的TCP通信/SimpleClient/bin/classes/org/crazyit/net/R$string.class -------------------------------------------------------------------------------- /demo/手机与PC的TCP通信/SimpleClient/bin/classes/org/crazyit/net/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与PC的TCP通信/SimpleClient/bin/classes/org/crazyit/net/R.class -------------------------------------------------------------------------------- /demo/手机与PC的TCP通信/SimpleClient/bin/classes/org/crazyit/net/SimpleClient.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与PC的TCP通信/SimpleClient/bin/classes/org/crazyit/net/SimpleClient.class -------------------------------------------------------------------------------- /demo/手机与PC的TCP通信/SimpleClient/bin/res/crunch/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与PC的TCP通信/SimpleClient/bin/res/crunch/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /demo/手机与PC的TCP通信/SimpleClient/bin/res/crunch/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与PC的TCP通信/SimpleClient/bin/res/crunch/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /demo/手机与PC的TCP通信/SimpleClient/bin/res/crunch/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与PC的TCP通信/SimpleClient/bin/res/crunch/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /demo/手机与PC的TCP通信/SimpleClient/bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与PC的TCP通信/SimpleClient/bin/resources.ap_ -------------------------------------------------------------------------------- /demo/手机与PC的TCP通信/SimpleClient/gen/org/crazyit/net/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package org.crazyit.net; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /demo/手机与PC的TCP通信/SimpleClient/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与PC的TCP通信/SimpleClient/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /demo/手机与PC的TCP通信/SimpleClient/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与PC的TCP通信/SimpleClient/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /demo/手机与PC的TCP通信/SimpleClient/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与PC的TCP通信/SimpleClient/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /demo/手机与PC的TCP通信/SimpleClient/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Hello World, SimpleClient! 4 | 简单TCP客户端 5 | 6 | -------------------------------------------------------------------------------- /demo/手机与PC的TCP通信/SimpleClient/src/org/crazyit/net/SimpleClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与PC的TCP通信/SimpleClient/src/org/crazyit/net/SimpleClient.java -------------------------------------------------------------------------------- /demo/手机与PC的TCP通信/SimpleServer/bin/SimpleServer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与PC的TCP通信/SimpleServer/bin/SimpleServer.class -------------------------------------------------------------------------------- /demo/手机与PC的TCP通信/SimpleServer/src/SimpleServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与PC的TCP通信/SimpleServer/src/SimpleServer.java -------------------------------------------------------------------------------- /demo/手机与手机之间的文件传输/LANFileSendOrRev/assets/yuenanyueai.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与手机之间的文件传输/LANFileSendOrRev/assets/yuenanyueai.mp3 -------------------------------------------------------------------------------- /demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/LANFileSendOrRev.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/LANFileSendOrRev.apk -------------------------------------------------------------------------------- /demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/classes.dex -------------------------------------------------------------------------------- /demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/classes/android/support/v7/appcompat/R$anim.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/classes/android/support/v7/appcompat/R$anim.class -------------------------------------------------------------------------------- /demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/classes/android/support/v7/appcompat/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/classes/android/support/v7/appcompat/R$attr.class -------------------------------------------------------------------------------- /demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/classes/android/support/v7/appcompat/R$bool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/classes/android/support/v7/appcompat/R$bool.class -------------------------------------------------------------------------------- /demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/classes/android/support/v7/appcompat/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/classes/android/support/v7/appcompat/R$color.class -------------------------------------------------------------------------------- /demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/classes/android/support/v7/appcompat/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/classes/android/support/v7/appcompat/R$dimen.class -------------------------------------------------------------------------------- /demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/classes/android/support/v7/appcompat/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/classes/android/support/v7/appcompat/R$drawable.class -------------------------------------------------------------------------------- /demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/classes/android/support/v7/appcompat/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/classes/android/support/v7/appcompat/R$id.class -------------------------------------------------------------------------------- /demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/classes/android/support/v7/appcompat/R$integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/classes/android/support/v7/appcompat/R$integer.class -------------------------------------------------------------------------------- /demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/classes/android/support/v7/appcompat/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/classes/android/support/v7/appcompat/R$layout.class -------------------------------------------------------------------------------- /demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/classes/android/support/v7/appcompat/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/classes/android/support/v7/appcompat/R$string.class -------------------------------------------------------------------------------- /demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/classes/android/support/v7/appcompat/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/classes/android/support/v7/appcompat/R$style.class -------------------------------------------------------------------------------- /demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/classes/android/support/v7/appcompat/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/classes/android/support/v7/appcompat/R$styleable.class -------------------------------------------------------------------------------- /demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/classes/android/support/v7/appcompat/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/classes/android/support/v7/appcompat/R.class -------------------------------------------------------------------------------- /demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/classes/com/yin/lanfilesendorrev/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/classes/com/yin/lanfilesendorrev/BuildConfig.class -------------------------------------------------------------------------------- /demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/classes/com/yin/lanfilesendorrev/MainActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/classes/com/yin/lanfilesendorrev/MainActivity$1.class -------------------------------------------------------------------------------- /demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/classes/com/yin/lanfilesendorrev/MainActivity$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/classes/com/yin/lanfilesendorrev/MainActivity$2.class -------------------------------------------------------------------------------- /demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/classes/com/yin/lanfilesendorrev/MainActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/classes/com/yin/lanfilesendorrev/MainActivity.class -------------------------------------------------------------------------------- /demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/classes/com/yin/lanfilesendorrev/R$anim.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/classes/com/yin/lanfilesendorrev/R$anim.class -------------------------------------------------------------------------------- /demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/classes/com/yin/lanfilesendorrev/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/classes/com/yin/lanfilesendorrev/R$attr.class -------------------------------------------------------------------------------- /demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/classes/com/yin/lanfilesendorrev/R$bool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/classes/com/yin/lanfilesendorrev/R$bool.class -------------------------------------------------------------------------------- /demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/classes/com/yin/lanfilesendorrev/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/classes/com/yin/lanfilesendorrev/R$color.class -------------------------------------------------------------------------------- /demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/classes/com/yin/lanfilesendorrev/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/classes/com/yin/lanfilesendorrev/R$dimen.class -------------------------------------------------------------------------------- /demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/classes/com/yin/lanfilesendorrev/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/classes/com/yin/lanfilesendorrev/R$drawable.class -------------------------------------------------------------------------------- /demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/classes/com/yin/lanfilesendorrev/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/classes/com/yin/lanfilesendorrev/R$id.class -------------------------------------------------------------------------------- /demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/classes/com/yin/lanfilesendorrev/R$integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/classes/com/yin/lanfilesendorrev/R$integer.class -------------------------------------------------------------------------------- /demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/classes/com/yin/lanfilesendorrev/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/classes/com/yin/lanfilesendorrev/R$layout.class -------------------------------------------------------------------------------- /demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/classes/com/yin/lanfilesendorrev/R$menu.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/classes/com/yin/lanfilesendorrev/R$menu.class -------------------------------------------------------------------------------- /demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/classes/com/yin/lanfilesendorrev/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/classes/com/yin/lanfilesendorrev/R$string.class -------------------------------------------------------------------------------- /demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/classes/com/yin/lanfilesendorrev/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/classes/com/yin/lanfilesendorrev/R$style.class -------------------------------------------------------------------------------- /demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/classes/com/yin/lanfilesendorrev/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/classes/com/yin/lanfilesendorrev/R$styleable.class -------------------------------------------------------------------------------- /demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/classes/com/yin/lanfilesendorrev/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/classes/com/yin/lanfilesendorrev/R.class -------------------------------------------------------------------------------- /demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/dexedLibs/android-support-v4-b54d2b58ac847342ffc2ebd7167b2d94.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/dexedLibs/android-support-v4-b54d2b58ac847342ffc2ebd7167b2d94.jar -------------------------------------------------------------------------------- /demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/dexedLibs/appcompat_v7-55017593bb929634de84e9a59478620f.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/dexedLibs/appcompat_v7-55017593bb929634de84e9a59478620f.jar -------------------------------------------------------------------------------- /demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/res/crunch/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/res/crunch/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/res/crunch/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/res/crunch/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/res/crunch/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/res/crunch/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/res/crunch/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/res/crunch/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与手机之间的文件传输/LANFileSendOrRev/bin/resources.ap_ -------------------------------------------------------------------------------- /demo/手机与手机之间的文件传输/LANFileSendOrRev/gen/com/yin/lanfilesendorrev/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.yin.lanfilesendorrev; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /demo/手机与手机之间的文件传输/LANFileSendOrRev/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与手机之间的文件传输/LANFileSendOrRev/ic_launcher-web.png -------------------------------------------------------------------------------- /demo/手机与手机之间的文件传输/LANFileSendOrRev/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与手机之间的文件传输/LANFileSendOrRev/libs/android-support-v4.jar -------------------------------------------------------------------------------- /demo/手机与手机之间的文件传输/LANFileSendOrRev/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与手机之间的文件传输/LANFileSendOrRev/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/手机与手机之间的文件传输/LANFileSendOrRev/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与手机之间的文件传输/LANFileSendOrRev/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/手机与手机之间的文件传输/LANFileSendOrRev/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与手机之间的文件传输/LANFileSendOrRev/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/手机与手机之间的文件传输/LANFileSendOrRev/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与手机之间的文件传输/LANFileSendOrRev/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/手机与手机之间的文件传输/LANFileSendOrRev/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16dp 5 | 16dp 6 | 7 | 8 | -------------------------------------------------------------------------------- /demo/手机与手机之间的文件传输/LANFileSendOrRev/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | LANFileSendOrRev 5 | Hello world! 6 | Settings 7 | 8 | 9 | -------------------------------------------------------------------------------- /demo/手机与手机之间的文件传输/LANFileSendOrRev/src/com/yin/lanfilesendorrev/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与手机之间的文件传输/LANFileSendOrRev/src/com/yin/lanfilesendorrev/MainActivity.java -------------------------------------------------------------------------------- /demo/手机与手机的TCP通信/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与手机的TCP通信/README.txt -------------------------------------------------------------------------------- /demo/手机与手机的TCP通信/SimpleClient/.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 | -------------------------------------------------------------------------------- /demo/手机与手机的TCP通信/SimpleClient/bin/classes/.gitignore: -------------------------------------------------------------------------------- 1 | /org 2 | -------------------------------------------------------------------------------- /demo/手机与手机的TCP通信/SimpleClient/bin/classes/org/crazyit/net/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与手机的TCP通信/SimpleClient/bin/classes/org/crazyit/net/BuildConfig.class -------------------------------------------------------------------------------- /demo/手机与手机的TCP通信/SimpleClient/bin/classes/org/crazyit/net/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与手机的TCP通信/SimpleClient/bin/classes/org/crazyit/net/R$attr.class -------------------------------------------------------------------------------- /demo/手机与手机的TCP通信/SimpleClient/bin/classes/org/crazyit/net/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与手机的TCP通信/SimpleClient/bin/classes/org/crazyit/net/R$drawable.class -------------------------------------------------------------------------------- /demo/手机与手机的TCP通信/SimpleClient/bin/classes/org/crazyit/net/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与手机的TCP通信/SimpleClient/bin/classes/org/crazyit/net/R$id.class -------------------------------------------------------------------------------- /demo/手机与手机的TCP通信/SimpleClient/bin/classes/org/crazyit/net/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与手机的TCP通信/SimpleClient/bin/classes/org/crazyit/net/R$layout.class -------------------------------------------------------------------------------- /demo/手机与手机的TCP通信/SimpleClient/bin/classes/org/crazyit/net/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与手机的TCP通信/SimpleClient/bin/classes/org/crazyit/net/R$string.class -------------------------------------------------------------------------------- /demo/手机与手机的TCP通信/SimpleClient/bin/classes/org/crazyit/net/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与手机的TCP通信/SimpleClient/bin/classes/org/crazyit/net/R.class -------------------------------------------------------------------------------- /demo/手机与手机的TCP通信/SimpleClient/bin/classes/org/crazyit/net/SimpleClient.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与手机的TCP通信/SimpleClient/bin/classes/org/crazyit/net/SimpleClient.class -------------------------------------------------------------------------------- /demo/手机与手机的TCP通信/SimpleClient/gen/org/crazyit/net/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package org.crazyit.net; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /demo/手机与手机的TCP通信/SimpleClient/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与手机的TCP通信/SimpleClient/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /demo/手机与手机的TCP通信/SimpleClient/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与手机的TCP通信/SimpleClient/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /demo/手机与手机的TCP通信/SimpleClient/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与手机的TCP通信/SimpleClient/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /demo/手机与手机的TCP通信/SimpleClient/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Hello World, SimpleClient! 4 | 简单TCP客户端 5 | 6 | -------------------------------------------------------------------------------- /demo/手机与手机的TCP通信/SimpleClient/src/org/crazyit/net/SimpleClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与手机的TCP通信/SimpleClient/src/org/crazyit/net/SimpleClient.java -------------------------------------------------------------------------------- /demo/手机与手机的TCP通信/androidServer/bin/classes/.gitignore: -------------------------------------------------------------------------------- 1 | /com 2 | -------------------------------------------------------------------------------- /demo/手机与手机的TCP通信/androidServer/bin/classes/com/example/androidserver/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与手机的TCP通信/androidServer/bin/classes/com/example/androidserver/BuildConfig.class -------------------------------------------------------------------------------- /demo/手机与手机的TCP通信/androidServer/bin/classes/com/example/androidserver/MainActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与手机的TCP通信/androidServer/bin/classes/com/example/androidserver/MainActivity.class -------------------------------------------------------------------------------- /demo/手机与手机的TCP通信/androidServer/gen/com/example/androidserver/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.example.androidserver; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /demo/手机与手机的TCP通信/androidServer/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与手机的TCP通信/androidServer/ic_launcher-web.png -------------------------------------------------------------------------------- /demo/手机与手机的TCP通信/androidServer/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与手机的TCP通信/androidServer/libs/android-support-v4.jar -------------------------------------------------------------------------------- /demo/手机与手机的TCP通信/androidServer/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与手机的TCP通信/androidServer/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/手机与手机的TCP通信/androidServer/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与手机的TCP通信/androidServer/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/手机与手机的TCP通信/androidServer/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与手机的TCP通信/androidServer/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/手机与手机的TCP通信/androidServer/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与手机的TCP通信/androidServer/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/手机与手机的TCP通信/androidServer/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16dp 5 | 16dp 6 | 7 | 8 | -------------------------------------------------------------------------------- /demo/手机与手机的TCP通信/androidServer/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | androidServer 5 | Hello world! 6 | Settings 7 | 8 | 9 | -------------------------------------------------------------------------------- /demo/手机与手机的TCP通信/androidServer/src/com/example/androidserver/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/手机与手机的TCP通信/androidServer/src/com/example/androidserver/MainActivity.java -------------------------------------------------------------------------------- /demo/扫描手机SD卡文件/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/扫描手机SD卡文件/README -------------------------------------------------------------------------------- /demo/扫描手机SD卡文件/ScanFile/bin/ScanFile.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/扫描手机SD卡文件/ScanFile/bin/ScanFile.apk -------------------------------------------------------------------------------- /demo/扫描手机SD卡文件/ScanFile/bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/扫描手机SD卡文件/ScanFile/bin/classes.dex -------------------------------------------------------------------------------- /demo/扫描手机SD卡文件/ScanFile/bin/classes/android/support/v7/appcompat/R$anim.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/扫描手机SD卡文件/ScanFile/bin/classes/android/support/v7/appcompat/R$anim.class -------------------------------------------------------------------------------- /demo/扫描手机SD卡文件/ScanFile/bin/classes/android/support/v7/appcompat/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/扫描手机SD卡文件/ScanFile/bin/classes/android/support/v7/appcompat/R$attr.class -------------------------------------------------------------------------------- /demo/扫描手机SD卡文件/ScanFile/bin/classes/android/support/v7/appcompat/R$bool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/扫描手机SD卡文件/ScanFile/bin/classes/android/support/v7/appcompat/R$bool.class -------------------------------------------------------------------------------- /demo/扫描手机SD卡文件/ScanFile/bin/classes/android/support/v7/appcompat/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/扫描手机SD卡文件/ScanFile/bin/classes/android/support/v7/appcompat/R$color.class -------------------------------------------------------------------------------- /demo/扫描手机SD卡文件/ScanFile/bin/classes/android/support/v7/appcompat/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/扫描手机SD卡文件/ScanFile/bin/classes/android/support/v7/appcompat/R$dimen.class -------------------------------------------------------------------------------- /demo/扫描手机SD卡文件/ScanFile/bin/classes/android/support/v7/appcompat/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/扫描手机SD卡文件/ScanFile/bin/classes/android/support/v7/appcompat/R$drawable.class -------------------------------------------------------------------------------- /demo/扫描手机SD卡文件/ScanFile/bin/classes/android/support/v7/appcompat/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/扫描手机SD卡文件/ScanFile/bin/classes/android/support/v7/appcompat/R$id.class -------------------------------------------------------------------------------- /demo/扫描手机SD卡文件/ScanFile/bin/classes/android/support/v7/appcompat/R$integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/扫描手机SD卡文件/ScanFile/bin/classes/android/support/v7/appcompat/R$integer.class -------------------------------------------------------------------------------- /demo/扫描手机SD卡文件/ScanFile/bin/classes/android/support/v7/appcompat/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/扫描手机SD卡文件/ScanFile/bin/classes/android/support/v7/appcompat/R$layout.class -------------------------------------------------------------------------------- /demo/扫描手机SD卡文件/ScanFile/bin/classes/android/support/v7/appcompat/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/扫描手机SD卡文件/ScanFile/bin/classes/android/support/v7/appcompat/R$string.class -------------------------------------------------------------------------------- /demo/扫描手机SD卡文件/ScanFile/bin/classes/android/support/v7/appcompat/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/扫描手机SD卡文件/ScanFile/bin/classes/android/support/v7/appcompat/R$style.class -------------------------------------------------------------------------------- /demo/扫描手机SD卡文件/ScanFile/bin/classes/android/support/v7/appcompat/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/扫描手机SD卡文件/ScanFile/bin/classes/android/support/v7/appcompat/R$styleable.class -------------------------------------------------------------------------------- /demo/扫描手机SD卡文件/ScanFile/bin/classes/android/support/v7/appcompat/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/扫描手机SD卡文件/ScanFile/bin/classes/android/support/v7/appcompat/R.class -------------------------------------------------------------------------------- /demo/扫描手机SD卡文件/ScanFile/bin/classes/com/example/scanfile/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/扫描手机SD卡文件/ScanFile/bin/classes/com/example/scanfile/BuildConfig.class -------------------------------------------------------------------------------- /demo/扫描手机SD卡文件/ScanFile/bin/classes/com/example/scanfile/MainActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/扫描手机SD卡文件/ScanFile/bin/classes/com/example/scanfile/MainActivity$1.class -------------------------------------------------------------------------------- /demo/扫描手机SD卡文件/ScanFile/bin/classes/com/example/scanfile/MainActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/扫描手机SD卡文件/ScanFile/bin/classes/com/example/scanfile/MainActivity.class -------------------------------------------------------------------------------- /demo/扫描手机SD卡文件/ScanFile/bin/classes/com/example/scanfile/R$anim.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/扫描手机SD卡文件/ScanFile/bin/classes/com/example/scanfile/R$anim.class -------------------------------------------------------------------------------- /demo/扫描手机SD卡文件/ScanFile/bin/classes/com/example/scanfile/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/扫描手机SD卡文件/ScanFile/bin/classes/com/example/scanfile/R$attr.class -------------------------------------------------------------------------------- /demo/扫描手机SD卡文件/ScanFile/bin/classes/com/example/scanfile/R$bool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/扫描手机SD卡文件/ScanFile/bin/classes/com/example/scanfile/R$bool.class -------------------------------------------------------------------------------- /demo/扫描手机SD卡文件/ScanFile/bin/classes/com/example/scanfile/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/扫描手机SD卡文件/ScanFile/bin/classes/com/example/scanfile/R$color.class -------------------------------------------------------------------------------- /demo/扫描手机SD卡文件/ScanFile/bin/classes/com/example/scanfile/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/扫描手机SD卡文件/ScanFile/bin/classes/com/example/scanfile/R$dimen.class -------------------------------------------------------------------------------- /demo/扫描手机SD卡文件/ScanFile/bin/classes/com/example/scanfile/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/扫描手机SD卡文件/ScanFile/bin/classes/com/example/scanfile/R$drawable.class -------------------------------------------------------------------------------- /demo/扫描手机SD卡文件/ScanFile/bin/classes/com/example/scanfile/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/扫描手机SD卡文件/ScanFile/bin/classes/com/example/scanfile/R$id.class -------------------------------------------------------------------------------- /demo/扫描手机SD卡文件/ScanFile/bin/classes/com/example/scanfile/R$integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/扫描手机SD卡文件/ScanFile/bin/classes/com/example/scanfile/R$integer.class -------------------------------------------------------------------------------- /demo/扫描手机SD卡文件/ScanFile/bin/classes/com/example/scanfile/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/扫描手机SD卡文件/ScanFile/bin/classes/com/example/scanfile/R$layout.class -------------------------------------------------------------------------------- /demo/扫描手机SD卡文件/ScanFile/bin/classes/com/example/scanfile/R$menu.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/扫描手机SD卡文件/ScanFile/bin/classes/com/example/scanfile/R$menu.class -------------------------------------------------------------------------------- /demo/扫描手机SD卡文件/ScanFile/bin/classes/com/example/scanfile/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/扫描手机SD卡文件/ScanFile/bin/classes/com/example/scanfile/R$string.class -------------------------------------------------------------------------------- /demo/扫描手机SD卡文件/ScanFile/bin/classes/com/example/scanfile/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/扫描手机SD卡文件/ScanFile/bin/classes/com/example/scanfile/R$style.class -------------------------------------------------------------------------------- /demo/扫描手机SD卡文件/ScanFile/bin/classes/com/example/scanfile/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/扫描手机SD卡文件/ScanFile/bin/classes/com/example/scanfile/R$styleable.class -------------------------------------------------------------------------------- /demo/扫描手机SD卡文件/ScanFile/bin/classes/com/example/scanfile/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/扫描手机SD卡文件/ScanFile/bin/classes/com/example/scanfile/R.class -------------------------------------------------------------------------------- /demo/扫描手机SD卡文件/ScanFile/bin/dexedLibs/android-support-v4-43034a2ad0ba5c9b91469c71a4ef0a4e.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/扫描手机SD卡文件/ScanFile/bin/dexedLibs/android-support-v4-43034a2ad0ba5c9b91469c71a4ef0a4e.jar -------------------------------------------------------------------------------- /demo/扫描手机SD卡文件/ScanFile/bin/dexedLibs/android-support-v7-appcompat-a0cbf78850a3bd85503ba8dd57733116.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/扫描手机SD卡文件/ScanFile/bin/dexedLibs/android-support-v7-appcompat-a0cbf78850a3bd85503ba8dd57733116.jar -------------------------------------------------------------------------------- /demo/扫描手机SD卡文件/ScanFile/bin/dexedLibs/appcompat_v7-55017593bb929634de84e9a59478620f.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/扫描手机SD卡文件/ScanFile/bin/dexedLibs/appcompat_v7-55017593bb929634de84e9a59478620f.jar -------------------------------------------------------------------------------- /demo/扫描手机SD卡文件/ScanFile/bin/res/crunch/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/扫描手机SD卡文件/ScanFile/bin/res/crunch/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/扫描手机SD卡文件/ScanFile/bin/res/crunch/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/扫描手机SD卡文件/ScanFile/bin/res/crunch/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/扫描手机SD卡文件/ScanFile/bin/res/crunch/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/扫描手机SD卡文件/ScanFile/bin/res/crunch/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/扫描手机SD卡文件/ScanFile/bin/res/crunch/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/扫描手机SD卡文件/ScanFile/bin/res/crunch/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/扫描手机SD卡文件/ScanFile/bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/扫描手机SD卡文件/ScanFile/bin/resources.ap_ -------------------------------------------------------------------------------- /demo/扫描手机SD卡文件/ScanFile/gen/com/example/scanfile/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.example.scanfile; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /demo/扫描手机SD卡文件/ScanFile/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/扫描手机SD卡文件/ScanFile/ic_launcher-web.png -------------------------------------------------------------------------------- /demo/扫描手机SD卡文件/ScanFile/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/扫描手机SD卡文件/ScanFile/libs/android-support-v4.jar -------------------------------------------------------------------------------- /demo/扫描手机SD卡文件/ScanFile/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/扫描手机SD卡文件/ScanFile/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/扫描手机SD卡文件/ScanFile/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/扫描手机SD卡文件/ScanFile/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/扫描手机SD卡文件/ScanFile/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/扫描手机SD卡文件/ScanFile/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/扫描手机SD卡文件/ScanFile/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/扫描手机SD卡文件/ScanFile/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/扫描手机SD卡文件/ScanFile/res/layout/musicitme.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /demo/扫描手机SD卡文件/ScanFile/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16dp 5 | 16dp 6 | 7 | 8 | -------------------------------------------------------------------------------- /demo/扫描手机SD卡文件/ScanFile/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ScanFile 5 | Hello world! 6 | Settings 7 | 8 | 9 | -------------------------------------------------------------------------------- /demo/扫描手机SD卡文件/ScanFile/src/com/example/scanfile/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/扫描手机SD卡文件/ScanFile/src/com/example/scanfile/MainActivity.java -------------------------------------------------------------------------------- /demo/简易音乐播放器/musicPlayer/musicPlayer/.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 | -------------------------------------------------------------------------------- /demo/简易音乐播放器/musicPlayer/musicPlayer/bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/简易音乐播放器/musicPlayer/musicPlayer/bin/classes.dex -------------------------------------------------------------------------------- /demo/简易音乐播放器/musicPlayer/musicPlayer/bin/classes/com/terry/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/简易音乐播放器/musicPlayer/musicPlayer/bin/classes/com/terry/BuildConfig.class -------------------------------------------------------------------------------- /demo/简易音乐播放器/musicPlayer/musicPlayer/bin/classes/com/terry/MusicFilter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/简易音乐播放器/musicPlayer/musicPlayer/bin/classes/com/terry/MusicFilter.class -------------------------------------------------------------------------------- /demo/简易音乐播放器/musicPlayer/musicPlayer/bin/classes/com/terry/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/简易音乐播放器/musicPlayer/musicPlayer/bin/classes/com/terry/R$attr.class -------------------------------------------------------------------------------- /demo/简易音乐播放器/musicPlayer/musicPlayer/bin/classes/com/terry/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/简易音乐播放器/musicPlayer/musicPlayer/bin/classes/com/terry/R$drawable.class -------------------------------------------------------------------------------- /demo/简易音乐播放器/musicPlayer/musicPlayer/bin/classes/com/terry/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/简易音乐播放器/musicPlayer/musicPlayer/bin/classes/com/terry/R$id.class -------------------------------------------------------------------------------- /demo/简易音乐播放器/musicPlayer/musicPlayer/bin/classes/com/terry/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/简易音乐播放器/musicPlayer/musicPlayer/bin/classes/com/terry/R$layout.class -------------------------------------------------------------------------------- /demo/简易音乐播放器/musicPlayer/musicPlayer/bin/classes/com/terry/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/简易音乐播放器/musicPlayer/musicPlayer/bin/classes/com/terry/R$string.class -------------------------------------------------------------------------------- /demo/简易音乐播放器/musicPlayer/musicPlayer/bin/classes/com/terry/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/简易音乐播放器/musicPlayer/musicPlayer/bin/classes/com/terry/R.class -------------------------------------------------------------------------------- /demo/简易音乐播放器/musicPlayer/musicPlayer/bin/classes/com/terry/musicActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/简易音乐播放器/musicPlayer/musicPlayer/bin/classes/com/terry/musicActivity$1.class -------------------------------------------------------------------------------- /demo/简易音乐播放器/musicPlayer/musicPlayer/bin/classes/com/terry/musicActivity$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/简易音乐播放器/musicPlayer/musicPlayer/bin/classes/com/terry/musicActivity$2.class -------------------------------------------------------------------------------- /demo/简易音乐播放器/musicPlayer/musicPlayer/bin/classes/com/terry/musicActivity$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/简易音乐播放器/musicPlayer/musicPlayer/bin/classes/com/terry/musicActivity$3.class -------------------------------------------------------------------------------- /demo/简易音乐播放器/musicPlayer/musicPlayer/bin/classes/com/terry/musicActivity$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/简易音乐播放器/musicPlayer/musicPlayer/bin/classes/com/terry/musicActivity$4.class -------------------------------------------------------------------------------- /demo/简易音乐播放器/musicPlayer/musicPlayer/bin/classes/com/terry/musicActivity$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/简易音乐播放器/musicPlayer/musicPlayer/bin/classes/com/terry/musicActivity$5.class -------------------------------------------------------------------------------- /demo/简易音乐播放器/musicPlayer/musicPlayer/bin/classes/com/terry/musicActivity$6.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/简易音乐播放器/musicPlayer/musicPlayer/bin/classes/com/terry/musicActivity$6.class -------------------------------------------------------------------------------- /demo/简易音乐播放器/musicPlayer/musicPlayer/bin/classes/com/terry/musicActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/简易音乐播放器/musicPlayer/musicPlayer/bin/classes/com/terry/musicActivity.class -------------------------------------------------------------------------------- /demo/简易音乐播放器/musicPlayer/musicPlayer/bin/classes/com/terry/viewHolder.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/简易音乐播放器/musicPlayer/musicPlayer/bin/classes/com/terry/viewHolder.class -------------------------------------------------------------------------------- /demo/简易音乐播放器/musicPlayer/musicPlayer/bin/musicPlayer.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/简易音乐播放器/musicPlayer/musicPlayer/bin/musicPlayer.apk -------------------------------------------------------------------------------- /demo/简易音乐播放器/musicPlayer/musicPlayer/bin/res/crunch/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/简易音乐播放器/musicPlayer/musicPlayer/bin/res/crunch/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /demo/简易音乐播放器/musicPlayer/musicPlayer/bin/res/crunch/drawable-hdpi/last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/简易音乐播放器/musicPlayer/musicPlayer/bin/res/crunch/drawable-hdpi/last.png -------------------------------------------------------------------------------- /demo/简易音乐播放器/musicPlayer/musicPlayer/bin/res/crunch/drawable-hdpi/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/简易音乐播放器/musicPlayer/musicPlayer/bin/res/crunch/drawable-hdpi/next.png -------------------------------------------------------------------------------- /demo/简易音乐播放器/musicPlayer/musicPlayer/bin/res/crunch/drawable-hdpi/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/简易音乐播放器/musicPlayer/musicPlayer/bin/res/crunch/drawable-hdpi/pause.png -------------------------------------------------------------------------------- /demo/简易音乐播放器/musicPlayer/musicPlayer/bin/res/crunch/drawable-hdpi/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/简易音乐播放器/musicPlayer/musicPlayer/bin/res/crunch/drawable-hdpi/start.png -------------------------------------------------------------------------------- /demo/简易音乐播放器/musicPlayer/musicPlayer/bin/res/crunch/drawable-hdpi/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/简易音乐播放器/musicPlayer/musicPlayer/bin/res/crunch/drawable-hdpi/stop.png -------------------------------------------------------------------------------- /demo/简易音乐播放器/musicPlayer/musicPlayer/bin/res/crunch/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/简易音乐播放器/musicPlayer/musicPlayer/bin/res/crunch/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /demo/简易音乐播放器/musicPlayer/musicPlayer/bin/res/crunch/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/简易音乐播放器/musicPlayer/musicPlayer/bin/res/crunch/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /demo/简易音乐播放器/musicPlayer/musicPlayer/bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/简易音乐播放器/musicPlayer/musicPlayer/bin/resources.ap_ -------------------------------------------------------------------------------- /demo/简易音乐播放器/musicPlayer/musicPlayer/gen/com/terry/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.terry; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /demo/简易音乐播放器/musicPlayer/musicPlayer/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/简易音乐播放器/musicPlayer/musicPlayer/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /demo/简易音乐播放器/musicPlayer/musicPlayer/res/drawable-hdpi/last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/简易音乐播放器/musicPlayer/musicPlayer/res/drawable-hdpi/last.png -------------------------------------------------------------------------------- /demo/简易音乐播放器/musicPlayer/musicPlayer/res/drawable-hdpi/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/简易音乐播放器/musicPlayer/musicPlayer/res/drawable-hdpi/next.png -------------------------------------------------------------------------------- /demo/简易音乐播放器/musicPlayer/musicPlayer/res/drawable-hdpi/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/简易音乐播放器/musicPlayer/musicPlayer/res/drawable-hdpi/pause.png -------------------------------------------------------------------------------- /demo/简易音乐播放器/musicPlayer/musicPlayer/res/drawable-hdpi/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/简易音乐播放器/musicPlayer/musicPlayer/res/drawable-hdpi/start.png -------------------------------------------------------------------------------- /demo/简易音乐播放器/musicPlayer/musicPlayer/res/drawable-hdpi/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/简易音乐播放器/musicPlayer/musicPlayer/res/drawable-hdpi/stop.png -------------------------------------------------------------------------------- /demo/简易音乐播放器/musicPlayer/musicPlayer/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/简易音乐播放器/musicPlayer/musicPlayer/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /demo/简易音乐播放器/musicPlayer/musicPlayer/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/简易音乐播放器/musicPlayer/musicPlayer/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /demo/简易音乐播放器/musicPlayer/musicPlayer/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Hello World, musicActivity! 4 | 音乐播放器 5 | 6 | -------------------------------------------------------------------------------- /demo/简易音乐播放器/musicPlayer/musicPlayer/src/com/terry/musicActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/简易音乐播放器/musicPlayer/musicPlayer/src/com/terry/musicActivity.java -------------------------------------------------------------------------------- /demo/采用UDP广播扫描Demo(采用Service)/SendUDPBroadcastTest/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//src/com/example/sendudpbroadcasttest/MainActivity.java=UTF-8 3 | -------------------------------------------------------------------------------- /demo/采用UDP广播扫描Demo(采用Service)/SendUDPBroadcastTest/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/采用UDP广播扫描Demo(采用Service)/SendUDPBroadcastTest/ic_launcher-web.png -------------------------------------------------------------------------------- /demo/采用UDP广播扫描Demo(采用Service)/SendUDPBroadcastTest/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/采用UDP广播扫描Demo(采用Service)/SendUDPBroadcastTest/libs/android-support-v4.jar -------------------------------------------------------------------------------- /demo/采用UDP广播扫描Demo(采用Service)/SendUDPBroadcastTest/res/drawable-hdpi/ic_action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/采用UDP广播扫描Demo(采用Service)/SendUDPBroadcastTest/res/drawable-hdpi/ic_action_search.png -------------------------------------------------------------------------------- /demo/采用UDP广播扫描Demo(采用Service)/SendUDPBroadcastTest/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/采用UDP广播扫描Demo(采用Service)/SendUDPBroadcastTest/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/采用UDP广播扫描Demo(采用Service)/SendUDPBroadcastTest/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/采用UDP广播扫描Demo(采用Service)/SendUDPBroadcastTest/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/采用UDP广播扫描Demo(采用Service)/SendUDPBroadcastTest/res/drawable-mdpi/ic_action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/采用UDP广播扫描Demo(采用Service)/SendUDPBroadcastTest/res/drawable-mdpi/ic_action_search.png -------------------------------------------------------------------------------- /demo/采用UDP广播扫描Demo(采用Service)/SendUDPBroadcastTest/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/采用UDP广播扫描Demo(采用Service)/SendUDPBroadcastTest/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/采用UDP广播扫描Demo(采用Service)/SendUDPBroadcastTest/res/drawable-xhdpi/ic_action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/采用UDP广播扫描Demo(采用Service)/SendUDPBroadcastTest/res/drawable-xhdpi/ic_action_search.png -------------------------------------------------------------------------------- /demo/采用UDP广播扫描Demo(采用Service)/SendUDPBroadcastTest/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just1/Android-LAN-Player/d0272df972d1c17692fb03bcee76cf5cabf6bbea/demo/采用UDP广播扫描Demo(采用Service)/SendUDPBroadcastTest/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/采用UDP广播扫描Demo(采用Service)/SendUDPBroadcastTest/res/menu/activity_main.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /demo/采用UDP广播扫描Demo(采用Service)/SendUDPBroadcastTest/res/values-large/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8dp 4 | 16dp 5 | 16dp 6 | 7 | -------------------------------------------------------------------------------- /demo/采用UDP广播扫描Demo(采用Service)/SendUDPBroadcastTest/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8dp 4 | 8dp 5 | 16dp 6 | 7 | -------------------------------------------------------------------------------- /demo/采用UDP广播扫描Demo(采用Service)/SendUDPBroadcastTest/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |