├── .gitignore ├── LICENSE ├── README.md ├── app ├── .gitignore ├── app.iml ├── build.gradle ├── libs │ ├── ZBarDecoder.jar │ ├── arm64-v8a │ │ ├── libZBarDecoder.so │ │ └── libiconv.so │ ├── armeabi-v7a │ │ ├── libZBarDecoder.so │ │ └── libiconv.so │ ├── armeabi │ │ ├── libZBarDecoder.so │ │ ├── libbspatch.so │ │ └── libiconv.so │ ├── mips │ │ ├── libZBarDecoder.so │ │ └── libiconv.so │ ├── mips64 │ │ ├── libZBarDecoder.so │ │ └── libiconv.so │ ├── umeng-update-v2.6.0.1.jar │ ├── x86 │ │ ├── libZBarDecoder.so │ │ └── libiconv.so │ ├── x86_64 │ │ ├── libZBarDecoder.so │ │ └── libiconv.so │ └── zxing-4.7.3.jar ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── github │ │ └── obsessive │ │ └── simplifyreader │ │ └── ApplicationTest.java │ └── main │ ├── AndroidManifest.xml │ ├── assets │ ├── open_source.html │ └── project_description.html │ ├── java │ └── com │ │ └── github │ │ └── obsessive │ │ └── simplifyreader │ │ ├── SimplifyReaderApplication.java │ │ ├── api │ │ └── ApiConstants.java │ │ ├── bean │ │ ├── AboutListEntity.java │ │ ├── BaseEntity.java │ │ ├── ImagesListEntity.java │ │ ├── ImagesOwnerEntity.java │ │ ├── MusicsChannels.java │ │ ├── MusicsListEntity.java │ │ ├── NavigationEntity.java │ │ ├── ResponseImagesListEntity.java │ │ ├── ResponseMusicsListentity.java │ │ ├── ResponseVideosListEntity.java │ │ ├── VideosListEntity.java │ │ └── VideosListUserEntity.java │ │ ├── common │ │ ├── Constants.java │ │ ├── OnCommonPageSelectedListener.java │ │ └── PhoneCallReceiver.java │ │ ├── interactor │ │ ├── CommonContainerInteractor.java │ │ ├── CommonListInteractor.java │ │ ├── GetVideoUserInteractor.java │ │ ├── HomeInteractor.java │ │ ├── MusicsInteractor.java │ │ ├── SplashInteractor.java │ │ └── impl │ │ │ ├── GetVideoUserInteractorImpl.java │ │ │ ├── HomeInteractorImpl.java │ │ │ ├── ImagesContainerInteractorImpl.java │ │ │ ├── ImagesListInteractorImpl.java │ │ │ ├── MusicsInteracotrImpl.java │ │ │ ├── SplashInteractorImpl.java │ │ │ ├── VideosContainerInteractorImpl.java │ │ │ └── VideosListInteractorImpl.java │ │ ├── listeners │ │ ├── BaseMultiLoadedListener.java │ │ └── BaseSingleLoadedListener.java │ │ ├── player │ │ ├── MusicPlayMode.java │ │ ├── MusicPlayService.java │ │ ├── MusicPlayState.java │ │ └── MusicPlayer.java │ │ ├── presenter │ │ ├── ImagesListPresenter.java │ │ ├── MusicsPresenter.java │ │ ├── Presenter.java │ │ ├── VideosDetailPresenter.java │ │ ├── VideosListPresenter.java │ │ └── impl │ │ │ ├── HomePresenterImpl.java │ │ │ ├── ImagesContainerPresenterImpl.java │ │ │ ├── ImagesListPresenterImpl.java │ │ │ ├── MusicsPresenterImpl.java │ │ │ ├── SplashPresenterImpl.java │ │ │ ├── VideosContainerPresenterImpl.java │ │ │ ├── VideosDetailPresenterImpl.java │ │ │ └── VideosListPresenterImpl.java │ │ ├── ui │ │ ├── activity │ │ │ ├── AboutUsActivity.java │ │ │ ├── FeedBackActivity.java │ │ │ ├── HomeActivity.java │ │ │ ├── ImagesDetailActivity.java │ │ │ ├── PlayerActivity.java │ │ │ ├── SplashActivity.java │ │ │ ├── base │ │ │ │ ├── BaseActivity.java │ │ │ │ ├── BaseFragment.java │ │ │ │ └── BaseSwipeBackActivity.java │ │ │ ├── picker │ │ │ │ ├── CommonImagePickerDetailActivity.java │ │ │ │ └── CommonImagePickerListActivity.java │ │ │ └── qrcode │ │ │ │ ├── CaptureActivity.java │ │ │ │ ├── CaptureActivityHandler.java │ │ │ │ ├── ResultActivity.java │ │ │ │ ├── camera │ │ │ │ ├── AutoFocusManager.java │ │ │ │ ├── CameraConfigurationManager.java │ │ │ │ ├── CameraConfigurationUtils.java │ │ │ │ ├── CameraManager.java │ │ │ │ ├── PreviewCallback.java │ │ │ │ └── open │ │ │ │ │ └── OpenCameraInterface.java │ │ │ │ ├── decode │ │ │ │ ├── DecodeFormatManager.java │ │ │ │ ├── DecodeHandler.java │ │ │ │ ├── DecodeThread.java │ │ │ │ └── DecodeUtils.java │ │ │ │ └── utils │ │ │ │ ├── BeepManager.java │ │ │ │ ├── Constants.java │ │ │ │ └── InactivityTimer.java │ │ ├── adpter │ │ │ ├── ImagesContainerPagerAdapter.java │ │ │ ├── VPFragmentAdapter.java │ │ │ └── VideosContainerPagerAdapter.java │ │ └── fragment │ │ │ ├── ImagesContainerFragment.java │ │ │ ├── ImagesListFragment.java │ │ │ ├── MusicsFragment.java │ │ │ ├── VideosContainerFragment.java │ │ │ └── VideosListFragment.java │ │ ├── utils │ │ ├── ImageLoaderHelper.java │ │ ├── UriHelper.java │ │ └── VolleyHelper.java │ │ ├── view │ │ ├── CommonContainerView.java │ │ ├── HomeView.java │ │ ├── ImagePickerListView.java │ │ ├── ImagesListView.java │ │ ├── MusicsView.java │ │ ├── SplashView.java │ │ ├── VideosDetailView.java │ │ ├── VideosListView.java │ │ └── base │ │ │ └── BaseView.java │ │ └── widgets │ │ ├── LoadMoreListView.java │ │ ├── PLALoadMoreListView.java │ │ └── PlayerDiscView.java │ └── res │ ├── anim │ ├── alpha_in.xml │ ├── alpha_out.xml │ └── splash.xml │ ├── drawable-hdpi │ ├── umeng_update_btn_check_off_focused_holo_light.png │ ├── umeng_update_btn_check_off_holo_light.png │ ├── umeng_update_btn_check_off_pressed_holo_light.png │ ├── umeng_update_btn_check_on_focused_holo_light.png │ ├── umeng_update_btn_check_on_holo_light.png │ ├── umeng_update_btn_check_on_pressed_holo_light.png │ ├── umeng_update_close_bg_normal.png │ └── umeng_update_close_bg_tap.png │ ├── drawable-nodpi │ └── banner.png │ ├── drawable-xhdpi │ ├── afternoon.png │ ├── arrow_right.png │ ├── barcode_checked.png │ ├── barcode_normal.png │ ├── barcode_pressed.png │ ├── barcode_selected.png │ ├── btn_next_play_normal.png │ ├── btn_next_play_pressed.png │ ├── btn_pause_normal.png │ ├── btn_pause_pressed.png │ ├── btn_play_normal.png │ ├── btn_play_pressed.png │ ├── btn_prev_play_normal.png │ ├── btn_prev_play_pressed.png │ ├── common_list_divider.png │ ├── disc.png │ ├── disc_base.png │ ├── folder.png │ ├── history.png │ ├── ic_action_scan.png │ ├── ic_avatar.png │ ├── ic_back.png │ ├── ic_comment.png │ ├── ic_favor.png │ ├── ic_music.png │ ├── ic_news.png │ ├── ic_picture.png │ ├── ic_video.png │ ├── ic_video_card_play.png │ ├── ic_view_count.png │ ├── light_checked.png │ ├── light_normal.png │ ├── light_pressed.png │ ├── light_selected.png │ ├── logo.png │ ├── morning.png │ ├── night.png │ ├── pay_qrcode.png │ ├── player_bg.jpg │ ├── qrcode_checked.png │ ├── qrcode_normal.png │ ├── qrcode_pressed.png │ ├── qrcode_selected.png │ ├── scan_container.9.png │ ├── scan_mask.png │ ├── stick.png │ └── thumb.png │ ├── drawable │ ├── barcode_selector.xml │ ├── btn_next_play_selector.xml │ ├── btn_pause_selector.xml │ ├── btn_play_selector.xml │ ├── btn_prev_play_selector.xml │ ├── common_list_item_bg_selector.xml │ ├── light_selector.xml │ ├── player_seekbar.xml │ ├── qrcode_selector.xml │ ├── result_content_bg.xml │ ├── tb_munion_icon.xml │ ├── tb_munion_item_selector.xml │ ├── umeng_common_gradient_green.xml │ ├── umeng_common_gradient_orange.xml │ ├── umeng_common_gradient_red.xml │ ├── umeng_update_button_cancel_bg_focused.xml │ ├── umeng_update_button_cancel_bg_normal.xml │ ├── umeng_update_button_cancel_bg_selector.xml │ ├── umeng_update_button_cancel_bg_tap.xml │ ├── umeng_update_button_check_selector.xml │ ├── umeng_update_button_close_bg_selector.xml │ ├── umeng_update_button_ok_bg_focused.xml │ ├── umeng_update_button_ok_bg_normal.xml │ ├── umeng_update_button_ok_bg_selector.xml │ ├── umeng_update_button_ok_bg_tap.xml │ ├── umeng_update_dialog_bg.xml │ ├── umeng_update_title_bg.xml │ └── umeng_update_wifi_disable.png │ ├── layout-v9 │ └── umeng_common_download_notification.xml │ ├── layout │ ├── activity_about_us.xml │ ├── activity_capture.xml │ ├── activity_common_image_picker_detail.xml │ ├── activity_common_image_picker_list.xml │ ├── activity_home.xml │ ├── activity_images_detail.xml │ ├── activity_news_image_gallery.xml │ ├── activity_player.xml │ ├── activity_result.xml │ ├── activity_splash.xml │ ├── common_fragment_placeholder.xml │ ├── common_load_more_footer.xml │ ├── common_swiperefresh_listview.xml │ ├── fragment_images.xml │ ├── fragment_images_list.xml │ ├── fragment_musics.xml │ ├── fragment_news.xml │ ├── fragment_news_list.xml │ ├── fragment_videos.xml │ ├── fragment_videos_list.xml │ ├── grid_item_common_image_picker.xml │ ├── list_item_about.xml │ ├── list_item_common_image_picker.xml │ ├── list_item_images_list.xml │ ├── list_item_navigation.xml │ ├── list_item_news_list.xml │ ├── list_item_news_list_slide.xml │ ├── list_item_videos_card.xml │ ├── news_list_header_view.xml │ ├── pager_item_gallery_image.xml │ ├── pager_item_news_list.xml │ ├── player_disc_view.xml │ ├── tb_munion_aditem.xml │ ├── tb_munion_adview.xml │ ├── umeng_common_download_notification.xml │ └── umeng_update_dialog.xml │ ├── menu │ └── menu_home.xml │ ├── mipmap-hdpi │ └── launcher.png │ ├── mipmap-mdpi │ └── launcher.png │ ├── mipmap-xhdpi │ └── launcher.png │ ├── mipmap-xxhdpi │ └── launcher.png │ ├── raw │ └── beep.ogg │ ├── values-hdpi │ └── dimens.xml │ ├── values-xhdpi-800x1280 │ └── dimens.xml │ ├── values-xhdpi │ └── dimens.xml │ ├── values-zh │ ├── arrays.xml │ ├── strings.xml │ ├── umeng_common_strings.xml │ └── umeng_update_string.xml │ └── values │ ├── arrays.xml │ ├── colors.xml │ ├── dimens.xml │ ├── errors.xml │ ├── fonts.xml │ ├── strings.xml │ ├── styles.xml │ ├── tb_munion_strings.xml │ ├── umeng_common_strings.xml │ └── umeng_update_string.xml ├── build.gradle ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── library ├── .gitignore ├── build.gradle ├── libs │ ├── armeabi-v7a │ │ └── libImageBlur.so │ ├── armeabi │ │ └── libImageBlur.so │ ├── mips │ │ └── libImageBlur.so │ └── x86 │ │ └── libImageBlur.so ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── github │ │ └── obsessive │ │ └── library │ │ └── ApplicationTest.java │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ ├── android │ │ └── volley │ │ │ ├── AuthFailureError.java │ │ │ ├── Cache.java │ │ │ ├── CacheDispatcher.java │ │ │ ├── DefaultRetryPolicy.java │ │ │ ├── ExecutorDelivery.java │ │ │ ├── Network.java │ │ │ ├── NetworkDispatcher.java │ │ │ ├── NetworkError.java │ │ │ ├── NetworkResponse.java │ │ │ ├── NoConnectionError.java │ │ │ ├── ParseError.java │ │ │ ├── Request.java │ │ │ ├── RequestQueue.java │ │ │ ├── Response.java │ │ │ ├── ResponseDelivery.java │ │ │ ├── RetryPolicy.java │ │ │ ├── ServerError.java │ │ │ ├── TimeoutError.java │ │ │ ├── VolleyError.java │ │ │ ├── VolleyLog.java │ │ │ └── toolbox │ │ │ ├── AndroidAuthenticator.java │ │ │ ├── Authenticator.java │ │ │ ├── BasicNetwork.java │ │ │ ├── ByteArrayPool.java │ │ │ ├── ClearCacheRequest.java │ │ │ ├── DiskBasedCache.java │ │ │ ├── GsonRequest.java │ │ │ ├── HttpClientStack.java │ │ │ ├── HttpHeaderParser.java │ │ │ ├── HttpStack.java │ │ │ ├── HurlStack.java │ │ │ ├── ImageLoader.java │ │ │ ├── ImageRequest.java │ │ │ ├── JsonArrayRequest.java │ │ │ ├── JsonObjectRequest.java │ │ │ ├── JsonRequest.java │ │ │ ├── NetworkImageView.java │ │ │ ├── NoCache.java │ │ │ ├── PoolingByteArrayOutputStream.java │ │ │ ├── RequestFuture.java │ │ │ ├── StringRequest.java │ │ │ └── Volley.java │ │ └── github │ │ └── obsessive │ │ └── library │ │ ├── adapter │ │ ├── LazyViewHolderCreator.java │ │ ├── ListViewDataAdapter.java │ │ ├── ListViewDataAdapterBase.java │ │ ├── MultiItemRowListAdapter.java │ │ ├── ViewHolderBase.java │ │ └── ViewHolderCreator.java │ │ ├── base │ │ ├── BaseAppCompatActivity.java │ │ ├── BaseAppManager.java │ │ ├── BaseFragmentActivity.java │ │ ├── BaseLazyFragment.java │ │ ├── BaseSwipeBackCompatActivity.java │ │ ├── BaseSwipeBackFragmentActivity.java │ │ └── BaseWebActivity.java │ │ ├── blur │ │ ├── ImageBlur.java │ │ └── ImageBlurManager.java │ │ ├── eventbus │ │ └── EventCenter.java │ │ ├── loading │ │ ├── IVaryViewHelper.java │ │ ├── VaryViewHelper.java │ │ ├── VaryViewHelperController.java │ │ └── VaryViewHelperX.java │ │ ├── netstatus │ │ ├── NetChangeObserver.java │ │ ├── NetStateReceiver.java │ │ └── NetUtils.java │ │ ├── picker │ │ ├── ImageBucket.java │ │ ├── ImageItem.java │ │ └── ImagePickerHelper.java │ │ ├── pla │ │ ├── PLAAbsListView.java │ │ ├── PLAAdapterView.java │ │ ├── PLAHeaderViewListAdapter.java │ │ ├── PLAImageView.java │ │ ├── PLAListView.java │ │ ├── PLAMultiColumnListView.java │ │ └── ParcelableSparseIntArray.java │ │ ├── progress │ │ ├── CircularProgressBar.java │ │ ├── CircularProgressBarUtils.java │ │ └── CircularProgressDrawable.java │ │ ├── smartlayout │ │ ├── SmartTabIndicationInterpolator.java │ │ ├── SmartTabLayout.java │ │ └── SmartTabStrip.java │ │ ├── swipeback │ │ ├── SwipeBackActivityBase.java │ │ ├── SwipeBackActivityHelper.java │ │ ├── SwipeBackLayout.java │ │ ├── Utils.java │ │ └── ViewDragHelper.java │ │ ├── utils │ │ ├── CommonUtils.java │ │ ├── DensityUtils.java │ │ ├── OkHttpStack.java │ │ ├── SmartBarUtils.java │ │ └── TLog.java │ │ └── widgets │ │ ├── BrowserLayout.java │ │ ├── HackyViewPager.java │ │ ├── SmoothImageView.java │ │ ├── SquareLayout.java │ │ ├── XSwipeRefreshLayout.java │ │ └── XViewPager.java │ └── res │ ├── anim │ ├── bottom_in.xml │ ├── bottom_out.xml │ ├── fade_in.xml │ ├── fade_out.xml │ ├── left_in.xml │ ├── left_out.xml │ ├── right_in.xml │ ├── right_out.xml │ ├── scale_in.xml │ ├── scale_out.xml │ ├── top_in.xml │ └── top_out.xml │ ├── drawable-xhdpi │ ├── btn_back_normal.png │ ├── btn_back_pressed.png │ ├── btn_export_normal.png │ ├── btn_export_pressed.png │ ├── btn_forward_normal.png │ ├── btn_forward_pressed.png │ ├── btn_refresh_normal.png │ ├── btn_refresh_pressed.png │ ├── ic_error.png │ └── ic_exception.png │ ├── drawable │ └── progress_bar_horizontal.xml │ ├── layout │ ├── activity_common_web.xml │ ├── browser_controller.xml │ ├── common_toolbar.xml │ ├── loading.xml │ ├── message.xml │ ├── progress_horizontal.xml │ └── swipeback_layout.xml │ ├── values-v21 │ └── styles.xml │ ├── values-zh │ └── strings.xml │ └── values │ ├── attrs.xml │ ├── colors.xml │ ├── defaults.xml │ ├── dimens.xml │ ├── drawables.xml │ ├── strings.xml │ └── styles.xml ├── library_youku ├── .gitignore ├── build.gradle ├── libs │ ├── CocoUnion_AD_SDK_Android_v4.1.2.jar │ ├── InMobi-4.0.4.jar │ ├── YoukuAnalytics.jar │ ├── armeabi-v7a │ │ ├── libMMANDKSignature.so │ │ ├── libaccstub.so │ │ ├── libalgms.so │ │ ├── libhash.so │ │ ├── libluajava.so │ │ ├── libmresearch.so │ │ ├── libp2p-jni.so │ │ ├── libstlport_shared.so │ │ ├── libthumbnailer.so │ │ ├── libuencrypt.so │ │ ├── libuffmpeg.so │ │ ├── libuplayer22.so │ │ ├── libuplayer23.so │ │ ├── libustagefright40.so │ │ ├── libustagefright43.so │ │ └── libwebpbackport.so │ ├── armeabi │ │ ├── libMMANDKSignature.so │ │ ├── libaccstub.so │ │ ├── libalgms.so │ │ ├── libhello-jni.so │ │ ├── libluajava.so │ │ ├── libmresearch.so │ │ └── libwebpbackport.so │ ├── baseproject.jar │ ├── comscore.jar │ ├── domob_android_sdk.jar │ ├── fastjson-1.1.24.jar │ ├── mAppTracker.jar │ ├── mips │ │ ├── libalgms.so │ │ └── libluajava.so │ ├── mobisageSDK.jar │ ├── playerBase.jar │ ├── tracking.jar │ └── xadsdk.jar ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── youku │ │ └── player │ │ └── ui │ │ └── ApplicationTest.java │ └── main │ ├── AndroidManifest.xml │ ├── aidl │ └── com │ │ └── youku │ │ └── service │ │ ├── acc │ │ └── IAcceleraterService.aidl │ │ └── download │ │ ├── DownloadInfo.aidl │ │ ├── ICallback.aidl │ │ └── IDownloadService.aidl │ ├── java │ └── com │ │ └── youku │ │ ├── player │ │ ├── ApiManager.java │ │ ├── NewSurfaceView.java │ │ ├── YoukuPlayerBaseApplication.java │ │ ├── adapter │ │ │ ├── CachePageAdapter.java │ │ │ ├── CachedListAdapter.java │ │ │ └── CachingListAdapter.java │ │ ├── apiservice │ │ │ ├── IAdjustTime.java │ │ │ ├── IEncryptVideoCallBack.java │ │ │ ├── IExceptionHandler.java │ │ │ └── OnPreparedCallback.java │ │ ├── base │ │ │ ├── BasePlayerActivity.java │ │ │ ├── IBasePlayActivity.java │ │ │ ├── YoukuBasePlayerActivity.java │ │ │ ├── YoukuPlayer.java │ │ │ └── YoukuPlayerView.java │ │ ├── fragment │ │ │ ├── CachedFragment.java │ │ │ ├── CachingFragment.java │ │ │ ├── FragmentLocalVideoList.java │ │ │ ├── LocalVideoAdapter.java │ │ │ └── YoukuFragment.java │ │ ├── plugin │ │ │ ├── LoginObserver.java │ │ │ ├── MediaPlayerObserver.java │ │ │ ├── PluginADPlay.java │ │ │ ├── PluginChangeQuality.java │ │ │ ├── PluginFullScreenPauseAD.java │ │ │ ├── PluginImageAD.java │ │ │ ├── PluginInvestigate.java │ │ │ ├── PluginManager.java │ │ │ ├── PluginOverlay.java │ │ │ ├── PluginPayTip.java │ │ │ └── PluginSimplePlayer.java │ │ ├── ui │ │ │ ├── interf │ │ │ │ └── IYoukuPlayer.java │ │ │ └── widget │ │ │ │ ├── FitScaleImageView.java │ │ │ │ ├── PlayerLoading.java │ │ │ │ ├── TudouEncryptDialog.java │ │ │ │ └── YoukuImageView.java │ │ └── util │ │ │ ├── DetailMessage.java │ │ │ └── DeviceOrientationHelper.java │ │ ├── service │ │ ├── acc │ │ │ ├── AccInitData.java │ │ │ ├── AcceleraterManager.java │ │ │ ├── AcceleraterService.java │ │ │ ├── AcceleraterServiceManager.java │ │ │ ├── AcceleraterStatus.java │ │ │ └── IAcceleraterService.aidl │ │ └── download │ │ │ ├── AsyncImageLoader.java │ │ │ ├── BaseDownload.java │ │ │ ├── Constants.java │ │ │ ├── DownloadInfo.aidl │ │ │ ├── DownloadInfo.java │ │ │ ├── DownloadListener.java │ │ │ ├── DownloadListenerImpl.java │ │ │ ├── DownloadLoginListener.java │ │ │ ├── DownloadManager.java │ │ │ ├── DownloadReceiver.java │ │ │ ├── DownloadService.java │ │ │ ├── DownloadServiceManager.java │ │ │ ├── DownloadUtils.java │ │ │ ├── FileCreateThread.java │ │ │ ├── FileDownloadThread.java │ │ │ ├── ICallback.aidl │ │ │ ├── IDownload.java │ │ │ ├── IDownloadService.aidl │ │ │ ├── LanguageBean.java │ │ │ ├── OnChangeListener.java │ │ │ ├── OnCreateDownloadListener.java │ │ │ └── SDCardManager.java │ │ └── ui │ │ └── activity │ │ ├── CacheActivity.java │ │ ├── CachePageActivity.java │ │ └── CacheSeriesActivity.java │ └── res │ ├── anim │ ├── paytip_right_in.xml │ ├── paytip_right_out.xml │ ├── yp_activity_close_enter.xml │ ├── yp_activity_close_exit.xml │ ├── yp_activity_open_enter.xml │ ├── yp_activity_open_exit.xml │ ├── yp_mobile_loading.xml │ ├── yp_slide_in_from_right.xml │ └── yp_slide_out_to_right.xml │ ├── drawable-hdpi │ ├── bg_play.jpg │ ├── bg_tudou_encrypt_dialog.9.png │ ├── btn_blue.9.png │ ├── btn_grey.9.png │ ├── close.png │ ├── deletecheck.png │ ├── detail_btn_downloading.png │ ├── detail_btn_downloading_selected.png │ ├── detail_btn_favorite.png │ ├── detail_btn_favorite_selected.png │ ├── detail_btn_index.png │ ├── detail_btn_index_selected.png │ ├── detail_btn_more.png │ ├── detail_btn_more_selected.png │ ├── detail_btn_share.png │ ├── detail_btn_share_selected.png │ ├── detail_btn_top.png │ ├── detail_btn_top_selected.png │ ├── detail_btn_tread.png │ ├── detail_btn_tread_selected.png │ ├── detail_play_btn_full_screen.png │ ├── detail_title_btn_more.png │ ├── download_checkbox.png │ ├── download_checkbox_selected.png │ ├── download_process.xml │ ├── downloading_folder_bg.png │ ├── editor_btn_all_delete.png │ ├── editor_btn_all_delete_selected.png │ ├── editor_btn_all_start.png │ ├── editor_btn_all_start_selected.png │ ├── editor_btn_complete.png │ ├── editor_btn_complete_selected.png │ ├── editor_btn_delete.png │ ├── editor_btn_edit.png │ ├── editor_btn_edit_selected.png │ ├── hotpoint.png │ ├── hotpoint_played.png │ ├── ic_launcher.png │ ├── ic_vv.png │ ├── icon_comment_amount_vertical.png │ ├── icon_dialog_arrow.png │ ├── icon_favorite_amount_vertical.png │ ├── icon_hd.png │ ├── icon_hd2.png │ ├── icon_play_amount_vertical.png │ ├── loading_frame1.png │ ├── loading_frame2.png │ ├── loading_frame3.png │ ├── loading_frame4.png │ ├── play_back.png │ ├── play_btn_clarity.png │ ├── play_btn_cycle.png │ ├── play_btn_downloading.png │ ├── play_btn_next_episode.png │ ├── play_btn_pause_big.png │ ├── play_btn_pause_big_detail.png │ ├── play_btn_pause_big_detail_down.png │ ├── play_btn_play_big.png │ ├── play_btn_play_big_detail.png │ ├── play_btn_play_big_detail_down.png │ ├── play_btn_shrink.png │ ├── play_btn_site.png │ ├── play_btn_volume.png │ ├── play_btn_volume_no.png │ ├── play_icon_search_volume.png │ ├── play_icon_switch.png │ ├── play_icon_switch_box_not_selected.png │ ├── play_icon_switch_box_selected.png │ ├── play_icon_switch_selected.png │ ├── play_icon_volume_ball.png │ ├── play_logo.png │ ├── play_over_next_episode.png │ ├── play_over_replay.png │ ├── play_site_icon_brightness_strong.png │ ├── play_site_icon_cancle.png │ ├── play_site_icon_cancle_selected.png │ ├── play_site_icon_selected.png │ ├── playback.png │ ├── player_canvas.9.png │ ├── player_pad__hotpoint_popup_1.png │ ├── player_pad_hotpoint_popup_bg_top.9.png │ ├── player_pad_hotpoint_popup_play.png │ ├── player_play_logo.png │ ├── player_poptop_close.png │ ├── player_star_empty.png │ ├── player_star_full.png │ ├── plugin_ad_gofull.png │ ├── plugin_ad_gosmall.png │ ├── plugin_ad_more.png │ ├── plugin_pause_ad_close.png │ ├── prompt_box.9.png │ ├── scan_default.jpg │ ├── setting_marquee_round_not_selected.png │ ├── setting_marquee_round_selected.png │ ├── small169.9.png │ ├── soku_layout_bottom_cover.9.png │ ├── star_empty.png │ ├── star_full.png │ ├── tab_indicator_divider.9.png │ ├── tab_indicator_pressed.9.png │ ├── tab_shadow.png │ ├── topbar_delete_gray_icon.png │ ├── topbar_delete_icon.png │ ├── topbar_edit_icon.png │ ├── uploading_btn_add.png │ ├── uploading_btn_add_selected.png │ ├── video_brightness_bg.png │ ├── video_num_bg.png │ ├── video_num_front.png │ ├── video_volumn_bg.png │ ├── yp_abs__list_focused_holo.9.png │ ├── yp_abs__list_pressed_holo_light.9.png │ ├── yp_detail_icon_schedule_ball.png │ ├── yp_investigate_arrow_right.png │ ├── yp_investigate_bg.9.png │ ├── yp_investigate_close.png │ └── yp_tudou_encrypt_input_box.9.png │ ├── drawable-mdpi │ ├── ic_launcher.png │ ├── yp_abs__list_focused_holo.9.png │ └── yp_abs__list_pressed_holo_light.9.png │ ├── drawable-xhdpi │ ├── ic_launcher.png │ ├── plugin_ad_gofull_tudou.png │ ├── plugin_ad_gofull_youku.png │ ├── plugin_ad_gosmall_tudou.png │ ├── plugin_ad_gosmall_youku.png │ ├── plugin_ad_more_youku.png │ ├── plugin_interactive_ad_gofull_youku.png │ ├── soku_layout_bottom_cover.9.png │ ├── tudou_details_big_play_icon.png │ ├── xadsdk_ad_close.png │ ├── xadsdk_ad_mini.png │ ├── xadsdk_browser_bkgrnd.png │ ├── xadsdk_browser_close.png │ ├── xadsdk_browser_leftarrow.png │ ├── xadsdk_browser_refresh.png │ ├── xadsdk_browser_rightarrow.png │ ├── xadsdk_browser_unleftarrow.png │ ├── xadsdk_browser_unrightarrow.png │ ├── yp_abs__list_focused_holo.9.png │ ├── yp_abs__list_pressed_holo_light.9.png │ ├── yp_back16_5.png │ ├── yp_back16_9.png │ ├── yp_player_poptop_close.png │ ├── yp_plugin_pause_ad_close.png │ ├── yp_webview_back_normal.png │ ├── yp_webview_back_pressed.png │ ├── yp_webview_refresh_normal.png │ └── yp_webview_refresh_pressed.png │ ├── drawable-xxhdpi │ └── ic_launcher.png │ ├── drawable │ ├── delete_border.xml │ ├── delete_border_white.xml │ ├── editor_btn_all_delete_selector.xml │ ├── editor_btn_all_start_selector.xml │ ├── editor_btn_complete_selector.xml │ ├── editor_btn_edit_selector.xml │ ├── punchbox_btn_close.png │ ├── punchbox_btn_close_l.png │ ├── punchbox_btn_close_lpad.png │ ├── punchbox_btn_close_pad.png │ ├── punchbox_btn_close_xpad.png │ ├── soku_layout_bottom_cover.9.png │ ├── tab_indicator_pressed_selected.9.png │ ├── tab_indicator_selected.9.png │ ├── tab_indicator_selector.xml │ ├── upload_btn_add_selector.xml │ ├── yp_dialog_radiontn_selector.xml │ ├── yp_plugin_fullscreen_ad_close_background.xml │ ├── yp_plugin_pause_ad_background.xml │ ├── yp_progress_holo_light.xml │ ├── yp_progressbarstyle.xml │ ├── yp_progressthumbstyle.xml │ ├── yp_webview_back.xml │ ├── yp_webview_back_background_youku.xml │ ├── yp_webview_refresh.xml │ ├── yp_youku_dialog_cancel.xml │ └── yp_youku_dialog_ok.xml │ ├── interpolator │ ├── yp_accelerate_quint.xml │ ├── yp_decelerate_cubic.xml │ └── yp_decelerate_quint.xml │ ├── layout │ ├── activity_cachepage.xml │ ├── activity_cachepage_space_progress.xml │ ├── activity_cachepage_title.xml │ ├── activity_cacheseries.xml │ ├── activity_cacheseries_fortitle.xml │ ├── fragment_cache.xml │ ├── grid_item_cache.xml │ ├── grid_item_cache_add.xml │ ├── grid_item_cache_folder.xml │ ├── notify.xml │ ├── yp_ad_activity_webview.xml │ ├── yp_detail_bottom_play_control.xml │ ├── yp_detail_loading_info_page.xml │ ├── yp_detail_play_end_page.xml │ ├── yp_detail_play_loading.xml │ ├── yp_detail_play_title.xml │ ├── yp_detail_retry.xml │ ├── yp_notify.xml │ ├── yp_player_ad_tudou.xml │ ├── yp_player_ad_youku.xml │ ├── yp_player_container.xml │ ├── yp_player_investigate_youku.xml │ ├── yp_player_view.xml │ ├── yp_player_youku_dialog_normal.xml │ ├── yp_playerview_plugin_detail_play_interact.xml │ ├── yp_plugin_detail_play_interact.xml │ ├── yp_plugin_image_ad.xml │ ├── yp_plugin_paytip.xml │ ├── yp_plugin_player_popup_ad.xml │ ├── yp_tudou_encrypt_dialog.xml │ ├── yp_webview_custom_title.xml │ ├── yp_youku_dialog_normal.xml │ ├── yp_youku_dialog_password_interact.xml │ └── yp_youku_dialog_picker.xml │ ├── raw │ ├── aes.lua │ └── mediaplayer_configuration.xml │ ├── values-sw600dp │ └── dimens.xml │ ├── values-sw720dp │ └── dimens.xml │ ├── values-v11 │ └── styles.xml │ ├── values-v14 │ └── styles.xml │ ├── values-xlarge │ └── dimens.xml │ └── values │ ├── attrs.xml │ ├── color.xml │ ├── dimens.xml │ ├── drawables.xml │ ├── strings.xml │ └── styles.xml └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- 1 | # Android generated 2 | bin 3 | gen 4 | lint.xml 5 | 6 | # IntelliJ IDEA 7 | .idea 8 | *.iml 9 | *.ipr 10 | *.iws 11 | classes 12 | gen-external-apklibs 13 | 14 | # Eclipse 15 | .project 16 | .classpath 17 | .settings 18 | .checkstyle 19 | 20 | # Gradle 21 | .gradle 22 | build 23 | out 24 | 25 | # Maven 26 | target 27 | release.properties 28 | pom.xml.* 29 | 30 | # Ant 31 | ant.properties 32 | local.properties 33 | proguard.cfg 34 | proguard-project.txt 35 | 36 | # Other 37 | .DS_Store 38 | dist 39 | tmp 40 | 41 | # Proguard folder generated by Eclipse 42 | proguard/ 43 | 44 | # Log Files 45 | *.log 46 | -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | # Android generated 2 | bin 3 | gen 4 | lint.xml 5 | 6 | # IntelliJ IDEA 7 | .idea 8 | *.iml 9 | *.ipr 10 | *.iws 11 | classes 12 | gen-external-apklibs 13 | 14 | # Eclipse 15 | .project 16 | .classpath 17 | .settings 18 | .checkstyle 19 | 20 | # Gradle 21 | .gradle 22 | build 23 | out 24 | 25 | # Maven 26 | target 27 | release.properties 28 | pom.xml.* 29 | 30 | # Ant 31 | ant.properties 32 | local.properties 33 | proguard.cfg 34 | proguard-project.txt 35 | 36 | # Other 37 | .DS_Store 38 | dist 39 | tmp -------------------------------------------------------------------------------- /app/libs/ZBarDecoder.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/libs/ZBarDecoder.jar -------------------------------------------------------------------------------- /app/libs/arm64-v8a/libZBarDecoder.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/libs/arm64-v8a/libZBarDecoder.so -------------------------------------------------------------------------------- /app/libs/arm64-v8a/libiconv.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/libs/arm64-v8a/libiconv.so -------------------------------------------------------------------------------- /app/libs/armeabi-v7a/libZBarDecoder.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/libs/armeabi-v7a/libZBarDecoder.so -------------------------------------------------------------------------------- /app/libs/armeabi-v7a/libiconv.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/libs/armeabi-v7a/libiconv.so -------------------------------------------------------------------------------- /app/libs/armeabi/libZBarDecoder.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/libs/armeabi/libZBarDecoder.so -------------------------------------------------------------------------------- /app/libs/armeabi/libbspatch.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/libs/armeabi/libbspatch.so -------------------------------------------------------------------------------- /app/libs/armeabi/libiconv.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/libs/armeabi/libiconv.so -------------------------------------------------------------------------------- /app/libs/mips/libZBarDecoder.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/libs/mips/libZBarDecoder.so -------------------------------------------------------------------------------- /app/libs/mips/libiconv.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/libs/mips/libiconv.so -------------------------------------------------------------------------------- /app/libs/mips64/libZBarDecoder.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/libs/mips64/libZBarDecoder.so -------------------------------------------------------------------------------- /app/libs/mips64/libiconv.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/libs/mips64/libiconv.so -------------------------------------------------------------------------------- /app/libs/umeng-update-v2.6.0.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/libs/umeng-update-v2.6.0.1.jar -------------------------------------------------------------------------------- /app/libs/x86/libZBarDecoder.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/libs/x86/libZBarDecoder.so -------------------------------------------------------------------------------- /app/libs/x86/libiconv.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/libs/x86/libiconv.so -------------------------------------------------------------------------------- /app/libs/x86_64/libZBarDecoder.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/libs/x86_64/libZBarDecoder.so -------------------------------------------------------------------------------- /app/libs/x86_64/libiconv.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/libs/x86_64/libiconv.so -------------------------------------------------------------------------------- /app/libs/zxing-4.7.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/libs/zxing-4.7.3.jar -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in D:\Android\sdk/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | 19 | -keep class butterknife.** { *; } 20 | -dontwarn butterknife.internal.** 21 | -keep class **$$ViewInjector { *; } 22 | 23 | -keepclasseswithmembernames class * { 24 | @butterknife.* ; 25 | } 26 | 27 | -keepclasseswithmembernames class * { 28 | @butterknife.* ; 29 | } 30 | -------------------------------------------------------------------------------- /app/src/androidTest/java/com/github/obsessive/simplifyreader/ApplicationTest.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2015 [1076559197@qq.com | tchen0707@gmail.com] 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License”); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package com.github.obsessive.simplifyreader; 18 | 19 | import android.app.Application; 20 | import android.test.ApplicationTestCase; 21 | 22 | /** 23 | * Testing Fundamentals 24 | */ 25 | public class ApplicationTest extends ApplicationTestCase { 26 | public ApplicationTest() { 27 | super(Application.class); 28 | } 29 | } -------------------------------------------------------------------------------- /app/src/main/java/com/github/obsessive/simplifyreader/common/OnCommonPageSelectedListener.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2015 [1076559197@qq.com | tchen0707@gmail.com] 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License”); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package com.github.obsessive.simplifyreader.common; 18 | 19 | /** 20 | * Author: Tau.Chen 21 | * Email: 1076559197@qq.com | tauchen1990@gmail.com 22 | * Date: 2015/3/23. 23 | * Description: 24 | */ 25 | public interface OnCommonPageSelectedListener { 26 | 27 | /** 28 | * when current page checked 29 | * @param position 30 | * @param keywords 31 | */ 32 | void onPageSelected(int position, String keywords); 33 | } 34 | -------------------------------------------------------------------------------- /app/src/main/java/com/github/obsessive/simplifyreader/interactor/CommonContainerInteractor.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2015 [1076559197@qq.com | tchen0707@gmail.com] 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License”); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package com.github.obsessive.simplifyreader.interactor; 18 | 19 | import android.content.Context; 20 | 21 | import com.github.obsessive.simplifyreader.bean.BaseEntity; 22 | 23 | import java.util.List; 24 | 25 | /** 26 | * Author: Tau.Chen 27 | * Email: 1076559197@qq.com | tauchen1990@gmail.com 28 | * Date: 2015/3/19. 29 | * Description: 30 | */ 31 | public interface CommonContainerInteractor { 32 | 33 | List getCommonCategoryList(Context context); 34 | } 35 | -------------------------------------------------------------------------------- /app/src/main/java/com/github/obsessive/simplifyreader/interactor/CommonListInteractor.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2015 [1076559197@qq.com | tchen0707@gmail.com] 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License”); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package com.github.obsessive.simplifyreader.interactor; 18 | 19 | /** 20 | * Author: Tau.Chen 21 | * Email: 1076559197@qq.com | tauchen1990@gmail.com 22 | * Date: 2015/3/20. 23 | * Description: 24 | */ 25 | public interface CommonListInteractor { 26 | 27 | void getCommonListData(String requestTag, final int event_tag, String keywords, int page); 28 | } 29 | -------------------------------------------------------------------------------- /app/src/main/java/com/github/obsessive/simplifyreader/interactor/GetVideoUserInteractor.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2015 [1076559197@qq.com | tchen0707@gmail.com] 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License”); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package com.github.obsessive.simplifyreader.interactor; 18 | 19 | /** 20 | * Author: Tau.Chen 21 | * Email: 1076559197@qq.com | tauchen1990@gmail.com 22 | * Date: 2015/7/16. 23 | * Description: 24 | */ 25 | public interface GetVideoUserInteractor { 26 | 27 | public void getVideoUser(String requestTag, int user_id); 28 | } 29 | -------------------------------------------------------------------------------- /app/src/main/java/com/github/obsessive/simplifyreader/interactor/MusicsInteractor.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2015 [1076559197@qq.com | tchen0707@gmail.com] 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License”); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package com.github.obsessive.simplifyreader.interactor; 18 | 19 | /** 20 | * Author: Tau.Chen 21 | * Email: 1076559197@qq.com | tauchen1990@gmail.com 22 | * Date: 2015/4/16. 23 | * Description: 24 | */ 25 | public interface MusicsInteractor { 26 | 27 | void getMusicListData(String requestTag, String keywords, int event_tag); 28 | 29 | } 30 | -------------------------------------------------------------------------------- /app/src/main/java/com/github/obsessive/simplifyreader/player/MusicPlayMode.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2015 [1076559197@qq.com | tchen0707@gmail.com] 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License”); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package com.github.obsessive.simplifyreader.player; 18 | 19 | public class MusicPlayMode { 20 | 21 | public static final int MPM_SINGLE_LOOP_PLAY = 0; // 单曲循环 22 | 23 | public static final int MPM_ORDER_PLAY = 1; // 顺序播放 24 | 25 | public static final int MPM_LIST_LOOP_PLAY = 2; // 列表循环 26 | 27 | public static final int MPM_RANDOM_PLAY = 3; // 随即播放 28 | 29 | } 30 | -------------------------------------------------------------------------------- /app/src/main/java/com/github/obsessive/simplifyreader/presenter/Presenter.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2015 [1076559197@qq.com | tchen0707@gmail.com] 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License”); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package com.github.obsessive.simplifyreader.presenter; 18 | 19 | /** 20 | * Author: Tau.Chen 21 | * Email: 1076559197@qq.com | tauchen1990@gmail.com 22 | * Date: 2015/3/12. 23 | * Description: 24 | */ 25 | public interface Presenter { 26 | 27 | void initialized(); 28 | 29 | } 30 | -------------------------------------------------------------------------------- /app/src/main/java/com/github/obsessive/simplifyreader/presenter/VideosDetailPresenter.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2015 [1076559197@qq.com | tchen0707@gmail.com] 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License”); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package com.github.obsessive.simplifyreader.presenter; 18 | 19 | /** 20 | * Author: Tau.Chen 21 | * Email: 1076559197@qq.com | tauchen1990@gmail.com 22 | * Date: 15/7/22 23 | * Description: 24 | */ 25 | public interface VideosDetailPresenter { 26 | void loadVideoUser(String requestTag, int userId); 27 | } 28 | -------------------------------------------------------------------------------- /app/src/main/java/com/github/obsessive/simplifyreader/view/CommonContainerView.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2015 [1076559197@qq.com | tchen0707@gmail.com] 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License”); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package com.github.obsessive.simplifyreader.view; 18 | 19 | import com.github.obsessive.simplifyreader.bean.BaseEntity; 20 | 21 | import java.util.List; 22 | 23 | /** 24 | * Author: Tau.Chen 25 | * Email: 1076559197@qq.com | tauchen1990@gmail.com 26 | * Date: 2015/3/19. 27 | * Description: 28 | */ 29 | public interface CommonContainerView { 30 | 31 | void initializePagerViews(List categoryList); 32 | 33 | } 34 | -------------------------------------------------------------------------------- /app/src/main/java/com/github/obsessive/simplifyreader/view/ImagePickerListView.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2015 [1076559197@qq.com | tchen0707@gmail.com] 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License”); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package com.github.obsessive.simplifyreader.view; 18 | 19 | import com.github.obsessive.simplifyreader.view.base.BaseView; 20 | 21 | /** 22 | * Author: Tau.Chen 23 | * Email: 1076559197@qq.com | tauchen1990@gmail.com 24 | * Date: 15/8/7 10:56 25 | * PkgName: com.github.obsessive.simplifyreader.view 26 | * Description: 27 | */ 28 | public interface ImagePickerListView extends BaseView { 29 | 30 | void refreshListData(); 31 | 32 | void navigateToImagePickerDetail(); 33 | } 34 | -------------------------------------------------------------------------------- /app/src/main/java/com/github/obsessive/simplifyreader/view/VideosDetailView.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2015 [1076559197@qq.com | tchen0707@gmail.com] 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License”); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package com.github.obsessive.simplifyreader.view; 18 | 19 | import com.github.obsessive.simplifyreader.bean.VideosListUserEntity; 20 | import com.github.obsessive.simplifyreader.view.base.BaseView; 21 | 22 | /** 23 | * Author: Tau.Chen 24 | * Email: 1076559197@qq.com | tauchen1990@gmail.com 25 | * Date: 2015/3/31. 26 | * Description: 27 | */ 28 | public interface VideosDetailView extends BaseView { 29 | 30 | void loadUser(VideosListUserEntity entity); 31 | } 32 | -------------------------------------------------------------------------------- /app/src/main/res/anim/alpha_in.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | 22 | -------------------------------------------------------------------------------- /app/src/main/res/anim/alpha_out.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | 22 | 23 | -------------------------------------------------------------------------------- /app/src/main/res/anim/splash.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 21 | 22 | 29 | 30 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/umeng_update_btn_check_off_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/src/main/res/drawable-hdpi/umeng_update_btn_check_off_focused_holo_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/umeng_update_btn_check_off_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/src/main/res/drawable-hdpi/umeng_update_btn_check_off_holo_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/umeng_update_btn_check_off_pressed_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/src/main/res/drawable-hdpi/umeng_update_btn_check_off_pressed_holo_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/umeng_update_btn_check_on_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/src/main/res/drawable-hdpi/umeng_update_btn_check_on_focused_holo_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/umeng_update_btn_check_on_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/src/main/res/drawable-hdpi/umeng_update_btn_check_on_holo_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/umeng_update_btn_check_on_pressed_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/src/main/res/drawable-hdpi/umeng_update_btn_check_on_pressed_holo_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/umeng_update_close_bg_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/src/main/res/drawable-hdpi/umeng_update_close_bg_normal.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/umeng_update_close_bg_tap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/src/main/res/drawable-hdpi/umeng_update_close_bg_tap.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/src/main/res/drawable-nodpi/banner.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/afternoon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/src/main/res/drawable-xhdpi/afternoon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/src/main/res/drawable-xhdpi/arrow_right.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/barcode_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/src/main/res/drawable-xhdpi/barcode_checked.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/barcode_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/src/main/res/drawable-xhdpi/barcode_normal.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/barcode_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/src/main/res/drawable-xhdpi/barcode_pressed.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/barcode_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/src/main/res/drawable-xhdpi/barcode_selected.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/btn_next_play_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/src/main/res/drawable-xhdpi/btn_next_play_normal.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/btn_next_play_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/src/main/res/drawable-xhdpi/btn_next_play_pressed.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/btn_pause_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/src/main/res/drawable-xhdpi/btn_pause_normal.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/btn_pause_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/src/main/res/drawable-xhdpi/btn_pause_pressed.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/btn_play_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/src/main/res/drawable-xhdpi/btn_play_normal.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/btn_play_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/src/main/res/drawable-xhdpi/btn_play_pressed.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/btn_prev_play_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/src/main/res/drawable-xhdpi/btn_prev_play_normal.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/btn_prev_play_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/src/main/res/drawable-xhdpi/btn_prev_play_pressed.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/common_list_divider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/src/main/res/drawable-xhdpi/common_list_divider.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/disc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/src/main/res/drawable-xhdpi/disc.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/disc_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/src/main/res/drawable-xhdpi/disc_base.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/src/main/res/drawable-xhdpi/folder.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/src/main/res/drawable-xhdpi/history.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_scan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/src/main/res/drawable-xhdpi/ic_action_scan.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/src/main/res/drawable-xhdpi/ic_avatar.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/src/main/res/drawable-xhdpi/ic_back.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/src/main/res/drawable-xhdpi/ic_comment.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_favor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/src/main/res/drawable-xhdpi/ic_favor.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/src/main/res/drawable-xhdpi/ic_music.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/src/main/res/drawable-xhdpi/ic_news.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/src/main/res/drawable-xhdpi/ic_picture.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/src/main/res/drawable-xhdpi/ic_video.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_video_card_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/src/main/res/drawable-xhdpi/ic_video_card_play.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_view_count.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/src/main/res/drawable-xhdpi/ic_view_count.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/light_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/src/main/res/drawable-xhdpi/light_checked.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/light_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/src/main/res/drawable-xhdpi/light_normal.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/light_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/src/main/res/drawable-xhdpi/light_pressed.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/light_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/src/main/res/drawable-xhdpi/light_selected.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/src/main/res/drawable-xhdpi/logo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/morning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/src/main/res/drawable-xhdpi/morning.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/src/main/res/drawable-xhdpi/night.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/pay_qrcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/src/main/res/drawable-xhdpi/pay_qrcode.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/player_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/src/main/res/drawable-xhdpi/player_bg.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/qrcode_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/src/main/res/drawable-xhdpi/qrcode_checked.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/qrcode_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/src/main/res/drawable-xhdpi/qrcode_normal.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/qrcode_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/src/main/res/drawable-xhdpi/qrcode_pressed.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/qrcode_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/src/main/res/drawable-xhdpi/qrcode_selected.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/scan_container.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/src/main/res/drawable-xhdpi/scan_container.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/scan_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/src/main/res/drawable-xhdpi/scan_mask.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/stick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/src/main/res/drawable-xhdpi/stick.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/src/main/res/drawable-xhdpi/thumb.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/btn_next_play_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/btn_pause_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/btn_play_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/btn_prev_play_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/result_content_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 20 | 21 | 22 | 23 | 26 | 27 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/tb_munion_icon.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/tb_munion_item_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/umeng_common_gradient_green.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 20 | 22 | 23 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/umeng_common_gradient_orange.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 20 | 22 | 23 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/umeng_common_gradient_red.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 20 | 22 | 23 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/umeng_update_button_cancel_bg_focused.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/umeng_update_button_cancel_bg_normal.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/umeng_update_button_cancel_bg_tap.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/umeng_update_button_ok_bg_focused.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/umeng_update_button_ok_bg_normal.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/umeng_update_button_ok_bg_tap.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/umeng_update_dialog_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/umeng_update_title_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/umeng_update_wifi_disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/src/main/res/drawable/umeng_update_wifi_disable.png -------------------------------------------------------------------------------- /app/src/main/res/layout/list_item_images_list.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 23 | 24 | 28 | 29 | -------------------------------------------------------------------------------- /app/src/main/res/layout/pager_item_news_list.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 22 | 23 | 28 | 29 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/src/main/res/mipmap-hdpi/launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/src/main/res/mipmap-mdpi/launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/src/main/res/mipmap-xhdpi/launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/src/main/res/mipmap-xxhdpi/launcher.png -------------------------------------------------------------------------------- /app/src/main/res/raw/beep.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/app/src/main/res/raw/beep.ogg -------------------------------------------------------------------------------- /app/src/main/res/values-hdpi/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | 20 | 153dp 21 | 25dp 22 | 23 | -------------------------------------------------------------------------------- /app/src/main/res/values/errors.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | Failed to fetch news url 20 | Failed to download the picture 21 | -------------------------------------------------------------------------------- /app/src/main/res/values/fonts.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | 24sp 20 | 22sp 21 | 20sp 22 | 18sp 23 | 16sp 24 | 14sp 25 | 12sp 26 | -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | 19 | 25 | 26 | -------------------------------------------------------------------------------- /app/src/main/res/values/tb_munion_strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | 20 | #e3e3e3 21 | 22 | -------------------------------------------------------------------------------- /build.gradle: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2015 [1076559197@qq.com | tchen0707@gmail.com] 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License”); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | buildscript { 18 | repositories { 19 | jcenter() 20 | } 21 | dependencies{ 22 | classpath 'com.android.tools.build:gradle:1.3.0' 23 | } 24 | } 25 | 26 | allprojects { 27 | repositories { 28 | jcenter() 29 | mavenCentral() 30 | maven { url "https://raw.githubusercontent.com/umeng/mvn-repo-umeng/master/repository" } 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2015 [1076559197@qq.com | tchen0707@gmail.com] 3 | # 4 | # Licensed under the Apache License, Version 2.0 (the "License”); 5 | # you may not use this file except in compliance with the License. 6 | # You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | # 16 | 17 | #Wed Apr 10 15:27:10 PDT 2013 18 | distributionBase=GRADLE_USER_HOME 19 | distributionPath=wrapper/dists 20 | zipStoreBase=GRADLE_USER_HOME 21 | zipStorePath=wrapper/dists 22 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.4-all.zip 23 | -------------------------------------------------------------------------------- /library/.gitignore: -------------------------------------------------------------------------------- 1 | # Android generated 2 | bin 3 | gen 4 | lint.xml 5 | 6 | # IntelliJ IDEA 7 | .idea 8 | *.iml 9 | *.ipr 10 | *.iws 11 | classes 12 | gen-external-apklibs 13 | 14 | # Eclipse 15 | .project 16 | .classpath 17 | .settings 18 | .checkstyle 19 | 20 | # Gradle 21 | .gradle 22 | build 23 | out 24 | 25 | # Maven 26 | target 27 | release.properties 28 | pom.xml.* 29 | 30 | # Ant 31 | ant.properties 32 | local.properties 33 | proguard.cfg 34 | proguard-project.txt 35 | 36 | # Other 37 | .DS_Store 38 | dist 39 | tmp -------------------------------------------------------------------------------- /library/libs/armeabi-v7a/libImageBlur.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library/libs/armeabi-v7a/libImageBlur.so -------------------------------------------------------------------------------- /library/libs/armeabi/libImageBlur.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library/libs/armeabi/libImageBlur.so -------------------------------------------------------------------------------- /library/libs/mips/libImageBlur.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library/libs/mips/libImageBlur.so -------------------------------------------------------------------------------- /library/libs/x86/libImageBlur.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library/libs/x86/libImageBlur.so -------------------------------------------------------------------------------- /library/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in D:/Android/sdk/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} -------------------------------------------------------------------------------- /library/src/androidTest/java/com/github/obsessive/library/ApplicationTest.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2015 [1076559197@qq.com | tchen0707@gmail.com] 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License”); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package com.github.obsessive.library; 18 | 19 | import android.app.Application; 20 | import android.test.ApplicationTestCase; 21 | 22 | /** 23 | * Testing Fundamentals 24 | */ 25 | public class ApplicationTest extends ApplicationTestCase { 26 | public ApplicationTest() { 27 | super(Application.class); 28 | } 29 | } -------------------------------------------------------------------------------- /library/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 19 | 20 | 23 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /library/src/main/java/com/android/volley/Network.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2015 [1076559197@qq.com | tchen0707@gmail.com] 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License”); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package com.android.volley; 18 | 19 | /** 20 | * An interface for performing requests. 21 | */ 22 | public interface Network { 23 | /** 24 | * Performs the specified request. 25 | * @param request Request to process 26 | * @return A {@link NetworkResponse} with data and caching metadata; will never be null 27 | * @throws VolleyError on errors 28 | */ 29 | public NetworkResponse performRequest(Request request) throws VolleyError; 30 | } 31 | -------------------------------------------------------------------------------- /library/src/main/java/com/android/volley/NetworkError.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2015 [1076559197@qq.com | tchen0707@gmail.com] 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License”); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package com.android.volley; 18 | 19 | /** 20 | * Indicates that there was a network error when performing a Volley request. 21 | */ 22 | @SuppressWarnings("serial") 23 | public class NetworkError extends VolleyError { 24 | public NetworkError() { 25 | super(); 26 | } 27 | 28 | public NetworkError(Throwable cause) { 29 | super(cause); 30 | } 31 | 32 | public NetworkError(NetworkResponse networkResponse) { 33 | super(networkResponse); 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /library/src/main/java/com/android/volley/NoConnectionError.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2015 [1076559197@qq.com | tchen0707@gmail.com] 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License”); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package com.android.volley; 18 | 19 | /** 20 | * Error indicating that no connection could be established when performing a Volley request. 21 | */ 22 | @SuppressWarnings("serial") 23 | public class NoConnectionError extends NetworkError { 24 | public NoConnectionError() { 25 | super(); 26 | } 27 | 28 | public NoConnectionError(Throwable reason) { 29 | super(reason); 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /library/src/main/java/com/android/volley/ParseError.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2015 [1076559197@qq.com | tchen0707@gmail.com] 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License”); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package com.android.volley; 18 | 19 | /** 20 | * Indicates that the server's response could not be parsed. 21 | */ 22 | @SuppressWarnings("serial") 23 | public class ParseError extends VolleyError { 24 | public ParseError() { } 25 | 26 | public ParseError(NetworkResponse networkResponse) { 27 | super(networkResponse); 28 | } 29 | 30 | public ParseError(Throwable cause) { 31 | super(cause); 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /library/src/main/java/com/android/volley/ServerError.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2015 [1076559197@qq.com | tchen0707@gmail.com] 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License”); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package com.android.volley; 18 | 19 | /** 20 | * Indicates that the server responded with an error response. 21 | */ 22 | @SuppressWarnings("serial") 23 | public class ServerError extends VolleyError { 24 | public ServerError(NetworkResponse networkResponse) { 25 | super(networkResponse); 26 | } 27 | 28 | public ServerError() { 29 | super(); 30 | } 31 | } 32 | 33 | -------------------------------------------------------------------------------- /library/src/main/java/com/android/volley/TimeoutError.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2015 [1076559197@qq.com | tchen0707@gmail.com] 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License”); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package com.android.volley; 18 | 19 | /** 20 | * Indicates that the connection or the socket timed out. 21 | */ 22 | @SuppressWarnings("serial") 23 | public class TimeoutError extends VolleyError { } 24 | -------------------------------------------------------------------------------- /library/src/main/java/com/github/obsessive/library/adapter/ViewHolderCreator.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2015 [1076559197@qq.com | tchen0707@gmail.com] 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License”); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package com.github.obsessive.library.adapter; 18 | 19 | /** 20 | * A interface that defines what a View Holder Creator should do. 21 | * 22 | * @param the generic type of the data in each item of a list. 23 | * @author http://www.liaohuqiu.net 24 | */ 25 | public interface ViewHolderCreator { 26 | public ViewHolderBase createViewHolder(int position); 27 | } -------------------------------------------------------------------------------- /library/src/main/java/com/github/obsessive/library/blur/ImageBlur.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2015 [1076559197@qq.com | tchen0707@gmail.com] 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License”); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package com.github.obsessive.library.blur; 18 | 19 | import android.graphics.Bitmap; 20 | 21 | public class ImageBlur { 22 | 23 | static { 24 | System.loadLibrary("ImageBlur"); 25 | } 26 | 27 | public static native void blurIntArray(int[] pixelArray, int width, int height, int radius); 28 | 29 | public static native void blurBitMap(Bitmap bitmap, int radius); 30 | } 31 | -------------------------------------------------------------------------------- /library/src/main/res/anim/bottom_in.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | -------------------------------------------------------------------------------- /library/src/main/res/anim/bottom_out.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | -------------------------------------------------------------------------------- /library/src/main/res/anim/fade_in.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | -------------------------------------------------------------------------------- /library/src/main/res/anim/fade_out.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | -------------------------------------------------------------------------------- /library/src/main/res/anim/left_in.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 23 | -------------------------------------------------------------------------------- /library/src/main/res/anim/left_out.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | -------------------------------------------------------------------------------- /library/src/main/res/anim/right_in.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 23 | -------------------------------------------------------------------------------- /library/src/main/res/anim/right_out.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | -------------------------------------------------------------------------------- /library/src/main/res/anim/scale_in.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | -------------------------------------------------------------------------------- /library/src/main/res/anim/scale_out.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | -------------------------------------------------------------------------------- /library/src/main/res/anim/top_in.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | -------------------------------------------------------------------------------- /library/src/main/res/anim/top_out.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/btn_back_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library/src/main/res/drawable-xhdpi/btn_back_normal.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/btn_back_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library/src/main/res/drawable-xhdpi/btn_back_pressed.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/btn_export_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library/src/main/res/drawable-xhdpi/btn_export_normal.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/btn_export_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library/src/main/res/drawable-xhdpi/btn_export_pressed.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/btn_forward_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library/src/main/res/drawable-xhdpi/btn_forward_normal.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/btn_forward_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library/src/main/res/drawable-xhdpi/btn_forward_pressed.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/btn_refresh_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library/src/main/res/drawable-xhdpi/btn_refresh_normal.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/btn_refresh_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library/src/main/res/drawable-xhdpi/btn_refresh_pressed.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/ic_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library/src/main/res/drawable-xhdpi/ic_error.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/ic_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library/src/main/res/drawable-xhdpi/ic_exception.png -------------------------------------------------------------------------------- /library/src/main/res/drawable/progress_bar_horizontal.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | 20 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /library/src/main/res/layout/progress_horizontal.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 26 | -------------------------------------------------------------------------------- /library/src/main/res/layout/swipeback_layout.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 23 | 24 | -------------------------------------------------------------------------------- /library/src/main/res/values/defaults.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | #33b5e5 20 | 4dp 21 | 20 22 | 300 23 | 1 24 | 1 25 | -------------------------------------------------------------------------------- /library/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | 30dp 20 | 20dp 21 | 35dp 22 | 10dp 23 | 5dp 24 | -------------------------------------------------------------------------------- /library/src/main/res/values/drawables.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | 20 | #80FFFFFF 21 | @color/sr_color_primary 22 | @android:color/transparent 23 | 24 | -------------------------------------------------------------------------------- /library_youku/.gitignore: -------------------------------------------------------------------------------- 1 | # Android generated 2 | bin 3 | gen 4 | lint.xml 5 | 6 | # IntelliJ IDEA 7 | .idea 8 | *.iml 9 | *.ipr 10 | *.iws 11 | classes 12 | gen-external-apklibs 13 | 14 | # Eclipse 15 | .project 16 | .classpath 17 | .settings 18 | .checkstyle 19 | 20 | # Gradle 21 | .gradle 22 | build 23 | out 24 | 25 | # Maven 26 | target 27 | release.properties 28 | pom.xml.* 29 | 30 | # Ant 31 | ant.properties 32 | local.properties 33 | proguard.cfg 34 | proguard-project.txt 35 | 36 | # Other 37 | .DS_Store 38 | dist 39 | tmp -------------------------------------------------------------------------------- /library_youku/libs/CocoUnion_AD_SDK_Android_v4.1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/libs/CocoUnion_AD_SDK_Android_v4.1.2.jar -------------------------------------------------------------------------------- /library_youku/libs/InMobi-4.0.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/libs/InMobi-4.0.4.jar -------------------------------------------------------------------------------- /library_youku/libs/YoukuAnalytics.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/libs/YoukuAnalytics.jar -------------------------------------------------------------------------------- /library_youku/libs/armeabi-v7a/libMMANDKSignature.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/libs/armeabi-v7a/libMMANDKSignature.so -------------------------------------------------------------------------------- /library_youku/libs/armeabi-v7a/libaccstub.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/libs/armeabi-v7a/libaccstub.so -------------------------------------------------------------------------------- /library_youku/libs/armeabi-v7a/libalgms.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/libs/armeabi-v7a/libalgms.so -------------------------------------------------------------------------------- /library_youku/libs/armeabi-v7a/libhash.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/libs/armeabi-v7a/libhash.so -------------------------------------------------------------------------------- /library_youku/libs/armeabi-v7a/libluajava.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/libs/armeabi-v7a/libluajava.so -------------------------------------------------------------------------------- /library_youku/libs/armeabi-v7a/libmresearch.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/libs/armeabi-v7a/libmresearch.so -------------------------------------------------------------------------------- /library_youku/libs/armeabi-v7a/libp2p-jni.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/libs/armeabi-v7a/libp2p-jni.so -------------------------------------------------------------------------------- /library_youku/libs/armeabi-v7a/libstlport_shared.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/libs/armeabi-v7a/libstlport_shared.so -------------------------------------------------------------------------------- /library_youku/libs/armeabi-v7a/libthumbnailer.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/libs/armeabi-v7a/libthumbnailer.so -------------------------------------------------------------------------------- /library_youku/libs/armeabi-v7a/libuencrypt.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/libs/armeabi-v7a/libuencrypt.so -------------------------------------------------------------------------------- /library_youku/libs/armeabi-v7a/libuffmpeg.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/libs/armeabi-v7a/libuffmpeg.so -------------------------------------------------------------------------------- /library_youku/libs/armeabi-v7a/libuplayer22.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/libs/armeabi-v7a/libuplayer22.so -------------------------------------------------------------------------------- /library_youku/libs/armeabi-v7a/libuplayer23.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/libs/armeabi-v7a/libuplayer23.so -------------------------------------------------------------------------------- /library_youku/libs/armeabi-v7a/libustagefright40.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/libs/armeabi-v7a/libustagefright40.so -------------------------------------------------------------------------------- /library_youku/libs/armeabi-v7a/libustagefright43.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/libs/armeabi-v7a/libustagefright43.so -------------------------------------------------------------------------------- /library_youku/libs/armeabi-v7a/libwebpbackport.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/libs/armeabi-v7a/libwebpbackport.so -------------------------------------------------------------------------------- /library_youku/libs/armeabi/libMMANDKSignature.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/libs/armeabi/libMMANDKSignature.so -------------------------------------------------------------------------------- /library_youku/libs/armeabi/libaccstub.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/libs/armeabi/libaccstub.so -------------------------------------------------------------------------------- /library_youku/libs/armeabi/libalgms.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/libs/armeabi/libalgms.so -------------------------------------------------------------------------------- /library_youku/libs/armeabi/libhello-jni.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/libs/armeabi/libhello-jni.so -------------------------------------------------------------------------------- /library_youku/libs/armeabi/libluajava.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/libs/armeabi/libluajava.so -------------------------------------------------------------------------------- /library_youku/libs/armeabi/libmresearch.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/libs/armeabi/libmresearch.so -------------------------------------------------------------------------------- /library_youku/libs/armeabi/libwebpbackport.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/libs/armeabi/libwebpbackport.so -------------------------------------------------------------------------------- /library_youku/libs/baseproject.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/libs/baseproject.jar -------------------------------------------------------------------------------- /library_youku/libs/comscore.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/libs/comscore.jar -------------------------------------------------------------------------------- /library_youku/libs/domob_android_sdk.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/libs/domob_android_sdk.jar -------------------------------------------------------------------------------- /library_youku/libs/fastjson-1.1.24.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/libs/fastjson-1.1.24.jar -------------------------------------------------------------------------------- /library_youku/libs/mAppTracker.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/libs/mAppTracker.jar -------------------------------------------------------------------------------- /library_youku/libs/mips/libalgms.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/libs/mips/libalgms.so -------------------------------------------------------------------------------- /library_youku/libs/mips/libluajava.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/libs/mips/libluajava.so -------------------------------------------------------------------------------- /library_youku/libs/mobisageSDK.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/libs/mobisageSDK.jar -------------------------------------------------------------------------------- /library_youku/libs/playerBase.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/libs/playerBase.jar -------------------------------------------------------------------------------- /library_youku/libs/tracking.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/libs/tracking.jar -------------------------------------------------------------------------------- /library_youku/libs/xadsdk.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/libs/xadsdk.jar -------------------------------------------------------------------------------- /library_youku/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in D:/Android/SDK/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /library_youku/src/androidTest/java/com/youku/player/ui/ApplicationTest.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2015 [1076559197@qq.com | tchen0707@gmail.com] 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License”); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package com.youku.player.ui; 18 | 19 | import android.app.Application; 20 | import android.test.ApplicationTestCase; 21 | 22 | /** 23 | * Testing Fundamentals 24 | */ 25 | public class ApplicationTest extends ApplicationTestCase { 26 | public ApplicationTest() { 27 | super(Application.class); 28 | } 29 | } -------------------------------------------------------------------------------- /library_youku/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 20 | 21 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /library_youku/src/main/aidl/com/youku/service/acc/IAcceleraterService.aidl: -------------------------------------------------------------------------------- 1 | package com.youku.service.acc; 2 | 3 | interface IAcceleraterService{ 4 | void start(); 5 | void stop(); 6 | int getHttpProxyPort(); 7 | String getAccPort(); 8 | int pause(); 9 | int resume(); 10 | int isAvailable(); 11 | String getVersionName(); 12 | int getVersionCode(); 13 | boolean isACCEnable(); 14 | int getCurrentStatus(); 15 | } -------------------------------------------------------------------------------- /library_youku/src/main/aidl/com/youku/service/download/DownloadInfo.aidl: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright © 2012-2013 LiuZhongnan. All rights reserved. 3 | * 4 | * Email:qq81595157@126.com 5 | * 6 | * PROPRIETARY/CONFIDENTIAL. 7 | */ 8 | 9 | package com.youku.service.download; 10 | import com.youku.service.download.DownloadInfo; 11 | 12 | /** 13 | * DownloadInfo.下载对象序列化声明 14 | * 15 | * @author 刘仲男 qq81595157@126.com 16 | * @version v3.5 17 | * @created time 2013-10-5 下午1:16:02 18 | */ 19 | parcelable DownloadInfo; -------------------------------------------------------------------------------- /library_youku/src/main/aidl/com/youku/service/download/ICallback.aidl: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright © 2012-2013 LiuZhongnan. All rights reserved. 3 | * 4 | * Email:qq81595157@126.com 5 | * 6 | * PROPRIETARY/CONFIDENTIAL. 7 | */ 8 | 9 | package com.youku.service.download; 10 | import com.youku.service.download.DownloadInfo; 11 | 12 | /** 13 | * ICallback.下载状态改变的回掉 14 | * 15 | * @author 刘仲男 qq81595157@126.com 16 | * @version v3.5 17 | * @created time 2013-10-5 下午1:16:02 18 | */ 19 | interface ICallback{ 20 | void onChanged(in DownloadInfo info); 21 | void onFinish(in DownloadInfo info); 22 | void refresh(); 23 | } -------------------------------------------------------------------------------- /library_youku/src/main/java/com/youku/player/ApiManager.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2015 [1076559197@qq.com | tchen0707@gmail.com] 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License”); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package com.youku.player; 18 | 19 | import android.content.Context; 20 | 21 | public class ApiManager extends ApiBaseManager { 22 | 23 | } 24 | -------------------------------------------------------------------------------- /library_youku/src/main/java/com/youku/player/apiservice/IAdjustTime.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2015 [1076559197@qq.com | tchen0707@gmail.com] 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License”); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package com.youku.player.apiservice; 18 | 19 | /** 20 | * 时间校正接口,获取服务器时间与本地时间差值,用服务器时间减去本地时间。 21 | * 22 | */ 23 | public interface IAdjustTime { 24 | public long getTimeDifference(); 25 | } 26 | -------------------------------------------------------------------------------- /library_youku/src/main/java/com/youku/player/apiservice/IEncryptVideoCallBack.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2015 [1076559197@qq.com | tchen0707@gmail.com] 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License”); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package com.youku.player.apiservice; 18 | 19 | /** 20 | * 加密视频回调接口 21 | * @author jue 22 | * 23 | */ 24 | public interface IEncryptVideoCallBack { 25 | 26 | /** 当前请求视频为加密视频,被调用 **/ 27 | public abstract void onEncryptVideoDetected(); 28 | 29 | /** 请求当前加密视频的密码错误,被调用 **/ 30 | public abstract void onEncryptVideoPasswordError(); 31 | 32 | } 33 | -------------------------------------------------------------------------------- /library_youku/src/main/java/com/youku/player/apiservice/IExceptionHandler.java: -------------------------------------------------------------------------------- 1 | /* * Copyright (c) 2015 [1076559197@qq.com | tchen0707@gmail.com] * * Licensed under the Apache License, Version 2.0 (the "License”); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.youku.player.apiservice; /** * @Description: TODO 异常处理器 * * @author 刘仲男 81595157@qq.com * @version $Revision$ * @created time 2012-9-18 下午3:55:21 */ public interface IExceptionHandler { /** 获得错误代码 */ public int getErrorCode(); /** 获得具体的错误信息内容 */ public String getErrorInfo(); } -------------------------------------------------------------------------------- /library_youku/src/main/java/com/youku/player/apiservice/OnPreparedCallback.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2015 [1076559197@qq.com | tchen0707@gmail.com] 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License”); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package com.youku.player.apiservice; 18 | 19 | public abstract class OnPreparedCallback { 20 | 21 | /** 当全部下载已准备的时候 */ 22 | public abstract void onAllPrepared(); 23 | 24 | /** 当下载准备的时候 */ 25 | public void onOnePrepared() { 26 | } 27 | 28 | /** 下载失败 */ 29 | public void onOneFailed() { 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /library_youku/src/main/java/com/youku/player/plugin/LoginObserver.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2015 [1076559197@qq.com | tchen0707@gmail.com] 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License”); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package com.youku.player.plugin; 18 | 19 | 20 | 21 | /** 22 | * Interface LoginObserver 23 | */ 24 | public interface LoginObserver { 25 | 26 | // 27 | // Fields 28 | // 29 | 30 | 31 | // 32 | // Methods 33 | // 34 | 35 | 36 | // 37 | // Accessor methods 38 | // 39 | 40 | // 41 | // Other methods 42 | // 43 | 44 | /** 45 | */ 46 | public void loginSucc( ); 47 | 48 | 49 | /** 50 | */ 51 | public void loginFail( ); 52 | 53 | 54 | } 55 | -------------------------------------------------------------------------------- /library_youku/src/main/java/com/youku/service/acc/AcceleraterStatus.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2015 [1076559197@qq.com | tchen0707@gmail.com] 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License”); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package com.youku.service.acc; 18 | 19 | public class AcceleraterStatus { 20 | public static final int INIT = 0; 21 | public static final int STARTED = 1; 22 | public static final int PAUSED = 2; 23 | public static final int STOPED = 3; 24 | } 25 | -------------------------------------------------------------------------------- /library_youku/src/main/java/com/youku/service/acc/IAcceleraterService.aidl: -------------------------------------------------------------------------------- 1 | package com.youku.service.acc; 2 | 3 | interface IAcceleraterService{ 4 | void start(); 5 | void stop(); 6 | int getHttpProxyPort(); 7 | String getAccPort(); 8 | int pause(); 9 | int resume(); 10 | int isAvailable(); 11 | String getVersionName(); 12 | int getVersionCode(); 13 | boolean isACCEnable(); 14 | int getCurrentStatus(); 15 | } -------------------------------------------------------------------------------- /library_youku/src/main/java/com/youku/service/download/DownloadInfo.aidl: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright © 2012-2013 LiuZhongnan. All rights reserved. 3 | * 4 | * Email:qq81595157@126.com 5 | * 6 | * PROPRIETARY/CONFIDENTIAL. 7 | */ 8 | 9 | package com.youku.service.download; 10 | import com.youku.service.download.DownloadInfo; 11 | 12 | /** 13 | * DownloadInfo.下载对象序列化声明 14 | * 15 | * @author 刘仲男 qq81595157@126.com 16 | * @version v3.5 17 | * @created time 2013-10-5 下午1:16:02 18 | */ 19 | parcelable DownloadInfo; -------------------------------------------------------------------------------- /library_youku/src/main/java/com/youku/service/download/DownloadListener.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2015 [1076559197@qq.com | tchen0707@gmail.com] 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License”); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package com.youku.service.download; 18 | 19 | /** 20 | * DownloadListener.下载状态改变后的监听 21 | * 22 | * @author 刘仲男 qq81595157@126.com 23 | * @version v3.5 24 | * @created time 2012-11-5 下午1:16:02 25 | */ 26 | public interface DownloadListener { 27 | void onStart(); 28 | 29 | void onPause(); 30 | 31 | void onCancel(); 32 | 33 | void onException(); 34 | 35 | void onFinish(); 36 | 37 | void onProgressChange(double progress); 38 | 39 | void onWaiting(); 40 | } 41 | -------------------------------------------------------------------------------- /library_youku/src/main/java/com/youku/service/download/DownloadLoginListener.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2015 [1076559197@qq.com | tchen0707@gmail.com] 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License”); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package com.youku.service.download; 18 | 19 | public interface DownloadLoginListener { 20 | public void doDownload(); 21 | } 22 | -------------------------------------------------------------------------------- /library_youku/src/main/java/com/youku/service/download/ICallback.aidl: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright © 2012-2013 LiuZhongnan. All rights reserved. 3 | * 4 | * Email:qq81595157@126.com 5 | * 6 | * PROPRIETARY/CONFIDENTIAL. 7 | */ 8 | 9 | package com.youku.service.download; 10 | import com.youku.service.download.DownloadInfo; 11 | 12 | /** 13 | * ICallback.下载状态改变的回掉 14 | * 15 | * @author 刘仲男 qq81595157@126.com 16 | * @version v3.5 17 | * @created time 2013-10-5 下午1:16:02 18 | */ 19 | interface ICallback{ 20 | void onChanged(in DownloadInfo info); 21 | void onFinish(in DownloadInfo info); 22 | void refresh(); 23 | } -------------------------------------------------------------------------------- /library_youku/src/main/java/com/youku/service/download/OnChangeListener.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2015 [1076559197@qq.com | tchen0707@gmail.com] 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License”); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package com.youku.service.download; 18 | 19 | /** 20 | * OnChangeListener.下载状态改变的监听实现 21 | * 22 | * @author 刘仲男 qq81595157@126.com 23 | * @version v3.5 24 | * @created time 2013-10-17 下午1:16:02 25 | */ 26 | public interface OnChangeListener { 27 | void onChanged(DownloadInfo info); 28 | 29 | void onFinish(); 30 | } 31 | -------------------------------------------------------------------------------- /library_youku/src/main/java/com/youku/ui/activity/CacheActivity.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2015 [1076559197@qq.com | tchen0707@gmail.com] 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License”); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package com.youku.ui.activity; 18 | 19 | import android.app.Activity; 20 | import android.content.Intent; 21 | import android.os.Bundle; 22 | import android.widget.Button; 23 | 24 | public class CacheActivity extends Activity { 25 | 26 | @Override 27 | protected void onCreate(Bundle savedInstanceState) { 28 | // TODO Auto-generated method stub 29 | super.onCreate(savedInstanceState); 30 | setContentView(new Button(this)); 31 | Intent intent = getIntent(); 32 | 33 | } 34 | 35 | } 36 | -------------------------------------------------------------------------------- /library_youku/src/main/res/anim/yp_mobile_loading.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /library_youku/src/main/res/anim/yp_slide_in_from_right.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | 23 | 24 | 28 | 29 | -------------------------------------------------------------------------------- /library_youku/src/main/res/anim/yp_slide_out_to_right.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | 23 | 24 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/bg_play.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/bg_play.jpg -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/bg_tudou_encrypt_dialog.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/bg_tudou_encrypt_dialog.9.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/btn_blue.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/btn_blue.9.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/btn_grey.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/btn_grey.9.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/close.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/deletecheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/deletecheck.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/detail_btn_downloading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/detail_btn_downloading.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/detail_btn_downloading_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/detail_btn_downloading_selected.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/detail_btn_favorite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/detail_btn_favorite.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/detail_btn_favorite_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/detail_btn_favorite_selected.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/detail_btn_index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/detail_btn_index.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/detail_btn_index_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/detail_btn_index_selected.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/detail_btn_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/detail_btn_more.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/detail_btn_more_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/detail_btn_more_selected.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/detail_btn_share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/detail_btn_share.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/detail_btn_share_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/detail_btn_share_selected.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/detail_btn_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/detail_btn_top.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/detail_btn_top_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/detail_btn_top_selected.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/detail_btn_tread.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/detail_btn_tread.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/detail_btn_tread_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/detail_btn_tread_selected.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/detail_play_btn_full_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/detail_play_btn_full_screen.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/detail_title_btn_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/detail_title_btn_more.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/download_checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/download_checkbox.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/download_checkbox_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/download_checkbox_selected.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/downloading_folder_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/downloading_folder_bg.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/editor_btn_all_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/editor_btn_all_delete.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/editor_btn_all_delete_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/editor_btn_all_delete_selected.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/editor_btn_all_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/editor_btn_all_start.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/editor_btn_all_start_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/editor_btn_all_start_selected.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/editor_btn_complete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/editor_btn_complete.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/editor_btn_complete_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/editor_btn_complete_selected.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/editor_btn_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/editor_btn_delete.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/editor_btn_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/editor_btn_edit.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/editor_btn_edit_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/editor_btn_edit_selected.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/hotpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/hotpoint.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/hotpoint_played.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/hotpoint_played.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/ic_vv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/ic_vv.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/icon_comment_amount_vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/icon_comment_amount_vertical.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/icon_dialog_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/icon_dialog_arrow.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/icon_favorite_amount_vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/icon_favorite_amount_vertical.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/icon_hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/icon_hd.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/icon_hd2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/icon_hd2.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/icon_play_amount_vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/icon_play_amount_vertical.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/loading_frame1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/loading_frame1.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/loading_frame2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/loading_frame2.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/loading_frame3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/loading_frame3.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/loading_frame4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/loading_frame4.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/play_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/play_back.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/play_btn_clarity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/play_btn_clarity.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/play_btn_cycle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/play_btn_cycle.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/play_btn_downloading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/play_btn_downloading.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/play_btn_next_episode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/play_btn_next_episode.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/play_btn_pause_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/play_btn_pause_big.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/play_btn_pause_big_detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/play_btn_pause_big_detail.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/play_btn_pause_big_detail_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/play_btn_pause_big_detail_down.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/play_btn_play_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/play_btn_play_big.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/play_btn_play_big_detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/play_btn_play_big_detail.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/play_btn_play_big_detail_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/play_btn_play_big_detail_down.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/play_btn_shrink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/play_btn_shrink.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/play_btn_site.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/play_btn_site.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/play_btn_volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/play_btn_volume.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/play_btn_volume_no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/play_btn_volume_no.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/play_icon_search_volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/play_icon_search_volume.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/play_icon_switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/play_icon_switch.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/play_icon_switch_box_not_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/play_icon_switch_box_not_selected.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/play_icon_switch_box_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/play_icon_switch_box_selected.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/play_icon_switch_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/play_icon_switch_selected.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/play_icon_volume_ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/play_icon_volume_ball.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/play_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/play_logo.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/play_over_next_episode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/play_over_next_episode.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/play_over_replay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/play_over_replay.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/play_site_icon_brightness_strong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/play_site_icon_brightness_strong.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/play_site_icon_cancle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/play_site_icon_cancle.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/play_site_icon_cancle_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/play_site_icon_cancle_selected.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/play_site_icon_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/play_site_icon_selected.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/playback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/playback.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/player_canvas.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/player_canvas.9.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/player_pad__hotpoint_popup_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/player_pad__hotpoint_popup_1.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/player_pad_hotpoint_popup_bg_top.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/player_pad_hotpoint_popup_bg_top.9.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/player_pad_hotpoint_popup_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/player_pad_hotpoint_popup_play.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/player_play_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/player_play_logo.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/player_poptop_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/player_poptop_close.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/player_star_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/player_star_empty.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/player_star_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/player_star_full.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/plugin_ad_gofull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/plugin_ad_gofull.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/plugin_ad_gosmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/plugin_ad_gosmall.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/plugin_ad_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/plugin_ad_more.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/plugin_pause_ad_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/plugin_pause_ad_close.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/prompt_box.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/prompt_box.9.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/scan_default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/scan_default.jpg -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/setting_marquee_round_not_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/setting_marquee_round_not_selected.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/setting_marquee_round_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/setting_marquee_round_selected.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/small169.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/small169.9.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/soku_layout_bottom_cover.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/soku_layout_bottom_cover.9.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/star_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/star_empty.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/star_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/star_full.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/tab_indicator_divider.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/tab_indicator_divider.9.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/tab_indicator_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/tab_indicator_pressed.9.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/tab_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/tab_shadow.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/topbar_delete_gray_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/topbar_delete_gray_icon.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/topbar_delete_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/topbar_delete_icon.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/topbar_edit_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/topbar_edit_icon.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/uploading_btn_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/uploading_btn_add.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/uploading_btn_add_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/uploading_btn_add_selected.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/video_brightness_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/video_brightness_bg.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/video_num_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/video_num_bg.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/video_num_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/video_num_front.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/video_volumn_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/video_volumn_bg.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/yp_abs__list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/yp_abs__list_focused_holo.9.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/yp_abs__list_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/yp_abs__list_pressed_holo_light.9.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/yp_detail_icon_schedule_ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/yp_detail_icon_schedule_ball.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/yp_investigate_arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/yp_investigate_arrow_right.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/yp_investigate_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/yp_investigate_bg.9.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/yp_investigate_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/yp_investigate_close.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-hdpi/yp_tudou_encrypt_input_box.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-hdpi/yp_tudou_encrypt_input_box.9.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-mdpi/yp_abs__list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-mdpi/yp_abs__list_focused_holo.9.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-mdpi/yp_abs__list_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-mdpi/yp_abs__list_pressed_holo_light.9.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-xhdpi/plugin_ad_gofull_tudou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-xhdpi/plugin_ad_gofull_tudou.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-xhdpi/plugin_ad_gofull_youku.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-xhdpi/plugin_ad_gofull_youku.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-xhdpi/plugin_ad_gosmall_tudou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-xhdpi/plugin_ad_gosmall_tudou.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-xhdpi/plugin_ad_gosmall_youku.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-xhdpi/plugin_ad_gosmall_youku.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-xhdpi/plugin_ad_more_youku.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-xhdpi/plugin_ad_more_youku.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-xhdpi/plugin_interactive_ad_gofull_youku.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-xhdpi/plugin_interactive_ad_gofull_youku.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-xhdpi/soku_layout_bottom_cover.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-xhdpi/soku_layout_bottom_cover.9.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-xhdpi/tudou_details_big_play_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-xhdpi/tudou_details_big_play_icon.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-xhdpi/xadsdk_ad_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-xhdpi/xadsdk_ad_close.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-xhdpi/xadsdk_ad_mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-xhdpi/xadsdk_ad_mini.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-xhdpi/xadsdk_browser_bkgrnd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-xhdpi/xadsdk_browser_bkgrnd.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-xhdpi/xadsdk_browser_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-xhdpi/xadsdk_browser_close.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-xhdpi/xadsdk_browser_leftarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-xhdpi/xadsdk_browser_leftarrow.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-xhdpi/xadsdk_browser_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-xhdpi/xadsdk_browser_refresh.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-xhdpi/xadsdk_browser_rightarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-xhdpi/xadsdk_browser_rightarrow.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-xhdpi/xadsdk_browser_unleftarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-xhdpi/xadsdk_browser_unleftarrow.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-xhdpi/xadsdk_browser_unrightarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-xhdpi/xadsdk_browser_unrightarrow.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-xhdpi/yp_abs__list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-xhdpi/yp_abs__list_focused_holo.9.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-xhdpi/yp_abs__list_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-xhdpi/yp_abs__list_pressed_holo_light.9.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-xhdpi/yp_back16_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-xhdpi/yp_back16_5.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-xhdpi/yp_back16_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-xhdpi/yp_back16_9.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-xhdpi/yp_player_poptop_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-xhdpi/yp_player_poptop_close.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-xhdpi/yp_plugin_pause_ad_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-xhdpi/yp_plugin_pause_ad_close.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-xhdpi/yp_webview_back_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-xhdpi/yp_webview_back_normal.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-xhdpi/yp_webview_back_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-xhdpi/yp_webview_back_pressed.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-xhdpi/yp_webview_refresh_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-xhdpi/yp_webview_refresh_normal.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-xhdpi/yp_webview_refresh_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-xhdpi/yp_webview_refresh_pressed.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable/punchbox_btn_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable/punchbox_btn_close.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable/punchbox_btn_close_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable/punchbox_btn_close_l.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable/punchbox_btn_close_lpad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable/punchbox_btn_close_lpad.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable/punchbox_btn_close_pad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable/punchbox_btn_close_pad.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable/punchbox_btn_close_xpad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable/punchbox_btn_close_xpad.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable/soku_layout_bottom_cover.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable/soku_layout_bottom_cover.9.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable/tab_indicator_pressed_selected.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable/tab_indicator_pressed_selected.9.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable/tab_indicator_selected.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoki2015/SimplifyReader/f48f6ecd86dd7c368f508647043c8e41304e14bd/library_youku/src/main/res/drawable/tab_indicator_selected.9.png -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable/yp_dialog_radiontn_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | 21 | 22 | -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable/yp_plugin_fullscreen_ad_close_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable/yp_plugin_pause_ad_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable/yp_progressbarstyle.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | 20 | 21 | 22 | 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable/yp_webview_back.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /library_youku/src/main/res/drawable/yp_youku_dialog_ok.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /library_youku/src/main/res/interpolator/yp_accelerate_quint.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 20 | -------------------------------------------------------------------------------- /library_youku/src/main/res/interpolator/yp_decelerate_cubic.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 20 | -------------------------------------------------------------------------------- /library_youku/src/main/res/interpolator/yp_decelerate_quint.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 20 | -------------------------------------------------------------------------------- /library_youku/src/main/res/values-v11/styles.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | 19 | 23 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /library_youku/src/main/res/values-v14/styles.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | 19 | 24 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /library_youku/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /library_youku/src/main/res/values/drawables.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | @color/yp_youku_dialog_ok_pressed 20 | @color/text_color_blue_1 21 | @color/text_color_blue 22 | -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2015 [1076559197@qq.com | tchen0707@gmail.com] 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License”); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | include ':app', ':library', ':library_youku' 18 | --------------------------------------------------------------------------------