├── .gitignore
├── .idea
├── codeStyles
│ └── Project.xml
├── misc.xml
├── modules.xml
├── runConfigurations.xml
└── vcs.xml
├── LICENSE
├── README.md
├── app
├── .gitignore
├── build.gradle
├── libs
│ ├── BaiduLBS_Android.jar
│ ├── MiPush_SDK_Client_3_6_0.jar
│ ├── Msc.jar
│ ├── Sunflower.jar
│ ├── agora-rtc-sdk.jar
│ ├── nrtc-sdk.jar
│ ├── ocr-sdk.jar
│ └── video_effect.jar
├── proguard-rules.pro
├── release
│ └── output.json
└── src
│ ├── androidTest
│ └── java
│ │ └── com
│ │ └── example
│ │ └── lab
│ │ └── android
│ │ └── nuc
│ │ └── law_analysis
│ │ └── ExampleInstrumentedTest.java
│ ├── main
│ ├── AndroidManifest.xml
│ ├── assets
│ │ ├── aip.license
│ │ ├── fonts
│ │ │ ├── agency.ttf
│ │ │ └── canaro_extra_bold.otf
│ │ ├── iflytek
│ │ │ ├── recognize.xml
│ │ │ ├── voice_bg.9.png
│ │ │ ├── voice_empty.png
│ │ │ ├── voice_full.png
│ │ │ ├── waiting.png
│ │ │ └── warning.png
│ │ ├── ivw
│ │ │ └── 5bb37e54.jet
│ │ ├── lawList.db
│ │ ├── wake.bnf
│ │ └── wake_grammar_sample.abnf
│ ├── java
│ │ └── com
│ │ │ └── example
│ │ │ └── lab
│ │ │ └── android
│ │ │ └── nuc
│ │ │ └── law_analysis
│ │ │ ├── adapter
│ │ │ ├── CommentExpandAdapter.java
│ │ │ ├── GridImageAdapter.java
│ │ │ ├── JiaoziAdapter.java
│ │ │ ├── LawListAdapter.java
│ │ │ ├── LawyerAdapter.java
│ │ │ ├── MagicPagerAdapter.java
│ │ │ ├── MainAdapter.java
│ │ │ ├── Main_Analysis_Adapter.java
│ │ │ ├── NineGridTest2Adapter.java
│ │ │ ├── PageAdapter.java
│ │ │ └── RecyclerViewAdapter.java
│ │ │ ├── application
│ │ │ ├── Config.java
│ │ │ └── MyApplication.java
│ │ │ ├── bean
│ │ │ ├── CommentBean.java
│ │ │ ├── CommentDetailBean.java
│ │ │ ├── DataBean.java
│ │ │ ├── Jiaozi.java
│ │ │ ├── Law.java
│ │ │ ├── LawCase.java
│ │ │ ├── LawEntry.java
│ │ │ ├── Lawyer.java
│ │ │ ├── Msg.java
│ │ │ ├── NineGridTestModel.java
│ │ │ ├── People.java
│ │ │ ├── ReplyDetailBean.java
│ │ │ ├── Result.java
│ │ │ └── User.java
│ │ │ ├── communication
│ │ │ ├── activity
│ │ │ │ ├── ActionSheetDialog.java
│ │ │ │ ├── ChatActivity.java
│ │ │ │ ├── DictationResult.java
│ │ │ │ ├── ImageDisplayActivity.java
│ │ │ │ ├── LocationActivity.java
│ │ │ │ └── PictureTextActivity.java
│ │ │ ├── adapter
│ │ │ │ ├── ChatEmotionGridAdapter.java
│ │ │ │ ├── ChatEmotionPagerAdapter.java
│ │ │ │ ├── ChatRecyclerAdapter.java
│ │ │ │ └── DataAdapter.java
│ │ │ ├── bean
│ │ │ │ ├── BaseEnum
│ │ │ │ │ ├── AccenteEnum.java
│ │ │ │ │ ├── DomainEnum.java
│ │ │ │ │ ├── LanguageEnum.java
│ │ │ │ │ └── SpeechPeopleEnum.java
│ │ │ │ ├── ChatConst.java
│ │ │ │ ├── ChatMessageBean.java
│ │ │ │ └── ChatMessageType.java
│ │ │ ├── listener
│ │ │ │ └── PlayButtonClickListener.java
│ │ │ ├── utils
│ │ │ │ ├── AudioManager.java
│ │ │ │ ├── Constants.java
│ │ │ │ ├── EmotionHelper.java
│ │ │ │ ├── FileSaveUtil.java
│ │ │ │ ├── ImageCheckoutUtil.java
│ │ │ │ ├── KeyBoardUtils.java
│ │ │ │ ├── LogUtils.java
│ │ │ │ ├── PathUtils.java
│ │ │ │ ├── PhotoUtils.java
│ │ │ │ ├── ScreenUtil.java
│ │ │ │ ├── SynthesisManager.java
│ │ │ │ └── Utils.java
│ │ │ ├── viewholder
│ │ │ │ ├── AdapterViewHolder.java
│ │ │ │ ├── ChatItemAudioHolder.java
│ │ │ │ ├── ChatItemHolder.java
│ │ │ │ ├── ChatItemImageHolder.java
│ │ │ │ ├── ChatItemTextHolder.java
│ │ │ │ ├── CommonViewHolder.java
│ │ │ │ └── ViewHolder.java
│ │ │ └── widget
│ │ │ │ ├── AudioRecordButton.java
│ │ │ │ ├── ChatBottomView.java
│ │ │ │ ├── CircleIndicator.java
│ │ │ │ ├── DialogManager.java
│ │ │ │ ├── EmotionEditText.java
│ │ │ │ ├── HeadIconSelectorView.java
│ │ │ │ ├── InputBarLayout.java
│ │ │ │ └── PlayButton.java
│ │ │ ├── news
│ │ │ ├── Animation
│ │ │ │ └── CustomAnimation.java
│ │ │ ├── ImageLoader.java
│ │ │ ├── ScrollEvent.java
│ │ │ ├── activity
│ │ │ │ ├── NewsDetailActivity.java
│ │ │ │ └── WebUIActivity.java
│ │ │ ├── adapter
│ │ │ │ ├── AbsListAdapter.java
│ │ │ │ ├── NewsAdapter.java
│ │ │ │ └── TitleAdapter.java
│ │ │ ├── bean
│ │ │ │ ├── NewsBean.java
│ │ │ │ └── NewsDetailBean.java
│ │ │ └── util
│ │ │ │ ├── ListUtils.java
│ │ │ │ ├── ScrollAwareFABBehavior.java
│ │ │ │ ├── ShareUtil.java
│ │ │ │ ├── SnackBarUtil.java
│ │ │ │ └── WebUtil.java
│ │ │ ├── utils
│ │ │ ├── ImageLoaderUtil.java
│ │ │ ├── SQLiteUtils.java
│ │ │ ├── iflytek
│ │ │ │ ├── IflytekSpeech.java
│ │ │ │ ├── Iflytekrecognize.java
│ │ │ │ ├── iflytekWakeUp.java
│ │ │ │ └── resultresolve.java
│ │ │ ├── manager
│ │ │ │ └── FullyGridLayoutManager.java
│ │ │ ├── tools
│ │ │ │ ├── FileUtil.java
│ │ │ │ ├── GlideImageLoader.java
│ │ │ │ ├── NineGridLayout.java
│ │ │ │ ├── NineGridTestLayout.java
│ │ │ │ ├── PermissionUtil.java
│ │ │ │ └── RecognizeService.java
│ │ │ └── views
│ │ │ │ ├── CanaroTextView.java
│ │ │ │ ├── ColorFlipPagerTitleView.java
│ │ │ │ ├── CommentExpandableListView.java
│ │ │ │ ├── HoverImageView.java
│ │ │ │ ├── JzvdStdShowShareButtonAfterFullscreen.java
│ │ │ │ ├── MyNestedScrollView.java
│ │ │ │ ├── RatioImageView.java
│ │ │ │ ├── RecycleViewDivider2.java
│ │ │ │ ├── RippleButtonView.java
│ │ │ │ ├── RoundImageView.java
│ │ │ │ └── ScrollAwareBehavior.java
│ │ │ ├── video
│ │ │ ├── VideoAdapter.java
│ │ │ ├── VideoBean.java
│ │ │ └── VideoFragment.java
│ │ │ └── view
│ │ │ ├── activity
│ │ │ ├── AboutActivity.java
│ │ │ ├── Analysis_Similar_Item.java
│ │ │ ├── CommentActivity.java
│ │ │ ├── DynamicActivity.java
│ │ │ ├── InfoActivity.java
│ │ │ ├── LawyerActivity.java
│ │ │ ├── LoginActivity.java
│ │ │ ├── MainActivity.java
│ │ │ ├── Search_Intent_Activity.java
│ │ │ ├── Search_Item_Activity.java
│ │ │ ├── SelectArticleActivity.java
│ │ │ ├── SelectLawyerActivity.java
│ │ │ ├── SelectTopicActivity.java
│ │ │ ├── TuiJIan_Analysis.java
│ │ │ ├── VideoChatActivity.java
│ │ │ ├── VoiceChatActivity.java
│ │ │ └── pictureTotext.java
│ │ │ ├── customview
│ │ │ ├── CardAdapter.java
│ │ │ ├── CardItem.java
│ │ │ ├── CustomStatusView.java
│ │ │ ├── Shadowtransformer.java
│ │ │ └── StatusEnum.java
│ │ │ └── fragment
│ │ │ ├── AbsListFragment.java
│ │ │ ├── CommunicationFragment.java
│ │ │ ├── LawNewsFragment.java
│ │ │ ├── LawNewsHomeFragment.java
│ │ │ ├── LawVideoFragment.java
│ │ │ ├── LawVideoHomeFragment.java
│ │ │ ├── LawyersChatFragment.java
│ │ │ ├── LawyersFragment.java
│ │ │ ├── MainAnalysisFragment.java
│ │ │ ├── NewsFragment.java
│ │ │ └── SearchLawListFragment.java
│ ├── jniLibs
│ │ ├── arm64-v8a
│ │ │ ├── libBaiduMapSDK_base_v4_5_2.so
│ │ │ ├── libBaiduMapSDK_map_v4_5_2.so
│ │ │ ├── libagora-rtc-sdk-jni.so
│ │ │ ├── liblocSDK7b.so
│ │ │ ├── libmsc.so
│ │ │ ├── libne_audio.so
│ │ │ ├── libnrtc_engine.so
│ │ │ ├── libnrtc_network.so
│ │ │ ├── libocr-sdk.so
│ │ │ ├── librts_network.so
│ │ │ └── libvideoeffect.so
│ │ ├── armeabi-v7a
│ │ │ ├── libBaiduMapSDK_base_v4_5_2.so
│ │ │ ├── libBaiduMapSDK_map_v4_5_2.so
│ │ │ ├── libagora-rtc-sdk-jni.so
│ │ │ ├── liblocSDK7b.so
│ │ │ ├── libmsc.so
│ │ │ ├── libne_audio.so
│ │ │ ├── libnrtc_engine.so
│ │ │ ├── libnrtc_network.so
│ │ │ ├── libocr-sdk.so
│ │ │ ├── librts_network.so
│ │ │ └── libvideoeffect.so
│ │ ├── armeabi
│ │ │ ├── libBaiduMapSDK_base_v4_5_2.so
│ │ │ ├── libBaiduMapSDK_map_v4_5_2.so
│ │ │ ├── liblocSDK7b.so
│ │ │ ├── libmsc.so
│ │ │ └── libocr-sdk.so
│ │ ├── mips
│ │ │ └── libmsc.so
│ │ ├── mips64
│ │ │ └── libmsc.so
│ │ ├── x86
│ │ │ ├── libBaiduMapSDK_base_v4_5_2.so
│ │ │ ├── libBaiduMapSDK_map_v4_5_2.so
│ │ │ ├── libagora-rtc-sdk-jni.so
│ │ │ ├── liblocSDK7b.so
│ │ │ ├── libmsc.so
│ │ │ ├── libne_audio.so
│ │ │ ├── libnrtc_engine.so
│ │ │ ├── libnrtc_network.so
│ │ │ ├── libocr-sdk.so
│ │ │ ├── librts_network.so
│ │ │ └── libvideoeffect.so
│ │ └── x86_64
│ │ │ ├── libBaiduMapSDK_base_v4_5_2.so
│ │ │ ├── libBaiduMapSDK_map_v4_5_2.so
│ │ │ ├── liblocSDK7b.so
│ │ │ ├── libmsc.so
│ │ │ ├── libne_audio.so
│ │ │ ├── libnrtc_engine.so
│ │ │ ├── libnrtc_network.so
│ │ │ ├── librts_network.so
│ │ │ └── libvideoeffect.so
│ └── res
│ │ ├── anim
│ │ ├── actionsheet_dialog_in.xml
│ │ ├── actionsheet_dialog_out.xml
│ │ ├── animotion.xml
│ │ ├── dialog_enter.xml
│ │ ├── dialog_exit.xml
│ │ ├── dialog_hidden.xml
│ │ ├── dialog_show.xml
│ │ ├── floatingactionbutton_in.xml
│ │ ├── floatingactionbutton_out.xml
│ │ ├── out_to_left.xml
│ │ ├── rotate_form.xml
│ │ ├── rotate_form_reverse.xml
│ │ └── scale_with_alpha.xml
│ │ ├── color
│ │ └── color_selector.xml
│ │ ├── drawable-hdpi
│ │ ├── banner_default.png
│ │ ├── communication.png
│ │ ├── ic_activity_active.png
│ │ ├── ic_feed.png
│ │ ├── ic_first.png
│ │ ├── ic_menu.png
│ │ ├── ic_menu_90.png
│ │ ├── ic_news.png
│ │ ├── ic_news2.png
│ │ ├── ic_profile.png
│ │ ├── ic_searchs.png
│ │ ├── ic_searchs1.png
│ │ ├── ic_second.png
│ │ ├── ic_settings.png
│ │ ├── ic_seventh.png
│ │ ├── ic_sixth.png
│ │ ├── ic_third.png
│ │ ├── logo.png
│ │ ├── navi_map_gps_locked.png
│ │ ├── num_oval_orange.xml
│ │ ├── platform_begin.png
│ │ └── platform_normal.png
│ │ ├── drawable-mdpi
│ │ ├── bt_selector.xml
│ │ ├── btn_end_call.png
│ │ ├── btn_mute.png
│ │ ├── btn_speaker.png
│ │ ├── btn_switch_camera.png
│ │ ├── btn_video.png
│ │ ├── btn_voice.png
│ │ ├── chat_add_location_normal.png
│ │ ├── chat_add_video_normal.png
│ │ ├── chat_add_voice_normal.png
│ │ ├── comment_logo.jpg
│ │ ├── ic_arrow.xml
│ │ ├── ic_change.xml
│ │ ├── ic_download.xml
│ │ ├── ic_github.xml
│ │ ├── ic_pause.xml
│ │ ├── ic_play.xml
│ │ ├── ic_send_video.png
│ │ ├── ic_share.xml
│ │ ├── ic_text_to_voice.png
│ │ ├── ic_voicetotext.png
│ │ ├── icon.png
│ │ └── new_back.png
│ │ ├── drawable-v24
│ │ ├── btn_normal.xml
│ │ ├── btn_press.xml
│ │ ├── comment_dialog_et_selector.xml
│ │ ├── ic_launcher_foreground.xml
│ │ ├── rounded_rectangle.xml
│ │ └── selector_btn.xml
│ │ ├── drawable-xhdpi
│ │ ├── addimg_1x.png
│ │ ├── back2.png
│ │ ├── cancel.png
│ │ ├── chat_common_empty_photo.9.png
│ │ ├── chat_common_image_load_fail.png
│ │ ├── chat_default_user_avatar.png
│ │ ├── chat_to_bg_normal.9.png
│ │ ├── chat_voice_left.png
│ │ ├── chat_voice_left1.png
│ │ ├── chat_voice_left2.png
│ │ ├── chat_voice_left3.png
│ │ ├── chat_voice_right.png
│ │ ├── chat_voice_right1.png
│ │ ├── chat_voice_right2.png
│ │ ├── chat_voice_right3.png
│ │ ├── comment_bt_selector.xml
│ │ ├── country_cn.png
│ │ ├── delet_zhaopian_1x.png
│ │ ├── emoji_angry.png
│ │ ├── emoji_anguished.png
│ │ ├── emoji_astonished.png
│ │ ├── emoji_blush.png
│ │ ├── emoji_clap.png
│ │ ├── emoji_cold_sweat.png
│ │ ├── emoji_confounded.png
│ │ ├── emoji_confused.png
│ │ ├── emoji_cry.png
│ │ ├── emoji_disappointed.png
│ │ ├── emoji_disappointed_relieved.png
│ │ ├── emoji_dizzy_face.png
│ │ ├── emoji_expressionless.png
│ │ ├── emoji_fearful.png
│ │ ├── emoji_flushed.png
│ │ ├── emoji_frowning.png
│ │ ├── emoji_grimacing.png
│ │ ├── emoji_grin.png
│ │ ├── emoji_grinning.png
│ │ ├── emoji_heart_eyes.png
│ │ ├── emoji_hushed.png
│ │ ├── emoji_innocent.png
│ │ ├── emoji_joy.png
│ │ ├── emoji_kissing.png
│ │ ├── emoji_kissing_closed_eyes.png
│ │ ├── emoji_kissing_face.png
│ │ ├── emoji_kissing_heart.png
│ │ ├── emoji_kissing_smiling_eyes.png
│ │ ├── emoji_laughing.png
│ │ ├── emoji_mask.png
│ │ ├── emoji_neutral_face.png
│ │ ├── emoji_no_mouth.png
│ │ ├── emoji_open_mouth.png
│ │ ├── emoji_pensive.png
│ │ ├── emoji_persevere.png
│ │ ├── emoji_point_left.png
│ │ ├── emoji_point_right.png
│ │ ├── emoji_rage.png
│ │ ├── emoji_relaxed.png
│ │ ├── emoji_relieved.png
│ │ ├── emoji_satisfied.png
│ │ ├── emoji_scream.png
│ │ ├── emoji_sleeping.png
│ │ ├── emoji_sleepy.png
│ │ ├── emoji_smile.png
│ │ ├── emoji_smiley.png
│ │ ├── emoji_smirk.png
│ │ ├── emoji_sob.png
│ │ ├── emoji_stuck_out_tongue.png
│ │ ├── emoji_stuck_out_tongue_closed_eyes.png
│ │ ├── emoji_stuck_out_tongue_winking_eye.png
│ │ ├── emoji_sunglasses.png
│ │ ├── emoji_sweat.png
│ │ ├── emoji_sweat_smile.png
│ │ ├── emoji_thumbsdown.png
│ │ ├── emoji_thumbsup.png
│ │ ├── emoji_tired_face.png
│ │ ├── emoji_triumph.png
│ │ ├── emoji_unamused.png
│ │ ├── emoji_weary.png
│ │ ├── emoji_wink.png
│ │ ├── emoji_worried.png
│ │ ├── emoji_yum.png
│ │ ├── hebei.png
│ │ ├── ic_comment.png
│ │ ├── ic_trans.png
│ │ ├── icon_collect.png
│ │ ├── icon_comment_like.png
│ │ ├── icon_focus.png
│ │ ├── icon_work_like.png
│ │ ├── message_transfer_money_left.9.png
│ │ ├── message_transfer_money_right.9.png
│ │ ├── orange_arrow_down.png
│ │ ├── orange_arrow_up.png
│ │ ├── user_logo.jpg
│ │ ├── wakeup.png
│ │ └── wakeupp.png
│ │ ├── drawable-xxhdpi
│ │ ├── about.png
│ │ ├── actionsheet_bottom_normal.9.png
│ │ ├── actionsheet_bottom_pressed.9.png
│ │ ├── actionsheet_bottom_selector.xml
│ │ ├── actionsheet_middle_normal.9.png
│ │ ├── actionsheet_middle_pressed.9.png
│ │ ├── actionsheet_middle_selector.xml
│ │ ├── actionsheet_single_normal.9.png
│ │ ├── actionsheet_single_pressed.9.png
│ │ ├── actionsheet_single_selector.xml
│ │ ├── actionsheet_top_normal.9.png
│ │ ├── actionsheet_top_pressed.9.png
│ │ ├── actionsheet_top_selector.xml
│ │ ├── ic_dynamic.xml
│ │ ├── ic_menu_gallery.xml
│ │ ├── ic_sign_in.xml
│ │ └── video.xml
│ │ ├── drawable
│ │ ├── analysis_item.png
│ │ ├── anjian_xiangjin.png
│ │ ├── back_analyis.jpg
│ │ ├── bg_round_rect.xml
│ │ ├── btn_text_selector.xml
│ │ ├── button_guanzhu.xml
│ │ ├── button_guanzhu_1.xml
│ │ ├── button_nopress.xml
│ │ ├── button_press.xml
│ │ ├── button_recording.xml
│ │ ├── button_recordnormal.xml
│ │ ├── button_shape.xml
│ │ ├── chat_anim_voice_left.xml
│ │ ├── chat_anim_voice_right.xml
│ │ ├── chat_btn_fail_resend.xml
│ │ ├── chat_fail_resend_normal.png
│ │ ├── chat_fail_resend_press.png
│ │ ├── click_bg.xml
│ │ ├── delete.jpg
│ │ ├── edittext_style.xml
│ │ ├── fab_label_background.xml
│ │ ├── frame_bg.xml
│ │ ├── frame_blue_to_thin_bg.xml
│ │ ├── ic_browser.xml
│ │ ├── ic_copy.xml
│ │ ├── ic_default.xml
│ │ ├── ic_facebook_blue.xml
│ │ ├── ic_facebook_pink.xml
│ │ ├── ic_instagram_blue.xml
│ │ ├── ic_instagram_pink.xml
│ │ ├── ic_launcher_background.xml
│ │ ├── ic_message_pressed.xml
│ │ ├── ic_toolbar_back.xml
│ │ ├── ic_twitter_blue.xml
│ │ ├── ic_twitter_pink.xml
│ │ ├── ic_video.xml
│ │ ├── ic_webview.xml
│ │ ├── item_divider_line.xml
│ │ ├── logo2.png
│ │ ├── msg_input_shape.xml
│ │ ├── paizhao.png
│ │ ├── rounded_rectangle.xml
│ │ ├── search_focused.xml
│ │ ├── search_normal.xml
│ │ ├── search_selector.xml
│ │ ├── shape_conner_white_bg.xml
│ │ ├── share_selector.xml
│ │ ├── simple_splitter.xml
│ │ ├── yuyin.png
│ │ ├── yuyin_edit_center.jpg
│ │ └── yuyin_top.png
│ │ ├── layout
│ │ ├── activity_about.xml
│ │ ├── activity_comment.xml
│ │ ├── activity_dynamic.xml
│ │ ├── activity_info.xml
│ │ ├── activity_lawyer.xml
│ │ ├── activity_location.xml
│ │ ├── activity_login.xml
│ │ ├── activity_main.xml
│ │ ├── activity_news_detail.xml
│ │ ├── activity_picture_text.xml
│ │ ├── activity_picture_totext.xml
│ │ ├── activity_select_article.xml
│ │ ├── activity_select_lawyer.xml
│ │ ├── activity_select_topic.xml
│ │ ├── activity_service_chat.xml
│ │ ├── activity_video_chat.xml
│ │ ├── activity_voice_chat.xml
│ │ ├── activity_web_ui.xml
│ │ ├── analysis_item_show.xml
│ │ ├── analysis_tuijian_item_.xml
│ │ ├── cardview_analyis_item.xml
│ │ ├── chat_emotion_gridview.xml
│ │ ├── chat_emotion_item.xml
│ │ ├── chat_image_brower_layout.xml
│ │ ├── chat_input_bottom_bar_layout.xml
│ │ ├── chat_item_image_layout.xml
│ │ ├── chat_item_left_audio_layout.xml
│ │ ├── chat_item_left_layout.xml
│ │ ├── chat_item_left_text_layout.xml
│ │ ├── chat_item_right_audio_layout.xml
│ │ ├── chat_item_right_image_layout.xml
│ │ ├── chat_item_right_layout.xml
│ │ ├── chat_item_right_text_layout.xml
│ │ ├── comment_dialog_layout.xml
│ │ ├── comment_item_layout.xml
│ │ ├── comment_reply_item_layout.xml
│ │ ├── fragment2.xml
│ │ ├── fragment4.xml
│ │ ├── fragment_law_chat.xml
│ │ ├── fragment_law_video.xml
│ │ ├── fragment_law_video1.xml
│ │ ├── fragment_law_video1_item.xml
│ │ ├── fragment_lawyers.xml
│ │ ├── fragment_news_home.xml
│ │ ├── frg_base.xml
│ │ ├── gv_filter_image.xml
│ │ ├── item_news.xml
│ │ ├── item_nine_grid.xml
│ │ ├── item_recyle.xml
│ │ ├── item_video.xml
│ │ ├── law_item.xml
│ │ ├── law_item_view.xml
│ │ ├── law_news_fragment.xml
│ │ ├── lawyer_detail_cardview_1.xml
│ │ ├── lawyer_detail_carview_2.xml
│ │ ├── lawyer_item.xml
│ │ ├── layout_chat_bottom_add.xml
│ │ ├── layout_mess_iv_listitem.xml
│ │ ├── layout_standard_with_share_button.xml
│ │ ├── layout_view_headicon.xml
│ │ ├── layout_voice_dialog_manager.xml
│ │ ├── main_analysis_fragment.xml
│ │ ├── question_detail_actionabr.xml
│ │ ├── search_intent_acvtivity.xml
│ │ ├── search_intent_item.xml
│ │ ├── search_law_list_fragment.xml
│ │ ├── shine_toolbar.xml
│ │ ├── shop_dialog_toast.xml
│ │ ├── toolbar_layout.xml
│ │ └── view_actionsheet.xml
│ │ ├── menu
│ │ ├── change_voice.xml
│ │ ├── menu_detail.xml
│ │ ├── menu_web.xml
│ │ └── select_pic_menu.xml
│ │ ├── mipmap-hdpi
│ │ ├── ic_btn_emoji.png
│ │ ├── ic_btn_keybroad.png
│ │ ├── ic_btn_more.png
│ │ ├── ic_btn_voice.png
│ │ ├── ic_launcher.png
│ │ ├── ic_launcher_round.png
│ │ ├── share_normal.png
│ │ └── share_pressed.png
│ │ ├── mipmap-mdpi
│ │ ├── ic_launcher.png
│ │ └── ic_launcher_round.png
│ │ ├── mipmap-xhdpi
│ │ ├── cancel.png
│ │ ├── ic_launcher.png
│ │ ├── ic_launcher_round.png
│ │ ├── msg_chat_voice_unread.png
│ │ ├── tb_bottom_take_photo.png
│ │ ├── tb_dialog_loading_bg.png
│ │ ├── tb_voice1.png
│ │ ├── tb_voice2.png
│ │ ├── tb_voice3.png
│ │ └── voice_to_short.png
│ │ ├── mipmap-xxhdpi
│ │ ├── ic_add_article.png
│ │ ├── ic_image.png
│ │ ├── ic_launcher.png
│ │ ├── ic_launcher_round.png
│ │ └── ic_release_video.png
│ │ ├── mipmap-xxxhdpi
│ │ ├── ic_launcher.png
│ │ ├── ic_launcher_round.png
│ │ └── tb_bottom_images.png
│ │ └── values
│ │ ├── attrs.xml
│ │ ├── colors.xml
│ │ ├── dimens.xml
│ │ ├── round_imageview_attrs.xml
│ │ ├── strings.xml
│ │ └── styles.xml
│ └── test
│ └── java
│ └── com
│ └── example
│ └── lab
│ └── android
│ └── nuc
│ └── law_analysis
│ └── ExampleUnitTest.java
├── build.gradle
├── gradle.properties
├── gradle
└── wrapper
│ ├── gradle-wrapper.jar
│ └── gradle-wrapper.properties
├── gradlew
├── gradlew.bat
├── lablaw.jks
├── ocr_ui
├── build.gradle
├── libs
│ ├── .DS_Store
│ └── license.jar
├── proguard-rules.pro
└── src
│ ├── .DS_Store
│ └── main
│ ├── .DS_Store
│ ├── AndroidManifest.xml
│ ├── assets
│ ├── .DS_Store
│ └── models
│ │ ├── .DS_Store
│ │ ├── integrity_model_secret.bin
│ │ └── quality_model_secret.bin
│ ├── java
│ ├── .DS_Store
│ └── com
│ │ ├── .DS_Store
│ │ └── baidu
│ │ ├── .DS_Store
│ │ ├── idcardquality
│ │ └── IDcardQualityProcess.java
│ │ └── ocr
│ │ └── ui
│ │ ├── camera
│ │ ├── Camera1Control.java
│ │ ├── Camera2Control.java
│ │ ├── CameraActivity.java
│ │ ├── CameraNativeHelper.java
│ │ ├── CameraThreadPool.java
│ │ ├── CameraView.java
│ │ ├── ICameraControl.java
│ │ ├── MaskView.java
│ │ ├── OCRCameraLayout.java
│ │ ├── OCRFrameLayout.java
│ │ └── PermissionCallback.java
│ │ ├── crop
│ │ ├── CropView.java
│ │ └── FrameOverlayView.java
│ │ └── util
│ │ ├── DimensionUtil.java
│ │ └── ImageUtil.java
│ ├── jniLibs
│ ├── .DS_Store
│ ├── arm64-v8a
│ │ ├── libidcard_quality.1.1.1.so
│ │ └── libidl_license.so
│ ├── armeabi-v7a
│ │ ├── libidcard_quality.1.1.1.so
│ │ └── libidl_license.so
│ ├── armeabi
│ │ ├── libidcard_quality.1.1.1.so
│ │ └── libidl_license.so
│ └── x86
│ │ ├── libidcard_quality.1.1.1.so
│ │ └── libidl_license.so
│ └── res
│ ├── .DS_Store
│ ├── drawable-xhdpi
│ ├── bd_ocr_cancel.png
│ ├── bd_ocr_close.png
│ ├── bd_ocr_confirm.png
│ ├── bd_ocr_gallery.png
│ ├── bd_ocr_hint_align_bank_card.png
│ ├── bd_ocr_hint_align_id_card.png
│ ├── bd_ocr_hint_align_id_card_back.png
│ ├── bd_ocr_id_card_locator_back.png
│ ├── bd_ocr_id_card_locator_front.png
│ ├── bd_ocr_light_off.png
│ ├── bd_ocr_light_on.png
│ ├── bd_ocr_passport_locator.png
│ ├── bd_ocr_reset.png
│ ├── bd_ocr_rotate.png
│ ├── bd_ocr_round_corner.xml
│ ├── bd_ocr_take_photo_highlight.png
│ ├── bd_ocr_take_photo_normal.png
│ └── bd_ocr_take_photo_selector.xml
│ ├── layout
│ ├── bd_ocr_activity_camera.xml
│ ├── bd_ocr_confirm_result.xml
│ ├── bd_ocr_crop.xml
│ └── bd_ocr_take_picture.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
│ ├── bd_ocr_dimensions.xml
│ ├── bd_ocr_widgets.xml
│ ├── colors.xml
│ ├── strings.xml
│ └── styles.xml
└── settings.gradle
/.gitignore:
--------------------------------------------------------------------------------
1 | # Built application files
2 | *.apk
3 | *.ap_
4 |
5 | # Files for the ART/Dalvik VM
6 | *.dex
7 |
8 | # Java class files
9 | *.class
10 |
11 | # Generated files
12 | bin/
13 | gen/
14 | out/
15 |
16 | # Gradle files
17 | .gradle/
18 | build/
19 |
20 | # Local configuration file (sdk path, etc)
21 | local.properties
22 |
23 | # Proguard folder generated by Eclipse
24 | proguard/
25 |
26 | # Log Files
27 | *.log
28 |
29 | # Android Studio Navigation editor temp files
30 | .navigation/
31 |
32 | # Android Studio captures folder
33 | captures/
34 |
35 | # IntelliJ
36 | *.iml
37 | .idea/workspace.xml
38 | .idea/tasks.xml
39 | .idea/gradle.xml
40 | .idea/assetWizardSettings.xml
41 | .idea/dictionaries
42 | .idea/libraries
43 | .idea/caches
44 |
45 | # Keystore files
46 | # Uncomment the following line if you do not want to check your keystore files in.
47 | #*.jks
48 |
49 | # External native build folder generated in Android Studio 2.2 and later
50 | .externalNativeBuild
51 |
52 | # Google Services (e.g. APIs or Firebase)
53 | google-services.json
54 |
55 | # Freeline
56 | freeline.py
57 | freeline/
58 | freeline_project_description.json
59 |
60 | # fastlane
61 | fastlane/report.xml
62 | fastlane/Preview.html
63 | fastlane/screenshots
64 | fastlane/test_output
65 | fastlane/readme.md
66 |
--------------------------------------------------------------------------------
/.idea/modules.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/.idea/runConfigurations.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
11 |
12 |
--------------------------------------------------------------------------------
/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/app/.gitignore:
--------------------------------------------------------------------------------
1 | # Built application files
2 | *.apk
3 | *.ap_
4 |
5 | # Files for the ART/Dalvik VM
6 | *.dex
7 |
8 | # Java class files
9 | *.class
10 |
11 | # Generated files
12 | bin/
13 | gen/
14 | out/
15 |
16 | # Gradle files
17 | .gradle/
18 | build/
19 |
20 | # Local configuration file (sdk path, etc)
21 | local.properties
22 |
23 | # Proguard folder generated by Eclipse
24 | proguard/
25 |
26 | # Log Files
27 | *.log
28 |
29 | # Android Studio Navigation editor temp files
30 | .navigation/
31 |
32 | # Android Studio captures folder
33 | captures/
34 |
35 | # IntelliJ
36 | *.iml
37 | .idea/workspace.xml
38 | .idea/tasks.xml
39 | .idea/gradle.xml
40 | .idea/assetWizardSettings.xml
41 | .idea/dictionaries
42 | .idea/libraries
43 | .idea/caches
44 |
45 | # Keystore files
46 | # Uncomment the following line if you do not want to check your keystore files in.
47 | #*.jks
48 |
49 | # External native build folder generated in Android Studio 2.2 and later
50 | .externalNativeBuild
51 |
52 | # Google Services (e.g. APIs or Firebase)
53 | google-services.json
54 |
55 | # Freeline
56 | freeline.py
57 | freeline/
58 | freeline_project_description.json
59 |
60 | # fastlane
61 | fastlane/report.xml
62 | fastlane/Preview.html
63 | fastlane/screenshots
64 | fastlane/test_output
65 | fastlane/readme.md
66 |
67 |
--------------------------------------------------------------------------------
/app/libs/BaiduLBS_Android.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/libs/BaiduLBS_Android.jar
--------------------------------------------------------------------------------
/app/libs/MiPush_SDK_Client_3_6_0.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/libs/MiPush_SDK_Client_3_6_0.jar
--------------------------------------------------------------------------------
/app/libs/Msc.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/libs/Msc.jar
--------------------------------------------------------------------------------
/app/libs/Sunflower.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/libs/Sunflower.jar
--------------------------------------------------------------------------------
/app/libs/agora-rtc-sdk.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/libs/agora-rtc-sdk.jar
--------------------------------------------------------------------------------
/app/libs/nrtc-sdk.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/libs/nrtc-sdk.jar
--------------------------------------------------------------------------------
/app/libs/ocr-sdk.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/libs/ocr-sdk.jar
--------------------------------------------------------------------------------
/app/libs/video_effect.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/libs/video_effect.jar
--------------------------------------------------------------------------------
/app/proguard-rules.pro:
--------------------------------------------------------------------------------
1 | # Add project specific ProGuard rules here.
2 | # You can control the set of applied configuration files using the
3 | # proguardFiles setting in build.gradle.
4 | #
5 | # For more details, see
6 | # http://developer.android.com/guide/developing/tools/proguard.html
7 |
8 | # If your project uses WebView with JS, uncomment the following
9 | # and specify the fully qualified class name to the JavaScript interface
10 | # class:
11 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
12 | # public *;
13 | #}
14 |
15 | # Uncomment this to preserve the line number information for
16 | # debugging stack traces.
17 | #-keepattributes SourceFile,LineNumberTable
18 |
19 | # If you keep the line number information, uncomment this to
20 | # hide the original source file name.
21 | #-renamesourcefileattribute SourceFile
22 |
--------------------------------------------------------------------------------
/app/release/output.json:
--------------------------------------------------------------------------------
1 | [{"outputType":{"type":"APK"},"apkInfo":{"type":"MAIN","splits":[],"versionCode":1,"versionName":"1.0","enabled":true,"outputFile":"app-release.apk","fullName":"release","baseName":"release"},"path":"app-release.apk","properties":{}}]
--------------------------------------------------------------------------------
/app/src/androidTest/java/com/example/lab/android/nuc/law_analysis/ExampleInstrumentedTest.java:
--------------------------------------------------------------------------------
1 | package com.example.lab.android.nuc.law_analysis;
2 |
3 | import android.content.Context;
4 | import android.support.test.InstrumentationRegistry;
5 | import android.support.test.runner.AndroidJUnit4;
6 |
7 | import org.junit.Test;
8 | import org.junit.runner.RunWith;
9 |
10 | import static org.junit.Assert.*;
11 |
12 | /**
13 | * Instrumented test, which will execute on an Android device.
14 | *
15 | * @see Testing documentation
16 | */
17 | @RunWith(AndroidJUnit4.class)
18 | public class ExampleInstrumentedTest {
19 | @Test
20 | public void useAppContext() {
21 | // Context of the app under test.
22 | Context appContext = InstrumentationRegistry.getTargetContext();
23 |
24 | assertEquals( "com.example.lab.android.nuc.law-analysis", appContext.getPackageName() );
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/app/src/main/assets/aip.license:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/assets/aip.license
--------------------------------------------------------------------------------
/app/src/main/assets/fonts/agency.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/assets/fonts/agency.ttf
--------------------------------------------------------------------------------
/app/src/main/assets/fonts/canaro_extra_bold.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/assets/fonts/canaro_extra_bold.otf
--------------------------------------------------------------------------------
/app/src/main/assets/iflytek/recognize.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/assets/iflytek/recognize.xml
--------------------------------------------------------------------------------
/app/src/main/assets/iflytek/voice_bg.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/assets/iflytek/voice_bg.9.png
--------------------------------------------------------------------------------
/app/src/main/assets/iflytek/voice_empty.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/assets/iflytek/voice_empty.png
--------------------------------------------------------------------------------
/app/src/main/assets/iflytek/voice_full.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/assets/iflytek/voice_full.png
--------------------------------------------------------------------------------
/app/src/main/assets/iflytek/waiting.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/assets/iflytek/waiting.png
--------------------------------------------------------------------------------
/app/src/main/assets/iflytek/warning.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/assets/iflytek/warning.png
--------------------------------------------------------------------------------
/app/src/main/assets/ivw/5bb37e54.jet:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/assets/ivw/5bb37e54.jet
--------------------------------------------------------------------------------
/app/src/main/assets/lawList.db:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/assets/lawList.db
--------------------------------------------------------------------------------
/app/src/main/assets/wake.bnf:
--------------------------------------------------------------------------------
1 | #BNF+IAT 1.0 UTF-8;
2 | !grammar wake;
3 | !slot ;
4 | !slot ;
5 | !start ;
6 | :[];
7 | :讯飞语音|讯飞语点|叮咚叮咚;
8 | :张三|李四|张海洋;
--------------------------------------------------------------------------------
/app/src/main/assets/wake_grammar_sample.abnf:
--------------------------------------------------------------------------------
1 | #ABNF 1.0 UTF-8;
2 | language zh-CN;
3 | mode voice;
4 |
5 | root $main;
6 | $main = [$call] $name;
7 | $call = 讯飞语音|讯飞语点|叮咚叮咚;
8 | $name = 张三|李四|张海洋;
--------------------------------------------------------------------------------
/app/src/main/java/com/example/lab/android/nuc/law_analysis/adapter/MagicPagerAdapter.java:
--------------------------------------------------------------------------------
1 | package com.example.lab.android.nuc.law_analysis.adapter;
2 |
3 | import android.support.v4.app.Fragment;
4 | import android.support.v4.app.FragmentManager;
5 | import android.support.v4.app.FragmentPagerAdapter;
6 |
7 | import java.util.ArrayList;
8 | import java.util.List;
9 | /*
10 | 二哥的那个滑动粘连点
11 | */
12 |
13 | public class MagicPagerAdapter extends FragmentPagerAdapter {
14 | private List mFragments = new ArrayList<>( );
15 |
16 | public MagicPagerAdapter(FragmentManager fm) {
17 | super( fm );
18 | }
19 |
20 | public void addFragment(Fragment fragment){
21 | mFragments.add( fragment );
22 | }
23 |
24 | @Override
25 | public Fragment getItem(int position) {
26 | return mFragments.get( position );
27 | }
28 |
29 | @Override
30 | public int getCount() {
31 | return mFragments.size();
32 | }
33 | }
34 |
--------------------------------------------------------------------------------
/app/src/main/java/com/example/lab/android/nuc/law_analysis/bean/CommentBean.java:
--------------------------------------------------------------------------------
1 | package com.example.lab.android.nuc.law_analysis.bean;
2 |
3 | import java.util.List;
4 |
5 | public class CommentBean {
6 | private int code;
7 | private String message;
8 | private Data data;
9 | public void setCode(int code) {
10 | this.code = code;
11 | }
12 | public int getCode() {
13 | return code;
14 | }
15 |
16 | public void setMessage(String message) {
17 | this.message = message;
18 | }
19 | public String getMessage() {
20 | return message;
21 | }
22 |
23 | public void setData(Data data) {
24 | this.data = data;
25 | }
26 | public Data getData() {
27 | return data;
28 | }
29 |
30 | public class Data {
31 |
32 | private int total;
33 | private List list;
34 | public void setTotal(int total) {
35 | this.total = total;
36 | }
37 | public int getTotal() {
38 | return total;
39 | }
40 |
41 | public void setList(List list) {
42 | this.list = list;
43 | }
44 | public List getList() {
45 | return list;
46 | }
47 |
48 | }
49 | }
50 |
--------------------------------------------------------------------------------
/app/src/main/java/com/example/lab/android/nuc/law_analysis/bean/DataBean.java:
--------------------------------------------------------------------------------
1 | package com.example.lab.android.nuc.law_analysis.bean;
2 |
3 | public class DataBean {
4 |
5 | private String Demo_textView ;
6 | private String Demo_Content;
7 |
8 | public DataBean(String textView){
9 | Demo_textView = textView;
10 | }
11 |
12 | public DataBean(String title, String content){
13 | Demo_textView = title;
14 | Demo_Content = content;
15 | }
16 |
17 | public String getDemo_textView() {
18 | return Demo_textView;
19 | }
20 |
21 | public void setDemo_textView(String demo_textView) {
22 | Demo_textView = demo_textView;
23 | }
24 |
25 | public String getDemo_Content() {
26 | return Demo_Content;
27 | }
28 |
29 | public void setDemo_Content(String demo_Content) {
30 | Demo_Content = demo_Content;
31 | }
32 |
33 | }
34 |
--------------------------------------------------------------------------------
/app/src/main/java/com/example/lab/android/nuc/law_analysis/bean/Jiaozi.java:
--------------------------------------------------------------------------------
1 | package com.example.lab.android.nuc.law_analysis.bean;
2 |
3 | public class Jiaozi {
4 | private String title,url;
5 |
6 | public Jiaozi(String title,String url){
7 | this.title = title;
8 | this.url = url;
9 | }
10 |
11 | public String getUrl() {
12 | return url;
13 | }
14 |
15 | public void setUrl(String url) {
16 | this.url = url;
17 | }
18 |
19 | public String getTitle() {
20 | return title;
21 | }
22 |
23 | public void setTitle(String title) {
24 | this.title = title;
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/app/src/main/java/com/example/lab/android/nuc/law_analysis/bean/Law.java:
--------------------------------------------------------------------------------
1 | package com.example.lab.android.nuc.law_analysis.bean;
2 |
3 | public class Law {
4 | private String Law_name;
5 |
6 | private String Law_image;
7 |
8 | private String Law_uri;
9 |
10 | public Law(String name,String image,String uri ){
11 | this.Law_name = name;
12 | this.Law_image = image;
13 | this.Law_uri = uri;
14 | }
15 |
16 | public String getLaw_image() {
17 | return Law_image;
18 | }
19 |
20 | public void setLaw_image(String law_image) {
21 | Law_image = law_image;
22 | }
23 |
24 | public String getLaw_name() {
25 | return Law_name;
26 | }
27 |
28 | public void setLaw_name(String law_name) {
29 | Law_name = law_name;
30 | }
31 |
32 | public String getLaw_uri() {
33 | return Law_uri;
34 | }
35 |
36 | public void setLaw_uri(String law_uri) {
37 | Law_uri = law_uri;
38 | }
39 | }
40 |
--------------------------------------------------------------------------------
/app/src/main/java/com/example/lab/android/nuc/law_analysis/bean/LawCase.java:
--------------------------------------------------------------------------------
1 | package com.example.lab.android.nuc.law_analysis.bean;
2 |
3 | public class LawCase {
4 | private String title;
5 | private String content;
6 |
7 | public String getTitle() {
8 | return title;
9 | }
10 |
11 | public void setTitle(String title) {
12 | this.title = title;
13 | }
14 |
15 | public String getContent() {
16 | return content;
17 | }
18 |
19 | public void setContent(String content) {
20 | this.content = content;
21 | }
22 | }
23 |
--------------------------------------------------------------------------------
/app/src/main/java/com/example/lab/android/nuc/law_analysis/bean/LawEntry.java:
--------------------------------------------------------------------------------
1 | package com.example.lab.android.nuc.law_analysis.bean;
2 |
3 | public class LawEntry {
4 | private String law_line;
5 | private String law_content;
6 | private String law_from;
7 |
8 | public LawEntry(String law_line, String law_content, String law_from) {
9 | this.law_line = law_line;
10 | this.law_content = law_content;
11 | this.law_from = law_from;
12 | }
13 |
14 | public String getLaw_line() {
15 | return law_line;
16 | }
17 |
18 | public void setLaw_line(String law_line) {
19 | this.law_line = law_line;
20 | }
21 |
22 | public String getLaw_content() {
23 | return law_content;
24 | }
25 |
26 | public void setLaw_content(String law_content) {
27 | this.law_content = law_content;
28 | }
29 |
30 | public String getLaw_from() {
31 | return law_from;
32 | }
33 |
34 | public void setLaw_from(String law_from) {
35 | this.law_from = law_from;
36 | }
37 | }
38 |
--------------------------------------------------------------------------------
/app/src/main/java/com/example/lab/android/nuc/law_analysis/bean/Msg.java:
--------------------------------------------------------------------------------
1 | package com.example.lab.android.nuc.law_analysis.bean;
2 |
3 | /**
4 | * 返回信息类
5 | * */
6 | public class Msg {
7 | private Integer reCode; // 返回码
8 | private String msg; // 返回信息
9 | private T data; // 内容
10 |
11 | public Integer getReCode() {
12 | return reCode;
13 | }
14 |
15 | public void setReCode(Integer reCode) {
16 | this.reCode = reCode;
17 | }
18 |
19 | public String getMsg() {
20 | return msg;
21 | }
22 |
23 | public void setMsg(String msg) {
24 | this.msg = msg;
25 | }
26 |
27 | public T getData() {
28 | return data;
29 | }
30 |
31 | public void setData(T data) {
32 | this.data = data;
33 | }
34 | }
35 |
--------------------------------------------------------------------------------
/app/src/main/java/com/example/lab/android/nuc/law_analysis/bean/NineGridTestModel.java:
--------------------------------------------------------------------------------
1 | package com.example.lab.android.nuc.law_analysis.bean;
2 |
3 | import java.util.ArrayList;
4 | import java.util.List;
5 |
6 | public class NineGridTestModel {
7 | private static final long serialVersionUID = 2189052605715370758L;
8 |
9 | public List urlList = new ArrayList<>();
10 |
11 | public boolean isShowAll = false;
12 |
13 | public String detail;
14 |
15 | public int image;
16 |
17 | public String imageUri;
18 |
19 | public String name;
20 |
21 | public String time;
22 |
23 | public String start;
24 |
25 | public int location_imageUri;
26 | }
27 |
--------------------------------------------------------------------------------
/app/src/main/java/com/example/lab/android/nuc/law_analysis/bean/People.java:
--------------------------------------------------------------------------------
1 | package com.example.lab.android.nuc.law_analysis.bean;
2 |
3 | public class People {
4 | private String name;
5 | private String phone;
6 |
7 | public String getName() {
8 | return name;
9 | }
10 |
11 | public void setName(String name) {
12 | this.name = name;
13 | }
14 |
15 | public String getPhone() {
16 | return phone;
17 | }
18 |
19 | public void setPhone(String phone) {
20 | this.phone = phone;
21 | }
22 | }
23 |
--------------------------------------------------------------------------------
/app/src/main/java/com/example/lab/android/nuc/law_analysis/bean/Result.java:
--------------------------------------------------------------------------------
1 | package com.example.lab.android.nuc.law_analysis.bean;
2 |
3 | public class Result {
4 | private static String result;
5 | public static String getResult() {
6 | return result;
7 | }
8 |
9 | public static void setResult(String result) {
10 | Result.result = result;
11 | }
12 | }
13 |
--------------------------------------------------------------------------------
/app/src/main/java/com/example/lab/android/nuc/law_analysis/bean/User.java:
--------------------------------------------------------------------------------
1 | package com.example.lab.android.nuc.law_analysis.bean;
2 |
3 | import android.widget.EditText;
4 |
5 | public class User {
6 | private String name;
7 | private String password;
8 |
9 | public User() { }
10 |
11 | public User(String name, String password) {
12 | this.name = name;
13 | this.password = password;
14 | }
15 |
16 | public String getName() {
17 | return name;
18 | }
19 |
20 | public void setName(String name) {
21 | this.name = name;
22 | }
23 |
24 | public String getPassword() {
25 | return password;
26 | }
27 |
28 | public void setPassword(String password) {
29 | this.password = password;
30 | }
31 | }
32 |
--------------------------------------------------------------------------------
/app/src/main/java/com/example/lab/android/nuc/law_analysis/communication/adapter/ChatEmotionPagerAdapter.java:
--------------------------------------------------------------------------------
1 | package com.example.lab.android.nuc.law_analysis.communication.adapter;
2 |
3 | import android.support.v4.view.PagerAdapter;
4 | import android.view.View;
5 | import android.view.ViewGroup;
6 |
7 | import java.util.ArrayList;
8 | import java.util.List;
9 |
10 |
11 | public class ChatEmotionPagerAdapter extends PagerAdapter {
12 |
13 | private List views = new ArrayList();
14 |
15 | public ChatEmotionPagerAdapter(List views) {
16 | this.views = views;
17 | }
18 |
19 | @Override
20 | public int getCount() {
21 | return views.size();
22 | }
23 |
24 | @Override
25 | public boolean isViewFromObject(View view, Object o) {
26 | return view == o;
27 | }
28 |
29 | @Override
30 | public Object instantiateItem(ViewGroup container, int position) {
31 | container.addView(views.get(position));
32 | return views.get(position);
33 | }
34 |
35 | @Override
36 | public void destroyItem(ViewGroup container, int position, Object object) {
37 | container.removeView(views.get(position));
38 | }
39 | }
40 |
--------------------------------------------------------------------------------
/app/src/main/java/com/example/lab/android/nuc/law_analysis/communication/bean/BaseEnum/AccenteEnum.java:
--------------------------------------------------------------------------------
1 | package com.example.lab.android.nuc.law_analysis.communication.bean.BaseEnum;
2 |
3 | /**
4 | * 功能: 定义方言的类型
5 | */
6 | public enum AccenteEnum {
7 | mandarin, //普通话
8 | cantonese, //粤 语
9 | lmz //四川话
10 | }
11 |
--------------------------------------------------------------------------------
/app/src/main/java/com/example/lab/android/nuc/law_analysis/communication/bean/BaseEnum/DomainEnum.java:
--------------------------------------------------------------------------------
1 | package com.example.lab.android.nuc.law_analysis.communication.bean.BaseEnum;
2 |
3 | /**
4 | * 功能:
5 | */
6 |
7 | public enum DomainEnum {
8 | iat, //短信和日常用语
9 | video, //视频
10 | poi, //地图
11 | music //音乐
12 | }
13 |
--------------------------------------------------------------------------------
/app/src/main/java/com/example/lab/android/nuc/law_analysis/communication/bean/BaseEnum/LanguageEnum.java:
--------------------------------------------------------------------------------
1 | package com.example.lab.android.nuc.law_analysis.communication.bean.BaseEnum;
2 |
3 | /**
4 | * 功能:定义语言类型
5 | */
6 |
7 | public enum LanguageEnum {
8 | zh_cn, //简体中文
9 | en_us //美式英文
10 | }
11 |
--------------------------------------------------------------------------------
/app/src/main/java/com/example/lab/android/nuc/law_analysis/communication/bean/BaseEnum/SpeechPeopleEnum.java:
--------------------------------------------------------------------------------
1 | package com.example.lab.android.nuc.law_analysis.communication.bean.BaseEnum;
2 |
3 | /**
4 | * 功能:定义发音人
5 | */
6 |
7 | public enum SpeechPeopleEnum {
8 | xiaoyan, //小燕 女声 青年 中英文
9 | xiaoyu, //小宇 男声 青年 中英文
10 | catherine, //凯瑟琳 女声 青年 英文
11 | henry, //亨利 男声 青年 英文
12 | vimary, //玛丽 女声 青年 英文
13 | vixy, //小研 女声 青年 中英文
14 | xiaoqi, //小琪 女声 青年 中英文
15 | vixf, //小峰 男声 青年 中英文
16 | xiaomei, //小梅 女声 青年 中英文粤语
17 | vixl, //小莉 女声 青年 中英文台湾普通话
18 | xiaolin, //晓琳 女声 青年 中英文台湾普通话
19 | xiaorong, //小蓉 女声 青年 汉语四川话
20 | vixyun, //小芸 女声 青年 汉语东北话
21 | xiaoqian, //小倩 女声 青年 汉语东北话
22 | xiaokun, //小坤 男声 青年 汉语河南话
23 | xiaoqiang, //小强 男声 青年 汉语湖南话
24 | vixying, //小莹 女声 青年 汉语陕西话
25 | xiaoxin, //小新 男声 童年 汉语普通话
26 | nannan, //楠楠 女声 童年 汉语普通话
27 | vils, //老孙 男声 老年 汉语普通话
28 | }
29 |
--------------------------------------------------------------------------------
/app/src/main/java/com/example/lab/android/nuc/law_analysis/communication/bean/ChatConst.java:
--------------------------------------------------------------------------------
1 | package com.example.lab.android.nuc.law_analysis.communication.bean;
2 |
3 | import android.support.annotation.IntDef;
4 |
5 | import java.lang.annotation.Retention;
6 | import java.lang.annotation.RetentionPolicy;
7 |
8 |
9 | public class ChatConst {
10 | public static final String LISTVIEW_DATABASE_NAME = "listview.db";
11 | public static final String RECYCLER_DATABASE_NAME = "recycler.db";
12 | public static final int SENDING = 0;
13 | public static final int COMPLETED = 1;
14 | public static final int SENDERROR = 2;
15 |
16 | @IntDef({SENDING, COMPLETED, SENDERROR})
17 | @Retention(RetentionPolicy.SOURCE)
18 | public @interface SendState {
19 | }
20 |
21 | public static String RESPONSE_HEAD_IMAGE = "response_head_image";
22 | }
23 |
--------------------------------------------------------------------------------
/app/src/main/java/com/example/lab/android/nuc/law_analysis/communication/bean/ChatMessageType.java:
--------------------------------------------------------------------------------
1 | package com.example.lab.android.nuc.law_analysis.communication.bean;
2 |
3 | /**
4 | * Created by wanghao15536870732 on 2018/6/05/020.
5 | */
6 |
7 | public enum ChatMessageType {
8 | UnsupportedMessageType(0),
9 | TextMessageType(-1),
10 | ImageMessageType(-2),
11 | AudioMessageType(-3);
12 |
13 | int type;
14 |
15 | private ChatMessageType(int type) {
16 | this.type = type;
17 | }
18 |
19 | public int getType() {
20 | return this.type;
21 | }
22 |
23 | public static ChatMessageType getAVIMReservedMessageType(int type) {
24 | switch (type) {
25 | case -3:
26 | return AudioMessageType;
27 | case -2:
28 | return ImageMessageType;
29 | case -1:
30 | return TextMessageType;
31 | default:
32 | return UnsupportedMessageType;
33 | }
34 | }
35 | }
36 |
--------------------------------------------------------------------------------
/app/src/main/java/com/example/lab/android/nuc/law_analysis/communication/utils/KeyBoardUtils.java:
--------------------------------------------------------------------------------
1 | package com.example.lab.android.nuc.law_analysis.communication.utils;
2 |
3 | import android.content.Context;
4 | import android.view.View;
5 | import android.view.inputmethod.InputMethodManager;
6 |
7 |
8 | public class KeyBoardUtils {
9 | public static void hideKeyBoard(Context context, View view) {
10 | InputMethodManager imm = (InputMethodManager) context
11 | .getSystemService(Context.INPUT_METHOD_SERVICE);
12 | imm.hideSoftInputFromWindow(view.getWindowToken(), 0); // 强制隐藏键盘
13 | }
14 |
15 | public static void showKeyBoard(Context context, View view) {
16 | view.setFocusable(true);
17 | view.setFocusableInTouchMode(true);
18 | view.requestFocus();
19 | view.findFocus();
20 | InputMethodManager imm = (InputMethodManager) context
21 | .getSystemService(Context.INPUT_METHOD_SERVICE);
22 | imm.toggleSoftInput(0, InputMethodManager.HIDE_NOT_ALWAYS);
23 | }
24 | }
25 |
--------------------------------------------------------------------------------
/app/src/main/java/com/example/lab/android/nuc/law_analysis/communication/viewholder/ViewHolder.java:
--------------------------------------------------------------------------------
1 | package com.example.lab.android.nuc.law_analysis.communication.viewholder;
2 |
3 | import android.util.SparseArray;
4 | import android.view.View;
5 |
6 | public class ViewHolder {
7 | public static T findViewById(View view, int id) {
8 | SparseArray viewHolder = (SparseArray) view.getTag();
9 | if (viewHolder == null) {
10 | viewHolder = new SparseArray<>();
11 | view.setTag(viewHolder);
12 | }
13 | View childView = viewHolder.get(id);
14 | if (childView == null) {
15 | childView = view.findViewById(id);
16 | viewHolder.put(id, childView);
17 | }
18 | return (T) childView;
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/app/src/main/java/com/example/lab/android/nuc/law_analysis/communication/widget/EmotionEditText.java:
--------------------------------------------------------------------------------
1 | package com.example.lab.android.nuc.law_analysis.communication.widget;
2 |
3 | import android.annotation.SuppressLint;
4 | import android.content.Context;
5 | import android.text.TextUtils;
6 | import android.util.AttributeSet;
7 | import android.widget.EditText;
8 | import com.example.lab.android.nuc.law_analysis.communication.utils.EmotionHelper;
9 |
10 | ;
11 |
12 |
13 | @SuppressLint("AppCompatCustomView")
14 | public class EmotionEditText extends EditText {
15 |
16 | public EmotionEditText(Context context) {
17 | super(context);
18 | }
19 |
20 | public EmotionEditText(Context context, AttributeSet attrs, int defStyle) {
21 | super(context, attrs, defStyle);
22 | }
23 |
24 | public EmotionEditText(Context context, AttributeSet attrs) {
25 | super(context, attrs);
26 | }
27 |
28 | @Override
29 | public void setText(CharSequence text, BufferType type) {
30 | if (!TextUtils.isEmpty(text)) {
31 | super.setText( EmotionHelper.replace(getContext(), text.toString()), type);
32 | } else {
33 | super.setText(text, type);
34 | }
35 | }
36 | }
37 |
--------------------------------------------------------------------------------
/app/src/main/java/com/example/lab/android/nuc/law_analysis/news/Animation/CustomAnimation.java:
--------------------------------------------------------------------------------
1 | package com.example.lab.android.nuc.law_analysis.news.Animation;
2 |
3 | import android.animation.Animator;
4 | import android.animation.ObjectAnimator;
5 | import android.view.View;
6 |
7 | import com.chad.library.adapter.base.animation.BaseAnimation;
8 | /*
9 | 每一条新闻或者视频显现的动画
10 | */
11 |
12 | public class CustomAnimation implements BaseAnimation {
13 | @Override
14 | public Animator[] getAnimators(View view) {
15 | return new Animator[]{
16 | ObjectAnimator.ofFloat( view ,"scaleY",1,1.1f,1),
17 | ObjectAnimator.ofFloat( view,"scaleX",1,1.1f,1 )
18 | };
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/app/src/main/java/com/example/lab/android/nuc/law_analysis/news/ScrollEvent.java:
--------------------------------------------------------------------------------
1 | package com.example.lab.android.nuc.law_analysis.news;
2 |
3 | import android.widget.ScrollView;
4 |
5 | public class ScrollEvent {
6 | private String id;
7 | public ScrollEvent(String id){
8 | this.id = id;
9 | }
10 | public String getId() {
11 | return id;
12 | }
13 | public void setId(String id) {
14 | this.id = id;
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/app/src/main/java/com/example/lab/android/nuc/law_analysis/news/adapter/AbsListAdapter.java:
--------------------------------------------------------------------------------
1 | package com.example.lab.android.nuc.law_analysis.news.adapter;
2 |
3 | import android.support.annotation.LayoutRes;
4 |
5 | import com.chad.library.adapter.base.BaseQuickAdapter;
6 | import com.chad.library.adapter.base.BaseViewHolder;
7 | /*
8 | 新闻的列表Adapter
9 | */
10 | public abstract class AbsListAdapter extends BaseQuickAdapter {
11 |
12 | public AbsListAdapter(@LayoutRes int layoutResId) {
13 | super(layoutResId);
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/app/src/main/java/com/example/lab/android/nuc/law_analysis/news/adapter/NewsAdapter.java:
--------------------------------------------------------------------------------
1 | package com.example.lab.android.nuc.law_analysis.news.adapter;
2 |
3 | import android.widget.ImageView;
4 |
5 | import com.chad.library.adapter.base.BaseViewHolder;
6 | import com.example.lab.android.nuc.law_analysis.R;
7 | import com.example.lab.android.nuc.law_analysis.news.ImageLoader;
8 | import com.example.lab.android.nuc.law_analysis.news.adapter.AbsListAdapter;
9 | import com.example.lab.android.nuc.law_analysis.news.bean.NewsBean;
10 | /*
11 | 新闻Adapter
12 | */
13 | public class NewsAdapter extends AbsListAdapter{
14 |
15 |
16 | public NewsAdapter() {
17 | super( R.layout.item_news );
18 | }
19 |
20 | @Override
21 | protected void convert(BaseViewHolder baseViewHolder, NewsBean item) {
22 | baseViewHolder.setText( R.id.tv_news_title,item.getTitle() );
23 | baseViewHolder.setText( R.id.tv_news_source,item.getSource());
24 | baseViewHolder.setText(R.id.tv_news_date, item.getLmodify().substring(0, 10));
25 | ImageLoader.getInstance().withDefault(mContext, item.getImgsrc(), (ImageView) baseViewHolder.getView(R.id.img_news));
26 | }
27 | }
28 |
--------------------------------------------------------------------------------
/app/src/main/java/com/example/lab/android/nuc/law_analysis/news/adapter/TitleAdapter.java:
--------------------------------------------------------------------------------
1 | package com.example.lab.android.nuc.law_analysis.news.adapter;
2 |
3 | import android.support.annotation.Nullable;
4 | import android.support.v4.app.Fragment;
5 | import android.support.v4.app.FragmentManager;
6 | import android.support.v4.app.FragmentPagerAdapter;
7 | import android.util.Log;
8 | import android.widget.Toast;
9 |
10 | import java.util.List;
11 | /*
12 | 标题栏TabLayout的Adapter
13 | */
14 | public class TitleAdapter extends FragmentPagerAdapter{
15 |
16 | private List fragments;
17 |
18 | private String[] titles;
19 |
20 | public TitleAdapter(FragmentManager fm,List fragments,String[] titles){
21 | super(fm);
22 | this.fragments = fragments;
23 | this.titles = titles;
24 | }
25 |
26 | public Fragment getItem(int position){
27 | return fragments.get( position );
28 | }
29 |
30 | @Override
31 | public int getCount() {
32 | return fragments.size();
33 | }
34 |
35 | @Nullable
36 | @Override
37 | public CharSequence getPageTitle(int position) {
38 | if (position >= 8)
39 | return null;
40 | else
41 | return titles[position];
42 | }
43 | }
44 |
--------------------------------------------------------------------------------
/app/src/main/java/com/example/lab/android/nuc/law_analysis/news/util/ShareUtil.java:
--------------------------------------------------------------------------------
1 | package com.example.lab.android.nuc.law_analysis.news.util;
2 |
3 | import android.content.Context;
4 | import android.content.Intent;
5 |
6 | public class ShareUtil {
7 | /*
8 | * 系统分享
9 | */
10 | public static void share(Context mContext, String subject, String content) {
11 | Intent intent = new Intent(Intent.ACTION_SEND);
12 | intent.setType("text/plain");
13 | intent.putExtra(Intent.EXTRA_SUBJECT, subject);
14 | intent.putExtra(Intent.EXTRA_TEXT, content);
15 | intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
16 | mContext.startActivity(Intent.createChooser(intent, "分享"));
17 | }
18 | }
19 |
--------------------------------------------------------------------------------
/app/src/main/java/com/example/lab/android/nuc/law_analysis/news/util/SnackBarUtil.java:
--------------------------------------------------------------------------------
1 | package com.example.lab.android.nuc.law_analysis.news.util;
2 |
3 | import android.content.Context;
4 | import android.support.design.widget.Snackbar;
5 | import android.view.View;
6 |
7 | import com.example.lab.android.nuc.law_analysis.R;
8 |
9 | public class SnackBarUtil {
10 | public static void showSnackBar(CharSequence text, View view, Context context) {
11 | Snackbar.make(view, text, Snackbar.LENGTH_SHORT)
12 | .setAction("确定", new View.OnClickListener() {
13 | @Override
14 | public void onClick(View v) {
15 |
16 | }
17 | })
18 | .setActionTextColor(context.getResources().getColor( R.color.white))
19 | .show();
20 | }
21 |
22 | public static void showSnackBar(int resId, View view, Context context) {
23 | showSnackBar(context.getResources().getText(resId), view, context);
24 | }
25 | }
26 |
--------------------------------------------------------------------------------
/app/src/main/java/com/example/lab/android/nuc/law_analysis/news/util/WebUtil.java:
--------------------------------------------------------------------------------
1 | package com.example.lab.android.nuc.law_analysis.news.util;
2 |
3 |
4 | import android.content.Context;
5 | import android.content.Intent;
6 |
7 | import com.example.lab.android.nuc.law_analysis.news.activity.WebUIActivity;
8 |
9 | public class WebUtil {
10 |
11 | /**
12 | * 打开网页
13 | *
14 | * @param context
15 | * @param title
16 | * @param url
17 | */
18 | public static void openWeb(Context context, String title, String url) {
19 | Intent intent = new Intent(context, WebUIActivity.class);
20 | intent.putExtra("title", title);
21 | intent.putExtra("url", url);
22 | context.startActivity(intent);
23 | }
24 | }
--------------------------------------------------------------------------------
/app/src/main/java/com/example/lab/android/nuc/law_analysis/utils/iflytek/resultresolve.java:
--------------------------------------------------------------------------------
1 | package com.example.lab.android.nuc.law_analysis.utils.iflytek;
2 |
3 | public interface resultresolve {
4 | void resolveresult(String str);
5 | }
6 |
--------------------------------------------------------------------------------
/app/src/main/java/com/example/lab/android/nuc/law_analysis/utils/tools/FileUtil.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (C) 2017 Baidu, Inc. All Rights Reserved.
3 | */
4 | package com.example.lab.android.nuc.law_analysis.utils.tools;
5 |
6 | import java.io.File;
7 |
8 | import android.content.Context;
9 |
10 | public class FileUtil {
11 | public static File getSaveFile(Context context) {
12 | File file = new File(context.getFilesDir(), "pic.jpg");
13 | return file;
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/app/src/main/java/com/example/lab/android/nuc/law_analysis/utils/tools/GlideImageLoader.java:
--------------------------------------------------------------------------------
1 | package com.example.lab.android.nuc.law_analysis.utils.tools;
2 |
3 | import android.content.Context;
4 | import android.widget.ImageView;
5 |
6 | import com.bumptech.glide.Glide;
7 | import com.youth.banner.loader.ImageLoader;
8 |
9 | public class GlideImageLoader extends ImageLoader {
10 | @Override
11 | public void displayImage(Context context, Object path, ImageView imageView) {
12 | //Glide 加载图片简单用法
13 | Glide.with(context).load(path).into(imageView);
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/app/src/main/java/com/example/lab/android/nuc/law_analysis/utils/views/CanaroTextView.java:
--------------------------------------------------------------------------------
1 | package com.example.lab.android.nuc.law_analysis.utils.views;
2 |
3 | import android.annotation.SuppressLint;
4 | import android.content.Context;
5 | import android.util.AttributeSet;
6 | import android.widget.TextView;
7 |
8 | import com.example.lab.android.nuc.law_analysis.application.MyApplication;
9 |
10 | /*
11 | 用于炫酷的Toolbar侧滑栏里面的每一个文字数据
12 | */
13 | @SuppressLint("AppCompatCustomView")
14 | public class CanaroTextView extends TextView {
15 | public CanaroTextView(Context context) {
16 | this(context, null);
17 | }
18 |
19 | public CanaroTextView(Context context, AttributeSet attrs) {
20 | this(context, attrs, 0);
21 | }
22 |
23 | public CanaroTextView(Context context, AttributeSet attrs, int defStyleAttr) {
24 | super(context, attrs, defStyleAttr);
25 | setTypeface( MyApplication.canaroExtraBold);
26 | }
27 |
28 | }
29 |
--------------------------------------------------------------------------------
/app/src/main/java/com/example/lab/android/nuc/law_analysis/view/activity/InfoActivity.java:
--------------------------------------------------------------------------------
1 | package com.example.lab.android.nuc.law_analysis.view.activity;
2 |
3 | import android.support.v7.app.AppCompatActivity;
4 | import android.os.Bundle;
5 |
6 | import com.example.lab.android.nuc.law_analysis.R;
7 |
8 | public class InfoActivity extends AppCompatActivity {
9 |
10 | @Override
11 | protected void onCreate(Bundle savedInstanceState) {
12 | super.onCreate( savedInstanceState );
13 | setContentView( R.layout.activity_info );
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/app/src/main/java/com/example/lab/android/nuc/law_analysis/view/customview/CardAdapter.java:
--------------------------------------------------------------------------------
1 | package com.example.lab.android.nuc.law_analysis.view.customview;
2 |
3 | import android.support.v7.widget.CardView;
4 |
5 | public interface CardAdapter {
6 |
7 | int MAX_ELEVATION_FACTOR = 8;
8 |
9 | float getBaseElevation();
10 |
11 | CardView getCardViewAt(int position);
12 |
13 | int getCount();
14 | }
--------------------------------------------------------------------------------
/app/src/main/java/com/example/lab/android/nuc/law_analysis/view/customview/CardItem.java:
--------------------------------------------------------------------------------
1 | package com.example.lab.android.nuc.law_analysis.view.customview;
2 |
3 | public class CardItem {
4 |
5 | private int mTextResource;
6 | private int mTitleResource;
7 | private int mText_coin;
8 | private int mImageView;
9 |
10 |
11 | public CardItem(int title, int text,int mText_coin,int mImageView) {
12 | mTitleResource = title;
13 | mTextResource = text;
14 | this.mImageView= mImageView;
15 | this.mText_coin = mText_coin;
16 | }
17 |
18 | public int getText() {
19 | return mTextResource;
20 | }
21 |
22 | public int getTitle() {
23 | return mTitleResource;
24 | }
25 |
26 | public int getmImageView(){
27 | return mImageView;
28 | }
29 | public int getmText_coin(){
30 | return mText_coin;
31 | }
32 |
33 | }
--------------------------------------------------------------------------------
/app/src/main/java/com/example/lab/android/nuc/law_analysis/view/customview/StatusEnum.java:
--------------------------------------------------------------------------------
1 | package com.example.lab.android.nuc.law_analysis.view.customview;
2 |
3 | /**
4 | *
5 | */
6 |
7 | public enum StatusEnum {
8 | Loading,
9 | LoadSuccess,
10 | LoadFailure
11 | }
--------------------------------------------------------------------------------
/app/src/main/jniLibs/arm64-v8a/libBaiduMapSDK_base_v4_5_2.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/jniLibs/arm64-v8a/libBaiduMapSDK_base_v4_5_2.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/arm64-v8a/libBaiduMapSDK_map_v4_5_2.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/jniLibs/arm64-v8a/libBaiduMapSDK_map_v4_5_2.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/arm64-v8a/libagora-rtc-sdk-jni.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/jniLibs/arm64-v8a/libagora-rtc-sdk-jni.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/arm64-v8a/liblocSDK7b.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/jniLibs/arm64-v8a/liblocSDK7b.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/arm64-v8a/libmsc.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/jniLibs/arm64-v8a/libmsc.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/arm64-v8a/libne_audio.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/jniLibs/arm64-v8a/libne_audio.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/arm64-v8a/libnrtc_engine.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/jniLibs/arm64-v8a/libnrtc_engine.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/arm64-v8a/libnrtc_network.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/jniLibs/arm64-v8a/libnrtc_network.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/arm64-v8a/libocr-sdk.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/jniLibs/arm64-v8a/libocr-sdk.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/arm64-v8a/librts_network.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/jniLibs/arm64-v8a/librts_network.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/arm64-v8a/libvideoeffect.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/jniLibs/arm64-v8a/libvideoeffect.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/armeabi-v7a/libBaiduMapSDK_base_v4_5_2.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/jniLibs/armeabi-v7a/libBaiduMapSDK_base_v4_5_2.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/armeabi-v7a/libBaiduMapSDK_map_v4_5_2.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/jniLibs/armeabi-v7a/libBaiduMapSDK_map_v4_5_2.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/armeabi-v7a/libagora-rtc-sdk-jni.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/jniLibs/armeabi-v7a/libagora-rtc-sdk-jni.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/armeabi-v7a/liblocSDK7b.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/jniLibs/armeabi-v7a/liblocSDK7b.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/armeabi-v7a/libmsc.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/jniLibs/armeabi-v7a/libmsc.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/armeabi-v7a/libne_audio.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/jniLibs/armeabi-v7a/libne_audio.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/armeabi-v7a/libnrtc_engine.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/jniLibs/armeabi-v7a/libnrtc_engine.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/armeabi-v7a/libnrtc_network.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/jniLibs/armeabi-v7a/libnrtc_network.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/armeabi-v7a/libocr-sdk.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/jniLibs/armeabi-v7a/libocr-sdk.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/armeabi-v7a/librts_network.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/jniLibs/armeabi-v7a/librts_network.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/armeabi-v7a/libvideoeffect.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/jniLibs/armeabi-v7a/libvideoeffect.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/armeabi/libBaiduMapSDK_base_v4_5_2.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/jniLibs/armeabi/libBaiduMapSDK_base_v4_5_2.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/armeabi/libBaiduMapSDK_map_v4_5_2.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/jniLibs/armeabi/libBaiduMapSDK_map_v4_5_2.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/armeabi/liblocSDK7b.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/jniLibs/armeabi/liblocSDK7b.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/armeabi/libmsc.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/jniLibs/armeabi/libmsc.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/armeabi/libocr-sdk.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/jniLibs/armeabi/libocr-sdk.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/mips/libmsc.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/jniLibs/mips/libmsc.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/mips64/libmsc.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/jniLibs/mips64/libmsc.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/x86/libBaiduMapSDK_base_v4_5_2.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/jniLibs/x86/libBaiduMapSDK_base_v4_5_2.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/x86/libBaiduMapSDK_map_v4_5_2.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/jniLibs/x86/libBaiduMapSDK_map_v4_5_2.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/x86/libagora-rtc-sdk-jni.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/jniLibs/x86/libagora-rtc-sdk-jni.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/x86/liblocSDK7b.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/jniLibs/x86/liblocSDK7b.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/x86/libmsc.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/jniLibs/x86/libmsc.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/x86/libne_audio.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/jniLibs/x86/libne_audio.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/x86/libnrtc_engine.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/jniLibs/x86/libnrtc_engine.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/x86/libnrtc_network.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/jniLibs/x86/libnrtc_network.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/x86/libocr-sdk.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/jniLibs/x86/libocr-sdk.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/x86/librts_network.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/jniLibs/x86/librts_network.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/x86/libvideoeffect.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/jniLibs/x86/libvideoeffect.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/x86_64/libBaiduMapSDK_base_v4_5_2.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/jniLibs/x86_64/libBaiduMapSDK_base_v4_5_2.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/x86_64/libBaiduMapSDK_map_v4_5_2.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/jniLibs/x86_64/libBaiduMapSDK_map_v4_5_2.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/x86_64/liblocSDK7b.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/jniLibs/x86_64/liblocSDK7b.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/x86_64/libmsc.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/jniLibs/x86_64/libmsc.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/x86_64/libne_audio.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/jniLibs/x86_64/libne_audio.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/x86_64/libnrtc_engine.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/jniLibs/x86_64/libnrtc_engine.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/x86_64/libnrtc_network.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/jniLibs/x86_64/libnrtc_network.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/x86_64/librts_network.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/jniLibs/x86_64/librts_network.so
--------------------------------------------------------------------------------
/app/src/main/jniLibs/x86_64/libvideoeffect.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/jniLibs/x86_64/libvideoeffect.so
--------------------------------------------------------------------------------
/app/src/main/res/anim/actionsheet_dialog_in.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/app/src/main/res/anim/actionsheet_dialog_out.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/app/src/main/res/anim/animotion.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
8 |
9 |
--------------------------------------------------------------------------------
/app/src/main/res/anim/dialog_enter.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
11 |
12 |
--------------------------------------------------------------------------------
/app/src/main/res/anim/dialog_exit.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
10 |
--------------------------------------------------------------------------------
/app/src/main/res/anim/dialog_hidden.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
8 |
9 |
13 |
14 |
--------------------------------------------------------------------------------
/app/src/main/res/anim/dialog_show.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
8 |
9 |
13 |
14 |
--------------------------------------------------------------------------------
/app/src/main/res/anim/floatingactionbutton_in.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
13 |
17 |
18 |
19 |
20 |
--------------------------------------------------------------------------------
/app/src/main/res/anim/floatingactionbutton_out.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/app/src/main/res/anim/out_to_left.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
11 |
12 |
--------------------------------------------------------------------------------
/app/src/main/res/anim/rotate_form.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/app/src/main/res/anim/rotate_form_reverse.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/app/src/main/res/anim/scale_with_alpha.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
10 |
11 |
16 |
17 |
22 |
--------------------------------------------------------------------------------
/app/src/main/res/color/color_selector.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/banner_default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-hdpi/banner_default.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/communication.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-hdpi/communication.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_activity_active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-hdpi/ic_activity_active.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_feed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-hdpi/ic_feed.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_first.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-hdpi/ic_first.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_menu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-hdpi/ic_menu.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_menu_90.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-hdpi/ic_menu_90.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_news.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-hdpi/ic_news.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_news2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-hdpi/ic_news2.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_profile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-hdpi/ic_profile.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_searchs.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-hdpi/ic_searchs.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_searchs1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-hdpi/ic_searchs1.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_second.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-hdpi/ic_second.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_settings.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-hdpi/ic_settings.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_seventh.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-hdpi/ic_seventh.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_sixth.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-hdpi/ic_sixth.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_third.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-hdpi/ic_third.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-hdpi/logo.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/navi_map_gps_locked.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-hdpi/navi_map_gps_locked.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/num_oval_orange.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
7 |
10 |
13 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/platform_begin.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-hdpi/platform_begin.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/platform_normal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-hdpi/platform_normal.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/bt_selector.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
12 |
13 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/btn_end_call.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-mdpi/btn_end_call.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/btn_mute.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-mdpi/btn_mute.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/btn_speaker.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-mdpi/btn_speaker.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/btn_switch_camera.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-mdpi/btn_switch_camera.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/btn_video.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-mdpi/btn_video.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/btn_voice.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-mdpi/btn_voice.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/chat_add_location_normal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-mdpi/chat_add_location_normal.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/chat_add_video_normal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-mdpi/chat_add_video_normal.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/chat_add_voice_normal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-mdpi/chat_add_voice_normal.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/comment_logo.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-mdpi/comment_logo.jpg
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/ic_arrow.xml:
--------------------------------------------------------------------------------
1 |
6 |
9 |
12 |
13 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/ic_change.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/ic_download.xml:
--------------------------------------------------------------------------------
1 |
6 |
9 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/ic_github.xml:
--------------------------------------------------------------------------------
1 |
6 |
9 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/ic_pause.xml:
--------------------------------------------------------------------------------
1 |
6 |
9 |
10 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/ic_play.xml:
--------------------------------------------------------------------------------
1 |
6 |
9 |
10 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/ic_send_video.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-mdpi/ic_send_video.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/ic_share.xml:
--------------------------------------------------------------------------------
1 |
6 |
9 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/ic_text_to_voice.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-mdpi/ic_text_to_voice.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/ic_voicetotext.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-mdpi/ic_voicetotext.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-mdpi/icon.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/new_back.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-mdpi/new_back.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-v24/btn_normal.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
10 |
11 |
12 |
17 |
18 |
19 |
20 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-v24/btn_press.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
11 |
12 |
13 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-v24/comment_dialog_et_selector.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 |
7 |
8 |
9 | -
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-v24/rounded_rectangle.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
11 |
12 |
15 |
16 |
17 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-v24/selector_btn.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/addimg_1x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/addimg_1x.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/back2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/back2.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/cancel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/cancel.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/chat_common_empty_photo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/chat_common_empty_photo.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/chat_common_image_load_fail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/chat_common_image_load_fail.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/chat_default_user_avatar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/chat_default_user_avatar.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/chat_to_bg_normal.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/chat_to_bg_normal.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/chat_voice_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/chat_voice_left.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/chat_voice_left1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/chat_voice_left1.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/chat_voice_left2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/chat_voice_left2.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/chat_voice_left3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/chat_voice_left3.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/chat_voice_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/chat_voice_right.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/chat_voice_right1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/chat_voice_right1.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/chat_voice_right2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/chat_voice_right2.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/chat_voice_right3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/chat_voice_right3.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/comment_bt_selector.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 |
7 |
8 |
9 | -
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/country_cn.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/country_cn.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/delet_zhaopian_1x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/delet_zhaopian_1x.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/emoji_angry.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/emoji_angry.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/emoji_anguished.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/emoji_anguished.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/emoji_astonished.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/emoji_astonished.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/emoji_blush.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/emoji_blush.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/emoji_clap.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/emoji_clap.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/emoji_cold_sweat.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/emoji_cold_sweat.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/emoji_confounded.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/emoji_confounded.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/emoji_confused.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/emoji_confused.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/emoji_cry.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/emoji_cry.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/emoji_disappointed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/emoji_disappointed.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/emoji_disappointed_relieved.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/emoji_disappointed_relieved.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/emoji_dizzy_face.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/emoji_dizzy_face.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/emoji_expressionless.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/emoji_expressionless.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/emoji_fearful.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/emoji_fearful.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/emoji_flushed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/emoji_flushed.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/emoji_frowning.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/emoji_frowning.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/emoji_grimacing.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/emoji_grimacing.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/emoji_grin.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/emoji_grin.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/emoji_grinning.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/emoji_grinning.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/emoji_heart_eyes.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/emoji_heart_eyes.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/emoji_hushed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/emoji_hushed.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/emoji_innocent.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/emoji_innocent.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/emoji_joy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/emoji_joy.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/emoji_kissing.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/emoji_kissing.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/emoji_kissing_closed_eyes.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/emoji_kissing_closed_eyes.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/emoji_kissing_face.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/emoji_kissing_face.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/emoji_kissing_heart.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/emoji_kissing_heart.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/emoji_kissing_smiling_eyes.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/emoji_kissing_smiling_eyes.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/emoji_laughing.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/emoji_laughing.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/emoji_mask.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/emoji_mask.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/emoji_neutral_face.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/emoji_neutral_face.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/emoji_no_mouth.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/emoji_no_mouth.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/emoji_open_mouth.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/emoji_open_mouth.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/emoji_pensive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/emoji_pensive.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/emoji_persevere.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/emoji_persevere.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/emoji_point_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/emoji_point_left.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/emoji_point_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/emoji_point_right.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/emoji_rage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/emoji_rage.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/emoji_relaxed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/emoji_relaxed.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/emoji_relieved.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/emoji_relieved.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/emoji_satisfied.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/emoji_satisfied.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/emoji_scream.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/emoji_scream.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/emoji_sleeping.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/emoji_sleeping.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/emoji_sleepy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/emoji_sleepy.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/emoji_smile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/emoji_smile.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/emoji_smiley.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/emoji_smiley.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/emoji_smirk.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/emoji_smirk.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/emoji_sob.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/emoji_sob.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/emoji_stuck_out_tongue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/emoji_stuck_out_tongue.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/emoji_stuck_out_tongue_closed_eyes.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/emoji_stuck_out_tongue_closed_eyes.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/emoji_stuck_out_tongue_winking_eye.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/emoji_stuck_out_tongue_winking_eye.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/emoji_sunglasses.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/emoji_sunglasses.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/emoji_sweat.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/emoji_sweat.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/emoji_sweat_smile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/emoji_sweat_smile.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/emoji_thumbsdown.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/emoji_thumbsdown.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/emoji_thumbsup.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/emoji_thumbsup.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/emoji_tired_face.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/emoji_tired_face.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/emoji_triumph.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/emoji_triumph.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/emoji_unamused.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/emoji_unamused.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/emoji_weary.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/emoji_weary.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/emoji_wink.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/emoji_wink.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/emoji_worried.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/emoji_worried.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/emoji_yum.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/emoji_yum.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/hebei.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/hebei.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_comment.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/ic_comment.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_trans.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/ic_trans.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/icon_collect.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/icon_collect.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/icon_comment_like.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/icon_comment_like.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/icon_focus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/icon_focus.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/icon_work_like.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/icon_work_like.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/message_transfer_money_left.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/message_transfer_money_left.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/message_transfer_money_right.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/message_transfer_money_right.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/orange_arrow_down.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/orange_arrow_down.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/orange_arrow_up.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/orange_arrow_up.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/user_logo.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/user_logo.jpg
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/wakeup.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/wakeup.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/wakeupp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xhdpi/wakeupp.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/about.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xxhdpi/about.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/actionsheet_bottom_normal.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xxhdpi/actionsheet_bottom_normal.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/actionsheet_bottom_pressed.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xxhdpi/actionsheet_bottom_pressed.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/actionsheet_bottom_selector.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/actionsheet_middle_normal.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xxhdpi/actionsheet_middle_normal.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/actionsheet_middle_pressed.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xxhdpi/actionsheet_middle_pressed.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/actionsheet_middle_selector.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/actionsheet_single_normal.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xxhdpi/actionsheet_single_normal.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/actionsheet_single_pressed.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xxhdpi/actionsheet_single_pressed.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/actionsheet_single_selector.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/actionsheet_top_normal.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xxhdpi/actionsheet_top_normal.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/actionsheet_top_pressed.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable-xxhdpi/actionsheet_top_pressed.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/actionsheet_top_selector.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/ic_dynamic.xml:
--------------------------------------------------------------------------------
1 |
6 |
9 |
10 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/ic_menu_gallery.xml:
--------------------------------------------------------------------------------
1 |
6 |
9 |
10 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/ic_sign_in.xml:
--------------------------------------------------------------------------------
1 |
6 |
9 |
10 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/video.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/analysis_item.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable/analysis_item.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/anjian_xiangjin.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable/anjian_xiangjin.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/back_analyis.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable/back_analyis.jpg
--------------------------------------------------------------------------------
/app/src/main/res/drawable/bg_round_rect.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/btn_text_selector.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 |
7 |
8 | -
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/button_guanzhu.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
7 |
8 |
13 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/button_guanzhu_1.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
7 |
8 |
13 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/button_nopress.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
7 |
8 |
9 |
10 |
15 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/button_press.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
7 |
8 |
9 |
10 |
15 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/button_recording.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/button_recordnormal.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/button_shape.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/chat_anim_voice_left.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
7 |
10 |
13 |
16 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/chat_anim_voice_right.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
7 |
10 |
13 |
16 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/chat_btn_fail_resend.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/chat_fail_resend_normal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable/chat_fail_resend_normal.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/chat_fail_resend_press.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable/chat_fail_resend_press.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/click_bg.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | -
5 |
6 |
7 | -
8 |
9 |
10 | -
11 |
12 |
13 | -
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/delete.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable/delete.jpg
--------------------------------------------------------------------------------
/app/src/main/res/drawable/edittext_style.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
13 |
14 |
18 |
19 |
20 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/fab_label_background.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
10 |
11 |
13 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/frame_bg.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
8 |
9 |
14 |
17 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/frame_blue_to_thin_bg.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | -
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 | -
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/ic_browser.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
10 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/ic_copy.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
10 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/ic_default.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
10 |
13 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/ic_facebook_blue.xml:
--------------------------------------------------------------------------------
1 |
6 |
9 |
12 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/ic_facebook_pink.xml:
--------------------------------------------------------------------------------
1 |
6 |
9 |
12 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/ic_instagram_blue.xml:
--------------------------------------------------------------------------------
1 |
6 |
9 |
12 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/ic_instagram_pink.xml:
--------------------------------------------------------------------------------
1 |
6 |
9 |
12 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/ic_message_pressed.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/ic_toolbar_back.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
10 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/ic_video.xml:
--------------------------------------------------------------------------------
1 |
6 |
9 |
10 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/ic_webview.xml:
--------------------------------------------------------------------------------
1 |
6 |
9 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/item_divider_line.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/logo2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable/logo2.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/msg_input_shape.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
7 |
8 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/paizhao.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable/paizhao.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/rounded_rectangle.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
11 |
12 |
15 |
16 |
17 |
22 |
23 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/search_focused.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
8 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/search_normal.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
8 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/search_selector.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
7 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/shape_conner_white_bg.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
12 |
13 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/share_selector.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/simple_splitter.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/yuyin.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable/yuyin.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/yuyin_edit_center.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable/yuyin_edit_center.jpg
--------------------------------------------------------------------------------
/app/src/main/res/drawable/yuyin_top.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/drawable/yuyin_top.png
--------------------------------------------------------------------------------
/app/src/main/res/layout/activity_info.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/activity_location.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
12 |
13 |
18 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/activity_select_article.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
12 |
13 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/activity_select_lawyer.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/activity_select_topic.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
12 |
13 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/activity_web_ui.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
10 |
11 |
16 |
17 |
26 |
27 |
28 |
29 |
30 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/chat_emotion_gridview.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
21 |
22 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/chat_emotion_item.xml:
--------------------------------------------------------------------------------
1 |
6 |
7 |
13 |
14 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/chat_image_brower_layout.xml:
--------------------------------------------------------------------------------
1 |
2 |
9 |
10 |
14 |
21 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/chat_item_image_layout.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/chat_item_left_text_layout.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/chat_item_right_audio_layout.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
13 |
14 |
23 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/chat_item_right_image_layout.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/chat_item_right_text_layout.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/fragment2.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
12 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/fragment4.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
12 |
13 |
19 |
20 |
21 |
22 |
27 |
28 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/fragment_law_video.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
13 |
14 |
19 |
20 |
21 |
22 |
27 |
28 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/fragment_law_video1.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/fragment_law_video1_item.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
15 |
16 |
20 |
21 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/frg_base.xml:
--------------------------------------------------------------------------------
1 |
5 |
6 |
9 |
10 |
14 |
15 |
20 |
21 |
22 |
23 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/law_item.xml:
--------------------------------------------------------------------------------
1 |
2 |
9 |
10 |
14 |
15 |
20 |
21 |
28 |
29 |
30 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/law_news_fragment.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
12 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/layout_mess_iv_listitem.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
17 |
18 |
23 |
24 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/search_intent_acvtivity.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
10 |
18 |
19 |
20 |
21 |
22 |
30 |
31 |
32 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/search_intent_item.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
17 |
18 |
22 |
23 |
24 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/shop_dialog_toast.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
10 |
11 |
12 |
13 |
20 |
21 |
30 |
31 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/toolbar_layout.xml:
--------------------------------------------------------------------------------
1 |
2 |
12 |
13 |
25 |
26 |
--------------------------------------------------------------------------------
/app/src/main/res/menu/menu_detail.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/app/src/main/res/menu/menu_web.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/src/main/res/menu/select_pic_menu.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-hdpi/ic_btn_emoji.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/mipmap-hdpi/ic_btn_emoji.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-hdpi/ic_btn_keybroad.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/mipmap-hdpi/ic_btn_keybroad.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-hdpi/ic_btn_more.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/mipmap-hdpi/ic_btn_more.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-hdpi/ic_btn_voice.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/mipmap-hdpi/ic_btn_voice.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/mipmap-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-hdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/mipmap-hdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-hdpi/share_normal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/mipmap-hdpi/share_normal.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-hdpi/share_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/mipmap-hdpi/share_pressed.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/mipmap-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-mdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/mipmap-mdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xhdpi/cancel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/mipmap-xhdpi/cancel.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/mipmap-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xhdpi/msg_chat_voice_unread.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/mipmap-xhdpi/msg_chat_voice_unread.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xhdpi/tb_bottom_take_photo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/mipmap-xhdpi/tb_bottom_take_photo.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xhdpi/tb_dialog_loading_bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/mipmap-xhdpi/tb_dialog_loading_bg.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xhdpi/tb_voice1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/mipmap-xhdpi/tb_voice1.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xhdpi/tb_voice2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/mipmap-xhdpi/tb_voice2.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xhdpi/tb_voice3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/mipmap-xhdpi/tb_voice3.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xhdpi/voice_to_short.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/mipmap-xhdpi/voice_to_short.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxhdpi/ic_add_article.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/mipmap-xxhdpi/ic_add_article.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxhdpi/ic_image.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/mipmap-xxhdpi/ic_image.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxhdpi/ic_release_video.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/mipmap-xxhdpi/ic_release_video.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxxhdpi/tb_bottom_images.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/app/src/main/res/mipmap-xxxhdpi/tb_bottom_images.png
--------------------------------------------------------------------------------
/app/src/main/res/values/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 16dp
4 | 16dp
5 | 84dp
6 | 48dp
7 | 60dp
8 | 40dp
9 | 20sp
10 | 35dp
11 | 16dp
12 | 206dp
13 | 36dp
14 | 18dp
15 | 6dp
16 | 180dp
17 | 210dp
18 | 40dp
19 | 20dp
20 | 8dp
21 | 56dp
22 | 20sp
23 |
--------------------------------------------------------------------------------
/app/src/main/res/values/round_imageview_attrs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/app/src/test/java/com/example/lab/android/nuc/law_analysis/ExampleUnitTest.java:
--------------------------------------------------------------------------------
1 | package com.example.lab.android.nuc.law_analysis;
2 |
3 | import org.junit.Test;
4 |
5 | import static org.junit.Assert.*;
6 |
7 | /**
8 | * Example local unit test, which will execute on the development machine (host).
9 | *
10 | * @see Testing documentation
11 | */
12 | public class ExampleUnitTest {
13 | @Test
14 | public void addition_isCorrect() {
15 | assertEquals( 4, 2 + 2 );
16 | }
17 | }
--------------------------------------------------------------------------------
/build.gradle:
--------------------------------------------------------------------------------
1 | // Top-level build file where you can add configuration options common to all sub-projects/modules.
2 |
3 | buildscript {
4 |
5 | repositories {
6 | google()
7 | jcenter()
8 | mavenCentral() // add repository
9 | }
10 | dependencies {
11 | classpath 'com.android.tools.build:gradle:3.1.1'
12 | classpath 'org.greenrobot:greendao-gradle-plugin:3.2.2'
13 | classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5'
14 | classpath 'com.novoda:bintray-release:0.3.4'
15 |
16 | // NOTE: Do not place your application dependencies here; they belong
17 | // in the individual module build.gradle files
18 | }
19 | }
20 |
21 | allprojects {
22 | repositories {
23 | google()
24 | jcenter()
25 | maven { url "https://jitpack.io" }
26 | }
27 | }
28 |
29 | task clean(type: Delete) {
30 | delete rootProject.buildDir
31 | }
32 |
--------------------------------------------------------------------------------
/gradle.properties:
--------------------------------------------------------------------------------
1 | # Project-wide Gradle settings.
2 | # IDE (e.g. Android Studio) users:
3 | # Gradle settings configured through the IDE *will override*
4 | # any settings specified in this file.
5 | # For more details on how to configure your build environment visit
6 | # http://www.gradle.org/docs/current/userguide/build_environment.html
7 | # Specifies the JVM arguments used for the daemon process.
8 | # The setting is particularly useful for tweaking memory settings.
9 | org.gradle.jvmargs=-Xmx1536m
10 | # When configured, Gradle will run in incubating parallel mode.
11 | # This option should only be used with decoupled projects. More details, visit
12 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
13 | # org.gradle.parallel=true
14 |
--------------------------------------------------------------------------------
/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Sun Sep 23 19:19:51 CST 2018
2 | distributionBase=GRADLE_USER_HOME
3 | distributionPath=wrapper/dists
4 | zipStoreBase=GRADLE_USER_HOME
5 | zipStorePath=wrapper/dists
6 | distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip
7 |
--------------------------------------------------------------------------------
/lablaw.jks:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/lablaw.jks
--------------------------------------------------------------------------------
/ocr_ui/build.gradle:
--------------------------------------------------------------------------------
1 | apply plugin: 'com.android.library'
2 |
3 | android {
4 | compileSdkVersion 27
5 | buildToolsVersion '27.0.3'
6 |
7 | defaultConfig {
8 | minSdkVersion 14
9 | targetSdkVersion 27
10 | versionCode 1
11 | versionName "1.0"
12 | testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
13 |
14 | }
15 | buildTypes {
16 | release {
17 | minifyEnabled false
18 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
19 | }
20 | }
21 | }
22 |
23 | dependencies {
24 | androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
25 | exclude group: 'com.android.support', module: 'support-annotations'
26 | })
27 | implementation 'com.android.support:appcompat-v7:27.1.1'
28 | testImplementation 'junit:junit:4.12'
29 | implementation files('libs/license.jar')
30 | }
31 |
--------------------------------------------------------------------------------
/ocr_ui/libs/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/ocr_ui/libs/.DS_Store
--------------------------------------------------------------------------------
/ocr_ui/libs/license.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/ocr_ui/libs/license.jar
--------------------------------------------------------------------------------
/ocr_ui/proguard-rules.pro:
--------------------------------------------------------------------------------
1 | # Add project specific ProGuard rules here.
2 | # By default, the flags in this file are appended to flags specified
3 | # in /Users/baidu/IDE/tools/proguard/proguard-android.txt
4 | # You can edit the include path and order by changing the proguardFiles
5 | # directive in build.gradle.
6 | #
7 | # For more details, see
8 | # http://developer.android.com/guide/developing/tools/proguard.html
9 |
10 | # Add any project specific keep options here:
11 |
12 | # If your project uses WebView with JS, uncomment the following
13 | # and specify the fully qualified class name to the JavaScript interface
14 | # class:
15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
16 | # public *;
17 | #}
18 | -dontwarn com.baidu.ocr.**
--------------------------------------------------------------------------------
/ocr_ui/src/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/ocr_ui/src/.DS_Store
--------------------------------------------------------------------------------
/ocr_ui/src/main/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/ocr_ui/src/main/.DS_Store
--------------------------------------------------------------------------------
/ocr_ui/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
18 |
19 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/ocr_ui/src/main/assets/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/ocr_ui/src/main/assets/.DS_Store
--------------------------------------------------------------------------------
/ocr_ui/src/main/assets/models/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/ocr_ui/src/main/assets/models/.DS_Store
--------------------------------------------------------------------------------
/ocr_ui/src/main/assets/models/integrity_model_secret.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/ocr_ui/src/main/assets/models/integrity_model_secret.bin
--------------------------------------------------------------------------------
/ocr_ui/src/main/assets/models/quality_model_secret.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/ocr_ui/src/main/assets/models/quality_model_secret.bin
--------------------------------------------------------------------------------
/ocr_ui/src/main/java/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/ocr_ui/src/main/java/.DS_Store
--------------------------------------------------------------------------------
/ocr_ui/src/main/java/com/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/ocr_ui/src/main/java/com/.DS_Store
--------------------------------------------------------------------------------
/ocr_ui/src/main/java/com/baidu/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/ocr_ui/src/main/java/com/baidu/.DS_Store
--------------------------------------------------------------------------------
/ocr_ui/src/main/java/com/baidu/ocr/ui/camera/PermissionCallback.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (C) 2017 Baidu, Inc. All Rights Reserved.
3 | */
4 | package com.baidu.ocr.ui.camera;
5 |
6 | public interface PermissionCallback {
7 | boolean onRequestPermission();
8 | }
9 |
--------------------------------------------------------------------------------
/ocr_ui/src/main/java/com/baidu/ocr/ui/util/DimensionUtil.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (C) 2017 Baidu, Inc. All Rights Reserved.
3 | */
4 | package com.baidu.ocr.ui.util;
5 |
6 | import android.content.res.Resources;
7 |
8 | public class DimensionUtil {
9 |
10 | public static int dpToPx(int dp) {
11 | return (int) (dp * Resources.getSystem().getDisplayMetrics().density);
12 | }
13 |
14 | }
15 |
--------------------------------------------------------------------------------
/ocr_ui/src/main/jniLibs/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/ocr_ui/src/main/jniLibs/.DS_Store
--------------------------------------------------------------------------------
/ocr_ui/src/main/jniLibs/arm64-v8a/libidcard_quality.1.1.1.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/ocr_ui/src/main/jniLibs/arm64-v8a/libidcard_quality.1.1.1.so
--------------------------------------------------------------------------------
/ocr_ui/src/main/jniLibs/arm64-v8a/libidl_license.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/ocr_ui/src/main/jniLibs/arm64-v8a/libidl_license.so
--------------------------------------------------------------------------------
/ocr_ui/src/main/jniLibs/armeabi-v7a/libidcard_quality.1.1.1.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/ocr_ui/src/main/jniLibs/armeabi-v7a/libidcard_quality.1.1.1.so
--------------------------------------------------------------------------------
/ocr_ui/src/main/jniLibs/armeabi-v7a/libidl_license.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/ocr_ui/src/main/jniLibs/armeabi-v7a/libidl_license.so
--------------------------------------------------------------------------------
/ocr_ui/src/main/jniLibs/armeabi/libidcard_quality.1.1.1.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/ocr_ui/src/main/jniLibs/armeabi/libidcard_quality.1.1.1.so
--------------------------------------------------------------------------------
/ocr_ui/src/main/jniLibs/armeabi/libidl_license.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/ocr_ui/src/main/jniLibs/armeabi/libidl_license.so
--------------------------------------------------------------------------------
/ocr_ui/src/main/jniLibs/x86/libidcard_quality.1.1.1.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/ocr_ui/src/main/jniLibs/x86/libidcard_quality.1.1.1.so
--------------------------------------------------------------------------------
/ocr_ui/src/main/jniLibs/x86/libidl_license.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/ocr_ui/src/main/jniLibs/x86/libidl_license.so
--------------------------------------------------------------------------------
/ocr_ui/src/main/res/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/ocr_ui/src/main/res/.DS_Store
--------------------------------------------------------------------------------
/ocr_ui/src/main/res/drawable-xhdpi/bd_ocr_cancel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/ocr_ui/src/main/res/drawable-xhdpi/bd_ocr_cancel.png
--------------------------------------------------------------------------------
/ocr_ui/src/main/res/drawable-xhdpi/bd_ocr_close.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/ocr_ui/src/main/res/drawable-xhdpi/bd_ocr_close.png
--------------------------------------------------------------------------------
/ocr_ui/src/main/res/drawable-xhdpi/bd_ocr_confirm.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/ocr_ui/src/main/res/drawable-xhdpi/bd_ocr_confirm.png
--------------------------------------------------------------------------------
/ocr_ui/src/main/res/drawable-xhdpi/bd_ocr_gallery.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/ocr_ui/src/main/res/drawable-xhdpi/bd_ocr_gallery.png
--------------------------------------------------------------------------------
/ocr_ui/src/main/res/drawable-xhdpi/bd_ocr_hint_align_bank_card.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/ocr_ui/src/main/res/drawable-xhdpi/bd_ocr_hint_align_bank_card.png
--------------------------------------------------------------------------------
/ocr_ui/src/main/res/drawable-xhdpi/bd_ocr_hint_align_id_card.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/ocr_ui/src/main/res/drawable-xhdpi/bd_ocr_hint_align_id_card.png
--------------------------------------------------------------------------------
/ocr_ui/src/main/res/drawable-xhdpi/bd_ocr_hint_align_id_card_back.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/ocr_ui/src/main/res/drawable-xhdpi/bd_ocr_hint_align_id_card_back.png
--------------------------------------------------------------------------------
/ocr_ui/src/main/res/drawable-xhdpi/bd_ocr_id_card_locator_back.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/ocr_ui/src/main/res/drawable-xhdpi/bd_ocr_id_card_locator_back.png
--------------------------------------------------------------------------------
/ocr_ui/src/main/res/drawable-xhdpi/bd_ocr_id_card_locator_front.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/ocr_ui/src/main/res/drawable-xhdpi/bd_ocr_id_card_locator_front.png
--------------------------------------------------------------------------------
/ocr_ui/src/main/res/drawable-xhdpi/bd_ocr_light_off.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/ocr_ui/src/main/res/drawable-xhdpi/bd_ocr_light_off.png
--------------------------------------------------------------------------------
/ocr_ui/src/main/res/drawable-xhdpi/bd_ocr_light_on.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/ocr_ui/src/main/res/drawable-xhdpi/bd_ocr_light_on.png
--------------------------------------------------------------------------------
/ocr_ui/src/main/res/drawable-xhdpi/bd_ocr_passport_locator.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/ocr_ui/src/main/res/drawable-xhdpi/bd_ocr_passport_locator.png
--------------------------------------------------------------------------------
/ocr_ui/src/main/res/drawable-xhdpi/bd_ocr_reset.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/ocr_ui/src/main/res/drawable-xhdpi/bd_ocr_reset.png
--------------------------------------------------------------------------------
/ocr_ui/src/main/res/drawable-xhdpi/bd_ocr_rotate.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/ocr_ui/src/main/res/drawable-xhdpi/bd_ocr_rotate.png
--------------------------------------------------------------------------------
/ocr_ui/src/main/res/drawable-xhdpi/bd_ocr_round_corner.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/ocr_ui/src/main/res/drawable-xhdpi/bd_ocr_take_photo_highlight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/ocr_ui/src/main/res/drawable-xhdpi/bd_ocr_take_photo_highlight.png
--------------------------------------------------------------------------------
/ocr_ui/src/main/res/drawable-xhdpi/bd_ocr_take_photo_normal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/ocr_ui/src/main/res/drawable-xhdpi/bd_ocr_take_photo_normal.png
--------------------------------------------------------------------------------
/ocr_ui/src/main/res/drawable-xhdpi/bd_ocr_take_photo_selector.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/ocr_ui/src/main/res/layout/bd_ocr_activity_camera.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
9 |
10 |
15 |
16 |
22 |
23 |
29 |
30 |
31 |
--------------------------------------------------------------------------------
/ocr_ui/src/main/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/ocr_ui/src/main/res/mipmap-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/ocr_ui/src/main/res/mipmap-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/ocr_ui/src/main/res/mipmap-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/ocr_ui/src/main/res/mipmap-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/ocr_ui/src/main/res/mipmap-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/ocr_ui/src/main/res/mipmap-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/ocr_ui/src/main/res/mipmap-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/ocr_ui/src/main/res/mipmap-xxxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xmmmmmovo/FaBao/9c39dc4724a021d0fcec5d427b87557ef60c07ee/ocr_ui/src/main/res/mipmap-xxxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/ocr_ui/src/main/res/values/bd_ocr_dimensions.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 | 18dp
7 | 18dp
8 | 16dp
9 | 16dp
10 |
11 |
--------------------------------------------------------------------------------
/ocr_ui/src/main/res/values/bd_ocr_widgets.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/ocr_ui/src/main/res/values/colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 | #3F51B5
7 | #303F9F
8 | #FF4081
9 |
10 |
--------------------------------------------------------------------------------
/ocr_ui/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 | OCR_UI
6 | 本功能需要相机权限!
7 |
8 |
--------------------------------------------------------------------------------
/ocr_ui/src/main/res/values/styles.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
7 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/settings.gradle:
--------------------------------------------------------------------------------
1 | include ':app',':ocr_ui'
2 |
--------------------------------------------------------------------------------