├── README.md └── SmartRecom └── ThreeRecom ├── .gitignore ├── .idea ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── encodings.xml ├── gradle.xml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── runConfigurations.xml ├── app ├── .gitignore ├── build.gradle ├── libs │ ├── commons-httpclient-3.1.jar │ ├── fastjson-1.2.2-sources.jar │ ├── fastjson-1.2.2.jar │ └── log4j-1.2.17.jar ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── lvr │ │ └── threerecom │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── assets │ │ ├── introduction.html │ │ └── license.html │ ├── java │ │ └── com │ │ │ └── lvr │ │ │ └── threerecom │ │ │ ├── SensorCollection │ │ │ ├── listener │ │ │ │ └── SensorListener.java │ │ │ ├── observer │ │ │ │ ├── SensorObserver.java │ │ │ │ └── SensorObserverable.java │ │ │ ├── service │ │ │ │ └── SensorService.java │ │ │ └── utils │ │ │ │ ├── Constant.java │ │ │ │ ├── HttpUtil.java │ │ │ │ ├── JSONUtil.java │ │ │ │ └── SensorUtil.java │ │ │ ├── adapter │ │ │ ├── FavorMovieAdapter.java │ │ │ ├── InformationAdapter.java │ │ │ ├── MainAdapter.java │ │ │ ├── MovieAdapter.java │ │ │ ├── MovieViewPagerAdapter.java │ │ │ ├── MusicMainViewPagerAdapter.java │ │ │ ├── MusicMyAdapter.java │ │ │ ├── MusicPlayingViewPagerAdapter.java │ │ │ ├── MusicRankingAdapter.java │ │ │ ├── MusicRankingListDetailAdapter.java │ │ │ ├── MusicSongListAdapter.java │ │ │ ├── MusicSongListDetailAdapter.java │ │ │ └── MusicViewPagerAdapter.java │ │ │ ├── anims │ │ │ ├── AnimationAdapter.java │ │ │ ├── BaseItemAnimator.java │ │ │ ├── LandingAnimator.java │ │ │ ├── ScaleInAnimationAdapter.java │ │ │ └── ViewHelper.java │ │ │ ├── api │ │ │ └── ApiService.java │ │ │ ├── app │ │ │ ├── AppApplication.java │ │ │ ├── AppConstantValue.java │ │ │ ├── AppManager.java │ │ │ └── BaiDuMusicApi.java │ │ │ ├── base │ │ │ ├── BaseActivity.java │ │ │ ├── BaseActivityWithoutStatus.java │ │ │ ├── BaseApplication.java │ │ │ ├── BaseFragment.java │ │ │ └── BaseFragmentAdapter.java │ │ │ ├── bean │ │ │ ├── FabSrcollBean.java │ │ │ ├── FavorListBean.java │ │ │ ├── InformationBean.java │ │ │ ├── LogInAndSignUpBean.java │ │ │ ├── LoginBean.java │ │ │ ├── MovieInfo.java │ │ │ ├── MusicMyItem.java │ │ │ ├── RankingListDetail.java │ │ │ ├── RankingListItem.java │ │ │ ├── RatingResultBean.java │ │ │ ├── RecomMusicBean.java │ │ │ ├── SignupBean.java │ │ │ ├── SongDetailInfo.java │ │ │ ├── SongListDetail.java │ │ │ ├── SongUpdateInfo.java │ │ │ ├── UpdateViewPagerBean.java │ │ │ └── WrapperSongListInfo.java │ │ │ ├── broadcastreceiver │ │ │ ├── MyReceiver.java │ │ │ └── ProgressReceiver.java │ │ │ ├── client │ │ │ ├── BaseApiService.java │ │ │ ├── BaseInterceptor.java │ │ │ ├── BaseObserver.java │ │ │ ├── BaseResponse.java │ │ │ ├── CaheInterceptor.java │ │ │ ├── ExceptionHandle.java │ │ │ ├── IpResult.java │ │ │ ├── NetworkUtil.java │ │ │ ├── RetrofitClient.java │ │ │ └── RxDisposeManager.java │ │ │ ├── service │ │ │ ├── MediaPlayService.java │ │ │ └── MediaServiceConnection.java │ │ │ ├── ui │ │ │ ├── MainActivity.java │ │ │ ├── home │ │ │ │ ├── AboutActivity.java │ │ │ │ ├── ContactAuthorActivity.java │ │ │ │ ├── FavorMovieActivity.java │ │ │ │ ├── FavorMusicActivity.java │ │ │ │ ├── IntroductionActivity.java │ │ │ │ ├── MyInformationActivity.java │ │ │ │ ├── NotificationShowActivity.java │ │ │ │ ├── OpenSourceActivity.java │ │ │ │ ├── PhotoPreviewActivity.java │ │ │ │ ├── RecomMovieActivity.java │ │ │ │ ├── RecomMusicActivity.java │ │ │ │ ├── model │ │ │ │ │ ├── InformationModel.java │ │ │ │ │ ├── MainModel.java │ │ │ │ │ ├── RecomMovieModel.java │ │ │ │ │ ├── RecomMusicModel.java │ │ │ │ │ └── impl │ │ │ │ │ │ ├── InformationModelImpl.java │ │ │ │ │ │ ├── MainModelImpl.java │ │ │ │ │ │ ├── RecomMovieModelImpl.java │ │ │ │ │ │ └── RecomMusicModelImpl.java │ │ │ │ ├── presenter │ │ │ │ │ ├── InformationPresenter.java │ │ │ │ │ ├── MainPresenter.java │ │ │ │ │ ├── RecomMoviePresenter.java │ │ │ │ │ ├── RecomMusicPresenter.java │ │ │ │ │ └── impl │ │ │ │ │ │ ├── InformationPresenterImpl.java │ │ │ │ │ │ ├── MainPresenterImpl.java │ │ │ │ │ │ ├── RecomMoviePresenterImpl.java │ │ │ │ │ │ └── RecomMusicPresenterImpl.java │ │ │ │ └── view │ │ │ │ │ ├── InformationView.java │ │ │ │ │ ├── MainView.java │ │ │ │ │ ├── RecomMovieView.java │ │ │ │ │ └── RecomMusicView.java │ │ │ ├── login │ │ │ │ ├── LoginActivity.java │ │ │ │ ├── SignUpActivity.java │ │ │ │ ├── model │ │ │ │ │ ├── LogInModel.java │ │ │ │ │ ├── SignUpModel.java │ │ │ │ │ └── impl │ │ │ │ │ │ ├── LogInModelImpl.java │ │ │ │ │ │ └── SignUpModelImpl.java │ │ │ │ ├── presenter │ │ │ │ │ ├── LogInPresenter.java │ │ │ │ │ ├── SignUpPresenter.java │ │ │ │ │ └── impl │ │ │ │ │ │ ├── LogInPresenterImpl.java │ │ │ │ │ │ └── SignUpPresenterImpl.java │ │ │ │ └── view │ │ │ │ │ ├── LogInView.java │ │ │ │ │ └── SignUpView.java │ │ │ ├── movie │ │ │ │ ├── MovieDetailActivity.java │ │ │ │ ├── MovieDisplayActivity.java │ │ │ │ ├── MovieFragment.java │ │ │ │ ├── MovieJudgeActivity.java │ │ │ │ ├── MoviePlayActivity.java │ │ │ │ ├── model │ │ │ │ │ ├── MovieModel.java │ │ │ │ │ └── MovieModelImpl.java │ │ │ │ ├── presenter │ │ │ │ │ ├── Impl │ │ │ │ │ │ ├── MovieJudgePresenterImpl.java │ │ │ │ │ │ └── MoviePresenterImpl.java │ │ │ │ │ ├── MovieJudgePresenter.java │ │ │ │ │ └── MoviePresenter.java │ │ │ │ └── view │ │ │ │ │ ├── MovieJudgeView.java │ │ │ │ │ └── MovieView.java │ │ │ └── music │ │ │ │ ├── MusicActivity.java │ │ │ │ ├── MusicRankingListDetailActivity.java │ │ │ │ ├── MusicSongListDetailActivity.java │ │ │ │ ├── PlayingActivity.java │ │ │ │ ├── fragment │ │ │ │ ├── MusicDisplayFragment.java │ │ │ │ ├── MyFragment.java │ │ │ │ ├── RankingFragment.java │ │ │ │ ├── RoundFragment.java │ │ │ │ └── SongListFragment.java │ │ │ │ ├── model │ │ │ │ ├── MusicModel.java │ │ │ │ └── impl │ │ │ │ │ └── MusicModelImpl.java │ │ │ │ ├── presneter │ │ │ │ ├── MusicPresenter.java │ │ │ │ ├── MusicRankingListDetailPresenter.java │ │ │ │ ├── MusicRankingPresenter.java │ │ │ │ ├── MusicSongListDetailPresenter.java │ │ │ │ └── impl │ │ │ │ │ ├── MusicPresenterImpl.java │ │ │ │ │ ├── MusicRankingListDetailPresenterImpl.java │ │ │ │ │ ├── MusicRankingPresenterImpl.java │ │ │ │ │ └── MusicSongListDetailPresenterImpl.java │ │ │ │ └── view │ │ │ │ ├── MusicRankingListDetailView.java │ │ │ │ ├── MusicRankingListView.java │ │ │ │ ├── MusicSongListDetailView.java │ │ │ │ └── MusicSongListView.java │ │ │ ├── utils │ │ │ ├── ACache.java │ │ │ ├── AESTools.java │ │ │ ├── BitmapUtils.java │ │ │ ├── BytesHandler.java │ │ │ ├── CapturePhotoHelper.java │ │ │ ├── CollectionUtils.java │ │ │ ├── DisplayUtil.java │ │ │ ├── FolderManager.java │ │ │ ├── GlideLoader.java │ │ │ ├── GlideRoundTransformUtil.java │ │ │ ├── ImageLoaderUtils.java │ │ │ ├── MyUtils.java │ │ │ ├── SPUtils.java │ │ │ ├── StatusBarSetting.java │ │ │ ├── TUtil.java │ │ │ └── TimeUtil.java │ │ │ └── widget │ │ │ ├── CircleImageView.java │ │ │ ├── ClassicRefreshHeaderView.java │ │ │ ├── LoadMoreFooterView.java │ │ │ ├── LoadingDialog.java │ │ │ ├── ScrollAwareFABBehavior.java │ │ │ ├── StatusBarView.java │ │ │ └── SuperTextView.java │ └── res │ │ ├── anim │ │ ├── act_fade_in_center.xml │ │ ├── act_fade_out_center.xml │ │ ├── fade_in.xml │ │ ├── fade_out.xml │ │ ├── rotate_down.xml │ │ ├── rotate_up.xml │ │ ├── slide_in_left.xml │ │ ├── slide_in_right.xml │ │ ├── slide_out_left.xml │ │ └── slide_out_right.xml │ │ ├── drawable-hdpi │ │ ├── ic_arrow_back.png │ │ ├── jpush_ic_richpush_actionbar_back.png │ │ ├── jpush_ic_richpush_actionbar_divider.png │ │ ├── jpush_richpush_btn_selector.xml │ │ ├── jpush_richpush_progressbar.xml │ │ └── shape_loading_dialog.xml │ │ ├── drawable-mdpi │ │ ├── ic_arrow_back.png │ │ └── select_music_toolbar_song.xml │ │ ├── drawable-xhdpi │ │ ├── ic_arrow_back.png │ │ ├── ic_loading_progress.png │ │ ├── loading_dialog_progressbar.xml │ │ ├── no_content_tip.png │ │ ├── qq_refresh_success.png │ │ ├── selector_gray.xml │ │ └── twitter_pull_arrow.png │ │ ├── drawable-xxhdpi │ │ ├── about.png │ │ ├── change.png │ │ ├── contact_author.png │ │ ├── contact_blog.png │ │ ├── contact_email.png │ │ ├── contact_github.png │ │ ├── favor_right.png │ │ ├── favor_wrong.png │ │ ├── guess_like.png │ │ ├── home.png │ │ ├── home_hot_hint.png │ │ ├── ic_arrow_back.png │ │ ├── ic_empty_picture.png │ │ ├── ic_image_loading.png │ │ ├── icon_launcher.png │ │ ├── index_icn_earphone.png │ │ ├── list_detail_icn_dld.png │ │ ├── list_detail_icn_fav.png │ │ ├── list_detail_icn_share.png │ │ ├── list_expand_arrow_down.png │ │ ├── list_expand_menu.png │ │ ├── list_icn_mng.png │ │ ├── list_icn_more.png │ │ ├── list_third.jpg │ │ ├── login_bg.jpg │ │ ├── login_recom.png │ │ ├── movie.png │ │ ├── movie_history.png │ │ ├── movie_hot.png │ │ ├── music.png │ │ ├── music_detail_play.png │ │ ├── music_download.png │ │ ├── music_list_default.png │ │ ├── music_list_menu.png │ │ ├── music_local.png │ │ ├── music_my_normal.png │ │ ├── music_my_selected.png │ │ ├── music_recent.png │ │ ├── music_singer.png │ │ ├── music_song_normal.png │ │ ├── music_song_selected.png │ │ ├── myinformation.png │ │ ├── nav_header.jpg │ │ ├── nav_photo.jpg │ │ ├── out.png │ │ ├── sigup_recom.png │ │ ├── songlist_detail_comment.png │ │ └── toux2.png │ │ ├── drawable-xxxhdpi │ │ ├── ic_arrow_back.png │ │ ├── login_bg_night.jpg │ │ ├── play_btn_next.png │ │ ├── play_btn_prev.png │ │ ├── play_comment.png │ │ ├── play_disc.png │ │ ├── play_disc_halo.png │ │ ├── play_download.png │ │ ├── play_icn_cmt_number_dis.png │ │ ├── play_icn_dlded_dis.png │ │ ├── play_icn_loop.png │ │ ├── play_icn_loop_prs.png │ │ ├── play_icn_one.png │ │ ├── play_icn_shuffle.png │ │ ├── play_icn_src_prs.png │ │ ├── play_love.png │ │ ├── play_needle.png │ │ ├── play_rdi_btn_pause.png │ │ └── play_rdi_btn_play.png │ │ ├── drawable │ │ ├── ic_arrow_upward.png │ │ ├── select_btn_bg.xml │ │ ├── select_music_toolbar_my.xml │ │ └── selector_login_button.xml │ │ ├── layout │ │ ├── activity_about.xml │ │ ├── activity_contact_author.xml │ │ ├── activity_favor_movie.xml │ │ ├── activity_introduction.xml │ │ ├── activity_login.xml │ │ ├── activity_main.xml │ │ ├── activity_movie.xml │ │ ├── activity_movie_detail.xml │ │ ├── activity_movie_judge.xml │ │ ├── activity_movie_play.xml │ │ ├── activity_music.xml │ │ ├── activity_music_play.xml │ │ ├── activity_my_information.xml │ │ ├── activity_notification_show.xml │ │ ├── activity_open_source.xml │ │ ├── activity_photo_preview.xml │ │ ├── activity_rankinglist_detail.xml │ │ ├── activity_recom_movie.xml │ │ ├── activity_recom_music.xml │ │ ├── activity_signup.xml │ │ ├── activity_songlist_detail.xml │ │ ├── dialog_loading.xml │ │ ├── dialog_loading_tip.xml │ │ ├── fragment_movie.xml │ │ ├── fragment_music_my.xml │ │ ├── fragment_music_rank.xml │ │ ├── fragment_music_songs.xml │ │ ├── fragment_round.xml │ │ ├── fragment_song_list.xml │ │ ├── item_edit.xml │ │ ├── item_favor_common.xml │ │ ├── item_gender_select.xml │ │ ├── item_home_banner.xml │ │ ├── item_home_bottom.xml │ │ ├── item_home_movie_des.xml │ │ ├── item_information_common.xml │ │ ├── item_information_special.xml │ │ ├── item_movie.xml │ │ ├── item_music_bottom.xml │ │ ├── item_music_middle.xml │ │ ├── item_music_top.xml │ │ ├── item_photo_select.xml │ │ ├── item_rangking.xml │ │ ├── item_songlist.xml │ │ ├── item_songlist_detail_header.xml │ │ ├── item_songlist_detail_list.xml │ │ ├── jpush_popwin_layout.xml │ │ ├── jpush_webview_layout.xml │ │ ├── layout_irecyclerview_classic_refresh_header_view.xml │ │ ├── layout_irecyclerview_load_more_footer.xml │ │ ├── layout_irecyclerview_load_more_footer_error_view.xml │ │ ├── layout_irecyclerview_load_more_footer_loading_view.xml │ │ ├── layout_irecyclerview_load_more_footer_the_end_view.xml │ │ ├── layout_irecyclerview_load_more_footer_view.xml │ │ ├── layout_irecyclerview_refresh_header.xml │ │ ├── list_header.xml │ │ └── view_nav.xml │ │ ├── menu │ │ ├── menu_movie_toolbar.xml │ │ ├── menu_nav.xml │ │ └── menu_photo_picker.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.png │ │ ├── values-w820dp │ │ └── dimens.xml │ │ └── values │ │ ├── attrs.xml │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── ids.xml │ │ ├── jpush_style.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── lvr │ └── threerecom │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/README.md -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/.gitignore -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/.idea/compiler.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/.idea/encodings.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/.idea/gradle.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/.idea/misc.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/.idea/modules.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/build.gradle -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/libs/commons-httpclient-3.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/libs/commons-httpclient-3.1.jar -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/libs/fastjson-1.2.2-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/libs/fastjson-1.2.2-sources.jar -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/libs/fastjson-1.2.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/libs/fastjson-1.2.2.jar -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/libs/log4j-1.2.17.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/libs/log4j-1.2.17.jar -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/proguard-rules.pro -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/androidTest/java/com/lvr/threerecom/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/androidTest/java/com/lvr/threerecom/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/assets/introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/assets/introduction.html -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/assets/license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/assets/license.html -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/SensorCollection/listener/SensorListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/SensorCollection/listener/SensorListener.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/SensorCollection/observer/SensorObserver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/SensorCollection/observer/SensorObserver.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/SensorCollection/observer/SensorObserverable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/SensorCollection/observer/SensorObserverable.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/SensorCollection/service/SensorService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/SensorCollection/service/SensorService.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/SensorCollection/utils/Constant.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/SensorCollection/utils/Constant.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/SensorCollection/utils/HttpUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/SensorCollection/utils/HttpUtil.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/SensorCollection/utils/JSONUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/SensorCollection/utils/JSONUtil.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/SensorCollection/utils/SensorUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/SensorCollection/utils/SensorUtil.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/adapter/FavorMovieAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/adapter/FavorMovieAdapter.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/adapter/InformationAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/adapter/InformationAdapter.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/adapter/MainAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/adapter/MainAdapter.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/adapter/MovieAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/adapter/MovieAdapter.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/adapter/MovieViewPagerAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/adapter/MovieViewPagerAdapter.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/adapter/MusicMainViewPagerAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/adapter/MusicMainViewPagerAdapter.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/adapter/MusicMyAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/adapter/MusicMyAdapter.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/adapter/MusicPlayingViewPagerAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/adapter/MusicPlayingViewPagerAdapter.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/adapter/MusicRankingAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/adapter/MusicRankingAdapter.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/adapter/MusicRankingListDetailAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/adapter/MusicRankingListDetailAdapter.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/adapter/MusicSongListAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/adapter/MusicSongListAdapter.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/adapter/MusicSongListDetailAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/adapter/MusicSongListDetailAdapter.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/adapter/MusicViewPagerAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/adapter/MusicViewPagerAdapter.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/anims/AnimationAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/anims/AnimationAdapter.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/anims/BaseItemAnimator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/anims/BaseItemAnimator.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/anims/LandingAnimator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/anims/LandingAnimator.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/anims/ScaleInAnimationAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/anims/ScaleInAnimationAdapter.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/anims/ViewHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/anims/ViewHelper.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/api/ApiService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/api/ApiService.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/app/AppApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/app/AppApplication.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/app/AppConstantValue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/app/AppConstantValue.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/app/AppManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/app/AppManager.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/app/BaiDuMusicApi.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/app/BaiDuMusicApi.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/base/BaseActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/base/BaseActivity.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/base/BaseActivityWithoutStatus.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/base/BaseActivityWithoutStatus.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/base/BaseApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/base/BaseApplication.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/base/BaseFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/base/BaseFragment.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/base/BaseFragmentAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/base/BaseFragmentAdapter.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/bean/FabSrcollBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/bean/FabSrcollBean.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/bean/FavorListBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/bean/FavorListBean.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/bean/InformationBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/bean/InformationBean.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/bean/LogInAndSignUpBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/bean/LogInAndSignUpBean.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/bean/LoginBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/bean/LoginBean.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/bean/MovieInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/bean/MovieInfo.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/bean/MusicMyItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/bean/MusicMyItem.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/bean/RankingListDetail.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/bean/RankingListDetail.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/bean/RankingListItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/bean/RankingListItem.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/bean/RatingResultBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/bean/RatingResultBean.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/bean/RecomMusicBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/bean/RecomMusicBean.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/bean/SignupBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/bean/SignupBean.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/bean/SongDetailInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/bean/SongDetailInfo.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/bean/SongListDetail.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/bean/SongListDetail.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/bean/SongUpdateInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/bean/SongUpdateInfo.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/bean/UpdateViewPagerBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/bean/UpdateViewPagerBean.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/bean/WrapperSongListInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/bean/WrapperSongListInfo.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/broadcastreceiver/MyReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/broadcastreceiver/MyReceiver.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/broadcastreceiver/ProgressReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/broadcastreceiver/ProgressReceiver.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/client/BaseApiService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/client/BaseApiService.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/client/BaseInterceptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/client/BaseInterceptor.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/client/BaseObserver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/client/BaseObserver.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/client/BaseResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/client/BaseResponse.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/client/CaheInterceptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/client/CaheInterceptor.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/client/ExceptionHandle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/client/ExceptionHandle.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/client/IpResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/client/IpResult.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/client/NetworkUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/client/NetworkUtil.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/client/RetrofitClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/client/RetrofitClient.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/client/RxDisposeManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/client/RxDisposeManager.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/service/MediaPlayService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/service/MediaPlayService.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/service/MediaServiceConnection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/service/MediaServiceConnection.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/MainActivity.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/home/AboutActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/home/AboutActivity.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/home/ContactAuthorActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/home/ContactAuthorActivity.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/home/FavorMovieActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/home/FavorMovieActivity.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/home/FavorMusicActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/home/FavorMusicActivity.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/home/IntroductionActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/home/IntroductionActivity.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/home/MyInformationActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/home/MyInformationActivity.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/home/NotificationShowActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/home/NotificationShowActivity.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/home/OpenSourceActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/home/OpenSourceActivity.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/home/PhotoPreviewActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/home/PhotoPreviewActivity.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/home/RecomMovieActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/home/RecomMovieActivity.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/home/RecomMusicActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/home/RecomMusicActivity.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/home/model/InformationModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/home/model/InformationModel.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/home/model/MainModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/home/model/MainModel.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/home/model/RecomMovieModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/home/model/RecomMovieModel.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/home/model/RecomMusicModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/home/model/RecomMusicModel.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/home/model/impl/InformationModelImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/home/model/impl/InformationModelImpl.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/home/model/impl/MainModelImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/home/model/impl/MainModelImpl.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/home/model/impl/RecomMovieModelImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/home/model/impl/RecomMovieModelImpl.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/home/model/impl/RecomMusicModelImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/home/model/impl/RecomMusicModelImpl.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/home/presenter/InformationPresenter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/home/presenter/InformationPresenter.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/home/presenter/MainPresenter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/home/presenter/MainPresenter.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/home/presenter/RecomMoviePresenter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/home/presenter/RecomMoviePresenter.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/home/presenter/RecomMusicPresenter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/home/presenter/RecomMusicPresenter.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/home/presenter/impl/InformationPresenterImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/home/presenter/impl/InformationPresenterImpl.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/home/presenter/impl/MainPresenterImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/home/presenter/impl/MainPresenterImpl.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/home/presenter/impl/RecomMoviePresenterImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/home/presenter/impl/RecomMoviePresenterImpl.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/home/presenter/impl/RecomMusicPresenterImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/home/presenter/impl/RecomMusicPresenterImpl.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/home/view/InformationView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/home/view/InformationView.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/home/view/MainView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/home/view/MainView.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/home/view/RecomMovieView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/home/view/RecomMovieView.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/home/view/RecomMusicView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/home/view/RecomMusicView.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/login/LoginActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/login/LoginActivity.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/login/SignUpActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/login/SignUpActivity.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/login/model/LogInModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/login/model/LogInModel.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/login/model/SignUpModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/login/model/SignUpModel.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/login/model/impl/LogInModelImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/login/model/impl/LogInModelImpl.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/login/model/impl/SignUpModelImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/login/model/impl/SignUpModelImpl.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/login/presenter/LogInPresenter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/login/presenter/LogInPresenter.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/login/presenter/SignUpPresenter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/login/presenter/SignUpPresenter.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/login/presenter/impl/LogInPresenterImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/login/presenter/impl/LogInPresenterImpl.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/login/presenter/impl/SignUpPresenterImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/login/presenter/impl/SignUpPresenterImpl.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/login/view/LogInView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/login/view/LogInView.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/login/view/SignUpView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/login/view/SignUpView.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/movie/MovieDetailActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/movie/MovieDetailActivity.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/movie/MovieDisplayActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/movie/MovieDisplayActivity.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/movie/MovieFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/movie/MovieFragment.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/movie/MovieJudgeActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/movie/MovieJudgeActivity.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/movie/MoviePlayActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/movie/MoviePlayActivity.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/movie/model/MovieModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/movie/model/MovieModel.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/movie/model/MovieModelImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/movie/model/MovieModelImpl.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/movie/presenter/Impl/MovieJudgePresenterImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/movie/presenter/Impl/MovieJudgePresenterImpl.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/movie/presenter/Impl/MoviePresenterImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/movie/presenter/Impl/MoviePresenterImpl.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/movie/presenter/MovieJudgePresenter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/movie/presenter/MovieJudgePresenter.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/movie/presenter/MoviePresenter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/movie/presenter/MoviePresenter.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/movie/view/MovieJudgeView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/movie/view/MovieJudgeView.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/movie/view/MovieView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/movie/view/MovieView.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/music/MusicActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/music/MusicActivity.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/music/MusicRankingListDetailActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/music/MusicRankingListDetailActivity.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/music/MusicSongListDetailActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/music/MusicSongListDetailActivity.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/music/PlayingActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/music/PlayingActivity.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/music/fragment/MusicDisplayFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/music/fragment/MusicDisplayFragment.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/music/fragment/MyFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/music/fragment/MyFragment.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/music/fragment/RankingFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/music/fragment/RankingFragment.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/music/fragment/RoundFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/music/fragment/RoundFragment.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/music/fragment/SongListFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/music/fragment/SongListFragment.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/music/model/MusicModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/music/model/MusicModel.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/music/model/impl/MusicModelImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/music/model/impl/MusicModelImpl.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/music/presneter/MusicPresenter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/music/presneter/MusicPresenter.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/music/presneter/MusicRankingListDetailPresenter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/music/presneter/MusicRankingListDetailPresenter.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/music/presneter/MusicRankingPresenter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/music/presneter/MusicRankingPresenter.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/music/presneter/MusicSongListDetailPresenter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/music/presneter/MusicSongListDetailPresenter.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/music/presneter/impl/MusicPresenterImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/music/presneter/impl/MusicPresenterImpl.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/music/presneter/impl/MusicRankingListDetailPresenterImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/music/presneter/impl/MusicRankingListDetailPresenterImpl.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/music/presneter/impl/MusicRankingPresenterImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/music/presneter/impl/MusicRankingPresenterImpl.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/music/presneter/impl/MusicSongListDetailPresenterImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/music/presneter/impl/MusicSongListDetailPresenterImpl.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/music/view/MusicRankingListDetailView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/music/view/MusicRankingListDetailView.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/music/view/MusicRankingListView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/music/view/MusicRankingListView.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/music/view/MusicSongListDetailView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/music/view/MusicSongListDetailView.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/music/view/MusicSongListView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/ui/music/view/MusicSongListView.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/utils/ACache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/utils/ACache.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/utils/AESTools.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/utils/AESTools.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/utils/BitmapUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/utils/BitmapUtils.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/utils/BytesHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/utils/BytesHandler.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/utils/CapturePhotoHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/utils/CapturePhotoHelper.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/utils/CollectionUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/utils/CollectionUtils.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/utils/DisplayUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/utils/DisplayUtil.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/utils/FolderManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/utils/FolderManager.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/utils/GlideLoader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/utils/GlideLoader.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/utils/GlideRoundTransformUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/utils/GlideRoundTransformUtil.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/utils/ImageLoaderUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/utils/ImageLoaderUtils.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/utils/MyUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/utils/MyUtils.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/utils/SPUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/utils/SPUtils.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/utils/StatusBarSetting.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/utils/StatusBarSetting.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/utils/TUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/utils/TUtil.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/utils/TimeUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/utils/TimeUtil.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/widget/CircleImageView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/widget/CircleImageView.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/widget/ClassicRefreshHeaderView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/widget/ClassicRefreshHeaderView.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/widget/LoadMoreFooterView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/widget/LoadMoreFooterView.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/widget/LoadingDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/widget/LoadingDialog.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/widget/ScrollAwareFABBehavior.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/widget/ScrollAwareFABBehavior.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/widget/StatusBarView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/widget/StatusBarView.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/widget/SuperTextView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/java/com/lvr/threerecom/widget/SuperTextView.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/anim/act_fade_in_center.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/anim/act_fade_in_center.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/anim/act_fade_out_center.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/anim/act_fade_out_center.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/anim/fade_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/anim/fade_in.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/anim/fade_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/anim/fade_out.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/anim/rotate_down.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/anim/rotate_down.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/anim/rotate_up.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/anim/rotate_up.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/anim/slide_in_left.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/anim/slide_in_left.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/anim/slide_in_right.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/anim/slide_in_right.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/anim/slide_out_left.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/anim/slide_out_left.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/anim/slide_out_right.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/anim/slide_out_right.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-hdpi/ic_arrow_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-hdpi/ic_arrow_back.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-hdpi/jpush_ic_richpush_actionbar_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-hdpi/jpush_ic_richpush_actionbar_back.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-hdpi/jpush_ic_richpush_actionbar_divider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-hdpi/jpush_ic_richpush_actionbar_divider.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-hdpi/jpush_richpush_btn_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-hdpi/jpush_richpush_btn_selector.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-hdpi/jpush_richpush_progressbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-hdpi/jpush_richpush_progressbar.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-hdpi/shape_loading_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-hdpi/shape_loading_dialog.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-mdpi/ic_arrow_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-mdpi/ic_arrow_back.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-mdpi/select_music_toolbar_song.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-mdpi/select_music_toolbar_song.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xhdpi/ic_arrow_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xhdpi/ic_arrow_back.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xhdpi/ic_loading_progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xhdpi/ic_loading_progress.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xhdpi/loading_dialog_progressbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xhdpi/loading_dialog_progressbar.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xhdpi/no_content_tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xhdpi/no_content_tip.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xhdpi/qq_refresh_success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xhdpi/qq_refresh_success.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xhdpi/selector_gray.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xhdpi/selector_gray.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xhdpi/twitter_pull_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xhdpi/twitter_pull_arrow.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/about.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/change.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/change.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/contact_author.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/contact_author.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/contact_blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/contact_blog.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/contact_email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/contact_email.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/contact_github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/contact_github.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/favor_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/favor_right.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/favor_wrong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/favor_wrong.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/guess_like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/guess_like.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/home.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/home_hot_hint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/home_hot_hint.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/ic_arrow_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/ic_arrow_back.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/ic_empty_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/ic_empty_picture.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/ic_image_loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/ic_image_loading.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/icon_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/icon_launcher.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/index_icn_earphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/index_icn_earphone.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/list_detail_icn_dld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/list_detail_icn_dld.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/list_detail_icn_fav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/list_detail_icn_fav.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/list_detail_icn_share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/list_detail_icn_share.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/list_expand_arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/list_expand_arrow_down.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/list_expand_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/list_expand_menu.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/list_icn_mng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/list_icn_mng.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/list_icn_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/list_icn_more.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/list_third.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/list_third.jpg -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/login_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/login_bg.jpg -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/login_recom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/login_recom.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/movie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/movie.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/movie_history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/movie_history.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/movie_hot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/movie_hot.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/music.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/music_detail_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/music_detail_play.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/music_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/music_download.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/music_list_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/music_list_default.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/music_list_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/music_list_menu.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/music_local.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/music_local.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/music_my_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/music_my_normal.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/music_my_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/music_my_selected.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/music_recent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/music_recent.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/music_singer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/music_singer.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/music_song_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/music_song_normal.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/music_song_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/music_song_selected.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/myinformation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/myinformation.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/nav_header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/nav_header.jpg -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/nav_photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/nav_photo.jpg -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/out.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/sigup_recom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/sigup_recom.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/songlist_detail_comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/songlist_detail_comment.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/toux2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xxhdpi/toux2.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xxxhdpi/ic_arrow_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xxxhdpi/ic_arrow_back.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xxxhdpi/login_bg_night.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xxxhdpi/login_bg_night.jpg -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xxxhdpi/play_btn_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xxxhdpi/play_btn_next.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xxxhdpi/play_btn_prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xxxhdpi/play_btn_prev.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xxxhdpi/play_comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xxxhdpi/play_comment.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xxxhdpi/play_disc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xxxhdpi/play_disc.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xxxhdpi/play_disc_halo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xxxhdpi/play_disc_halo.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xxxhdpi/play_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xxxhdpi/play_download.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xxxhdpi/play_icn_cmt_number_dis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xxxhdpi/play_icn_cmt_number_dis.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xxxhdpi/play_icn_dlded_dis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xxxhdpi/play_icn_dlded_dis.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xxxhdpi/play_icn_loop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xxxhdpi/play_icn_loop.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xxxhdpi/play_icn_loop_prs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xxxhdpi/play_icn_loop_prs.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xxxhdpi/play_icn_one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xxxhdpi/play_icn_one.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xxxhdpi/play_icn_shuffle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xxxhdpi/play_icn_shuffle.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xxxhdpi/play_icn_src_prs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xxxhdpi/play_icn_src_prs.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xxxhdpi/play_love.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xxxhdpi/play_love.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xxxhdpi/play_needle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xxxhdpi/play_needle.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xxxhdpi/play_rdi_btn_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xxxhdpi/play_rdi_btn_pause.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable-xxxhdpi/play_rdi_btn_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable-xxxhdpi/play_rdi_btn_play.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable/ic_arrow_upward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable/ic_arrow_upward.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable/select_btn_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable/select_btn_bg.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable/select_music_toolbar_my.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable/select_music_toolbar_my.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/drawable/selector_login_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/drawable/selector_login_button.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/layout/activity_about.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/layout/activity_about.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/layout/activity_contact_author.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/layout/activity_contact_author.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/layout/activity_favor_movie.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/layout/activity_favor_movie.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/layout/activity_introduction.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/layout/activity_introduction.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/layout/activity_login.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/layout/activity_login.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/layout/activity_movie.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/layout/activity_movie.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/layout/activity_movie_detail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/layout/activity_movie_detail.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/layout/activity_movie_judge.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/layout/activity_movie_judge.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/layout/activity_movie_play.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/layout/activity_movie_play.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/layout/activity_music.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/layout/activity_music.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/layout/activity_music_play.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/layout/activity_music_play.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/layout/activity_my_information.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/layout/activity_my_information.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/layout/activity_notification_show.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/layout/activity_notification_show.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/layout/activity_open_source.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/layout/activity_open_source.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/layout/activity_photo_preview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/layout/activity_photo_preview.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/layout/activity_rankinglist_detail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/layout/activity_rankinglist_detail.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/layout/activity_recom_movie.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/layout/activity_recom_movie.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/layout/activity_recom_music.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/layout/activity_recom_music.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/layout/activity_signup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/layout/activity_signup.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/layout/activity_songlist_detail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/layout/activity_songlist_detail.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/layout/dialog_loading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/layout/dialog_loading.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/layout/dialog_loading_tip.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/layout/dialog_loading_tip.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/layout/fragment_movie.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/layout/fragment_movie.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/layout/fragment_music_my.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/layout/fragment_music_my.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/layout/fragment_music_rank.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/layout/fragment_music_rank.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/layout/fragment_music_songs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/layout/fragment_music_songs.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/layout/fragment_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/layout/fragment_round.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/layout/fragment_song_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/layout/fragment_song_list.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/layout/item_edit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/layout/item_edit.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/layout/item_favor_common.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/layout/item_favor_common.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/layout/item_gender_select.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/layout/item_gender_select.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/layout/item_home_banner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/layout/item_home_banner.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/layout/item_home_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/layout/item_home_bottom.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/layout/item_home_movie_des.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/layout/item_home_movie_des.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/layout/item_information_common.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/layout/item_information_common.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/layout/item_information_special.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/layout/item_information_special.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/layout/item_movie.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/layout/item_movie.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/layout/item_music_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/layout/item_music_bottom.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/layout/item_music_middle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/layout/item_music_middle.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/layout/item_music_top.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/layout/item_music_top.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/layout/item_photo_select.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/layout/item_photo_select.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/layout/item_rangking.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/layout/item_rangking.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/layout/item_songlist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/layout/item_songlist.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/layout/item_songlist_detail_header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/layout/item_songlist_detail_header.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/layout/item_songlist_detail_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/layout/item_songlist_detail_list.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/layout/jpush_popwin_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/layout/jpush_popwin_layout.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/layout/jpush_webview_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/layout/jpush_webview_layout.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/layout/layout_irecyclerview_classic_refresh_header_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/layout/layout_irecyclerview_classic_refresh_header_view.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/layout/layout_irecyclerview_load_more_footer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/layout/layout_irecyclerview_load_more_footer.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/layout/layout_irecyclerview_load_more_footer_error_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/layout/layout_irecyclerview_load_more_footer_error_view.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/layout/layout_irecyclerview_load_more_footer_loading_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/layout/layout_irecyclerview_load_more_footer_loading_view.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/layout/layout_irecyclerview_load_more_footer_the_end_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/layout/layout_irecyclerview_load_more_footer_the_end_view.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/layout/layout_irecyclerview_load_more_footer_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/layout/layout_irecyclerview_load_more_footer_view.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/layout/layout_irecyclerview_refresh_header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/layout/layout_irecyclerview_refresh_header.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/layout/list_header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/layout/list_header.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/layout/view_nav.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/layout/view_nav.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/menu/menu_movie_toolbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/menu/menu_movie_toolbar.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/menu/menu_nav.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/menu/menu_nav.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/menu/menu_photo_picker.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/menu/menu_photo_picker.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/values/ids.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/values/ids.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/values/jpush_style.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/values/jpush_style.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/app/src/test/java/com/lvr/threerecom/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/app/src/test/java/com/lvr/threerecom/ExampleUnitTest.java -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/build.gradle -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/gradle.properties -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/gradlew -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/SmartRecom/HEAD/SmartRecom/ThreeRecom/gradlew.bat -------------------------------------------------------------------------------- /SmartRecom/ThreeRecom/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------