├── .classpath ├── .project ├── AndroidManifest.xml ├── README.md ├── gen └── com │ ├── ab │ └── R.java │ ├── yixia │ └── zi │ │ └── R.java │ └── yunbo │ └── myyunbo │ ├── BuildConfig.java │ ├── Manifest.java │ └── R.java ├── ic_launcher-web.png ├── lint.xml ├── proguard-project.txt ├── project.properties ├── res ├── drawable-hdpi │ ├── avi.png │ ├── back.png │ ├── bdy.jpg │ ├── bg_custom_dialog_with_btns.9.png │ ├── blue_bg.png │ ├── blue_loading.png │ ├── btn_blue_f.9.png │ ├── btn_blue_n.9.png │ ├── copy.png │ ├── dialog_left_button_bg_normal.9.png │ ├── dialog_left_button_bg_pressed.9.png │ ├── dialog_one_button_bg_normal.9.png │ ├── dialog_one_button_bg_pressed.9.png │ ├── dialog_right_button_bg_normal.9.png │ ├── dialog_right_button_bg_pressed.9.png │ ├── down.png │ ├── download_ico.png │ ├── flv.png │ ├── history.png │ ├── home1.png │ ├── horseshoe_magnet.png │ ├── ic_launcher.png │ ├── image_empty.png │ ├── image_error.png │ ├── image_loading.png │ ├── image_no.png │ ├── indicator_expanded.9.png │ ├── indicator_unexpanded.9.png │ ├── launcher.jpg │ ├── like.png │ ├── list_divider.9.png │ ├── list_top.png │ ├── magnet.png │ ├── mkv.png │ ├── mov.png │ ├── movie.png │ ├── mp4.png │ ├── pause.png │ ├── play.png │ ├── progress_loading2.png │ ├── qqxf.jpg │ ├── random.png │ ├── rm.png │ ├── s001_37.png │ ├── search.png │ ├── search_tool.png │ ├── speaker.png │ ├── stop.png │ ├── thumb_drawable.png │ ├── thunder.png │ ├── up.png │ ├── video_brightness_bg.png │ ├── video_num_bg.png │ ├── video_num_front.png │ ├── video_volumn_bg.png │ ├── vitamio.jpg │ ├── wma.png │ ├── wmp.png │ ├── wmv.png │ └── yunplay.jpg ├── drawable-mdpi │ ├── down_delete.png │ ├── down_install.png │ ├── down_load.png │ ├── down_pause.png │ ├── ic_launcher.png │ ├── progressbar_indeterminate1.png │ ├── progressbar_indeterminate2.png │ └── progressbar_indeterminate3.png ├── drawable-xhdpi │ ├── ic_launcher.png │ ├── mediacontroller_pause.png │ ├── mediacontroller_play.png │ ├── scrubber_control_disabled_holo.png │ ├── scrubber_control_focused_holo.png │ ├── scrubber_control_normal_holo.png │ ├── scrubber_control_pressed_holo.png │ ├── scrubber_primary_holo.9.png │ ├── scrubber_secondary_holo.9.png │ └── scrubber_track_holo_dark.9.png ├── drawable-xxhdpi │ └── ic_launcher.png ├── drawable │ ├── button_selector_blue.xml │ ├── dialog_left_button_bg.xml │ ├── dialog_one_button_bg.xml │ ├── dialog_right_button_bg.xml │ ├── expander_group.xml │ ├── loading2.xml │ ├── mediacontroller_button.xml │ ├── progblue.xml │ ├── progress_circular.xml │ ├── progress_horizontal.xml │ ├── progress_indeterminate_horizontal.xml │ ├── progress_indeterminate_loading.xml │ ├── progress_loading.xml │ ├── scrubber_control_selector_holo.xml │ ├── scrubber_progress_horizontal_holo_dark.xml │ └── seekbar_style.xml ├── layout │ ├── activity_btdy.xml │ ├── activity_caopoo.xml │ ├── activity_cili.xml │ ├── activity_ed2k_ss.xml │ ├── activity_film.xml │ ├── activity_filmmain.xml │ ├── activity_history.xml │ ├── activity_home.xml │ ├── activity_lanuny.xml │ ├── activity_main.xml │ ├── activity_meinv.xml │ ├── activity_mp4ba.xml │ ├── activity_new_movie.xml │ ├── activity_nvyou.xml │ ├── activity_play.xml │ ├── activity_play_url.xml │ ├── activity_search.xml │ ├── activity_select_player.xml │ ├── activity_sex8.xml │ ├── activity_taotu.xml │ ├── activity_tvlive.xml │ ├── activity_web.xml │ ├── activity_xiaodianying.xml │ ├── activity_zhainandaodetail.xml │ ├── activity_zhainandaomain.xml │ ├── activity_zxfl.xml │ ├── dia_list.xml │ ├── dia_list_nowb.xml │ ├── dia_list_text.xml │ ├── dia_list_text_pro.xml │ ├── dia_list_text_pro_gri.xml │ ├── dialog_edit_button.xml │ ├── dialog_edit_button1.xml │ ├── dialog_image_button.xml │ ├── dialog_list_item_1.xml │ ├── dialog_main.xml │ ├── dialog_text_button.xml │ ├── dialog_web_button.xml │ ├── down_items.xml │ ├── down_list.xml │ ├── down_title.xml │ ├── his_item.xml │ ├── item_cili.xml │ ├── item_film.xml │ ├── item_film1.xml │ ├── item_list.xml │ ├── item_list1.xml │ ├── item_list1d.xml │ ├── item_list_120.xml │ ├── item_list_200.xml │ ├── item_list_max.xml │ ├── item_meinv.xml │ ├── item_sex8.xml │ ├── item_xdy.xml │ ├── mediacontroller.xml │ ├── sear_item.xml │ ├── text_item.xml │ ├── tv_item.xml │ └── videobuffer.xml ├── values-sw600dp │ └── dimens.xml ├── values-sw720dp-land │ └── dimens.xml ├── values-v11 │ └── styles.xml ├── values-v14 │ └── styles.xml └── values │ ├── colors.xml │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml └── src └── com └── yunbo ├── control ├── DyUtil.java ├── ENDEUtil.java ├── FanHaoUtil.java ├── HistoryUtil.java ├── RandomUtil.java ├── SearchUtil.java ├── ToolUtil.java ├── TvUtil.java ├── UpUtil.java ├── Wu115Util.java └── Yy97Util.java ├── frame ├── CiliAdapter.java ├── DoubleScaleImageView.java ├── KeywordsView.java ├── MarqueeTextView.java └── MyExpandableListAdapter.java ├── mode ├── Data.java ├── Dydata.java ├── Dyres.java ├── Film.java ├── Hilight.java ├── History.java ├── Iilpaylist.java ├── Iilpayobj.java ├── Iiplaydata.java ├── Movie.java ├── Name.java ├── NameEnc.java ├── Node.java ├── Nvyou.java ├── PageContent.java ├── QQDatum.java ├── QQFenXiang.java ├── Res.java ├── Resdata.java ├── Resp.java ├── Subfile_List.java ├── Urldata.java ├── Video.java ├── XFData.java ├── XFPlay.java ├── XFplayurl.java ├── XunleiItem.java ├── Yayabt.java └── Yayaobj.java └── myyunbo ├── AddBaiduYunActivity.java ├── BadadyActivity.java ├── BtdyttActivity.java ├── CZhiActivity.java ├── CaoPooActivity.java ├── CiLiActivity.java ├── DianYingShenMainQiActivity.java ├── DianYingShenQiActivity.java ├── DownListActivity.java ├── Ed2kSSActivity.java ├── FilmActivity.java ├── FilmMainActivity.java ├── FulibaActivity.java ├── HistoryActivity.java ├── HomeActivity.java ├── LanunyActivity.java ├── LeDsjActivity.java ├── LongFeng4Activity.java ├── MainActivity.java ├── MeiNvActivity.java ├── Mp4BaActivity.java ├── NewMovieActivity.java ├── NvYouActivity.java ├── NvyouDetailActivity.java ├── PlayActivity.java ├── PlayUrlActivity.java ├── SearchActivity.java ├── SelectPlayerActivity.java ├── Sex8Activity.java ├── TaoTuActivity.java ├── TvLiveActivity.java ├── TwoAvActivity.java ├── VideoViewBuffer.java ├── WebActivity.java ├── XiaoDianYingActivity.java ├── Yy97Activity.java ├── ZhainandaoDetailActivity.java ├── ZhainandaoMainActivity.java └── ZxfuliActivity.java /.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | MyYunbo 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | qq浏览器进入以下网址观看
2 | (2018年2月27日更新)
3 | http://javccdd.net
4 | http://dio7777.net
5 | http://www.j18ib.com
6 | http://www.111avtb.com
7 | http://www.qyl099.com
8 | http://www.7mav1.com
9 | http://www.sexx106.com
10 | http://99dd2.com
11 | http://hd.caonnn.net
-------------------------------------------------------------------------------- /gen/com/ab/R.java: -------------------------------------------------------------------------------- 1 | /* AUTO-GENERATED FILE. DO NOT MODIFY. 2 | * 3 | * This class was automatically generated by the 4 | * aapt tool from the resource data it found. It 5 | * should not be modified by hand. 6 | */ 7 | package com.ab; 8 | 9 | public final class R { 10 | public static final class drawable { 11 | public static final int ic_launcher = 0x7f02001e; 12 | } 13 | public static final class string { 14 | public static final int app_name = 0x7f05000d; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /gen/com/yunbo/myyunbo/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.yunbo.myyunbo; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /gen/com/yunbo/myyunbo/Manifest.java: -------------------------------------------------------------------------------- 1 | /* AUTO-GENERATED FILE. DO NOT MODIFY. 2 | * 3 | * This class was automatically generated by the 4 | * aapt tool from the resource data it found. It 5 | * should not be modified by hand. 6 | */ 7 | 8 | package com.yunbo.myyunbo; 9 | 10 | public final class Manifest { 11 | public static final class permission { 12 | public static final String INTERNET="android.permission.INTERNET"; 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/ic_launcher-web.png -------------------------------------------------------------------------------- /lint.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-17 15 | android.library.reference.1=..\\..\\..\\java\\andbase-master1.6\\AndBase 16 | android.library.reference.2=..\\InitActivity 17 | -------------------------------------------------------------------------------- /res/drawable-hdpi/avi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-hdpi/avi.png -------------------------------------------------------------------------------- /res/drawable-hdpi/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-hdpi/back.png -------------------------------------------------------------------------------- /res/drawable-hdpi/bdy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-hdpi/bdy.jpg -------------------------------------------------------------------------------- /res/drawable-hdpi/bg_custom_dialog_with_btns.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-hdpi/bg_custom_dialog_with_btns.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/blue_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-hdpi/blue_bg.png -------------------------------------------------------------------------------- /res/drawable-hdpi/blue_loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-hdpi/blue_loading.png -------------------------------------------------------------------------------- /res/drawable-hdpi/btn_blue_f.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-hdpi/btn_blue_f.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/btn_blue_n.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-hdpi/btn_blue_n.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-hdpi/copy.png -------------------------------------------------------------------------------- /res/drawable-hdpi/dialog_left_button_bg_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-hdpi/dialog_left_button_bg_normal.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/dialog_left_button_bg_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-hdpi/dialog_left_button_bg_pressed.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/dialog_one_button_bg_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-hdpi/dialog_one_button_bg_normal.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/dialog_one_button_bg_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-hdpi/dialog_one_button_bg_pressed.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/dialog_right_button_bg_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-hdpi/dialog_right_button_bg_normal.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/dialog_right_button_bg_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-hdpi/dialog_right_button_bg_pressed.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-hdpi/down.png -------------------------------------------------------------------------------- /res/drawable-hdpi/download_ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-hdpi/download_ico.png -------------------------------------------------------------------------------- /res/drawable-hdpi/flv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-hdpi/flv.png -------------------------------------------------------------------------------- /res/drawable-hdpi/history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-hdpi/history.png -------------------------------------------------------------------------------- /res/drawable-hdpi/home1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-hdpi/home1.png -------------------------------------------------------------------------------- /res/drawable-hdpi/horseshoe_magnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-hdpi/horseshoe_magnet.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-hdpi/image_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-hdpi/image_empty.png -------------------------------------------------------------------------------- /res/drawable-hdpi/image_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-hdpi/image_error.png -------------------------------------------------------------------------------- /res/drawable-hdpi/image_loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-hdpi/image_loading.png -------------------------------------------------------------------------------- /res/drawable-hdpi/image_no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-hdpi/image_no.png -------------------------------------------------------------------------------- /res/drawable-hdpi/indicator_expanded.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-hdpi/indicator_expanded.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/indicator_unexpanded.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-hdpi/indicator_unexpanded.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/launcher.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-hdpi/launcher.jpg -------------------------------------------------------------------------------- /res/drawable-hdpi/like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-hdpi/like.png -------------------------------------------------------------------------------- /res/drawable-hdpi/list_divider.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-hdpi/list_divider.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/list_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-hdpi/list_top.png -------------------------------------------------------------------------------- /res/drawable-hdpi/magnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-hdpi/magnet.png -------------------------------------------------------------------------------- /res/drawable-hdpi/mkv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-hdpi/mkv.png -------------------------------------------------------------------------------- /res/drawable-hdpi/mov.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-hdpi/mov.png -------------------------------------------------------------------------------- /res/drawable-hdpi/movie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-hdpi/movie.png -------------------------------------------------------------------------------- /res/drawable-hdpi/mp4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-hdpi/mp4.png -------------------------------------------------------------------------------- /res/drawable-hdpi/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-hdpi/pause.png -------------------------------------------------------------------------------- /res/drawable-hdpi/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-hdpi/play.png -------------------------------------------------------------------------------- /res/drawable-hdpi/progress_loading2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-hdpi/progress_loading2.png -------------------------------------------------------------------------------- /res/drawable-hdpi/qqxf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-hdpi/qqxf.jpg -------------------------------------------------------------------------------- /res/drawable-hdpi/random.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-hdpi/random.png -------------------------------------------------------------------------------- /res/drawable-hdpi/rm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-hdpi/rm.png -------------------------------------------------------------------------------- /res/drawable-hdpi/s001_37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-hdpi/s001_37.png -------------------------------------------------------------------------------- /res/drawable-hdpi/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-hdpi/search.png -------------------------------------------------------------------------------- /res/drawable-hdpi/search_tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-hdpi/search_tool.png -------------------------------------------------------------------------------- /res/drawable-hdpi/speaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-hdpi/speaker.png -------------------------------------------------------------------------------- /res/drawable-hdpi/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-hdpi/stop.png -------------------------------------------------------------------------------- /res/drawable-hdpi/thumb_drawable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-hdpi/thumb_drawable.png -------------------------------------------------------------------------------- /res/drawable-hdpi/thunder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-hdpi/thunder.png -------------------------------------------------------------------------------- /res/drawable-hdpi/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-hdpi/up.png -------------------------------------------------------------------------------- /res/drawable-hdpi/video_brightness_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-hdpi/video_brightness_bg.png -------------------------------------------------------------------------------- /res/drawable-hdpi/video_num_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-hdpi/video_num_bg.png -------------------------------------------------------------------------------- /res/drawable-hdpi/video_num_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-hdpi/video_num_front.png -------------------------------------------------------------------------------- /res/drawable-hdpi/video_volumn_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-hdpi/video_volumn_bg.png -------------------------------------------------------------------------------- /res/drawable-hdpi/vitamio.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-hdpi/vitamio.jpg -------------------------------------------------------------------------------- /res/drawable-hdpi/wma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-hdpi/wma.png -------------------------------------------------------------------------------- /res/drawable-hdpi/wmp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-hdpi/wmp.png -------------------------------------------------------------------------------- /res/drawable-hdpi/wmv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-hdpi/wmv.png -------------------------------------------------------------------------------- /res/drawable-hdpi/yunplay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-hdpi/yunplay.jpg -------------------------------------------------------------------------------- /res/drawable-mdpi/down_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-mdpi/down_delete.png -------------------------------------------------------------------------------- /res/drawable-mdpi/down_install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-mdpi/down_install.png -------------------------------------------------------------------------------- /res/drawable-mdpi/down_load.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-mdpi/down_load.png -------------------------------------------------------------------------------- /res/drawable-mdpi/down_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-mdpi/down_pause.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-mdpi/progressbar_indeterminate1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-mdpi/progressbar_indeterminate1.png -------------------------------------------------------------------------------- /res/drawable-mdpi/progressbar_indeterminate2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-mdpi/progressbar_indeterminate2.png -------------------------------------------------------------------------------- /res/drawable-mdpi/progressbar_indeterminate3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-mdpi/progressbar_indeterminate3.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/mediacontroller_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-xhdpi/mediacontroller_pause.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/mediacontroller_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-xhdpi/mediacontroller_play.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/scrubber_control_disabled_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-xhdpi/scrubber_control_disabled_holo.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/scrubber_control_focused_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-xhdpi/scrubber_control_focused_holo.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/scrubber_control_normal_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-xhdpi/scrubber_control_normal_holo.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/scrubber_control_pressed_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-xhdpi/scrubber_control_pressed_holo.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/scrubber_primary_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-xhdpi/scrubber_primary_holo.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/scrubber_secondary_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-xhdpi/scrubber_secondary_holo.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/scrubber_track_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-xhdpi/scrubber_track_holo_dark.9.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangxiaoli/yunbo/75a7ec39772af18ce9746691ddce56535bb43ef2/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable/button_selector_blue.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /res/drawable/dialog_left_button_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /res/drawable/dialog_one_button_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /res/drawable/dialog_right_button_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /res/drawable/expander_group.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /res/drawable/loading2.xml: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | -------------------------------------------------------------------------------- /res/drawable/mediacontroller_button.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /res/drawable/progblue.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /res/drawable/progress_circular.xml: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /res/drawable/progress_horizontal.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /res/drawable/progress_indeterminate_horizontal.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /res/drawable/progress_indeterminate_loading.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /res/drawable/progress_loading.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /res/drawable/scrubber_control_selector_holo.xml: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /res/drawable/scrubber_progress_horizontal_holo_dark.xml: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | 17 | 18 | 21 | 22 | 23 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /res/drawable/seekbar_style.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 45 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /res/layout/activity_btdy.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 11 | 12 | 17 | 18 | 26 | 34 | 35 | 36 | 37 | 40 |