在好例子网,分享、交流、成长!
您当前所在位置:首页Java 开发实例Android平台开发 → 萤石云Demo

萤石云Demo

Android平台开发

下载此实例
  • 开发语言:Java
  • 实例大小:223.70M
  • 下载次数:18
  • 浏览次数:467
  • 发布时间:2021-12-21
  • 实例类别:Android平台开发
  • 发 布 人:williamlaw99
  • 文件格式:.zip
  • 所需积分:2
 相关标签: demo em

实例介绍

【实例简介】萤石云Demo
【实例截图】from clipboard
【核心代码】.
├── EzvizSDK-Android
│   ├── LICENSE
│   ├── README.md
│   ├── app
│   │   ├── build
│   │   │   ├── generated
│   │   │   │   └── source
│   │   │   │       └── kaptKotlin
│   │   │   │           ├── debug
│   │   │   │           ├── debugAndroidTest
│   │   │   │           ├── debugUnitTest
│   │   │   │           ├── release
│   │   │   │           └── releaseUnitTest
│   │   │   └── tmp
│   │   │       └── kapt3
│   │   │           ├── incApCache
│   │   │           │   ├── debug
│   │   │           │   ├── debugAndroidTest
│   │   │           │   ├── debugUnitTest
│   │   │           │   ├── release
│   │   │           │   └── releaseUnitTest
│   │   │           ├── incrementalData
│   │   │           │   ├── debug
│   │   │           │   ├── debugAndroidTest
│   │   │           │   ├── debugUnitTest
│   │   │           │   ├── release
│   │   │           │   └── releaseUnitTest
│   │   │           └── stubs
│   │   │               ├── debug
│   │   │               ├── debugAndroidTest
│   │   │               ├── debugUnitTest
│   │   │               ├── release
│   │   │               └── releaseUnitTest
│   │   ├── build.gradle
│   │   ├── libs
│   │   │   ├── glide-3.6.1.jar
│   │   │   └── zxing.jar
│   │   ├── proguard-rules.pro
│   │   ├── src
│   │   │   └── main
│   │   │       ├── AndroidManifest.xml
│   │   │       ├── assets
│   │   │       │   ├── gray
│   │   │       │   │   ├── fragmentshader.glsl
│   │   │       │   │   └── vertexshader.glsl
│   │   │       │   └── null
│   │   │       │       ├── fragmentshader.glsl
│   │   │       │       └── vertexshader.glsl
│   │   │       ├── java
│   │   │       │   ├── com
│   │   │       │   │   ├── ezviz
│   │   │       │   │   │   └── demo
│   │   │       │   │   │       ├── common
│   │   │       │   │   │       │   ├── ActivityLaunchManager.kt
│   │   │       │   │   │       │   ├── CollectDeviceInfoActivity.kt
│   │   │       │   │   │       │   ├── DataTimeUtil.kt
│   │   │       │   │   │       │   └── MoreFeaturesEntranceActivity.kt
│   │   │       │   │   │       ├── model
│   │   │       │   │   │       │   └── VideoTalkBean.java
│   │   │       │   │   │       ├── streamctrl
│   │   │       │   │   │       │   ├── OriginStreamControlActivity.kt
│   │   │       │   │   │       │   ├── RtpStreamPlayActivity.kt
│   │   │       │   │   │       │   └── StreamCtrlStatusEnum.kt
│   │   │       │   │   │       └── videotalk
│   │   │       │   │   │           ├── ClientAdapter.java
│   │   │       │   │   │           ├── ConfluenceTestEntranceActivity.kt
│   │   │       │   │   │           ├── EZClientInfo.java
│   │   │       │   │   │           ├── EZRtcTestActivity.java
│   │   │       │   │   │           ├── EZVideoMeetingService.java
│   │   │       │   │   │           ├── JoinRoomActivity.kt
│   │   │       │   │   │           ├── MultiTestActivity.kt
│   │   │       │   │   │           ├── MultiVideoTalkActivity.kt
│   │   │       │   │   │           ├── OnStatusChangedListener.java
│   │   │       │   │   │           ├── OrderRoomActivity.kt
│   │   │       │   │   │           ├── PlayerAdapter.java
│   │   │       │   │   │           ├── SafetyHatTalkActivity.java
│   │   │       │   │   │           ├── WatchVideoTalkActivity.kt
│   │   │       │   │   │           └── widget
│   │   │       │   │   │               ├── VideoTalkAdapter.java
│   │   │       │   │   │               └── VideoTalkView.kt
│   │   │       │   │   └── videogo
│   │   │       │   │       ├── EzvizApplication.java
│   │   │       │   │       ├── EzvizBroadcastReceiver.java
│   │   │       │   │       ├── LoginSelectActivity.java
│   │   │       │   │       ├── MainActivity.java
│   │   │       │   │       ├── OptionActivity.java
│   │   │       │   │       ├── SelectDeviceList.java
│   │   │       │   │       ├── SupportActivity.java
│   │   │       │   │       ├── api
│   │   │       │   │       │   ├── AddDeviceReq.java
│   │   │       │   │       │   ├── GetSecureSmcCodeReq.java
│   │   │       │   │       │   ├── OpenYSServiceReq.java
│   │   │       │   │       │   ├── OpenYSServiceSmsCodeReq.java
│   │   │       │   │       │   ├── SecureValidateReq.java
│   │   │       │   │       │   ├── TransferAPI.java
│   │   │       │   │       │   └── UpdateDefenceReq.java
│   │   │       │   │       ├── constants
│   │   │       │   │       │   └── ReceiverKeys.java
│   │   │       │   │       ├── devicemgt
│   │   │       │   │       │   ├── EZDeviceSettingActivity.java
│   │   │       │   │       │   ├── EZUpgradeDeviceActivity.java
│   │   │       │   │       │   └── ModifyDeviceNameActivity.java
│   │   │       │   │       ├── download
│   │   │       │   │       │   ├── DownLoadTaskRecordAbstract.java
│   │   │       │   │       │   ├── DownloadTaskRecordOfCloud.java
│   │   │       │   │       │   └── DownloadTaskRecordOfDevice.java
│   │   │       │   │       ├── remoteplayback
│   │   │       │   │       │   └── list
│   │   │       │   │       │       ├── EZPlayBackListActivity.java
│   │   │       │   │       │       ├── RemoteListContant.java
│   │   │       │   │       │       ├── RemoteListUtil.java
│   │   │       │   │       │       ├── bean
│   │   │       │   │       │       │   ├── ClickedListItem.java
│   │   │       │   │       │       │   ├── CloudPartInfoFileEx.java
│   │   │       │   │       │       │   └── RemoteListUIItem.java
│   │   │       │   │       │       ├── play
│   │   │       │   │       │       │   └── PlayRemoteListTaskCallback.java
│   │   │       │   │       │       └── querylist
│   │   │       │   │       │           ├── QueryCloudRecordFilesAsyncTask.java
│   │   │       │   │       │           ├── QueryDeviceRecordFilesAsyncTask.java
│   │   │       │   │       │           ├── QueryPlayBackListTaskCallback.java
│   │   │       │   │       │           ├── RemoteListClickListener.java
│   │   │       │   │       │           ├── SectionListAdapter.java
│   │   │       │   │       │           └── StandardArrayAdapter.java
│   │   │       │   │       ├── scan
│   │   │       │   │       │   ├── camera
│   │   │       │   │       │   │   ├── AutoFocusCallback.java
│   │   │       │   │       │   │   ├── CameraConfigurationManager.java
│   │   │       │   │       │   │   ├── CameraManager.java
│   │   │       │   │       │   │   └── PreviewCallback.java
│   │   │       │   │       │   └── main
│   │   │       │   │       │       ├── CaptureActivity.java
│   │   │       │   │       │       ├── CaptureActivityHandler.java
│   │   │       │   │       │       ├── Contents.java
│   │   │       │   │       │       ├── DecodeFormatManager.java
│   │   │       │   │       │       ├── DecodeHandler.java
│   │   │       │   │       │       ├── DecodeThread.java
│   │   │       │   │       │       ├── FinishListener.java
│   │   │       │   │       │       ├── InactivityTimer.java
│   │   │       │   │       │       ├── IntentSource.java
│   │   │       │   │       │       ├── Intents.java
│   │   │       │   │       │       ├── PlanarYUVLuminanceSource.java
│   │   │       │   │       │       ├── PreferencesActivity.java
│   │   │       │   │       │       ├── ViewfinderResultPointCallback.java
│   │   │       │   │       │       └── ViewfinderView.java
│   │   │       │   │       ├── ui
│   │   │       │   │       │   ├── LanDevice
│   │   │       │   │       │   │   ├── LanDeviceActivateActivity.java
│   │   │       │   │       │   │   ├── LanDeviceActivity.java
│   │   │       │   │       │   │   ├── LanDevicePlayActivity.java
│   │   │       │   │       │   │   ├── LandeviceAdapter.java
│   │   │       │   │       │   │   └── SelectLandeviceDialog.java
│   │   │       │   │       │   ├── cameralist
│   │   │       │   │       │   │   ├── EZCameraListActivity.java
│   │   │       │   │       │   │   ├── EZCameraListAdapter.java
│   │   │       │   │       │   │   └── SelectCameraDialog.java
│   │   │       │   │       │   ├── common
│   │   │       │   │       │   │   ├── HikAsyncTask.java
│   │   │       │   │       │   │   └── ScreenOrientationHelper.java
│   │   │       │   │       │   ├── ddns
│   │   │       │   │       │   │   ├── EZDDNSListActivity.java
│   │   │       │   │       │   │   └── EZDDNSListAdapter.java
│   │   │       │   │       │   ├── devicelist
│   │   │       │   │       │   │   ├── AutoWifiConnectingActivity.java
│   │   │       │   │       │   │   ├── DeviceCategory.java
│   │   │       │   │       │   │   ├── DeviceDiscoverAdapter.java
│   │   │       │   │       │   │   ├── DeviceDiscoverInfo.java
│   │   │       │   │       │   │   ├── DeviceModel.java
│   │   │       │   │       │   │   ├── DeviceUtil.java
│   │   │       │   │       │   │   ├── LineConnectgIntroduceActivity.java
│   │   │       │   │       │   │   └── SeriesNumSearchActivity.java
│   │   │       │   │       │   ├── message
│   │   │       │   │       │   │   ├── AlarmType.java
│   │   │       │   │       │   │   ├── EZMessageActivity2.java
│   │   │       │   │       │   │   ├── EZMessageImageActivity2.java
│   │   │       │   │       │   │   └── EZMessageListAdapter2.java
│   │   │       │   │       │   ├── realplay
│   │   │       │   │       │   │   ├── EZRealPlayActivity.java
│   │   │       │   │       │   │   └── RealPlaySquareInfo.java
│   │   │       │   │       │   ├── remoteplayback
│   │   │       │   │       │   │   ├── EZRemotePlayBackActivity.java
│   │   │       │   │       │   │   └── RemoteFileTimeBar.java
│   │   │       │   │       │   └── util
│   │   │       │   │       │       ├── ActivityUtils.java
│   │   │       │   │       │       ├── AudioPlayUtil.java
│   │   │       │   │       │       ├── Constants.java
│   │   │       │   │       │       ├── DataManager.java
│   │   │       │   │       │       ├── EZGenerateFilePath.java
│   │   │       │   │       │       ├── EZUtils.java
│   │   │       │   │       │       ├── SignUtil.java
│   │   │       │   │       │       ├── VerifyCodeInput.java
│   │   │       │   │       │       └── ZipUtil.java
│   │   │       │   │       └── widget
│   │   │       │   │           ├── AddCameraGuideDialog.java
│   │   │       │   │           ├── BoldSpan.java
│   │   │       │   │           ├── GroupLayout.java
│   │   │       │   │           ├── HVScrollView.java
│   │   │       │   │           ├── MenuAdapter.java
│   │   │       │   │           ├── MySectionIndexer.java
│   │   │       │   │           ├── PagesGallery.java
│   │   │       │   │           ├── PinnedSectionListView.java
│   │   │       │   │           ├── PullToRefreshFooter.java
│   │   │       │   │           ├── PullToRefreshHeader.java
│   │   │       │   │           ├── TitleMenuItem.java
│   │   │       │   │           ├── TopBar.java
│   │   │       │   │           ├── WaitDialog.java
│   │   │       │   │           ├── loading
│   │   │       │   │           │   ├── LoadingTextView.java
│   │   │       │   │           │   ├── LoadingView.java
│   │   │       │   │           │   └── PullToLoadView.java
│   │   │       │   │           ├── pulltorefresh
│   │   │       │   │           │   ├── EmptyViewMethodAccessor.java
│   │   │       │   │           │   ├── IPullToRefresh.java
│   │   │       │   │           │   ├── LoadingLayout.java
│   │   │       │   │           │   ├── LoadingLayoutProxy.java
│   │   │       │   │           │   ├── OverscrollHelper.java
│   │   │       │   │           │   ├── PullToRefreshAdapterViewBase.java
│   │   │       │   │           │   ├── PullToRefreshBase.java
│   │   │       │   │           │   ├── PullToRefreshGridView.java
│   │   │       │   │           │   ├── PullToRefreshListView.java
│   │   │       │   │           │   ├── PullToRefreshPinnedSectionListView.java
│   │   │       │   │           │   ├── PullToRefreshWebView.java
│   │   │       │   │           │   └── ViewCompat.java
│   │   │       │   │           └── toprightmenu
│   │   │       │   │               ├── EZMenuAdapter.java
│   │   │       │   │               ├── EZMenuItem.java
│   │   │       │   │               └── EZTopRightMenu.java
│   │   │       │   └── ezviz
│   │   │       │       └── ezopensdk
│   │   │       │           ├── add
│   │   │       │           │   └── AddDeviceToAccountActivity.java
│   │   │       │           ├── configwifi
│   │   │       │           │   ├── ApConfigWifiPresenterForFullSdk.java
│   │   │       │           │   ├── MixedConfigWifiCallbackDelegate.java
│   │   │       │           │   ├── SmartConfigWifiPresenterForFullSdk.java
│   │   │       │           │   └── SoundWaveConfigWifiPresenterForFullSdk.java
│   │   │       │           ├── debug
│   │   │       │           │   ├── TestActivityForFullSdk.kt
│   │   │       │           │   └── VideoFileUtil.java
│   │   │       │           ├── demo
│   │   │       │           │   ├── DemoConfig.java
│   │   │       │           │   ├── GlobalInfo.java
│   │   │       │           │   ├── SdkInitParams.java
│   │   │       │           │   ├── SdkInitTool.java
│   │   │       │           │   ├── ServerAreasEnum.java
│   │   │       │           │   ├── SpTool.java
│   │   │       │           │   └── ValueKeys.java
│   │   │       │           ├── exception
│   │   │       │           │   └── NeedReInitException.java
│   │   │       │           └── preview
│   │   │       │               ├── MultiScreenPreviewActivity.kt
│   │   │       │               ├── MultiScreenPreviewActivityPresenter.kt
│   │   │       │               ├── MultiScreenPreviewAdapter.kt
│   │   │       │               ├── PlayInfo.kt
│   │   │       │               └── PlayInfoManager.kt
│   │   │       └── res
│   │   │           ├── anim
│   │   │           │   ├── button_shake.xml
│   │   │           │   ├── device_search_bg.xml
│   │   │           │   ├── downback_anitem_selector.xml
│   │   │           │   ├── fade_down.xml
│   │   │           │   ├── fade_up.xml
│   │   │           │   ├── play_full_multiple_anim_bg.xml
│   │   │           │   ├── rotate_clockwise.xml
│   │   │           │   ├── trm_popup_enter.xml
│   │   │           │   └── trm_popup_exit.xml
│   │   │           ├── color
│   │   │           │   ├── del_button_text_selector.xml
│   │   │           │   ├── event_message_bg_selector.xml
│   │   │           │   ├── ez_playback_tab_color_selector.xml
│   │   │           │   ├── message_button_text_selector.xml
│   │   │           │   ├── quality_color_selector.xml
│   │   │           │   ├── read_button_text_selector.xml
│   │   │           │   ├── textview_txtcolor_selector.xml
│   │   │           │   └── title_down_text_selector.xml
│   │   │           ├── drawable
│   │   │           │   ├── auto_wifi_link_account_bg.xml
│   │   │           │   ├── auto_wifi_wait.xml
│   │   │           │   ├── backbtn_selector.xml
│   │   │           │   ├── border.xml
│   │   │           │   ├── border_selector.xml
│   │   │           │   ├── border_transparent.xml
│   │   │           │   ├── btn_auto_blue_selector.xml
│   │   │           │   ├── btn_auto_red_selector.xml
│   │   │           │   ├── btn_r1_retry_selector.xml
│   │   │           │   ├── btn_white_selector.xml
│   │   │           │   ├── cameralist_button_selector.xml
│   │   │           │   ├── cameralist_history_video_selector.xml
│   │   │           │   ├── cameralist_item_selector.xml
│   │   │           │   ├── capturebtn_selector.xml
│   │   │           │   ├── check_selector.xml
│   │   │           │   ├── circle_roate_drawable.xml
│   │   │           │   ├── ckb_selector.xml
│   │   │           │   ├── collect_btn_selector.xml
│   │   │           │   ├── common_loading_indeterminate.xml
│   │   │           │   ├── common_refresh_indeterminate.xml
│   │   │           │   ├── common_title_back_selector.xml
│   │   │           │   ├── common_title_cancel_selector.xml
│   │   │           │   ├── common_title_input_selector.xml
│   │   │           │   ├── common_title_setup_selector.xml
│   │   │           │   ├── common_title_vertical_more_dark_selector.xml
│   │   │           │   ├── connect_wifi_bg.xml
│   │   │           │   ├── decode_failed_tip_bg.xml
│   │   │           │   ├── del_button_selector.xml
│   │   │           │   ├── display_frame.xml
│   │   │           │   ├── edittext_bg.xml
│   │   │           │   ├── equipment_selector.xml
│   │   │           │   ├── exit_selector.xml
│   │   │           │   ├── ez_border.xml
│   │   │           │   ├── ez_border_selector.xml
│   │   │           │   ├── ez_btn_r1_retry_selector.xml
│   │   │           │   ├── ez_leave_message_play_selector.xml
│   │   │           │   ├── ez_play_video_selector.xml
│   │   │           │   ├── ez_reaty_btn_selector.xml
│   │   │           │   ├── ez_remote_list_pause_btn_selector.xml
│   │   │           │   ├── ezopen_vertical_preview_sound_off_selector.xml
│   │   │           │   ├── ezopen_vertical_preview_sound_selector.xml
│   │   │           │   ├── flashlight_selector.xml
│   │   │           │   ├── fullscreen_button_selector.xml
│   │   │           │   ├── graybtn_secetor.xml
│   │   │           │   ├── grouplayout_item_bg_selector.xml
│   │   │           │   ├── horizontal_fullscreen_button_selector.xml
│   │   │           │   ├── input_shade.xml
│   │   │           │   ├── interface_call_btn_selector.xml
│   │   │           │   ├── leave_message_play_selector.xml
│   │   │           │   ├── login_btn_selector.xml
│   │   │           │   ├── message_back_selector.xml
│   │   │           │   ├── message_border_bg.xml
│   │   │           │   ├── message_item_bg_selector.xml
│   │   │           │   ├── message_play_selector.xml
│   │   │           │   ├── message_video_selector.xml
│   │   │           │   ├── my_progress_drawable.xml
│   │   │           │   ├── my_switch_selector.xml
│   │   │           │   ├── name_del_selector.xml
│   │   │           │   ├── open_cameralist_alarmlist_selector.xml
│   │   │           │   ├── open_cameralist_button_selector.xml
│   │   │           │   ├── open_cameralist_remotepb_selector.xml
│   │   │           │   ├── open_cameralist_setup_selector.xml
│   │   │           │   ├── palyback_close_selector.xml
│   │   │           │   ├── palyback_previously_selector.xml
│   │   │           │   ├── palyback_video_now_selector.xml
│   │   │           │   ├── palyback_video_selector.xml
│   │   │           │   ├── play_balanced_selector.xml
│   │   │           │   ├── play_bigbtn_selector.xml
│   │   │           │   ├── play_button_selector.xml
│   │   │           │   ├── play_close_selector.xml
│   │   │           │   ├── play_flunet_selector.xml
│   │   │           │   ├── play_full_pause_selector.xml
│   │   │           │   ├── play_full_play_selector.xml
│   │   │           │   ├── play_full_previously_selector.xml
│   │   │           │   ├── play_full_ptz_selector.xml
│   │   │           │   ├── play_full_quality_color_selector.xml
│   │   │           │   ├── play_full_quality_selector.xml
│   │   │           │   ├── play_full_soundoff_btn_selector.xml
│   │   │           │   ├── play_full_soundon_btn_selector.xml
│   │   │           │   ├── play_full_stop_selector.xml
│   │   │           │   ├── play_full_talk_selector.xml
│   │   │           │   ├── play_full_video_now_selector.xml
│   │   │           │   ├── play_full_video_selector.xml
│   │   │           │   ├── play_hd_selector.xml
│   │   │           │   ├── play_play_selector.xml
│   │   │           │   ├── play_previously_selector.xml
│   │   │           │   ├── play_privacy_selector.xml
│   │   │           │   ├── play_ptz_selector.xml
│   │   │           │   ├── play_smallbtn_selector.xml
│   │   │           │   ├── play_speech_selector.xml
│   │   │           │   ├── play_stop_selector.xml
│   │   │           │   ├── play_talk_selector.xml
│   │   │           │   ├── play_talkback_selector.xml
│   │   │           │   ├── play_video_selector.xml
│   │   │           │   ├── play_voice_selector.xml
│   │   │           │   ├── playback_check_selector.xml
│   │   │           │   ├── playback_cut_btn_selector.xml
│   │   │           │   ├── playbtn_selector.xml
│   │   │           │   ├── preview_down_selector.xml
│   │   │           │   ├── preview_enlarge_selector.xml
│   │   │           │   ├── ptz_turn_selector.xml
│   │   │           │   ├── push_close_selector.xml
│   │   │           │   ├── radius_rect_bg_qq_group.xml
│   │   │           │   ├── read_button_selector.xml
│   │   │           │   ├── refresh_selector.xml
│   │   │           │   ├── register_server_bg.xml
│   │   │           │   ├── remote_cal_selector.xml
│   │   │           │   ├── remote_exit_btn_selector.xml
│   │   │           │   ├── remote_list_pause_btn_selector.xml
│   │   │           │   ├── remote_list_play_btn_selector.xml
│   │   │           │   ├── remote_list_soundoff_btn_selector.xml
│   │   │           │   ├── remote_list_soundon_btn_selector.xml
│   │   │           │   ├── remote_seekbar_style.xml
│   │   │           │   ├── remote_seekbar_thumb.xml
│   │   │           │   ├── search_button_selector.xml
│   │   │           │   ├── seekbar_thumb.xml
│   │   │           │   ├── small_button_cameralist.xml
│   │   │           │   ├── speech.xml
│   │   │           │   ├── speech_full_selector.xml
│   │   │           │   ├── stopbtn_selector.xml
│   │   │           │   ├── tiltle_button_selector.xml
│   │   │           │   ├── tip_textview_bg.xml
│   │   │           │   ├── title_down_play_selector.xml
│   │   │           │   ├── vertical_preview_sound_selector.xml
│   │   │           │   ├── vertical_preview_stop_selector.xml
│   │   │           │   └── video_quality_selector.xml
│   │   │           ├── drawable-hdpi
│   │   │           │   ├── cloud_ad.png
│   │   │           │   ├── collect_loading.png
│   │   │           │   ├── ic_action_search.png
│   │   │           │   ├── shipin7_alarm_msg_new.png
│   │   │           │   └── videogo_icon.png
│   │   │           ├── drawable-ldpi
│   │   │           │   ├── bottom_divider.xml
│   │   │           │   ├── shipin7_alarm_msg_new.png
│   │   │           │   └── videogo_icon.png
│   │   │           ├── drawable-mdpi
│   │   │           │   ├── join_qq_group.png
│   │   │           │   ├── shipin7_alarm_msg_new.png
│   │   │           │   └── videogo_icon.png
│   │   │           ├── drawable-xhdpi
│   │   │           │   ├── add2_button.png
│   │   │           │   ├── add2_button_sel.png
│   │   │           │   ├── add3_button.png
│   │   │           │   ├── add3_button_sel.png
│   │   │           │   ├── add_button.png
│   │   │           │   ├── add_button_dis.png
│   │   │           │   ├── add_button_sel.png
│   │   │           │   ├── add_camera_button_dis.9.png
│   │   │           │   ├── add_camera_not_button.9.png
│   │   │           │   ├── add_camera_not_button_click.9.png
│   │   │           │   ├── add_device_number_bg.png
│   │   │           │   ├── alarm_encrypt_image_mid.png
│   │   │           │   ├── amplify_screen_dis.png
│   │   │           │   ├── amplify_screen_normal.png
│   │   │           │   ├── amplify_screen_pressed.png
│   │   │           │   ├── arrow_down.png
│   │   │           │   ├── arrow_next.png
│   │   │           │   ├── auto_button_blue_sel.9.png
│   │   │           │   ├── auto_button_bule.9.png
│   │   │           │   ├── auto_button_red.9.png
│   │   │           │   ├── auto_button_red_sel.9.png
│   │   │           │   ├── auto_wifi_add_success_2.png
│   │   │           │   ├── auto_wifi_cicle_120.png
│   │   │           │   ├── auto_wifi_cicle_240.png
│   │   │           │   ├── auto_wifi_cicle_bg.png
│   │   │           │   ├── auto_wifi_failed.png
│   │   │           │   ├── auto_wifi_wait1.png
│   │   │           │   ├── auto_wifi_wait2.png
│   │   │           │   ├── auto_wifi_wait3.png
│   │   │           │   ├── auto_wifi_wait4.png
│   │   │           │   ├── autologin_off.png
│   │   │           │   ├── autologin_on.png
│   │   │           │   ├── back.png
│   │   │           │   ├── back_press.png
│   │   │           │   ├── bg.jpg
│   │   │           │   ├── btn_2_normal.png
│   │   │           │   ├── btn_2_select.png
│   │   │           │   ├── btn_collect.9.png
│   │   │           │   ├── btn_collect_prs.9.png
│   │   │           │   ├── btn_r1_retry_dis.9.png
│   │   │           │   ├── btn_r1_retry_normal.9.png
│   │   │           │   ├── btn_r1_retry_pressed.9.png
│   │   │           │   ├── btn_style_alert_dialog_special_normal.9.png
│   │   │           │   ├── btn_style_alert_dialog_special_pressed.9.png
│   │   │           │   ├── btn_style_one_disabled.9.png
│   │   │           │   ├── btn_style_one_focused.9.png
│   │   │           │   ├── btn_style_one_normal.9.png
│   │   │           │   ├── btn_style_one_pressed.9.png
│   │   │           │   ├── c3w_250.jpg
│   │   │           │   ├── c6c_250_1080.png
│   │   │           │   ├── c6c_250_720.png
│   │   │           │   ├── c6h_250.png
│   │   │           │   ├── c6p_250.jpg
│   │   │           │   ├── c6p_bg.png
│   │   │           │   ├── calendar_date_sel.png
│   │   │           │   ├── calendar_date_today.png
│   │   │           │   ├── camera_crop_height.png
│   │   │           │   ├── camera_crop_width.png
│   │   │           │   ├── camera_list_item.9.png
│   │   │           │   ├── camera_list_item_press.9.png
│   │   │           │   ├── camera_list_refresh.png
│   │   │           │   ├── cameralist_add_camer_btn.9.png
│   │   │           │   ├── cameralist_add_camer_btn_sel.9.png
│   │   │           │   ├── capture.png
│   │   │           │   ├── capture_disable.png
│   │   │           │   ├── capture_press.png
│   │   │           │   ├── checked.png
│   │   │           │   ├── ckb_normal.png
│   │   │           │   ├── ckb_selected.png
│   │   │           │   ├── code.png
│   │   │           │   ├── common_loading.png
│   │   │           │   ├── common_number_bg.png
│   │   │           │   ├── common_refresh.png
│   │   │           │   ├── common_title.9.png
│   │   │           │   ├── common_title_back.png
│   │   │           │   ├── common_title_back_dark.png
│   │   │           │   ├── common_title_back_sel.png
│   │   │           │   ├── common_title_cancel.png
│   │   │           │   ├── common_title_cancel_sel.png
│   │   │           │   ├── common_title_confirm.png
│   │   │           │   ├── common_title_confirm_dis.png
│   │   │           │   ├── common_title_confirm_sel.png
│   │   │           │   ├── common_title_input.png
│   │   │           │   ├── common_title_input_sel.png
│   │   │           │   ├── common_title_more.png
│   │   │           │   ├── common_title_more_sel.png
│   │   │           │   ├── common_title_refresh.png
│   │   │           │   ├── common_title_setup.png
│   │   │           │   ├── common_title_setup_dis.png
│   │   │           │   ├── common_title_setup_sel.png
│   │   │           │   ├── common_title_share.png
│   │   │           │   ├── common_title_share_dark.png
│   │   │           │   ├── common_title_share_sel.png
│   │   │           │   ├── common_title_vertical_more.png
│   │   │           │   ├── common_title_vertical_more_dark.png
│   │   │           │   ├── common_title_vertical_more_dark_dis.png
│   │   │           │   ├── common_title_vertical_more_sel.png
│   │   │           │   ├── connect_img1.jpg
│   │   │           │   ├── connect_img2.jpg
│   │   │           │   ├── connect_reset.png
│   │   │           │   ├── connect_wifi1.png
│   │   │           │   ├── connect_wifi2.png
│   │   │           │   ├── connect_wifi3.png
│   │   │           │   ├── connect_wifi4.png
│   │   │           │   ├── control_bar_bg.9.png
│   │   │           │   ├── defalut_alarm.jpg
│   │   │           │   ├── default_cover_02.9.png
│   │   │           │   ├── default_figure.jpg
│   │   │           │   ├── del_button.9.png
│   │   │           │   ├── del_button_dis.9.png
│   │   │           │   ├── del_button_sel.9.png
│   │   │           │   ├── device_16_nvr_bg.png
│   │   │           │   ├── device_4_dvr_bg.png
│   │   │           │   ├── device_4_nvr_bg.png
│   │   │           │   ├── device_5k_vr104d.png
│   │   │           │   ├── device_5k_vr104d_bg.png
│   │   │           │   ├── device_5k_vr116d.png
│   │   │           │   ├── device_5k_vr116d_bg.png
│   │   │           │   ├── device_8_16dvr_bg.png
│   │   │           │   ├── device_a1.png
│   │   │           │   ├── device_a1_bg.png
│   │   │           │   ├── device_a1c.png
│   │   │           │   ├── device_a1c_bg.png
│   │   │           │   ├── device_a1s.png
│   │   │           │   ├── device_a1s_bg.png
│   │   │           │   ├── device_alertor.png
│   │   │           │   ├── device_baidu_c2s.png
│   │   │           │   ├── device_c1.png
│   │   │           │   ├── device_c1_rotate.png
│   │   │           │   ├── device_c2.png
│   │   │           │   ├── device_c2_2.png
│   │   │           │   ├── device_c2_usa.png
│   │   │           │   ├── device_c2c.png
│   │   │           │   ├── device_c2mini.png
│   │   │           │   ├── device_c2mini2.png
│   │   │           │   ├── device_c2plus.png
│   │   │           │   ├── device_c2plus_bg.png
│   │   │           │   ├── device_c2s.png
│   │   │           │   ├── device_c2w.png
│   │   │           │   ├── device_c3.png
│   │   │           │   ├── device_c3c.png
│   │   │           │   ├── device_c3e.png
│   │   │           │   ├── device_c3e_bg.png
│   │   │           │   ├── device_c3s.png
│   │   │           │   ├── device_c4.png
│   │   │           │   ├── device_c4c.png
│   │   │           │   ├── device_c4c_bg.png
│   │   │           │   ├── device_c4e.png
│   │   │           │   ├── device_c4e_bg.png
│   │   │           │   ├── device_c4s.png
│   │   │           │   ├── device_c6.png
│   │   │           │   ├── device_c6c.png
│   │   │           │   ├── device_c6c_1.png
│   │   │           │   ├── device_c6c_2.png
│   │   │           │   ├── device_c6h.png
│   │   │           │   ├── device_c6p.png
│   │   │           │   ├── device_c6t_bg.png
│   │   │           │   ├── device_callhelp.png
│   │   │           │   ├── device_co2.png
│   │   │           │   ├── device_cs_c3w.png
│   │   │           │   ├── device_cs_vr104d.png
│   │   │           │   ├── device_cs_vr108d.png
│   │   │           │   ├── device_cs_vr116d.png
│   │   │           │   ├── device_curtain.png
│   │   │           │   ├── device_d1.png
│   │   │           │   ├── device_d1_bg.png
│   │   │           │   ├── device_default_details.png
│   │   │           │   ├── device_dh1.png
│   │   │           │   ├── device_door.png
│   │   │           │   ├── device_doorbell.png
│   │   │           │   ├── device_doorbell_hik.png
│   │   │           │   ├── device_dvr.png
│   │   │           │   ├── device_f1.png
│   │   │           │   ├── device_gas.png
│   │   │           │   ├── device_h2c.png
│   │   │           │   ├── device_h2s.png
│   │   │           │   ├── device_infrared.png
│   │   │           │   ├── device_ipc_dome.png
│   │   │           │   ├── device_keyboard.png
│   │   │           │   ├── device_light.png
│   │   │           │   ├── device_mini_360_plus.png
│   │   │           │   ├── device_mini_trooper.png
│   │   │           │   ├── device_move_magnetometer.png
│   │   │           │   ├── device_n1.png
│   │   │           │   ├── device_n1w.png
│   │   │           │   ├── device_n1w_bg.png
│   │   │           │   ├── device_normal.png
│   │   │           │   ├── device_offline.png
│   │   │           │   ├── device_other.png
│   │   │           │   ├── device_pic_4_dvr.png
│   │   │           │   ├── device_pic_4_nvr.png
│   │   │           │   ├── device_pic_8_16_dvr.png
│   │   │           │   ├── device_pic_8_16_nvr.png
│   │   │           │   ├── device_r1.png
│   │   │           │   ├── device_r1_bg.png
│   │   │           │   ├── device_r2.png
│   │   │           │   ├── device_r2_bg.png
│   │   │           │   ├── device_remote.png
│   │   │           │   ├── device_smoke.png
│   │   │           │   ├── device_vr104d_bg.png
│   │   │           │   ├── device_vr108d_bg.png
│   │   │           │   ├── device_vr116d_bg.png
│   │   │           │   ├── device_w1.png
│   │   │           │   ├── device_w2d.png
│   │   │           │   ├── device_w2d_bg.png
│   │   │           │   ├── device_w2s.png
│   │   │           │   ├── device_w2s_bg.png
│   │   │           │   ├── device_w3.png
│   │   │           │   ├── device_w3_details.png
│   │   │           │   ├── device_water.png
│   │   │           │   ├── device_wifi.png
│   │   │           │   ├── device_wifi2.png
│   │   │           │   ├── device_wifi3.png
│   │   │           │   ├── device_wlb.png
│   │   │           │   ├── device_wlb_bg.png
│   │   │           │   ├── device_x1.png
│   │   │           │   ├── device_x1_bg.png
│   │   │           │   ├── device_x2.png
│   │   │           │   ├── device_x2_bg.png
│   │   │           │   ├── device_x3.png
│   │   │           │   ├── device_x3_bg.png
│   │   │           │   ├── device_x3c.png
│   │   │           │   ├── device_x3c_bg.png
│   │   │           │   ├── device_x4.png
│   │   │           │   ├── device_x4_bg.png
│   │   │           │   ├── device_x5_108tp.png
│   │   │           │   ├── device_x5_108tp_bg.png
│   │   │           │   ├── device_x5c.png
│   │   │           │   ├── device_x5c_bg.png
│   │   │           │   ├── device_z1.png
│   │   │           │   ├── down_horizontal.png
│   │   │           │   ├── down_twinkle.png
│   │   │           │   ├── download8.png
│   │   │           │   ├── edittext_del.png
│   │   │           │   ├── edittext_del_sel.png
│   │   │           │   ├── equipment.png
│   │   │           │   ├── equipment_sel.png
│   │   │           │   ├── event_list_fail_pic.jpg
│   │   │           │   ├── exit.png
│   │   │           │   ├── exit_sel.png
│   │   │           │   ├── expression_del.png
│   │   │           │   ├── expression_del_sel.png
│   │   │           │   ├── ez_real_play.png
│   │   │           │   ├── ez_real_play_sel.png
│   │   │           │   ├── face_image3.png
│   │   │           │   ├── face_rect.png
│   │   │           │   ├── failure_account.png
│   │   │           │   ├── failure_server.png
│   │   │           │   ├── failure_wifi.png
│   │   │           │   ├── flashlight.png
│   │   │           │   ├── flashlight_closed.png
│   │   │           │   ├── goback.png
│   │   │           │   ├── goback_dis.png
│   │   │           │   ├── goback_sel.png
│   │   │           │   ├── gohead.png
│   │   │           │   ├── gohead_dis.png
│   │   │           │   ├── gohead_sel.png
│   │   │           │   ├── graybtn.9.png
│   │   │           │   ├── graybtn_press.9.png
│   │   │           │   ├── h_bg.png
│   │   │           │   ├── h_bg_sel.png
│   │   │           │   ├── h_talk.png
│   │   │           │   ├── h_talk_sel.png
│   │   │           │   ├── hide_bg2_1.png
│   │   │           │   ├── hide_bg2_2.png
│   │   │           │   ├── hide_bg2_3.png
│   │   │           │   ├── hide_bg2_4.png
│   │   │           │   ├── hide_bg2_5.png
│   │   │           │   ├── hide_bg2_6.png
│   │   │           │   ├── hide_bg2_7.png
│   │   │           │   ├── hide_bg2_8.png
│   │   │           │   ├── hide_bg2_9.png
│   │   │           │   ├── history_video.png
│   │   │           │   ├── history_video_dis.png
│   │   │           │   ├── history_video_sel.png
│   │   │           │   ├── horizontal_shrink_screen_normal.png
│   │   │           │   ├── horizontal_shrink_screen_pressed.png
│   │   │           │   ├── icn_btn_bg_plus.png
│   │   │           │   ├── icon_multi_screen_preview.png
│   │   │           │   ├── image_a1.jpg
│   │   │           │   ├── image_crispr.jpg
│   │   │           │   ├── image_everyday_1080p.jpg
│   │   │           │   ├── image_everyday_3mp.jpg
│   │   │           │   ├── image_everyday_4mp_ip.jpg
│   │   │           │   ├── image_everyday_720p.jpg
│   │   │           │   ├── image_everyday_ip_1080p.jpg
│   │   │           │   ├── image_husky.jpg
│   │   │           │   ├── image_husky_c.jpg
│   │   │           │   ├── image_husky_dome.jpg
│   │   │           │   ├── image_mini.jpg
│   │   │           │   ├── image_mini_360.jpg
│   │   │           │   ├── image_mini_360_plus.jpg
│   │   │           │   ├── image_mini_o.jpg
│   │   │           │   ├── image_mini_plus.jpg
│   │   │           │   ├── image_mini_trooper.jpg
│   │   │           │   ├── image_minio.jpg
│   │   │           │   ├── img_slider_handle.png
│   │   │           │   ├── indicator_autocrop.png
│   │   │           │   ├── inputlayout_bg.9.png
│   │   │           │   ├── join_qq_group.png
│   │   │           │   ├── label_bg_line.9.png
│   │   │           │   ├── label_bg_sel.9.png
│   │   │           │   ├── leave_message_play.png
│   │   │           │   ├── leave_message_play_sel.png
│   │   │           │   ├── left_horizontal.png
│   │   │           │   ├── left_twinkle.png
│   │   │           │   ├── link_account1.png
│   │   │           │   ├── link_account2.png
│   │   │           │   ├── link_account3.png
│   │   │           │   ├── link_account4.png
│   │   │           │   ├── load_failed_bg.png
│   │   │           │   ├── lock_bg.png
│   │   │           │   ├── login_logo.png
│   │   │           │   ├── login_logo_button.9.png
│   │   │           │   ├── login_logo_button_sel.9.png
│   │   │           │   ├── logo_loading_1.png
│   │   │           │   ├── logo_loading_2.png
│   │   │           │   ├── logo_loading_3.png
│   │   │           │   ├── logo_loading_4.png
│   │   │           │   ├── mesage_details_callhelp.png
│   │   │           │   ├── mesage_details_curtain.png
│   │   │           │   ├── mesage_details_data.png
│   │   │           │   ├── mesage_details_door.png
│   │   │           │   ├── mesage_details_gas.png
│   │   │           │   ├── mesage_details_hdd.png
│   │   │           │   ├── mesage_details_infrared.png
│   │   │           │   ├── mesage_details_keyboard.png
│   │   │           │   ├── mesage_details_loss.png
│   │   │           │   ├── mesage_details_low_battery.png
│   │   │           │   ├── mesage_details_offline.png
│   │   │           │   ├── mesage_details_power.png
│   │   │           │   ├── mesage_details_smoke.png
│   │   │           │   ├── mesage_details_tampering.png
│   │   │           │   ├── mesage_details_video_loss.png
│   │   │           │   ├── mesage_details_water.png
│   │   │           │   ├── message.png
│   │   │           │   ├── message_a1_bg.png
│   │   │           │   ├── message_back.png
│   │   │           │   ├── message_back_sel.png
│   │   │           │   ├── message_callhelp.png
│   │   │           │   ├── message_curtain.png
│   │   │           │   ├── message_data.png
│   │   │           │   ├── message_door.png
│   │   │           │   ├── message_gas.png
│   │   │           │   ├── message_hdd.png
│   │   │           │   ├── message_infrared.png
│   │   │           │   ├── message_keyboard.png
│   │   │           │   ├── message_loss.png
│   │   │           │   ├── message_low_battery.png
│   │   │           │   ├── message_move_magnetometer.png
│   │   │           │   ├── message_offline.png
│   │   │           │   ├── message_play.png
│   │   │           │   ├── message_play_dis.png
│   │   │           │   ├── message_play_sel.png
│   │   │           │   ├── message_power.png
│   │   │           │   ├── message_sel.png
│   │   │           │   ├── message_smoke.png
│   │   │           │   ├── message_tampering.png
│   │   │           │   ├── message_video.png
│   │   │           │   ├── message_video_dis.png
│   │   │           │   ├── message_video_loss.png
│   │   │           │   ├── message_video_sel.png
│   │   │           │   ├── message_water.png
│   │   │           │   ├── mm_trans.png
│   │   │           │   ├── more.png
│   │   │           │   ├── my_5k_vr.png
│   │   │           │   ├── my_5k_vr116.png
│   │   │           │   ├── my_a1.9.png
│   │   │           │   ├── my_a1c.9.png
│   │   │           │   ├── my_a1s.png
│   │   │           │   ├── my_add.png
│   │   │           │   ├── my_c6p.png
│   │   │           │   ├── my_c6t.png
│   │   │           │   ├── my_cover.png
│   │   │           │   ├── my_cover620.9.png
│   │   │           │   ├── my_db1.png
│   │   │           │   ├── my_doorbell.png
│   │   │           │   ├── my_doorbell_hik.png
│   │   │           │   ├── my_n1.9.png
│   │   │           │   ├── my_no_video.png
│   │   │           │   ├── my_r1.9.png
│   │   │           │   ├── my_r2.9.png
│   │   │           │   ├── my_shoping.png
│   │   │           │   ├── my_switch_off.png
│   │   │           │   ├── my_switch_on.png
│   │   │           │   ├── my_vr104d.png
│   │   │           │   ├── my_w1.9.png
│   │   │           │   ├── my_w2d.png
│   │   │           │   ├── my_w2s.png
│   │   │           │   ├── my_w3.9.png
│   │   │           │   ├── my_wlb.png
│   │   │           │   ├── my_x1.9.png
│   │   │           │   ├── my_x2.9.png
│   │   │           │   ├── my_x3.9.png
│   │   │           │   ├── my_x3c.png
│   │   │           │   ├── my_x4.png
│   │   │           │   ├── my_x5c.png
│   │   │           │   ├── name_del.png
│   │   │           │   ├── name_del_sel.png
│   │   │           │   ├── nav_recordtype.png
│   │   │           │   ├── no_message.png
│   │   │           │   ├── no_read.png
│   │   │           │   ├── nomessage.png
│   │   │           │   ├── notify_bg.png
│   │   │           │   ├── number_bg.png
│   │   │           │   ├── offline.png
│   │   │           │   ├── opinion.png
│   │   │           │   ├── palyback_alarm_icon2.png
│   │   │           │   ├── palyback_close.png
│   │   │           │   ├── palyback_close_sel.png
│   │   │           │   ├── palyback_date_down.png
│   │   │           │   ├── palyback_date_down_sel.png
│   │   │           │   ├── palyback_full_down.png
│   │   │           │   ├── palyback_full_up.png
│   │   │           │   ├── palyback_nest.png
│   │   │           │   ├── palyback_pause.png
│   │   │           │   ├── palyback_pause_sel.png
│   │   │           │   ├── palyback_previously.png
│   │   │           │   ├── palyback_previously_sel.png
│   │   │           │   ├── palyback_replay.png
│   │   │           │   ├── palyback_retry.png
│   │   │           │   ├── palyback_time_bg.png
│   │   │           │   ├── palyback_video.png
│   │   │           │   ├── palyback_video_now.png
│   │   │           │   ├── palyback_video_now_sel.png
│   │   │           │   ├── palyback_video_sel.png
│   │   │           │   ├── pause.png
│   │   │           │   ├── pause_sel.png
│   │   │           │   ├── pic_bg.png
│   │   │           │   ├── play.png
│   │   │           │   ├── play_balanced.png
│   │   │           │   ├── play_balanced_disabel.png
│   │   │           │   ├── play_balanced_sel.png
│   │   │           │   ├── play_big.png
│   │   │           │   ├── play_big_press.png
│   │   │           │   ├── play_button_bg.9.png
│   │   │           │   ├── play_button_sel.9.png
│   │   │           │   ├── play_close.png
│   │   │           │   ├── play_close_sel.png
│   │   │           │   ├── play_disable.png
│   │   │           │   ├── play_flunet.png
│   │   │           │   ├── play_flunet_disabel.png
│   │   │           │   ├── play_flunet_sel.png
│   │   │           │   ├── play_full_loding_logo.png
│   │   │           │   ├── play_full_multiple.png
│   │   │           │   ├── play_full_multiple2.png
│   │   │           │   ├── play_full_multiple3.png
│   │   │           │   ├── play_full_multiple4.png
│   │   │           │   ├── play_full_multiple5.png
│   │   │           │   ├── play_full_pause.png
│   │   │           │   ├── play_full_pause_sel.png
│   │   │           │   ├── play_full_play.png
│   │   │           │   ├── play_full_play_sel.png
│   │   │           │   ├── play_full_previously.png
│   │   │           │   ├── play_full_previously_sel.png
│   │   │           │   ├── play_full_stop.png
│   │   │           │   ├── play_full_stop_sel.png
│   │   │           │   ├── play_full_video.png
│   │   │           │   ├── play_full_video_now.png
│   │   │           │   ├── play_full_video_now_sel.png
│   │   │           │   ├── play_full_video_sel.png
│   │   │           │   ├── play_hd.png
│   │   │           │   ├── play_hd_disabel.png
│   │   │           │   ├── play_hd_sel.png
│   │   │           │   ├── play_play.png
│   │   │           │   ├── play_play_dis.png
│   │   │           │   ├── play_play_sel.png
│   │   │           │   ├── play_press.png
│   │   │           │   ├── play_previously.png
│   │   │           │   ├── play_previously_dis.png
│   │   │           │   ├── play_previously_sel.png
│   │   │           │   ├── play_ptz.png
│   │   │           │   ├── play_ptz_dis.png
│   │   │           │   ├── play_ptz_sel.png
│   │   │           │   ├── play_small.png
│   │   │           │   ├── play_small_press.png
│   │   │           │   ├── play_speech.png
│   │   │           │   ├── play_speech_dis.png
│   │   │           │   ├── play_speech_sel.png
│   │   │           │   ├── play_stop.png
│   │   │           │   ├── play_stop_sel.png
│   │   │           │   ├── play_talk.png
│   │   │           │   ├── play_talk_dis.png
│   │   │           │   ├── play_talk_sel.png
│   │   │           │   ├── play_talkback.png
│   │   │           │   ├── play_talkback_sel.png
│   │   │           │   ├── play_video.png
│   │   │           │   ├── play_video_dis.png
│   │   │           │   ├── play_video_record.png
│   │   │           │   ├── play_video_sel.png
│   │   │           │   ├── play_video_start.png
│   │   │           │   ├── play_video_time_bg.png
│   │   │           │   ├── play_voice.png
│   │   │           │   ├── play_voice_dis.png
│   │   │           │   ├── play_voice_sel.png
│   │   │           │   ├── playback.png
│   │   │           │   ├── playback_button.9.png
│   │   │           │   ├── playback_cancel.png
│   │   │           │   ├── playback_cover2.9.png
│   │   │           │   ├── playback_cut.png
│   │   │           │   ├── playback_cut_disable.png
│   │   │           │   ├── playback_cut_sel.png
│   │   │           │   ├── playback_matte.png
│   │   │           │   ├── playback_more_down.png
│   │   │           │   ├── playback_more_down1.png
│   │   │           │   ├── playback_more_up1.png
│   │   │           │   ├── playback_play.png
│   │   │           │   ├── playback_play_sel.png
│   │   │           │   ├── playback_sel.png
│   │   │           │   ├── playbackslider.png
│   │   │           │   ├── playbackslider_sel.png
│   │   │           │   ├── popdialogbg.9.png
│   │   │           │   ├── prepare_device.png
│   │   │           │   ├── preview_close1_video_ico.png
│   │   │           │   ├── preview_close_video.png
│   │   │           │   ├── preview_close_video_dis.png
│   │   │           │   ├── preview_close_video_sel.png
│   │   │           │   ├── preview_down_bg_normal.9.png
│   │   │           │   ├── preview_down_bg_pressed.9.png
│   │   │           │   ├── preview_down_ico.png
│   │   │           │   ├── preview_enlarge.9.png
│   │   │           │   ├── preview_enlarge_btn_sel.9.png
│   │   │           │   ├── preview_enlarge_dis.9.png
│   │   │           │   ├── preview_play_btn.9.png
│   │   │           │   ├── preview_play_btn_dis.9.png
│   │   │           │   ├── preview_play_btn_sel.9.png
│   │   │           │   ├── preview_recording.png
│   │   │           │   ├── preview_recording_dis.png
│   │   │           │   ├── preview_recording_sel.png
│   │   │           │   ├── preview_selection_bg.png
│   │   │           │   ├── preview_stopplay_btn_dis.9.png
│   │   │           │   ├── preview_unvoice_btn.9.png
│   │   │           │   ├── preview_unvoice_btn_sel.9.png
│   │   │           │   ├── preview_video_selection.png
│   │   │           │   ├── preview_video_selection_hover.png
│   │   │           │   ├── preview_voice_btn.9.png
│   │   │           │   ├── preview_voice_btn_dis.9.png
│   │   │           │   ├── preview_voice_btn_sel.9.png
│   │   │           │   ├── previously.png
│   │   │           │   ├── previously_dis.png
│   │   │           │   ├── previously_sel.png
│   │   │           │   ├── ptz_bg.png
│   │   │           │   ├── ptz_bottom_limit.png
│   │   │           │   ├── ptz_bottom_sel.png
│   │   │           │   ├── ptz_left_limit.png
│   │   │           │   ├── ptz_left_sel.png
│   │   │           │   ├── ptz_prompt.png
│   │   │           │   ├── ptz_right_limit.png
│   │   │           │   ├── ptz_right_sel.png
│   │   │           │   ├── ptz_top_limit.png
│   │   │           │   ├── ptz_turn.png
│   │   │           │   ├── ptz_turn_sel.png
│   │   │           │   ├── ptz_up_sel.png
│   │   │           │   ├── push_close.png
│   │   │           │   ├── push_close_sel.png
│   │   │           │   ├── put_ico.png
│   │   │           │   ├── query_loding1.png
│   │   │           │   ├── query_loding2.png
│   │   │           │   ├── query_loding3.png
│   │   │           │   ├── query_loding4.png
│   │   │           │   ├── query_loding5.png
│   │   │           │   ├── read_button.9.png
│   │   │           │   ├── read_button_sel.9.png
│   │   │           │   ├── remote_play.png
│   │   │           │   ├── remote_play_sel.png
│   │   │           │   ├── reset_deivce.png
│   │   │           │   ├── result_5k_vr104d.png
│   │   │           │   ├── result_5k_vr116d.png
│   │   │           │   ├── result_8_16dvr.png
│   │   │           │   ├── result_cs_c3w.png
│   │   │           │   ├── result_cs_vr104d.png
│   │   │           │   ├── result_cs_vr108d.png
│   │   │           │   ├── result_cs_vr116d.png
│   │   │           │   ├── result_pic_dh1.png
│   │   │           │   ├── result_pic_doorbell.png
│   │   │           │   ├── result_pic_doorbell_hik.png
│   │   │           │   ├── result_pic_light.png
│   │   │           │   ├── result_x5c.png
│   │   │           │   ├── results_4_dvr.png
│   │   │           │   ├── results_8_16_nvr.png
│   │   │           │   ├── results_8_nvr.png
│   │   │           │   ├── results_c6p.png
│   │   │           │   ├── results_mini_360_plus.png
│   │   │           │   ├── results_mini_trooper.png
│   │   │           │   ├── results_pic_a1.png
│   │   │           │   ├── results_pic_a1c.png
│   │   │           │   ├── results_pic_a1s.png
│   │   │           │   ├── results_pic_baidu_c2s.png
│   │   │           │   ├── results_pic_bg.png
│   │   │           │   ├── results_pic_c1.png
│   │   │           │   ├── results_pic_c2.png
│   │   │           │   ├── results_pic_c2_2.png
│   │   │           │   ├── results_pic_c2_usa.png
│   │   │           │   ├── results_pic_c2c.png
│   │   │           │   ├── results_pic_c2mini.png
│   │   │           │   ├── results_pic_c2mini2.png
│   │   │           │   ├── results_pic_c2plus.png
│   │   │           │   ├── results_pic_c2s.png
│   │   │           │   ├── results_pic_c2w.png
│   │   │           │   ├── results_pic_c3.png
│   │   │           │   ├── results_pic_c3c.png
│   │   │           │   ├── results_pic_c3e.png
│   │   │           │   ├── results_pic_c3s.png
│   │   │           │   ├── results_pic_c4.png
│   │   │           │   ├── results_pic_c4c.png
│   │   │           │   ├── results_pic_c4e.png
│   │   │           │   ├── results_pic_c4s.png
│   │   │           │   ├── results_pic_c6.png
│   │   │           │   ├── results_pic_c6c.png
│   │   │           │   ├── results_pic_c6c_1.png
│   │   │           │   ├── results_pic_c6c_2.png
│   │   │           │   ├── results_pic_c6h.png
│   │   │           │   ├── results_pic_co2.png
│   │   │           │   ├── results_pic_d1.png
│   │   │           │   ├── results_pic_default.png
│   │   │           │   ├── results_pic_f1.png
│   │   │           │   ├── results_pic_h2c.png
│   │   │           │   ├── results_pic_h2s.png
│   │   │           │   ├── results_pic_n1.png
│   │   │           │   ├── results_pic_n1w.png
│   │   │           │   ├── results_pic_r1.png
│   │   │           │   ├── results_pic_r2.png
│   │   │           │   ├── results_pic_w1.png
│   │   │           │   ├── results_pic_w3.png
│   │   │           │   ├── results_pic_x1.png
│   │   │           │   ├── results_pic_x2.png
│   │   │           │   ├── results_pic_x3.png
│   │   │           │   ├── results_pic_x3c.png
│   │   │           │   ├── results_pic_x4.png
│   │   │           │   ├── results_pic_z1.png
│   │   │           │   ├── results_w2d.png
│   │   │           │   ├── results_w2s.png
│   │   │           │   ├── results_wlb.png
│   │   │           │   ├── results_x5_108tp.png
│   │   │           │   ├── right_horizontal.png
│   │   │           │   ├── right_twinkle.png
│   │   │           │   ├── ring_off.png
│   │   │           │   ├── say_bg.9.png
│   │   │           │   ├── search.png
│   │   │           │   ├── search_bnt.9.png
│   │   │           │   ├── search_bnt_sel.9.png
│   │   │           │   ├── search_input.9.png
│   │   │           │   ├── seekbar_thumb.png
│   │   │           │   ├── select_icon.png
│   │   │           │   ├── selected_icon.png
│   │   │           │   ├── server1.png
│   │   │           │   ├── server2.png
│   │   │           │   ├── server3.png
│   │   │           │   ├── server4.png
│   │   │           │   ├── setup.png
│   │   │           │   ├── setup_sel.png
│   │   │           │   ├── setup_wechat.png
│   │   │           │   ├── share_management_label_button.png
│   │   │           │   ├── share_management_label_button_sel.png
│   │   │           │   ├── shipin7_alarm_msg_new.png
│   │   │           │   ├── shrink_screen_normal.png
│   │   │           │   ├── shrink_screen_pressed.png
│   │   │           │   ├── sound_off.png
│   │   │           │   ├── sound_off_blue.png
│   │   │           │   ├── sound_off_sel.png
│   │   │           │   ├── sound_off_sel_blue.png
│   │   │           │   ├── sound_on.png
│   │   │           │   ├── sound_on_blue.png
│   │   │           │   ├── sound_on_sel.png
│   │   │           │   ├── sound_on_sel_blue.png
│   │   │           │   ├── sound_source.png
│   │   │           │   ├── sound_source_sel.png
│   │   │           │   ├── speech_0.png
│   │   │           │   ├── speech_1.png
│   │   │           │   ├── speech_2.png
│   │   │           │   ├── speech_3.png
│   │   │           │   ├── speech_4.png
│   │   │           │   ├── speech_5.png
│   │   │           │   ├── stop.png
│   │   │           │   ├── stop_disable.png
│   │   │           │   ├── stop_press.png
│   │   │           │   ├── stoplay_btn.9.png
│   │   │           │   ├── stoplay_btn_sel.9.png
│   │   │           │   ├── success.png
│   │   │           │   ├── success_icon.png
│   │   │           │   ├── success_img.png
│   │   │           │   ├── switch_camera.png
│   │   │           │   ├── tab_left.png
│   │   │           │   ├── tab_left_sel.png
│   │   │           │   ├── tab_right.png
│   │   │           │   ├── tab_right_sel.png
│   │   │           │   ├── timeline.png
│   │   │           │   ├── timeline_sel.png
│   │   │           │   ├── title_down_bg.png
│   │   │           │   ├── title_down_play.png
│   │   │           │   ├── title_down_play_sel.png
│   │   │           │   ├── title_menu_bg.9.png
│   │   │           │   ├── tittel_button_bg.9.png
│   │   │           │   ├── tittel_button_press_bg.9.png
│   │   │           │   ├── top_bar_bg.9.png
│   │   │           │   ├── track_bar_bg.png
│   │   │           │   ├── trm_popup_bg.9.png
│   │   │           │   ├── trm_popup_bottom_pressed.9.png
│   │   │           │   ├── trm_popup_middle_pressed.9.png
│   │   │           │   ├── trm_popup_top_pressed.9.png
│   │   │           │   ├── unchecked.png
│   │   │           │   ├── up_horizontal.png
│   │   │           │   ├── up_twinkle.png
│   │   │           │   ├── upgrade.png
│   │   │           │   ├── user.png
│   │   │           │   ├── video_camera1_1.png
│   │   │           │   ├── video_camera1_2.png
│   │   │           │   ├── video_camera1_3.png
│   │   │           │   ├── video_file_watermark.png
│   │   │           │   ├── video_talk_sdk_icn_watch.png
│   │   │           │   ├── video_talk_sdk_placeholder_images_user.png
│   │   │           │   ├── video_talk_sdk_video_answer.png
│   │   │           │   ├── video_talk_sdk_video_hangup.png
│   │   │           │   ├── video_talk_sdk_video_record_off.png
│   │   │           │   ├── video_talk_sdk_video_record_on.png
│   │   │           │   ├── video_talk_sdk_video_snap.png
│   │   │           │   ├── video_talk_sdk_video_stop.png
│   │   │           │   ├── video_talk_sdk_video_switch_camera.png
│   │   │           │   ├── videogo_icon.png
│   │   │           │   ├── wait_1.png
│   │   │           │   ├── wait_2.png
│   │   │           │   ├── wait_3.png
│   │   │           │   ├── wait_4.png
│   │   │           │   ├── wait_5.png
│   │   │           │   ├── wait_6.png
│   │   │           │   ├── wait_7.png
│   │   │           │   ├── wait_8.png
│   │   │           │   ├── wait_upload_img.9.png
│   │   │           │   ├── waiting_bg.9.png
│   │   │           │   ├── waiting_progressbar_bg.png
│   │   │           │   ├── water_alarm.png
│   │   │           │   ├── wifi_config_bg.png
│   │   │           │   ├── wifi_connect_tip.png
│   │   │           │   ├── yuntai_normal.png
│   │   │           │   ├── yuntai_pressed.png
│   │   │           │   ├── yxs_head.png
│   │   │           │   └── z1_bg.png
│   │   │           ├── layout
│   │   │           │   ├── activity_add_device_to_acount.xml
│   │   │           │   ├── activity_collect_play_info.xml
│   │   │           │   ├── activity_confluence.xml
│   │   │           │   ├── activity_ezupgrade_device.xml
│   │   │           │   ├── activity_hc.xml
│   │   │           │   ├── activity_hcactive.xml
│   │   │           │   ├── activity_hcplay.xml
│   │   │           │   ├── activity_interface_self_test.xml
│   │   │           │   ├── activity_interface_test.xml
│   │   │           │   ├── activity_join_room.xml
│   │   │           │   ├── activity_lan_multi_device.xml
│   │   │           │   ├── activity_list.xml
│   │   │           │   ├── activity_main.xml
│   │   │           │   ├── activity_meeting_test.xml
│   │   │           │   ├── activity_more_features_entrance.xml
│   │   │           │   ├── activity_multi_screen_preview.xml
│   │   │           │   ├── activity_multi_video_talk.xml
│   │   │           │   ├── activity_multi_video_talk_test.xml
│   │   │           │   ├── activity_my_collect.xml
│   │   │           │   ├── activity_option.xml
│   │   │           │   ├── activity_order_room.xml
│   │   │           │   ├── activity_origin_stream_control.xml
│   │   │           │   ├── activity_rtp_stream_play.xml
│   │   │           │   ├── activity_safety_hat_talk.xml
│   │   │           │   ├── activity_square.xml
│   │   │           │   ├── activity_square_video_list.xml
│   │   │           │   ├── activity_square_video_list2.xml
│   │   │           │   ├── activity_square_video_search.xml
│   │   │           │   ├── activity_support.xml
│   │   │           │   ├── activity_test_config_wifi.xml
│   │   │           │   ├── activity_test_for_sdk.xml
│   │   │           │   ├── activity_test_page.xml
│   │   │           │   ├── activity_video_talk.xml
│   │   │           │   ├── add_camera_by_series_number_page.xml
│   │   │           │   ├── auto_wifi_connecting.xml
│   │   │           │   ├── auto_wifi_connecting_status_item.xml
│   │   │           │   ├── auto_wifi_reset_introduce.xml
│   │   │           │   ├── cameralist_page.xml
│   │   │           │   ├── cameralist_small_item.xml
│   │   │           │   ├── capture_activity.xml
│   │   │           │   ├── city_config_item.xml
│   │   │           │   ├── ddns_device_ist_page.xml
│   │   │           │   ├── ddns_device_list_item.xml
│   │   │           │   ├── device_discover_item.xml
│   │   │           │   ├── device_discover_page.xml
│   │   │           │   ├── device_setting_page.xml
│   │   │           │   ├── device_video_encrypt_dialog.xml
│   │   │           │   ├── ez_demo_interface_activity.xml
│   │   │           │   ├── ez_message_image_page.xml
│   │   │           │   ├── ez_message_list_item.xml
│   │   │           │   ├── ez_message_list_section.xml
│   │   │           │   ├── ez_message_page.xml
│   │   │           │   ├── ez_play_control.xml
│   │   │           │   ├── ez_playback_list_page.xml
│   │   │           │   ├── ez_realplay_page.xml
│   │   │           │   ├── ez_realplay_prompt_layout.xml
│   │   │           │   ├── ez_realplay_quality_items.xml
│   │   │           │   ├── ez_remote_playback_page.xml
│   │   │           │   ├── ezopen_realplay_operate_bar.xml
│   │   │           │   ├── ezopen_realplay_operate_bar2.xml
│   │   │           │   ├── fragment_city_config.xml
│   │   │           │   ├── fragment_search_video.xml
│   │   │           │   ├── fragment_square_video_list.xml
│   │   │           │   ├── item_multi_screen_preview.xml
│   │   │           │   ├── lan_device_adapter_item.xml
│   │   │           │   ├── lan_device_login_dialog.xml
│   │   │           │   ├── layout_change_playback_rate.xml
│   │   │           │   ├── layout_child_watch_video_talk_operation.xml
│   │   │           │   ├── layout_dialog_tip.xml
│   │   │           │   ├── layout_login_anim.xml
│   │   │           │   ├── line_connecting_introduce_activity.xml
│   │   │           │   ├── list_client.xml
│   │   │           │   ├── list_player.xml
│   │   │           │   ├── list_section.xml
│   │   │           │   ├── loading_text_view.xml
│   │   │           │   ├── login_page.xml
│   │   │           │   ├── message_list_item.xml
│   │   │           │   ├── message_page.xml
│   │   │           │   ├── modify_device_name_page.xml
│   │   │           │   ├── multi_video_talk_item.xml
│   │   │           │   ├── network_error_retry_page.xml
│   │   │           │   ├── no_device_more_footer.xml
│   │   │           │   ├── no_more_footer.xml
│   │   │           │   ├── no_msg_more_footer.xml
│   │   │           │   ├── notifier_alarmloginfo_list_item.xml
│   │   │           │   ├── notifier_page.xml
│   │   │           │   ├── open_ysservice_dialog.xml
│   │   │           │   ├── password_error_layout.xml
│   │   │           │   ├── playback_list_page.xml
│   │   │           │   ├── pull_to_refresh_footer.xml
│   │   │           │   ├── pull_to_refresh_header.xml
│   │   │           │   ├── realplay_control_layout.xml
│   │   │           │   ├── realplay_full_operate_layout.xml
│   │   │           │   ├── realplay_loading_layout.xml
│   │   │           │   ├── realplay_operate_bar.xml
│   │   │           │   ├── realplay_operate_bar2.xml
│   │   │           │   ├── realplay_page.xml
│   │   │           │   ├── realplay_prompt_layout.xml
│   │   │           │   ├── realplay_ptz_wnd.xml
│   │   │           │   ├── realplay_quality_items.xml
│   │   │           │   ├── realplay_quality_wnd.xml
│   │   │           │   ├── realplay_talkback_wnd.xml
│   │   │           │   ├── realplayer_item.xml
│   │   │           │   ├── realplayer_page.xml
│   │   │           │   ├── remote_playback_page.xml
│   │   │           │   ├── section_list_item.xml
│   │   │           │   ├── select_camera_no_dialog.xml
│   │   │           │   ├── select_camera_no_dialog_item.xml
│   │   │           │   ├── select_talkback_items.xml
│   │   │           │   ├── sms_verify_dialog.xml
│   │   │           │   ├── square_column_item.xml
│   │   │           │   ├── square_video_item.xml
│   │   │           │   ├── topbar.xml
│   │   │           │   ├── trm_item_popup_menu_list.xml
│   │   │           │   ├── trm_popup_menu.xml
│   │   │           │   ├── verifycode_layout.xml
│   │   │           │   ├── wait_dialog.xml
│   │   │           │   └── web_page.xml
│   │   │           ├── mipmap
│   │   │           │   └── videogo_icon.png
│   │   │           ├── raw
│   │   │           │   ├── beep.mp3
│   │   │           │   ├── paizhao.mp3
│   │   │           │   ├── record.wav
│   │   │           │   ├── video_talk_answer_ring.wav
│   │   │           │   └── video_talk_caller_ring.wav
│   │   │           ├── values
│   │   │           │   ├── arrays.xml
│   │   │           │   ├── attr.xml
│   │   │           │   ├── color.xml
│   │   │           │   ├── colors_v3.xml
│   │   │           │   ├── dimens.xml
│   │   │           │   ├── dimens_new.xml
│   │   │           │   ├── ids.xml
│   │   │           │   ├── strings.xml
│   │   │           │   ├── style.xml
│   │   │           │   └── styles.xml
│   │   │           └── values-zh
│   │   │               └── strings.xml
│   │   └── test.jks
│   ├── app-common
│   │   ├── assets
│   │   │   ├── common_title.9.png
│   │   │   ├── common_title_back.png
│   │   │   ├── common_title_back2.png
│   │   │   ├── common_title_back_dark.png
│   │   │   ├── common_title_back_sel.png
│   │   │   ├── common_title_back_sel2.png
│   │   │   ├── common_title_refresh.png
│   │   │   ├── default_figure.jpg
│   │   │   ├── tittel_button_bg.9.png
│   │   │   └── tittel_button_press_bg.9.png
│   │   ├── build
│   │   │   ├── generated
│   │   │   │   └── source
│   │   │   │       └── kaptKotlin
│   │   │   │           ├── debug
│   │   │   │           ├── debugAndroidTest
│   │   │   │           ├── debugUnitTest
│   │   │   │           ├── release
│   │   │   │           └── releaseUnitTest
│   │   │   └── tmp
│   │   │       └── kapt3
│   │   │           ├── incApCache
│   │   │           │   ├── debug
│   │   │           │   ├── debugAndroidTest
│   │   │           │   ├── debugUnitTest
│   │   │           │   ├── release
│   │   │           │   └── releaseUnitTest
│   │   │           ├── incrementalData
│   │   │           │   ├── debug
│   │   │           │   ├── debugAndroidTest
│   │   │           │   ├── debugUnitTest
│   │   │           │   ├── release
│   │   │           │   └── releaseUnitTest
│   │   │           └── stubs
│   │   │               ├── debug
│   │   │               ├── debugAndroidTest
│   │   │               ├── debugUnitTest
│   │   │               ├── release
│   │   │               └── releaseUnitTest
│   │   ├── build.gradle
│   │   ├── build_common.gradle
│   │   ├── libs
│   │   │   ├── wificonfig.jar
│   │   │   └── zxing.jar
│   │   ├── proguard-rules.pro
│   │   └── src
│   │       └── main
│   │           ├── AndroidManifest.xml
│   │           ├── java
│   │           │   ├── com
│   │           │   │   └── ezviz
│   │           │   │       └── demo
│   │           │   │           └── common
│   │           │   │               └── FolderPathManager.kt
│   │           │   └── ezviz
│   │           │       └── ezopensdkcommon
│   │           │           ├── common
│   │           │           │   ├── BaseApplication.java
│   │           │           │   ├── CheckTextButton.java
│   │           │           │   ├── Config.java
│   │           │           │   ├── IntentConstants.java
│   │           │           │   ├── LogUtil.java
│   │           │           │   ├── RootActivity.java
│   │           │           │   ├── RouteNavigator.java
│   │           │           │   ├── TaskManager.java
│   │           │           │   ├── TitleBar.java
│   │           │           │   ├── Utils.java
│   │           │           │   └── WaitDialog.java
│   │           │           ├── configwifi
│   │           │           │   ├── AutoWifiNetConfigActivity.java
│   │           │           │   ├── AutoWifiPrepareStepOneActivity.java
│   │           │           │   ├── AutoWifiResetActivity.java
│   │           │           │   ├── ConfigWifiExecutingActivity.java
│   │           │           │   ├── ConfigWifiExecutingActivityPresenter.java
│   │           │           │   ├── ConfigWifiTypeConstants.java
│   │           │           │   ├── ManualChooseConfigWifiWayActivity.java
│   │           │           │   ├── ManualConnectDeviceHotspotActivity.kt
│   │           │           │   └── ManualInputDeviceHotspotInfoActivity.kt
│   │           │           ├── debug
│   │           │           │   ├── LogFileService.java
│   │           │           │   └── LogFileUtil.java
│   │           │           └── demo
│   │           │               └── DemoConfig.java
│   │           └── res
│   │               ├── anim
│   │               │   ├── button_shake.xml
│   │               │   ├── device_search_bg.xml
│   │               │   ├── downback_anitem_selector.xml
│   │               │   ├── fade_down.xml
│   │               │   ├── fade_up.xml
│   │               │   ├── play_full_multiple_anim_bg.xml
│   │               │   └── rotate_clockwise.xml
│   │               ├── color
│   │               │   ├── del_button_text_selector.xml
│   │               │   ├── event_message_bg_selector.xml
│   │               │   ├── ez_playback_tab_color_selector.xml
│   │               │   ├── message_button_text_selector.xml
│   │               │   ├── quality_color_selector.xml
│   │               │   ├── read_button_text_selector.xml
│   │               │   ├── textview_txtcolor_selector.xml
│   │               │   └── title_down_text_selector.xml
│   │               ├── drawable
│   │               │   ├── auto_wifi_link_account_bg.xml
│   │               │   ├── auto_wifi_wait.xml
│   │               │   ├── backbtn_selector.xml
│   │               │   ├── border.xml
│   │               │   ├── border_selector.xml
│   │               │   ├── border_transparent.xml
│   │               │   ├── btn_auto_blue_selector.xml
│   │               │   ├── btn_auto_red_selector.xml
│   │               │   ├── btn_r1_retry_selector.xml
│   │               │   ├── btn_white_selector.xml
│   │               │   ├── cameralist_button_selector.xml
│   │               │   ├── cameralist_history_video_selector.xml
│   │               │   ├── cameralist_item_selector.xml
│   │               │   ├── capturebtn_selector.xml
│   │               │   ├── check_selector.xml
│   │               │   ├── circle_roate_drawable.xml
│   │               │   ├── ckb_selector.xml
│   │               │   ├── collect_btn_selector.xml
│   │               │   ├── common_loading_indeterminate.xml
│   │               │   ├── common_refresh_indeterminate.xml
│   │               │   ├── common_title_back_selector.xml
│   │               │   ├── common_title_cancel_selector.xml
│   │               │   ├── common_title_input_selector.xml
│   │               │   ├── common_title_setup_selector.xml
│   │               │   ├── common_title_vertical_more_dark_selector.xml
│   │               │   ├── connect_wifi_bg.xml
│   │               │   ├── decode_failed_tip_bg.xml
│   │               │   ├── del_button_selector.xml
│   │               │   ├── display_frame.xml
│   │               │   ├── edittext_bg.xml
│   │               │   ├── equipment_selector.xml
│   │               │   ├── exit_selector.xml
│   │               │   ├── ez_border.xml
│   │               │   ├── ez_border_selector.xml
│   │               │   ├── ez_btn_r1_retry_selector.xml
│   │               │   ├── ez_leave_message_play_selector.xml
│   │               │   ├── ez_play_video_selector.xml
│   │               │   ├── ez_reaty_btn_selector.xml
│   │               │   ├── ez_remote_list_pause_btn_selector.xml
│   │               │   ├── ezopen_vertical_preview_sound_off_selector.xml
│   │               │   ├── ezopen_vertical_preview_sound_selector.xml
│   │               │   ├── flashlight_selector.xml
│   │               │   ├── fullscreen_button_selector.xml
│   │               │   ├── graybtn_secetor.xml
│   │               │   ├── grouplayout_item_bg_selector.xml
│   │               │   ├── horizontal_fullscreen_button_selector.xml
│   │               │   ├── input_shade.xml
│   │               │   ├── interface_call_btn_selector.xml
│   │               │   ├── leave_message_play_selector.xml
│   │               │   ├── login_btn_selector.xml
│   │               │   ├── message_back_selector.xml
│   │               │   ├── message_border_bg.xml
│   │               │   ├── message_item_bg_selector.xml
│   │               │   ├── message_play_selector.xml
│   │               │   ├── message_video_selector.xml
│   │               │   ├── my_progress_drawable.xml
│   │               │   ├── my_switch_selector.xml
│   │               │   ├── name_del_selector.xml
│   │               │   ├── open_cameralist_alarmlist_selector.xml
│   │               │   ├── open_cameralist_button_selector.xml
│   │               │   ├── open_cameralist_remotepb_selector.xml
│   │               │   ├── open_cameralist_setup_selector.xml
│   │               │   ├── palyback_close_selector.xml
│   │               │   ├── palyback_previously_selector.xml
│   │               │   ├── palyback_video_now_selector.xml
│   │               │   ├── palyback_video_selector.xml
│   │               │   ├── play_balanced_selector.xml
│   │               │   ├── play_bigbtn_selector.xml
│   │               │   ├── play_button_selector.xml
│   │               │   ├── play_close_selector.xml
│   │               │   ├── play_flunet_selector.xml
│   │               │   ├── play_full_pause_selector.xml
│   │               │   ├── play_full_play_selector.xml
│   │               │   ├── play_full_previously_selector.xml
│   │               │   ├── play_full_ptz_selector.xml
│   │               │   ├── play_full_quality_color_selector.xml
│   │               │   ├── play_full_quality_selector.xml
│   │               │   ├── play_full_soundoff_btn_selector.xml
│   │               │   ├── play_full_soundon_btn_selector.xml
│   │               │   ├── play_full_stop_selector.xml
│   │               │   ├── play_full_talk_selector.xml
│   │               │   ├── play_full_video_now_selector.xml
│   │               │   ├── play_full_video_selector.xml
│   │               │   ├── play_hd_selector.xml
│   │               │   ├── play_play_selector.xml
│   │               │   ├── play_previously_selector.xml
│   │               │   ├── play_privacy_selector.xml
│   │               │   ├── play_ptz_selector.xml
│   │               │   ├── play_smallbtn_selector.xml
│   │               │   ├── play_speech_selector.xml
│   │               │   ├── play_stop_selector.xml
│   │               │   ├── play_talk_selector.xml
│   │               │   ├── play_talkback_selector.xml
│   │               │   ├── play_video_selector.xml
│   │               │   ├── play_voice_selector.xml
│   │               │   ├── playback_check_selector.xml
│   │               │   ├── playback_cut_btn_selector.xml
│   │               │   ├── playbtn_selector.xml
│   │               │   ├── preview_down_selector.xml
│   │               │   ├── preview_enlarge_selector.xml
│   │               │   ├── ptz_turn_selector.xml
│   │               │   ├── push_close_selector.xml
│   │               │   ├── radius_rect_bg_qq_group.xml
│   │               │   ├── read_button_selector.xml
│   │               │   ├── refresh_selector.xml
│   │               │   ├── register_server_bg.xml
│   │               │   ├── remote_cal_selector.xml
│   │               │   ├── remote_exit_btn_selector.xml
│   │               │   ├── remote_list_pause_btn_selector.xml
│   │               │   ├── remote_list_play_btn_selector.xml
│   │               │   ├── remote_list_soundoff_btn_selector.xml
│   │               │   ├── remote_list_soundon_btn_selector.xml
│   │               │   ├── remote_seekbar_style.xml
│   │               │   ├── remote_seekbar_thumb.xml
│   │               │   ├── search_button_selector.xml
│   │               │   ├── seekbar_thumb.xml
│   │               │   ├── small_button_cameralist.xml
│   │               │   ├── speech.xml
│   │               │   ├── speech_full_selector.xml
│   │               │   ├── stopbtn_selector.xml
│   │               │   ├── tiltle_button_selector.xml
│   │               │   ├── tip_textview_bg.xml
│   │               │   ├── title_down_play_selector.xml
│   │               │   ├── vertical_preview_sound_selector.xml
│   │               │   ├── vertical_preview_stop_selector.xml
│   │               │   └── video_quality_selector.xml
│   │               ├── drawable-hdpi
│   │               │   ├── cloud_ad.png
│   │               │   ├── collect_loading.png
│   │               │   ├── ic_action_search.png
│   │               │   ├── shipin7_alarm_msg_new.png
│   │               │   └── videogo_icon.png
│   │               ├── drawable-ldpi
│   │               │   ├── bottom_divider.xml
│   │               │   ├── shipin7_alarm_msg_new.png
│   │               │   └── videogo_icon.png
│   │               ├── drawable-mdpi
│   │               │   ├── join_qq_group.png
│   │               │   ├── shipin7_alarm_msg_new.png
│   │               │   └── videogo_icon.png
│   │               ├── drawable-xhdpi
│   │               │   ├── add2_button.png
│   │               │   ├── add2_button_sel.png
│   │               │   ├── add3_button.png
│   │               │   ├── add3_button_sel.png
│   │               │   ├── add_button.png
│   │               │   ├── add_button_dis.png
│   │               │   ├── add_button_sel.png
│   │               │   ├── add_camera_button_dis.9.png
│   │               │   ├── add_camera_not_button.9.png
│   │               │   ├── add_camera_not_button_click.9.png
│   │               │   ├── add_device_number_bg.png
│   │               │   ├── alarm_encrypt_image_mid.png
│   │               │   ├── amplify_screen_dis.png
│   │               │   ├── amplify_screen_normal.png
│   │               │   ├── amplify_screen_pressed.png
│   │               │   ├── arrow_down.png
│   │               │   ├── arrow_next.png
│   │               │   ├── auto_button_blue_sel.9.png
│   │               │   ├── auto_button_bule.9.png
│   │               │   ├── auto_button_red.9.png
│   │               │   ├── auto_button_red_sel.9.png
│   │               │   ├── auto_wifi_add_success_2.png
│   │               │   ├── auto_wifi_cicle_120.png
│   │               │   ├── auto_wifi_cicle_240.png
│   │               │   ├── auto_wifi_cicle_bg.png
│   │               │   ├── auto_wifi_failed.png
│   │               │   ├── auto_wifi_wait1.png
│   │               │   ├── auto_wifi_wait2.png
│   │               │   ├── auto_wifi_wait3.png
│   │               │   ├── auto_wifi_wait4.png
│   │               │   ├── autologin_off.png
│   │               │   ├── autologin_on.png
│   │               │   ├── back.png
│   │               │   ├── back_press.png
│   │               │   ├── bg.jpg
│   │               │   ├── btn_2_normal.png
│   │               │   ├── btn_2_select.png
│   │               │   ├── btn_collect.9.png
│   │               │   ├── btn_collect_prs.9.png
│   │               │   ├── btn_r1_retry_dis.9.png
│   │               │   ├── btn_r1_retry_normal.9.png
│   │               │   ├── btn_r1_retry_pressed.9.png
│   │               │   ├── btn_style_alert_dialog_special_normal.9.png
│   │               │   ├── btn_style_alert_dialog_special_pressed.9.png
│   │               │   ├── btn_style_one_disabled.9.png
│   │               │   ├── btn_style_one_focused.9.png
│   │               │   ├── btn_style_one_normal.9.png
│   │               │   ├── btn_style_one_pressed.9.png
│   │               │   ├── c3w_250.jpg
│   │               │   ├── c6c_250_1080.png
│   │               │   ├── c6c_250_720.png
│   │               │   ├── c6h_250.png
│   │               │   ├── c6p_250.jpg
│   │               │   ├── c6p_bg.png
│   │               │   ├── calendar_date_sel.png
│   │               │   ├── calendar_date_today.png
│   │               │   ├── camera_crop_height.png
│   │               │   ├── camera_crop_width.png
│   │               │   ├── camera_list_item.9.png
│   │               │   ├── camera_list_item_press.9.png
│   │               │   ├── camera_list_refresh.png
│   │               │   ├── cameralist_add_camer_btn.9.png
│   │               │   ├── cameralist_add_camer_btn_sel.9.png
│   │               │   ├── capture.png
│   │               │   ├── capture_disable.png
│   │               │   ├── capture_press.png
│   │               │   ├── checked.png
│   │               │   ├── ckb_normal.png
│   │               │   ├── ckb_selected.png
│   │               │   ├── code.png
│   │               │   ├── common_loading.png
│   │               │   ├── common_number_bg.png
│   │               │   ├── common_refresh.png
│   │               │   ├── common_title.9.png
│   │               │   ├── common_title_back.png
│   │               │   ├── common_title_back_dark.png
│   │               │   ├── common_title_back_sel.png
│   │               │   ├── common_title_cancel.png
│   │               │   ├── common_title_cancel_sel.png
│   │               │   ├── common_title_confirm.png
│   │               │   ├── common_title_confirm_dis.png
│   │               │   ├── common_title_confirm_sel.png
│   │               │   ├── common_title_input.png
│   │               │   ├── common_title_input_sel.png
│   │               │   ├── common_title_more.png
│   │               │   ├── common_title_more_sel.png
│   │               │   ├── common_title_refresh.png
│   │               │   ├── common_title_setup.png
│   │               │   ├── common_title_setup_dis.png
│   │               │   ├── common_title_setup_sel.png
│   │               │   ├── common_title_share.png
│   │               │   ├── common_title_share_dark.png
│   │               │   ├── common_title_share_sel.png
│   │               │   ├── common_title_vertical_more.png
│   │               │   ├── common_title_vertical_more_dark.png
│   │               │   ├── common_title_vertical_more_dark_dis.png
│   │               │   ├── common_title_vertical_more_sel.png
│   │               │   ├── connect_img1.jpg
│   │               │   ├── connect_img2.jpg
│   │               │   ├── connect_reset.png
│   │               │   ├── connect_wifi1.png
│   │               │   ├── connect_wifi2.png
│   │               │   ├── connect_wifi3.png
│   │               │   ├── connect_wifi4.png
│   │               │   ├── control_bar_bg.9.png
│   │               │   ├── defalut_alarm.jpg
│   │               │   ├── default_cover_02.9.png
│   │               │   ├── default_figure.jpg
│   │               │   ├── del_button.9.png
│   │               │   ├── del_button_dis.9.png
│   │               │   ├── del_button_sel.9.png
│   │               │   ├── device_16_nvr_bg.png
│   │               │   ├── device_4_dvr_bg.png
│   │               │   ├── device_4_nvr_bg.png
│   │               │   ├── device_5k_vr104d.png
│   │               │   ├── device_5k_vr104d_bg.png
│   │               │   ├── device_5k_vr116d.png
│   │               │   ├── device_5k_vr116d_bg.png
│   │               │   ├── device_8_16dvr_bg.png
│   │               │   ├── device_a1.png
│   │               │   ├── device_a1_bg.png
│   │               │   ├── device_a1c.png
│   │               │   ├── device_a1c_bg.png
│   │               │   ├── device_a1s.png
│   │               │   ├── device_a1s_bg.png
│   │               │   ├── device_alertor.png
│   │               │   ├── device_baidu_c2s.png
│   │               │   ├── device_c1.png
│   │               │   ├── device_c1_rotate.png
│   │               │   ├── device_c2.png
│   │               │   ├── device_c2_2.png
│   │               │   ├── device_c2_usa.png
│   │               │   ├── device_c2c.png
│   │               │   ├── device_c2mini.png
│   │               │   ├── device_c2mini2.png
│   │               │   ├── device_c2plus.png
│   │               │   ├── device_c2plus_bg.png
│   │               │   ├── device_c2s.png
│   │               │   ├── device_c2w.png
│   │               │   ├── device_c3.png
│   │               │   ├── device_c3c.png
│   │               │   ├── device_c3e.png
│   │               │   ├── device_c3e_bg.png
│   │               │   ├── device_c3s.png
│   │               │   ├── device_c4.png
│   │               │   ├── device_c4c.png
│   │               │   ├── device_c4c_bg.png
│   │               │   ├── device_c4e.png
│   │               │   ├── device_c4e_bg.png
│   │               │   ├── device_c4s.png
│   │               │   ├── device_c6.png
│   │               │   ├── device_c6c.png
│   │               │   ├── device_c6c_1.png
│   │               │   ├── device_c6c_2.png
│   │               │   ├── device_c6h.png
│   │               │   ├── device_c6p.png
│   │               │   ├── device_c6t_bg.png
│   │               │   ├── device_callhelp.png
│   │               │   ├── device_co2.png
│   │               │   ├── device_cs_c3w.png
│   │               │   ├── device_cs_vr104d.png
│   │               │   ├── device_cs_vr108d.png
│   │               │   ├── device_cs_vr116d.png
│   │               │   ├── device_curtain.png
│   │               │   ├── device_d1.png
│   │               │   ├── device_d1_bg.png
│   │               │   ├── device_default_details.png
│   │               │   ├── device_dh1.png
│   │               │   ├── device_door.png
│   │               │   ├── device_doorbell.png
│   │               │   ├── device_doorbell_hik.png
│   │               │   ├── device_dvr.png
│   │               │   ├── device_f1.png
│   │               │   ├── device_gas.png
│   │               │   ├── device_h2c.png
│   │               │   ├── device_h2s.png
│   │               │   ├── device_infrared.png
│   │               │   ├── device_ipc_dome.png
│   │               │   ├── device_keyboard.png
│   │               │   ├── device_light.png
│   │               │   ├── device_mini_360_plus.png
│   │               │   ├── device_mini_trooper.png
│   │               │   ├── device_move_magnetometer.png
│   │               │   ├── device_n1.png
│   │               │   ├── device_n1w.png
│   │               │   ├── device_n1w_bg.png
│   │               │   ├── device_normal.png
│   │               │   ├── device_offline.png
│   │               │   ├── device_other.png
│   │               │   ├── device_pic_4_dvr.png
│   │               │   ├── device_pic_4_nvr.png
│   │               │   ├── device_pic_8_16_dvr.png
│   │               │   ├── device_pic_8_16_nvr.png
│   │               │   ├── device_r1.png
│   │               │   ├── device_r1_bg.png
│   │               │   ├── device_r2.png
│   │               │   ├── device_r2_bg.png
│   │               │   ├── device_remote.png
│   │               │   ├── device_smoke.png
│   │               │   ├── device_vr104d_bg.png
│   │               │   ├── device_vr108d_bg.png
│   │               │   ├── device_vr116d_bg.png
│   │               │   ├── device_w1.png
│   │               │   ├── device_w2d.png
│   │               │   ├── device_w2d_bg.png
│   │               │   ├── device_w2s.png
│   │               │   ├── device_w2s_bg.png
│   │               │   ├── device_w3.png
│   │               │   ├── device_w3_details.png
│   │               │   ├── device_water.png
│   │               │   ├── device_wifi.png
│   │               │   ├── device_wifi2.png
│   │               │   ├── device_wifi3.png
│   │               │   ├── device_wlb.png
│   │               │   ├── device_wlb_bg.png
│   │               │   ├── device_x1.png
│   │               │   ├── device_x1_bg.png
│   │               │   ├── device_x2.png
│   │               │   ├── device_x2_bg.png
│   │               │   ├── device_x3.png
│   │               │   ├── device_x3_bg.png
│   │               │   ├── device_x3c.png
│   │               │   ├── device_x3c_bg.png
│   │               │   ├── device_x4.png
│   │               │   ├── device_x4_bg.png
│   │               │   ├── device_x5_108tp.png
│   │               │   ├── device_x5_108tp_bg.png
│   │               │   ├── device_x5c.png
│   │               │   ├── device_x5c_bg.png
│   │               │   ├── device_z1.png
│   │               │   ├── down_horizontal.png
│   │               │   ├── down_twinkle.png
│   │               │   ├── download8.png
│   │               │   ├── edittext_del.png
│   │               │   ├── edittext_del_sel.png
│   │               │   ├── equipment.png
│   │               │   ├── equipment_sel.png
│   │               │   ├── event_list_fail_pic.jpg
│   │               │   ├── exit.png
│   │               │   ├── exit_sel.png
│   │               │   ├── expression_del.png
│   │               │   ├── expression_del_sel.png
│   │               │   ├── ez_real_play.png
│   │               │   ├── ez_real_play_sel.png
│   │               │   ├── face_image3.png
│   │               │   ├── face_rect.png
│   │               │   ├── failure_account.png
│   │               │   ├── failure_server.png
│   │               │   ├── failure_wifi.png
│   │               │   ├── flashlight.png
│   │               │   ├── flashlight_closed.png
│   │               │   ├── goback.png
│   │               │   ├── goback_dis.png
│   │               │   ├── goback_sel.png
│   │               │   ├── gohead.png
│   │               │   ├── gohead_dis.png
│   │               │   ├── gohead_sel.png
│   │               │   ├── graybtn.9.png
│   │               │   ├── graybtn_press.9.png
│   │               │   ├── h_bg.png
│   │               │   ├── h_bg_sel.png
│   │               │   ├── h_talk.png
│   │               │   ├── h_talk_sel.png
│   │               │   ├── hide_bg2_1.png
│   │               │   ├── hide_bg2_2.png
│   │               │   ├── hide_bg2_3.png
│   │               │   ├── hide_bg2_4.png
│   │               │   ├── hide_bg2_5.png
│   │               │   ├── hide_bg2_6.png
│   │               │   ├── hide_bg2_7.png
│   │               │   ├── hide_bg2_8.png
│   │               │   ├── hide_bg2_9.png
│   │               │   ├── history_video.png
│   │               │   ├── history_video_dis.png
│   │               │   ├── history_video_sel.png
│   │               │   ├── horizontal_shrink_screen_normal.png
│   │               │   ├── horizontal_shrink_screen_pressed.png
│   │               │   ├── icn_btn_bg_plus.png
│   │               │   ├── image_a1.jpg
│   │               │   ├── image_crispr.jpg
│   │               │   ├── image_everyday_1080p.jpg
│   │               │   ├── image_everyday_3mp.jpg
│   │               │   ├── image_everyday_4mp_ip.jpg
│   │               │   ├── image_everyday_720p.jpg
│   │               │   ├── image_everyday_ip_1080p.jpg
│   │               │   ├── image_husky.jpg
│   │               │   ├── image_husky_c.jpg
│   │               │   ├── image_husky_dome.jpg
│   │               │   ├── image_mini.jpg
│   │               │   ├── image_mini_360.jpg
│   │               │   ├── image_mini_360_plus.jpg
│   │               │   ├── image_mini_o.jpg
│   │               │   ├── image_mini_plus.jpg
│   │               │   ├── image_mini_trooper.jpg
│   │               │   ├── image_minio.jpg
│   │               │   ├── img_slider_handle.png
│   │               │   ├── indicator_autocrop.png
│   │               │   ├── inputlayout_bg.9.png
│   │               │   ├── join_qq_group.png
│   │               │   ├── label_bg_line.9.png
│   │               │   ├── label_bg_sel.9.png
│   │               │   ├── leave_message_play.png
│   │               │   ├── leave_message_play_sel.png
│   │               │   ├── left_horizontal.png
│   │               │   ├── left_twinkle.png
│   │               │   ├── link_account1.png
│   │               │   ├── link_account2.png
│   │               │   ├── link_account3.png
│   │               │   ├── link_account4.png
│   │               │   ├── load_failed_bg.png
│   │               │   ├── lock_bg.png
│   │               │   ├── login_logo.png
│   │               │   ├── login_logo_button.9.png
│   │               │   ├── login_logo_button_sel.9.png
│   │               │   ├── logo_loading_1.png
│   │               │   ├── logo_loading_2.png
│   │               │   ├── logo_loading_3.png
│   │               │   ├── logo_loading_4.png
│   │               │   ├── mesage_details_callhelp.png
│   │               │   ├── mesage_details_curtain.png
│   │               │   ├── mesage_details_data.png
│   │               │   ├── mesage_details_door.png
│   │               │   ├── mesage_details_gas.png
│   │               │   ├── mesage_details_hdd.png
│   │               │   ├── mesage_details_infrared.png
│   │               │   ├── mesage_details_keyboard.png
│   │               │   ├── mesage_details_loss.png
│   │               │   ├── mesage_details_low_battery.png
│   │               │   ├── mesage_details_offline.png
│   │               │   ├── mesage_details_power.png
│   │               │   ├── mesage_details_smoke.png
│   │               │   ├── mesage_details_tampering.png
│   │               │   ├── mesage_details_video_loss.png
│   │               │   ├── mesage_details_water.png
│   │               │   ├── message.png
│   │               │   ├── message_a1_bg.png
│   │               │   ├── message_back.png
│   │               │   ├── message_back_sel.png
│   │               │   ├── message_callhelp.png
│   │               │   ├── message_curtain.png
│   │               │   ├── message_data.png
│   │               │   ├── message_door.png
│   │               │   ├── message_gas.png
│   │               │   ├── message_hdd.png
│   │               │   ├── message_infrared.png
│   │               │   ├── message_keyboard.png
│   │               │   ├── message_loss.png
│   │               │   ├── message_low_battery.png
│   │               │   ├── message_move_magnetometer.png
│   │               │   ├── message_offline.png
│   │               │   ├── message_play.png
│   │               │   ├── message_play_dis.png
│   │               │   ├── message_play_sel.png
│   │               │   ├── message_power.png
│   │               │   ├── message_sel.png
│   │               │   ├── message_smoke.png
│   │               │   ├── message_tampering.png
│   │               │   ├── message_video.png
│   │               │   ├── message_video_dis.png
│   │               │   ├── message_video_loss.png
│   │               │   ├── message_video_sel.png
│   │               │   ├── message_water.png
│   │               │   ├── mm_trans.png
│   │               │   ├── my_5k_vr.png
│   │               │   ├── my_5k_vr116.png
│   │               │   ├── my_a1.9.png
│   │               │   ├── my_a1c.9.png
│   │               │   ├── my_a1s.png
│   │               │   ├── my_add.png
│   │               │   ├── my_c6p.png
│   │               │   ├── my_c6t.png
│   │               │   ├── my_cover.png
│   │               │   ├── my_cover620.9.png
│   │               │   ├── my_db1.png
│   │               │   ├── my_doorbell.png
│   │               │   ├── my_doorbell_hik.png
│   │               │   ├── my_n1.9.png
│   │               │   ├── my_no_video.png
│   │               │   ├── my_r1.9.png
│   │               │   ├── my_r2.9.png
│   │               │   ├── my_shoping.png
│   │               │   ├── my_switch_off.png
│   │               │   ├── my_switch_on.png
│   │               │   ├── my_vr104d.png
│   │               │   ├── my_w1.9.png
│   │               │   ├── my_w2d.png
│   │               │   ├── my_w2s.png
│   │               │   ├── my_w3.9.png
│   │               │   ├── my_wlb.png
│   │               │   ├── my_x1.9.png
│   │               │   ├── my_x2.9.png
│   │               │   ├── my_x3.9.png
│   │               │   ├── my_x3c.png
│   │               │   ├── my_x4.png
│   │               │   ├── my_x5c.png
│   │               │   ├── name_del.png
│   │               │   ├── name_del_sel.png
│   │               │   ├── no_message.png
│   │               │   ├── no_read.png
│   │               │   ├── nomessage.png
│   │               │   ├── notify_bg.png
│   │               │   ├── number_bg.png
│   │               │   ├── offline.png
│   │               │   ├── opinion.png
│   │               │   ├── palyback_alarm_icon2.png
│   │               │   ├── palyback_close.png
│   │               │   ├── palyback_close_sel.png
│   │               │   ├── palyback_date_down.png
│   │               │   ├── palyback_date_down_sel.png
│   │               │   ├── palyback_full_down.png
│   │               │   ├── palyback_full_up.png
│   │               │   ├── palyback_nest.png
│   │               │   ├── palyback_pause.png
│   │               │   ├── palyback_pause_sel.png
│   │               │   ├── palyback_previously.png
│   │               │   ├── palyback_previously_sel.png
│   │               │   ├── palyback_replay.png
│   │               │   ├── palyback_retry.png
│   │               │   ├── palyback_time_bg.png
│   │               │   ├── palyback_video.png
│   │               │   ├── palyback_video_now.png
│   │               │   ├── palyback_video_now_sel.png
│   │               │   ├── palyback_video_sel.png
│   │               │   ├── pause.png
│   │               │   ├── pause_sel.png
│   │               │   ├── pic_bg.png
│   │               │   ├── play.png
│   │               │   ├── play_balanced.png
│   │               │   ├── play_balanced_disabel.png
│   │               │   ├── play_balanced_sel.png
│   │               │   ├── play_big.png
│   │               │   ├── play_big_press.png
│   │               │   ├── play_button_bg.9.png
│   │               │   ├── play_button_sel.9.png
│   │               │   ├── play_close.png
│   │               │   ├── play_close_sel.png
│   │               │   ├── play_disable.png
│   │               │   ├── play_flunet.png
│   │               │   ├── play_flunet_disabel.png
│   │               │   ├── play_flunet_sel.png
│   │               │   ├── play_full_loding_logo.png
│   │               │   ├── play_full_multiple.png
│   │               │   ├── play_full_multiple2.png
│   │               │   ├── play_full_multiple3.png
│   │               │   ├── play_full_multiple4.png
│   │               │   ├── play_full_multiple5.png
│   │               │   ├── play_full_pause.png
│   │               │   ├── play_full_pause_sel.png
│   │               │   ├── play_full_play.png
│   │               │   ├── play_full_play_sel.png
│   │               │   ├── play_full_previously.png
│   │               │   ├── play_full_previously_sel.png
│   │               │   ├── play_full_stop.png
│   │               │   ├── play_full_stop_sel.png
│   │               │   ├── play_full_video.png
│   │               │   ├── play_full_video_now.png
│   │               │   ├── play_full_video_now_sel.png
│   │               │   ├── play_full_video_sel.png
│   │               │   ├── play_hd.png
│   │               │   ├── play_hd_disabel.png
│   │               │   ├── play_hd_sel.png
│   │               │   ├── play_play.png
│   │               │   ├── play_play_dis.png
│   │               │   ├── play_play_sel.png
│   │               │   ├── play_press.png
│   │               │   ├── play_previously.png
│   │               │   ├── play_previously_dis.png
│   │               │   ├── play_previously_sel.png
│   │               │   ├── play_ptz.png
│   │               │   ├── play_ptz_dis.png
│   │               │   ├── play_ptz_sel.png
│   │               │   ├── play_small.png
│   │               │   ├── play_small_press.png
│   │               │   ├── play_speech.png
│   │               │   ├── play_speech_dis.png
│   │               │   ├── play_speech_sel.png
│   │               │   ├── play_stop.png
│   │               │   ├── play_stop_sel.png
│   │               │   ├── play_talk.png
│   │               │   ├── play_talk_dis.png
│   │               │   ├── play_talk_sel.png
│   │               │   ├── play_talkback.png
│   │               │   ├── play_talkback_sel.png
│   │               │   ├── play_video.png
│   │               │   ├── play_video_dis.png
│   │               │   ├── play_video_record.png
│   │               │   ├── play_video_sel.png
│   │               │   ├── play_video_start.png
│   │               │   ├── play_video_time_bg.png
│   │               │   ├── play_voice.png
│   │               │   ├── play_voice_dis.png
│   │               │   ├── play_voice_sel.png
│   │               │   ├── playback.png
│   │               │   ├── playback_button.9.png
│   │               │   ├── playback_cancel.png
│   │               │   ├── playback_cover2.9.png
│   │               │   ├── playback_cut.png
│   │               │   ├── playback_cut_disable.png
│   │               │   ├── playback_cut_sel.png
│   │               │   ├── playback_matte.png
│   │               │   ├── playback_more_down.png
│   │               │   ├── playback_more_down1.png
│   │               │   ├── playback_more_up1.png
│   │               │   ├── playback_play.png
│   │               │   ├── playback_play_sel.png
│   │               │   ├── playback_sel.png
│   │               │   ├── playbackslider.png
│   │               │   ├── playbackslider_sel.png
│   │               │   ├── popdialogbg.9.png
│   │               │   ├── prepare_device.png
│   │               │   ├── preview_close1_video_ico.png
│   │               │   ├── preview_close_video.png
│   │               │   ├── preview_close_video_dis.png
│   │               │   ├── preview_close_video_sel.png
│   │               │   ├── preview_down_bg_normal.9.png
│   │               │   ├── preview_down_bg_pressed.9.png
│   │               │   ├── preview_down_ico.png
│   │               │   ├── preview_enlarge.9.png
│   │               │   ├── preview_enlarge_btn_sel.9.png
│   │               │   ├── preview_enlarge_dis.9.png
│   │               │   ├── preview_play_btn.9.png
│   │               │   ├── preview_play_btn_dis.9.png
│   │               │   ├── preview_play_btn_sel.9.png
│   │               │   ├── preview_recording.png
│   │               │   ├── preview_recording_dis.png
│   │               │   ├── preview_recording_sel.png
│   │               │   ├── preview_selection_bg.png
│   │               │   ├── preview_stopplay_btn_dis.9.png
│   │               │   ├── preview_unvoice_btn.9.png
│   │               │   ├── preview_unvoice_btn_sel.9.png
│   │               │   ├── preview_video_selection.png
│   │               │   ├── preview_video_selection_hover.png
│   │               │   ├── preview_voice_btn.9.png
│   │               │   ├── preview_voice_btn_dis.9.png
│   │               │   ├── preview_voice_btn_sel.9.png
│   │               │   ├── previously.png
│   │               │   ├── previously_dis.png
│   │               │   ├── previously_sel.png
│   │               │   ├── ptz_bg.png
│   │               │   ├── ptz_bottom_limit.png
│   │               │   ├── ptz_bottom_sel.png
│   │               │   ├── ptz_left_limit.png
│   │               │   ├── ptz_left_sel.png
│   │               │   ├── ptz_prompt.png
│   │               │   ├── ptz_right_limit.png
│   │               │   ├── ptz_right_sel.png
│   │               │   ├── ptz_top_limit.png
│   │               │   ├── ptz_turn.png
│   │               │   ├── ptz_turn_sel.png
│   │               │   ├── ptz_up_sel.png
│   │               │   ├── push_close.png
│   │               │   ├── push_close_sel.png
│   │               │   ├── put_ico.png
│   │               │   ├── query_loding1.png
│   │               │   ├── query_loding2.png
│   │               │   ├── query_loding3.png
│   │               │   ├── query_loding4.png
│   │               │   ├── query_loding5.png
│   │               │   ├── read_button.9.png
│   │               │   ├── read_button_sel.9.png
│   │               │   ├── remote_play.png
│   │               │   ├── remote_play_sel.png
│   │               │   ├── reset_deivce.png
│   │               │   ├── result_5k_vr104d.png
│   │               │   ├── result_5k_vr116d.png
│   │               │   ├── result_8_16dvr.png
│   │               │   ├── result_cs_c3w.png
│   │               │   ├── result_cs_vr104d.png
│   │               │   ├── result_cs_vr108d.png
│   │               │   ├── result_cs_vr116d.png
│   │               │   ├── result_pic_dh1.png
│   │               │   ├── result_pic_doorbell.png
│   │               │   ├── result_pic_doorbell_hik.png
│   │               │   ├── result_pic_light.png
│   │               │   ├── result_x5c.png
│   │               │   ├── results_4_dvr.png
│   │               │   ├── results_8_16_nvr.png
│   │               │   ├── results_8_nvr.png
│   │               │   ├── results_c6p.png
│   │               │   ├── results_mini_360_plus.png
│   │               │   ├── results_mini_trooper.png
│   │               │   ├── results_pic_a1.png
│   │               │   ├── results_pic_a1c.png
│   │               │   ├── results_pic_a1s.png
│   │               │   ├── results_pic_baidu_c2s.png
│   │               │   ├── results_pic_bg.png
│   │               │   ├── results_pic_c1.png
│   │               │   ├── results_pic_c2.png
│   │               │   ├── results_pic_c2_2.png
│   │               │   ├── results_pic_c2_usa.png
│   │               │   ├── results_pic_c2c.png
│   │               │   ├── results_pic_c2mini.png
│   │               │   ├── results_pic_c2mini2.png
│   │               │   ├── results_pic_c2plus.png
│   │               │   ├── results_pic_c2s.png
│   │               │   ├── results_pic_c2w.png
│   │               │   ├── results_pic_c3.png
│   │               │   ├── results_pic_c3c.png
│   │               │   ├── results_pic_c3e.png
│   │               │   ├── results_pic_c3s.png
│   │               │   ├── results_pic_c4.png
│   │               │   ├── results_pic_c4c.png
│   │               │   ├── results_pic_c4e.png
│   │               │   ├── results_pic_c4s.png
│   │               │   ├── results_pic_c6.png
│   │               │   ├── results_pic_c6c.png
│   │               │   ├── results_pic_c6c_1.png
│   │               │   ├── results_pic_c6c_2.png
│   │               │   ├── results_pic_c6h.png
│   │               │   ├── results_pic_co2.png
│   │               │   ├── results_pic_d1.png
│   │               │   ├── results_pic_default.png
│   │               │   ├── results_pic_f1.png
│   │               │   ├── results_pic_h2c.png
│   │               │   ├── results_pic_h2s.png
│   │               │   ├── results_pic_n1.png
│   │               │   ├── results_pic_n1w.png
│   │               │   ├── results_pic_r1.png
│   │               │   ├── results_pic_r2.png
│   │               │   ├── results_pic_w1.png
│   │               │   ├── results_pic_w3.png
│   │               │   ├── results_pic_x1.png
│   │               │   ├── results_pic_x2.png
│   │               │   ├── results_pic_x3.png
│   │               │   ├── results_pic_x3c.png
│   │               │   ├── results_pic_x4.png
│   │               │   ├── results_pic_z1.png
│   │               │   ├── results_w2d.png
│   │               │   ├── results_w2s.png
│   │               │   ├── results_wlb.png
│   │               │   ├── results_x5_108tp.png
│   │               │   ├── right_horizontal.png
│   │               │   ├── right_twinkle.png
│   │               │   ├── say_bg.9.png
│   │               │   ├── search.png
│   │               │   ├── search_bnt.9.png
│   │               │   ├── search_bnt_sel.9.png
│   │               │   ├── search_input.9.png
│   │               │   ├── seekbar_thumb.png
│   │               │   ├── select_icon.png
│   │               │   ├── selected_icon.png
│   │               │   ├── server1.png
│   │               │   ├── server2.png
│   │               │   ├── server3.png
│   │               │   ├── server4.png
│   │               │   ├── setup.png
│   │               │   ├── setup_sel.png
│   │               │   ├── setup_wechat.png
│   │               │   ├── share_management_label_button.png
│   │               │   ├── share_management_label_button_sel.png
│   │               │   ├── shipin7_alarm_msg_new.png
│   │               │   ├── shrink_screen_normal.png
│   │               │   ├── shrink_screen_pressed.png
│   │               │   ├── sound_off.png
│   │               │   ├── sound_off_blue.png
│   │               │   ├── sound_off_sel.png
│   │               │   ├── sound_off_sel_blue.png
│   │               │   ├── sound_on.png
│   │               │   ├── sound_on_blue.png
│   │               │   ├── sound_on_sel.png
│   │               │   ├── sound_on_sel_blue.png
│   │               │   ├── sound_source.png
│   │               │   ├── sound_source_sel.png
│   │               │   ├── speech_0.png
│   │               │   ├── speech_1.png
│   │               │   ├── speech_2.png
│   │               │   ├── speech_3.png
│   │               │   ├── speech_4.png
│   │               │   ├── speech_5.png
│   │               │   ├── stop.png
│   │               │   ├── stop_disable.png
│   │               │   ├── stop_press.png
│   │               │   ├── stoplay_btn.9.png
│   │               │   ├── stoplay_btn_sel.9.png
│   │               │   ├── success.png
│   │               │   ├── success_icon.png
│   │               │   ├── success_img.png
│   │               │   ├── tab_left.png
│   │               │   ├── tab_left_sel.png
│   │               │   ├── tab_right.png
│   │               │   ├── tab_right_sel.png
│   │               │   ├── timeline.png
│   │               │   ├── timeline_sel.png
│   │               │   ├── title_down_bg.png
│   │               │   ├── title_down_play.png
│   │               │   ├── title_down_play_sel.png
│   │               │   ├── title_menu_bg.9.png
│   │               │   ├── tittel_button_bg.9.png
│   │               │   ├── tittel_button_press_bg.9.png
│   │               │   ├── top_bar_bg.9.png
│   │               │   ├── track_bar_bg.png
│   │               │   ├── unchecked.png
│   │               │   ├── up_horizontal.png
│   │               │   ├── up_twinkle.png
│   │               │   ├── upgrade.png
│   │               │   ├── user.png
│   │               │   ├── video_camera1_1.png
│   │               │   ├── video_camera1_2.png
│   │               │   ├── video_camera1_3.png
│   │               │   ├── video_file_watermark.png
│   │               │   ├── videogo_icon.png
│   │               │   ├── wait_1.png
│   │               │   ├── wait_2.png
│   │               │   ├── wait_3.png
│   │               │   ├── wait_4.png
│   │               │   ├── wait_5.png
│   │               │   ├── wait_6.png
│   │               │   ├── wait_7.png
│   │               │   ├── wait_8.png
│   │               │   ├── wait_upload_img.9.png
│   │               │   ├── waiting_bg.9.png
│   │               │   ├── waiting_progressbar_bg.png
│   │               │   ├── water_alarm.png
│   │               │   ├── wifi_config_bg.png
│   │               │   ├── wifi_connect_tip.png
│   │               │   ├── yuntai_normal.png
│   │               │   ├── yuntai_pressed.png
│   │               │   ├── yxs_head.png
│   │               │   └── z1_bg.png
│   │               ├── layout
│   │               │   ├── activity_collect_device_info.xml
│   │               │   ├── activity_config_wifi_executing.xml
│   │               │   ├── activity_ezupgrade_device.xml
│   │               │   ├── activity_hc.xml
│   │               │   ├── activity_hcactive.xml
│   │               │   ├── activity_hcplay.xml
│   │               │   ├── activity_interface_self_test.xml
│   │               │   ├── activity_interface_test.xml
│   │               │   ├── activity_lan_multi_device.xml
│   │               │   ├── activity_list.xml
│   │               │   ├── activity_main.xml
│   │               │   ├── activity_manual_choose_config_wifi_way.xml
│   │               │   ├── activity_manual_connect_device_hotspot.xml
│   │               │   ├── activity_manual_input_device_hotspot_info.xml
│   │               │   ├── activity_my_collect.xml
│   │               │   ├── activity_option.xml
│   │               │   ├── activity_square.xml
│   │               │   ├── activity_square_video_list.xml
│   │               │   ├── activity_square_video_list2.xml
│   │               │   ├── activity_square_video_search.xml
│   │               │   ├── activity_support.xml
│   │               │   ├── activity_test_config_wifi.xml
│   │               │   ├── activity_test_for_sdk.xml
│   │               │   ├── activity_test_page.xml
│   │               │   ├── add_camera_by_series_number_page.xml
│   │               │   ├── auto_wifi_connecting.xml
│   │               │   ├── auto_wifi_connecting_status_item.xml
│   │               │   ├── auto_wifi_net_config.xml
│   │               │   ├── auto_wifi_prepare_step_on.xml
│   │               │   ├── auto_wifi_reset.xml
│   │               │   ├── auto_wifi_reset_introduce.xml
│   │               │   ├── cameralist_page.xml
│   │               │   ├── capture_activity.xml
│   │               │   ├── city_config_item.xml
│   │               │   ├── ddns_device_ist_page.xml
│   │               │   ├── ddns_device_list_item.xml
│   │               │   ├── device_discover_item.xml
│   │               │   ├── device_discover_page.xml
│   │               │   ├── device_setting_page.xml
│   │               │   ├── device_video_encrypt_dialog.xml
│   │               │   ├── ez_demo_interface_activity.xml
│   │               │   ├── ez_message_image_page.xml
│   │               │   ├── ez_message_list_item.xml
│   │               │   ├── ez_message_list_section.xml
│   │               │   ├── ez_message_page.xml
│   │               │   ├── ez_play_control.xml
│   │               │   ├── ez_realplay_page.xml
│   │               │   ├── ez_realplay_prompt_layout.xml
│   │               │   ├── ez_realplay_quality_items.xml
│   │               │   ├── ez_remote_playback_page.xml
│   │               │   ├── ezopen_realplay_operate_bar.xml
│   │               │   ├── ezopen_realplay_operate_bar2.xml
│   │               │   ├── fragment_city_config.xml
│   │               │   ├── fragment_search_video.xml
│   │               │   ├── fragment_square_video_list.xml
│   │               │   ├── lan_device_adapter_item.xml
│   │               │   ├── lan_device_login_dialog.xml
│   │               │   ├── layout_change_playback_rate.xml
│   │               │   ├── layout_dialog_tip.xml
│   │               │   ├── layout_login_anim.xml
│   │               │   ├── line_connecting_introduce_activity.xml
│   │               │   ├── list_section.xml
│   │               │   ├── loading_text_view.xml
│   │               │   ├── login_page.xml
│   │               │   ├── message_list_item.xml
│   │               │   ├── message_page.xml
│   │               │   ├── modify_device_name_page.xml
│   │               │   ├── network_error_retry_page.xml
│   │               │   ├── no_device_more_footer.xml
│   │               │   ├── no_more_footer.xml
│   │               │   ├── no_msg_more_footer.xml
│   │               │   ├── notifier_alarmloginfo_list_item.xml
│   │               │   ├── notifier_page.xml
│   │               │   ├── open_ysservice_dialog.xml
│   │               │   ├── password_error_layout.xml
│   │               │   ├── pull_to_refresh_footer.xml
│   │               │   ├── pull_to_refresh_header.xml
│   │               │   ├── realplay_control_layout.xml
│   │               │   ├── realplay_full_operate_layout.xml
│   │               │   ├── realplay_loading_layout.xml
│   │               │   ├── realplay_operate_bar.xml
│   │               │   ├── realplay_operate_bar2.xml
│   │               │   ├── realplay_page.xml
│   │               │   ├── realplay_prompt_layout.xml
│   │               │   ├── realplay_ptz_wnd.xml
│   │               │   ├── realplay_quality_items.xml
│   │               │   ├── realplay_quality_wnd.xml
│   │               │   ├── realplay_talkback_wnd.xml
│   │               │   ├── realplayer_item.xml
│   │               │   ├── realplayer_page.xml
│   │               │   ├── remote_playback_page.xml
│   │               │   ├── section_list_item.xml
│   │               │   ├── select_camera_no_dialog.xml
│   │               │   ├── select_camera_no_dialog_item.xml
│   │               │   ├── sms_verify_dialog.xml
│   │               │   ├── square_column_item.xml
│   │               │   ├── square_video_item.xml
│   │               │   ├── topbar.xml
│   │               │   ├── verifycode_layout.xml
│   │               │   ├── wait_dialog.xml
│   │               │   └── web_page.xml
│   │               ├── mipmap
│   │               │   └── videogo_icon.png
│   │               ├── raw
│   │               │   ├── beep.mp3
│   │               │   ├── paizhao.mp3
│   │               │   └── record.wav
│   │               ├── values
│   │               │   ├── arrays.xml
│   │               │   ├── attr.xml
│   │               │   ├── color.xml
│   │               │   ├── colors_v3.xml
│   │               │   ├── dimens.xml
│   │               │   ├── dimens_new.xml
│   │               │   ├── ids.xml
│   │               │   ├── strings.xml
│   │               │   ├── style.xml
│   │               │   └── styles.xml
│   │               └── values-zh
│   │                   └── strings.xml
│   ├── build.gradle
│   ├── gradle
│   │   └── wrapper
│   │       ├── gradle-wrapper.jar
│   │       └── gradle-wrapper.properties
│   ├── gradle.properties
│   ├── gradlew
│   ├── gradlew.bat
│   ├── local.properties
│   └── settings.gradle
└── 萤石云Demo.zip

154 directories, 2237 files


标签: demo em

实例下载地址

萤石云Demo

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警