├── .gitignore ├── .idea ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── dictionaries │ └── clover.xml ├── gradle.xml ├── misc.xml ├── modules.xml ├── runConfigurations.xml └── vcs.xml ├── README.md ├── app ├── .gitignore ├── build.gradle ├── libs │ ├── BLEasyConfig.jar │ ├── GizWifiSDK.jar │ ├── LSFSK_1.0.jar │ ├── Lark7618SDK_noudp1606031910_0101.jar │ ├── OneShotConfig.jar │ ├── autoupdatesdk-release.aar │ ├── easylink2.0.jar │ ├── hiflying-iots-android-smartlink7.0.2.jar │ ├── jpush-android-2.1.5.jar │ ├── libEsptouch_v0.3.3.4_3.jar │ ├── libForEElink.jar │ ├── libammsdk.jar │ ├── mta-sdk-1.6.2.jar │ ├── open_sdk_r5756.jar │ ├── pushservice-5.0.0.66.jar │ ├── simpleconfigwizardlib.jar │ ├── xUtils-2.6.14.jar │ ├── xmcameracore.jar │ ├── xmcameraextra.jar │ └── zxing.jar ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── assets │ └── UIConfig.json │ ├── java │ └── huantai │ │ └── smarthome │ │ ├── Service │ │ └── ServiceNotify.java │ │ ├── adapter │ │ ├── AddRemoveNumberedAdapter.java │ │ ├── AlertmesAdapter.java │ │ ├── DeviceShowAdapter.java │ │ └── MyFragmentPagerAdapter.java │ │ ├── bean │ │ ├── AddSwitchDevice.java │ │ ├── Alertinfo.java │ │ ├── ConstAction.java │ │ ├── ConstantData.java │ │ ├── ControlDataible.java │ │ ├── HomeItem.java │ │ ├── SwitchInfo.java │ │ ├── UserBackInfo.java │ │ └── UserData.java │ │ ├── control │ │ ├── ActivityAlertmes.java │ │ ├── AirConBrandActivity.java │ │ ├── AirMateActivity.java │ │ ├── DeviceAddActivity.java │ │ ├── DeviceFragment.java │ │ ├── DeviceFragment0.java │ │ ├── GosDeviceControlActivity.java │ │ ├── HomeFragment.java │ │ ├── HomeFragment0.java │ │ ├── MainActivity.java │ │ ├── MineFragment.java │ │ ├── SmartAirConditionActivity.java │ │ ├── VideoFragment.java │ │ └── VideoPlayActivity.java │ │ ├── controlreceiver │ │ └── MyReceiver.java │ │ ├── initial │ │ ├── CommonModule │ │ │ ├── GosBaseActivity.java │ │ │ ├── GosConstant.java │ │ │ ├── GosDeploy.java │ │ │ ├── NoScrollViewPager.java │ │ │ ├── TipsDialog.java │ │ │ └── WifiAutoConnectManager.java │ │ ├── ConfigModule │ │ │ ├── GosAirlinkChooseDeviceWorkWiFiActivity.java │ │ │ ├── GosAirlinkConfigCountdownActivity.java │ │ │ ├── GosAirlinkReadyActivity.java │ │ │ ├── GosCheckDeviceWorkWiFiActivity.java │ │ │ ├── GosChooseDeviceActivity.java │ │ │ ├── GosChooseDeviceWorkWiFiActivity.java │ │ │ ├── GosConfigCountdownActivity.java │ │ │ ├── GosConfigFailedActivity.java │ │ │ ├── GosConfigModuleBaseActivity.java │ │ │ ├── GosDeviceReadyActivity.java │ │ │ ├── GosDeviceResetActivity.java │ │ │ ├── GosModeListActivity.java │ │ │ └── GosWifiChangeReciver.java │ │ ├── DeviceModule │ │ │ ├── DeviceListFragment.java │ │ │ ├── GosDeviceListActivity.java │ │ │ ├── GosDeviceListAdapter.java │ │ │ ├── GosDeviceModuleBaseActivity.java │ │ │ ├── GosMainActivity.java │ │ │ ├── GosMessageHandler.java │ │ │ ├── MessageFragment.java │ │ │ └── PersonalFragment.java │ │ ├── GosApplication.java │ │ ├── MessageCenter.java │ │ ├── PushModule │ │ │ ├── BaiDuPushReceiver.java │ │ │ ├── GosPushManager.java │ │ │ └── JPushReceiver.java │ │ ├── SettingsModule │ │ │ ├── GosAboutActivity.java │ │ │ └── GosSettiingsActivity.java │ │ ├── ThirdAccountModule │ │ │ └── BaseUiListener.java │ │ ├── UserModule │ │ │ ├── GosChangeUserPasswordActivity.java │ │ │ ├── GosForgetPasswordActivity.java │ │ │ ├── GosRegisterUserActivity.java │ │ │ ├── GosUserLoginActivity.java │ │ │ ├── GosUserManager.java │ │ │ └── GosUserModuleBaseActivity.java │ │ ├── sharingdevice │ │ │ ├── MsgNoticeActivity.java │ │ │ ├── SharedDeviceListAcitivity.java │ │ │ ├── SharedDeviceManagerActivity.java │ │ │ ├── ViewPagerIndicator.java │ │ │ ├── addSharedActivity.java │ │ │ ├── deviceSharedMessageActivity.java │ │ │ ├── gosZxingDeviceSharingActivity.java │ │ │ ├── messageCenterActivity.java │ │ │ ├── mozu.java │ │ │ ├── mySharedFragment.java │ │ │ ├── mySharedFragment2.java │ │ │ ├── mySharedFragment3.java │ │ │ ├── mySharedFragment4.java │ │ │ ├── twoSharedActivity.java │ │ │ └── userSharedActivity.java │ │ ├── view │ │ │ ├── DotView.java │ │ │ ├── GifView.java │ │ │ ├── RoundProgressBar.java │ │ │ ├── SlideListView2.java │ │ │ └── VerticalSwipeRefreshLayout.java │ │ ├── wxapi │ │ │ └── WXEntryActivity.java │ │ └── zxing │ │ │ ├── CaptureActivity.java │ │ │ ├── camera │ │ │ ├── AutoFocusManager.java │ │ │ ├── CameraConfigurationManager.java │ │ │ ├── CameraManager.java │ │ │ ├── PreviewCallback.java │ │ │ └── open │ │ │ │ └── OpenCameraInterface.java │ │ │ ├── decoding │ │ │ ├── DecodeFormatManager.java │ │ │ ├── DecodeHandler.java │ │ │ └── DecodeThread.java │ │ │ └── utils │ │ │ ├── CaptureActivityHandler.java │ │ │ └── InactivityTimer.java │ │ ├── popWindow │ │ ├── ExitPopup.java │ │ ├── InputPopup.java │ │ ├── ListPopup.java │ │ ├── ListPopup0.java │ │ ├── PopupCurtain.java │ │ ├── PopupCurtain0.java │ │ ├── PopupSwitch.java │ │ ├── PopupSwitch0.java │ │ └── VideoRegisPopup.java │ │ ├── utils │ │ ├── ActivityManager.java │ │ ├── AirControlUtil.java │ │ ├── AssetsUtils.java │ │ ├── ControlProtocol.java │ │ ├── ControlUtils.java │ │ ├── ConvertUtil.java │ │ ├── CurtainControlUtils.java │ │ ├── DateUtil.java │ │ ├── Encryption.java │ │ ├── ExitAppReceiver.java │ │ ├── HTTPSTrustManager.java │ │ ├── JsonUtils.java │ │ ├── MarginDecoration.java │ │ ├── NetUtils.java │ │ ├── SerializableMap.java │ │ ├── ShareDeviceUtils.java │ │ ├── StringUtil.java │ │ ├── SwitchControlUtils.java │ │ ├── ToastUtil.java │ │ ├── TrustAllSSLSocketFactory.java │ │ └── spUtil.java │ │ ├── video │ │ ├── AddDeviceConfigSearchActivity.java │ │ ├── AddDeviceSetNetworkActivity.java │ │ ├── AddDeviceUserEnsure.java │ │ ├── AddDeviceUserTipClose.java │ │ ├── RegisterActivity.java │ │ ├── RegisterActivity2.java │ │ └── ResetDeviceActivity.java │ │ └── view │ │ ├── DeviceHolder.java │ │ ├── MainViewPager.java │ │ ├── SlideListView.java │ │ └── TextViewHolder.java │ ├── jniLibs │ ├── armeabi-v7a │ │ ├── libBLEasyConfig.so │ │ ├── libSDKLog.so │ │ ├── libbdpush_V2_6.so │ │ ├── libbspatch.so │ │ ├── libjpush215.so │ │ ├── libpwnativenetsdk.so │ │ ├── libsimpleconfiglib.so │ │ ├── libvoiceRecog.so │ │ └── libwavegen.so │ └── armeabi │ │ └── libvoiceRecog.so │ └── res │ ├── anim │ ├── umeng_fb_slide_in_from_left.xml │ ├── umeng_fb_slide_in_from_right.xml │ ├── umeng_fb_slide_out_from_left.xml │ └── umeng_fb_slide_out_from_right.xml │ ├── drawable-hdpi │ ├── btn_normal.png │ ├── btn_press.png │ ├── fourth.png │ ├── gizwitslogo.png │ ├── ic_launcher.png │ ├── ic_richpush_actionbar_back.png │ ├── ic_richpush_actionbar_divider.png │ ├── image_personhead.png │ ├── launch_activity_bg.png │ ├── richpush_btn_selector.xml │ ├── roller.png │ ├── splashbackgroud.png │ ├── umeng_update_btn_check_off_focused_holo_light.png │ ├── umeng_update_btn_check_off_holo_light.png │ ├── umeng_update_btn_check_off_pressed_holo_light.png │ ├── umeng_update_btn_check_on_focused_holo_light.png │ ├── umeng_update_btn_check_on_holo_light.png │ ├── umeng_update_btn_check_on_pressed_holo_light.png │ ├── umeng_update_close_bg_normal.png │ └── umeng_update_close_bg_tap.png │ ├── drawable-mdpi │ ├── ic_launcher.png │ ├── ori.png │ └── vir.png │ ├── drawable-xhdpi │ ├── Thumbs.db │ ├── about_icon.png │ ├── add.png │ ├── arrow.png │ ├── back_bt.png │ ├── back_bt_.png │ ├── barcode_frame.png │ ├── barcode_laser_line.png │ ├── bg_scan.png │ ├── btn_mode_auto_black.png │ ├── btn_mode_cold_black.png │ ├── btn_mode_hot_black.png │ ├── btn_mode_humidity_black.png │ ├── btn_next_v5_normal.png │ ├── btn_pre_v5_normal.png │ ├── btn_winddirect_black.png │ ├── btn_windspread.png │ ├── btn_windspread_default.png │ ├── button_back.png │ ├── button_blue_long.png │ ├── button_invisible.png │ ├── button_more.png │ ├── button_not_sure.png │ ├── button_refresh.png │ ├── button_setting.png │ ├── button_sure.png │ ├── button_visible.png │ ├── checkmark.png │ ├── controller_jd_btn_power.png │ ├── curtain.jpg │ ├── device_add_bg_title.png │ ├── device_air.png │ ├── device_back.png │ ├── device_btn_nodevice.png │ ├── device_icon.png │ ├── device_refresh_iconl.png │ ├── failsoft.png │ ├── fourth.png │ ├── home_add_icon.png │ ├── home_icon_menu.png │ ├── ic_body_a.png │ ├── ic_conditionor_windcapacity.png │ ├── ic_conditionor_windcapacity_aoto.png │ ├── ic_conditionor_windcapacity_low.png │ ├── ic_conditionor_windcapacity_middle.png │ ├── ic_curtain.png │ ├── ic_gas_a.jpg │ ├── ic_gate_a.png │ ├── ic_launcher.png │ ├── ic_one_switch.png │ ├── ic_smoke_a.png │ ├── ic_socket.png │ ├── ic_three_switch.png │ ├── ic_two_switch.png │ ├── ic_video.png │ ├── icon_more.png │ ├── laws.png │ ├── login_icon_key.png │ ├── login_icon_name.png │ ├── login_password.png │ ├── login_user.png │ ├── logo.png │ ├── logo3.png │ ├── mydefault.png │ ├── mydefault0.png │ ├── mymyshoft.jpg │ ├── nodevice.png │ ├── nolaws.png │ ├── noselect.png │ ├── phone.png │ ├── qq.png │ ├── reflash_bt.png │ ├── reset_logo_2.png │ ├── return_icon.png │ ├── right_icon.png │ ├── scan_bg.png │ ├── select.png │ ├── skip.png │ ├── sms.png │ ├── socket.png │ ├── splash.png │ ├── sub.png │ ├── switch1.png │ ├── switch2.png │ ├── switch3.png │ ├── tab_menu_better.xml │ ├── tab_menu_bg.xml │ ├── tab_menu_channel.xml │ ├── tab_menu_message.xml │ ├── tab_menu_setting.xml │ ├── tab_menu_text.xml │ ├── wechat.png │ ├── wifi.png │ └── wifi_icon.png │ ├── drawable-xxhdpi │ └── ic_launcher.png │ ├── drawable │ ├── add.png │ ├── airlink.gif │ ├── alert_bottom_left_shape.xml │ ├── alert_bottom_right_shape.xml │ ├── alert_bottom_shape.xml │ ├── alert_shape.xml │ ├── alert_top_shape.xml │ ├── background.xml │ ├── bg_dialog.xml │ ├── bg_login.png │ ├── border_layer_list.xml │ ├── btn_getcode_shape.xml │ ├── btn_getcode_shape_gray.xml │ ├── btn_next_shape_gray.xml │ ├── btn_selec.xml │ ├── bubble.png │ ├── button_shape.xml │ ├── button_shape_gray.xml │ ├── checkbox_hook_selector.xml │ ├── checkbox_laws_selector.xml │ ├── circle.xml │ ├── device_images.xml │ ├── devicelist_item_selector.xml │ ├── envelope.png │ ├── esp.png │ ├── f059.png │ ├── friends.png │ ├── green_background.xml │ ├── grid.png │ ├── grid_grey.png │ ├── hf.png │ ├── home_icon_alert.png │ ├── home_icon_body.png │ ├── home_icon_door.png │ ├── home_icon_gas.png │ ├── home_icon_humidity.png │ ├── home_icon_smoke.png │ ├── home_icon_tenperature.png │ ├── home_images.xml │ ├── home_item_add.png │ ├── home_item_alert_nouse.xml │ ├── home_item_alert_use.xml │ ├── home_item_delete.png │ ├── home_item_sel_change.xml │ ├── home_item_sel_original.xml │ ├── home_item_selector.xml │ ├── img_bg_shape.xml │ ├── img_bg_shape_blue.xml │ ├── img_bg_shape_login_white.xml │ ├── img_bg_shape_white.xml │ ├── message.png │ ├── message_grey.png │ ├── mxchip.png │ ├── mydefaultpic.png │ ├── plus.png │ ├── plus_gray.png │ ├── qca.png │ ├── redoval.xml │ ├── resetsoftap.gif │ ├── round_rect.xml │ ├── rounded_edittext.xml │ ├── rtk.png │ ├── scan.png │ ├── shape_button.xml │ ├── shape_button2.xml │ ├── share.png │ ├── sub.png │ ├── ti.png │ ├── umeng_common_gradient_green.xml │ ├── umeng_common_gradient_orange.xml │ ├── umeng_common_gradient_red.xml │ ├── umeng_fb_arrow_right.png │ ├── umeng_fb_back_normal.png │ ├── umeng_fb_back_selected.png │ ├── umeng_fb_back_selector.xml │ ├── umeng_fb_bar_bg.9.png │ ├── umeng_fb_btn_bg_selector.xml │ ├── umeng_fb_conversation_bg.png │ ├── umeng_fb_gradient_green.xml │ ├── umeng_fb_gradient_orange.xml │ ├── umeng_fb_gray_frame.xml │ ├── umeng_fb_list_item.9.png │ ├── umeng_fb_list_item_pressed.9.png │ ├── umeng_fb_list_item_selector.xml │ ├── umeng_fb_logo.png │ ├── umeng_fb_point_new.xml │ ├── umeng_fb_point_normal.xml │ ├── umeng_fb_reply_left_bg.9.png │ ├── umeng_fb_reply_right_bg.9.png │ ├── umeng_fb_see_list_normal.png │ ├── umeng_fb_see_list_pressed.png │ ├── umeng_fb_see_list_selector.xml │ ├── umeng_fb_statusbar_icon.png │ ├── umeng_fb_submit_selector.xml │ ├── umeng_fb_tick_normal.png │ ├── umeng_fb_tick_selected.png │ ├── umeng_fb_tick_selector.xml │ ├── umeng_fb_top_banner.xml │ ├── umeng_fb_user_bubble.9.png │ ├── umeng_fb_write_normal.png │ ├── umeng_fb_write_pressed.png │ ├── umeng_fb_write_selector.xml │ ├── umeng_update_button_cancel_bg_focused.xml │ ├── umeng_update_button_cancel_bg_normal.xml │ ├── umeng_update_button_cancel_bg_selector.xml │ ├── umeng_update_button_cancel_bg_tap.xml │ ├── umeng_update_button_check_selector.xml │ ├── umeng_update_button_close_bg_selector.xml │ ├── umeng_update_button_ok_bg_focused.xml │ ├── umeng_update_button_ok_bg_normal.xml │ ├── umeng_update_button_ok_bg_selector.xml │ ├── umeng_update_button_ok_bg_tap.xml │ ├── umeng_update_dialog_bg.xml │ ├── umeng_update_title_bg.xml │ ├── umeng_update_wifi_disable.png │ ├── user.png │ ├── user_grey.png │ ├── wm.png │ └── yellow.png │ ├── layout │ ├── activity_adddev1.xml │ ├── activity_adddev2.xml │ ├── activity_adddev3.xml │ ├── activity_adddev4.xml │ ├── activity_air_con_brand.xml │ ├── activity_air_mate.xml │ ├── activity_alertmes.xml │ ├── activity_capture.xml │ ├── activity_dep_helper.xml │ ├── activity_deploy.xml │ ├── activity_deployment.xml │ ├── activity_device_item.xml │ ├── activity_device_set.xml │ ├── activity_device_shared_message_list.xml │ ├── activity_devicecontrol.xml │ ├── activity_feedback.xml │ ├── activity_gos_about.xml │ ├── activity_gos_airlink_choose_device_workwifi.xml │ ├── activity_gos_airlink_config_countdown.xml │ ├── activity_gos_capture.xml │ ├── activity_gos_change_password.xml │ ├── activity_gos_check_device_workwifi.xml │ ├── activity_gos_choose_device.xml │ ├── activity_gos_choose_device_workwifi.xml │ ├── activity_gos_colorlist.xml │ ├── activity_gos_config_countdown.xml │ ├── activity_gos_config_failed.xml │ ├── activity_gos_device_control.xml │ ├── activity_gos_device_control0.xml │ ├── activity_gos_device_list.xml │ ├── activity_gos_device_ready.xml │ ├── activity_gos_forget_password.xml │ ├── activity_gos_main.xml │ ├── activity_gos_message.xml │ ├── activity_gos_modelist.xml │ ├── activity_gos_mozu.xml │ ├── activity_gos_register_user.xml │ ├── activity_gos_settings.xml │ ├── activity_gos_shared_device_list.xml │ ├── activity_gos_shared_list.xml │ ├── activity_gos_splash.xml │ ├── activity_gos_two_shared.xml │ ├── activity_gos_user_login.xml │ ├── activity_gos_user_shared.xml │ ├── activity_gos_usermanager.xml │ ├── activity_independent_deployment_page.xml │ ├── activity_item.xml │ ├── activity_listviewitem_air_con_brand.xml │ ├── activity_main.xml │ ├── activity_notice.xml │ ├── activity_qmultiline.xml │ ├── activity_register.xml │ ├── activity_register2.xml │ ├── activity_reset.xml │ ├── activity_set_remark.xml │ ├── activity_setting.xml │ ├── activity_single.xml │ ├── activity_smart_air_condition.xml │ ├── activity_video_play.xml │ ├── actvity_gos_airlink_ready.xml │ ├── actvity_gos_device_reset.xml │ ├── alert_devicefragment_set_device_info.xml │ ├── alert_diy_air_brand.xml │ ├── alert_gos_empty.xml │ ├── alert_gos_logout.xml │ ├── alert_gos_new_device.xml │ ├── alert_gos_no_id.xml │ ├── alert_gos_quit.xml │ ├── alert_gos_set_device_info.xml │ ├── alert_gos_wifi_list.xml │ ├── device_add_item_list.xml │ ├── device_add_popup.xml │ ├── device_info.xml │ ├── device_item_list.xml │ ├── dialog_tips.xml │ ├── fragment_device.xml │ ├── fragment_home.xml │ ├── fragment_home1.xml │ ├── fragment_mine.xml │ ├── fragment_video.xml │ ├── gos_activity_shar.xml │ ├── gos_devicesharing_zxing_activity.xml │ ├── gos_shared_by_me_activity.xml │ ├── gos_shared_to_me_activity.xml │ ├── home_item_popup_list.xml │ ├── home_popup_list.xml │ ├── item_add.xml │ ├── item_alert_info.xml │ ├── item_gos_device_list.xml │ ├── item_gos_device_shared_list.xml │ ├── item_gos_mode_list.xml │ ├── item_gos_wifi_list.xml │ ├── item_notice.xml │ ├── jpush_popwin_layout.xml │ ├── jpush_webview_layout.xml │ ├── mychanggeremark.xml │ ├── new_item_gos_mode_list.xml │ ├── popup_exit.xml │ ├── popup_videoregis.xml │ ├── popupwindow_device_control_curtain.xml │ ├── popupwindow_device_control_switch.xml │ ├── remark_alert.xml │ ├── text.xml │ ├── umeng_common_download_notification.xml │ ├── umeng_fb_activity_contact.xml │ ├── umeng_fb_activity_conversation.xml │ ├── umeng_fb_list_header.xml │ ├── umeng_fb_list_item.xml │ ├── umeng_fb_new_reply_alert_dialog.xml │ ├── umeng_update_dialog.xml │ ├── vedio_list_item.xml │ ├── view_gos_notification.xml │ └── view_gos_title_listview.xml │ ├── menu │ ├── choosesoftap.xml │ ├── control_device_offonline.xml │ ├── control_device_online.xml │ ├── deployment.xml │ ├── devicelist.xml │ ├── devicelist_login.xml │ ├── devicelist_logout.xml │ ├── devicelist_on_login.xml │ ├── logined.xml │ ├── qmultiline.xml │ ├── shareddevice.xml │ └── shareddevice2.xml │ ├── mipmap-hdpi │ ├── gizwitslogo.png │ ├── ic_launcher.png │ ├── ic_richpush_actionbar_back.png │ ├── ic_richpush_actionbar_divider.png │ └── splashbackgroud.png │ ├── mipmap-mdpi │ └── ic_launcher.png │ ├── mipmap-xhdpi │ ├── about_icon.png │ ├── add.png │ ├── arrow.png │ ├── back_bt.png │ ├── back_bt_.png │ ├── barcode_frame.png │ ├── barcode_laser_line.png │ ├── button_back.png │ ├── button_blue_long.png │ ├── button_invisible.png │ ├── button_more.png │ ├── button_not_sure.png │ ├── button_refresh.png │ ├── button_setting.png │ ├── button_sure.png │ ├── button_visible.png │ ├── checkmark.png │ ├── device_icon.png │ ├── failsoft.png │ ├── ic_launcher.png │ ├── login_password.png │ ├── logo3.png │ ├── nodevice.png │ ├── noselect.png │ ├── phone.png │ ├── qq.png │ ├── right_icon.png │ ├── select.png │ ├── sms.png │ ├── splash.png │ ├── sub.png │ ├── tab_better_normal.png │ ├── tab_better_pressed.png │ ├── tab_channel_normal.png │ ├── tab_channel_pressed.png │ ├── tab_message_normal.png │ ├── tab_message_pressed.png │ ├── tab_my_normal.png │ ├── tab_my_pressed.png │ ├── wechat.png │ └── wifi_icon.png │ ├── mipmap-xxhdpi │ ├── ic_launcher.png │ ├── tab_better_normal.png │ ├── tab_better_pressed.png │ ├── tab_channel_normal.png │ ├── tab_channel_pressed.png │ ├── tab_message_normal.png │ ├── tab_message_pressed.png │ ├── tab_my_normal.png │ └── tab_my_pressed.png │ ├── mipmap-xxxhdpi │ └── ic_launcher.png │ ├── values-v11 │ └── styles.xml │ ├── values-v14 │ └── styles.xml │ ├── values-w820dp │ └── dimens.xml │ └── values │ ├── appkitstrings.xml │ ├── array_mes.xml │ ├── arrays_mode.xml │ ├── attrs.xml │ ├── colors.xml │ ├── dimens.xml │ ├── ids.xml │ ├── ioestrings.xml │ ├── jpush_style.xml │ ├── styles.xml │ ├── umeng_common_strings.xml │ ├── umeng_fb_strings.xml │ ├── umeng_update_string.xml │ └── user_type.xml ├── bDIntegrationSDK_Lib ├── build.gradle ├── build │ ├── generated │ │ └── source │ │ │ ├── buildConfig │ │ │ ├── androidTest │ │ │ │ └── debug │ │ │ │ │ └── com │ │ │ │ │ └── baidu │ │ │ │ │ └── integrationsdk │ │ │ │ │ └── lib │ │ │ │ │ └── test │ │ │ │ │ └── BuildConfig.java │ │ │ ├── debug │ │ │ │ └── com │ │ │ │ │ └── baidu │ │ │ │ │ └── integrationsdk │ │ │ │ │ └── lib │ │ │ │ │ └── BuildConfig.java │ │ │ └── release │ │ │ │ └── com │ │ │ │ └── baidu │ │ │ │ └── integrationsdk │ │ │ │ └── lib │ │ │ │ └── BuildConfig.java │ │ │ └── r │ │ │ └── androidTest │ │ │ └── debug │ │ │ └── com │ │ │ └── baidu │ │ │ └── integrationsdk │ │ │ └── lib │ │ │ └── R.java │ ├── intermediates │ │ ├── bundles │ │ │ ├── debug │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── classes.jar │ │ │ │ ├── jni │ │ │ │ │ └── armeabi │ │ │ │ │ │ └── libcrash_analysis.so │ │ │ │ └── libs │ │ │ │ │ └── Baidu_Mtj_3.7.5.5.jar │ │ │ └── default │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── classes.jar │ │ │ │ ├── jni │ │ │ │ └── armeabi │ │ │ │ │ └── libcrash_analysis.so │ │ │ │ └── libs │ │ │ │ └── Baidu_Mtj_3.7.5.5.jar │ │ ├── classes │ │ │ ├── debug │ │ │ │ └── com │ │ │ │ │ └── baidu │ │ │ │ │ └── integrationsdk │ │ │ │ │ └── lib │ │ │ │ │ └── BuildConfig.class │ │ │ └── release │ │ │ │ └── com │ │ │ │ └── baidu │ │ │ │ └── integrationsdk │ │ │ │ └── lib │ │ │ │ └── BuildConfig.class │ │ ├── incremental-safeguard │ │ │ ├── debug │ │ │ │ └── tag.txt │ │ │ └── release │ │ │ │ └── tag.txt │ │ ├── incremental │ │ │ ├── compileDebugAidl │ │ │ │ └── dependency.store │ │ │ ├── compileDebugAndroidTestAidl │ │ │ │ └── dependency.store │ │ │ ├── compileReleaseAidl │ │ │ │ └── dependency.store │ │ │ ├── mergeDebugAndroidTestResources │ │ │ │ ├── compile-file-map.properties │ │ │ │ └── merger.xml │ │ │ ├── mergeDebugAssets │ │ │ │ └── merger.xml │ │ │ ├── mergeDebugJniLibFolders │ │ │ │ └── merger.xml │ │ │ ├── mergeDebugShaders │ │ │ │ └── merger.xml │ │ │ ├── mergeReleaseAssets │ │ │ │ └── merger.xml │ │ │ ├── mergeReleaseJniLibFolders │ │ │ │ └── merger.xml │ │ │ ├── mergeReleaseShaders │ │ │ │ └── merger.xml │ │ │ ├── packageDebugResources │ │ │ │ ├── compile-file-map.properties │ │ │ │ └── merger.xml │ │ │ └── packageReleaseResources │ │ │ │ ├── compile-file-map.properties │ │ │ │ └── merger.xml │ │ ├── jniLibs │ │ │ ├── debug │ │ │ │ └── armeabi │ │ │ │ │ └── libcrash_analysis.so │ │ │ └── release │ │ │ │ └── armeabi │ │ │ │ └── libcrash_analysis.so │ │ ├── manifest │ │ │ └── androidTest │ │ │ │ └── debug │ │ │ │ └── AndroidManifest.xml │ │ ├── manifests │ │ │ └── aapt │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ └── release │ │ │ │ └── AndroidManifest.xml │ │ ├── res │ │ │ └── resources-debug-androidTest.ap_ │ │ └── transforms │ │ │ ├── mergeJniLibs │ │ │ ├── debug │ │ │ │ └── folders │ │ │ │ │ └── 2000 │ │ │ │ │ └── 3 │ │ │ │ │ └── main │ │ │ │ │ └── lib │ │ │ │ │ └── armeabi │ │ │ │ │ └── libcrash_analysis.so │ │ │ └── release │ │ │ │ └── folders │ │ │ │ └── 2000 │ │ │ │ └── 3 │ │ │ │ └── main │ │ │ │ └── lib │ │ │ │ └── armeabi │ │ │ │ └── libcrash_analysis.so │ │ │ └── stripDebugSymbol │ │ │ ├── debug │ │ │ └── folders │ │ │ │ └── 2000 │ │ │ │ └── 3 │ │ │ │ └── main │ │ │ │ └── lib │ │ │ │ └── armeabi │ │ │ │ └── libcrash_analysis.so │ │ │ └── release │ │ │ └── folders │ │ │ └── 2000 │ │ │ └── 3 │ │ │ └── main │ │ │ └── lib │ │ │ └── armeabi │ │ │ └── libcrash_analysis.so │ └── outputs │ │ └── aar │ │ ├── bDIntegrationSDK_Lib-debug.aar │ │ └── bDIntegrationSDK_Lib-release.aar ├── libs │ └── Baidu_Mtj_3.7.5.5.jar └── src │ └── main │ ├── AndroidManifest.xml │ └── jniLibs │ └── armeabi │ └── libcrash_analysis.so ├── build.gradle ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── keystore └── huantai.jks ├── screenshots ├── 153244281431138283.jpg ├── 294657086221466847.jpg ├── 317808804140929102.jpg ├── 513913617963809822.jpg ├── Screenshot_2017-12-23-18-14-58-987_huantai.smarth.png ├── Screenshot_2017-12-23-18-15-51-884_huantai.smarth.png ├── Screenshot_2017-12-23-18-16-00-170_huantai.smarth.png ├── Screenshot_2017-12-23-18-16-53-603_huantai.smarth.png ├── Screenshot_2017-12-23-18-17-23-361_huantai.smarth.png ├── Screenshot_2017-12-23-18-17-27-953_huantai.smarth.png ├── Screenshot_2017-12-23-18-17-31-650_huantai.smarth.png ├── Screenshot_2017-12-23-18-17-39-587_huantai.smarth.png ├── Screenshot_2017-12-23-18-18-07-961_huantai.smarth.png ├── Screenshot_2017-12-23-18-18-36-062_huantai.smarth.png ├── Screenshot_2017-12-23-18-18-41-985_huantai.smarth.png ├── Screenshot_2017-12-23-18-18-46-686_huantai.smarth.png ├── Screenshot_2017-12-23-18-18-54-224_huantai.smarth.png ├── Screenshot_2017-12-23-18-18-58-638_huantai.smarth.png ├── Screenshot_2017-12-23-18-19-03-449_huantai.smarth.png ├── Screenshot_2017-12-23-18-19-14-909_huantai.smarth.png ├── Screenshot_2017-12-23-18-19-26-939_huantai.smarth.png ├── Screenshot_2017-12-23-18-19-42-895_huantai.smarth.png ├── Screenshot_2017-12-23-18-20-01-692_huantai.smarth.png ├── Screenshot_2017-12-23-18-20-06-844_huantai.smarth.png ├── Screenshot_2017-12-23-18-20-21-059_huantai.smarth.png ├── Screenshot_2017-12-23-18-22-08-747_huantai.smarth.png ├── TIM截图20171223172952.png └── 产品流程图.png └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /.idea/dictionaries/clover.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 18 | 19 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/libs/BLEasyConfig.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/libs/BLEasyConfig.jar -------------------------------------------------------------------------------- /app/libs/GizWifiSDK.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/libs/GizWifiSDK.jar -------------------------------------------------------------------------------- /app/libs/LSFSK_1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/libs/LSFSK_1.0.jar -------------------------------------------------------------------------------- /app/libs/Lark7618SDK_noudp1606031910_0101.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/libs/Lark7618SDK_noudp1606031910_0101.jar -------------------------------------------------------------------------------- /app/libs/OneShotConfig.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/libs/OneShotConfig.jar -------------------------------------------------------------------------------- /app/libs/autoupdatesdk-release.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/libs/autoupdatesdk-release.aar -------------------------------------------------------------------------------- /app/libs/easylink2.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/libs/easylink2.0.jar -------------------------------------------------------------------------------- /app/libs/hiflying-iots-android-smartlink7.0.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/libs/hiflying-iots-android-smartlink7.0.2.jar -------------------------------------------------------------------------------- /app/libs/jpush-android-2.1.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/libs/jpush-android-2.1.5.jar -------------------------------------------------------------------------------- /app/libs/libEsptouch_v0.3.3.4_3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/libs/libEsptouch_v0.3.3.4_3.jar -------------------------------------------------------------------------------- /app/libs/libForEElink.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/libs/libForEElink.jar -------------------------------------------------------------------------------- /app/libs/libammsdk.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/libs/libammsdk.jar -------------------------------------------------------------------------------- /app/libs/mta-sdk-1.6.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/libs/mta-sdk-1.6.2.jar -------------------------------------------------------------------------------- /app/libs/open_sdk_r5756.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/libs/open_sdk_r5756.jar -------------------------------------------------------------------------------- /app/libs/pushservice-5.0.0.66.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/libs/pushservice-5.0.0.66.jar -------------------------------------------------------------------------------- /app/libs/simpleconfigwizardlib.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/libs/simpleconfigwizardlib.jar -------------------------------------------------------------------------------- /app/libs/xUtils-2.6.14.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/libs/xUtils-2.6.14.jar -------------------------------------------------------------------------------- /app/libs/xmcameracore.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/libs/xmcameracore.jar -------------------------------------------------------------------------------- /app/libs/xmcameraextra.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/libs/xmcameraextra.jar -------------------------------------------------------------------------------- /app/libs/zxing.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/libs/zxing.jar -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in E:\AndroidEclipse\adt-bundle-windows-x86_64-20140702\sdk/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /app/src/main/assets/UIConfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "app_id": "0cfdf578132f47318f8ac28317603a2f", 3 | "app_secret": "c8ecb303fedc4950844909c5e245790c", 4 | "product_key": ["a5c5ddfdf47c4542ac23cd135cf55310"], 5 | "openAPI_URL": "", 6 | "site_URL": "", 7 | "push_URL": "", 8 | "UsingTabSet": false, 9 | "wifi_type_select": true, 10 | "tencent_app_id": "1105509702", 11 | "wechat_app_id": "wxea48754eb6142684", 12 | "wechat_app_secret": "031e8d83352a4fa0ba7df040e86dca23", 13 | "push_type": 0, 14 | "bpush_app_key": "your_bpush_api_key", 15 | "buttonColor": "F8DC26", 16 | "buttonTextColor": "FFFFFFFF", 17 | "navigationBarColor": "F8DC26", 18 | "navigationBarTextColor": "000000", 19 | "configProgressViewColor": "000000", 20 | "addDeviceTitle": "", 21 | "qq": true, 22 | "wechat": true, 23 | "anonymousLogin": true 24 | } -------------------------------------------------------------------------------- /app/src/main/java/huantai/smarthome/bean/AddSwitchDevice.java: -------------------------------------------------------------------------------- 1 | package huantai.smarthome.bean; 2 | 3 | 4 | /** 5 | * description:添加开关(只在添加设备界面做显示并不存入数据库) 6 | * auther:xuewenliao 7 | * time:2017/10/2 16:32 8 | */ 9 | 10 | public class AddSwitchDevice { 11 | private String devicesort;//设备类别 12 | private int picture;//对应图片 13 | 14 | public String getDevicesort() { 15 | return devicesort; 16 | } 17 | 18 | public void setDevicesort(String devicesort) { 19 | this.devicesort = devicesort; 20 | } 21 | 22 | public int getPicture() { 23 | return picture; 24 | } 25 | 26 | public void setPicture(int picture) { 27 | this.picture = picture; 28 | } 29 | 30 | @Override 31 | public String toString() { 32 | return "AddSwitchDevice{" + 33 | "devicesort='" + devicesort + '\'' + 34 | ", picture=" + picture + 35 | '}'; 36 | } 37 | } -------------------------------------------------------------------------------- /app/src/main/java/huantai/smarthome/bean/ConstantData.java: -------------------------------------------------------------------------------- 1 | package huantai.smarthome.bean; 2 | 3 | /** 4 | * Auther:luojie 5 | * E-mail:luojie@hnu.edu.cn 6 | * Time:2017/9/8 11:39 7 | */ 8 | public class ConstantData { 9 | //设备名称 10 | public static final String name[] = { 11 | "温度", "湿度", "烟雾", "燃气", "门", "人体感应", "LED灯", "空调", "报警记录" 12 | }; 13 | 14 | //设备值 15 | public static final String key[] = { 16 | "Temperature", "Humidity", "smoke1", "gas1", "gate1", "body1", "LED_OnOff", "Send_com", "Alert_1" 17 | }; 18 | 19 | //开关和插座 20 | public static final String devicename[] = { 21 | "一位开关", "二位开关", "三位开关", "插座","窗帘","空调" 22 | }; 23 | 24 | 25 | } 26 | -------------------------------------------------------------------------------- /app/src/main/java/huantai/smarthome/bean/ControlDataible.java: -------------------------------------------------------------------------------- 1 | package huantai.smarthome.bean; 2 | 3 | import org.json.JSONException; 4 | 5 | /** 6 | * description:数据控制接口 7 | * auther:xuewenliao 8 | * time:2017/9/7 19:33 9 | */ 10 | 11 | public interface ControlDataible { 12 | void initStatusListener();//设置设备状态监听 13 | void initView(); 14 | void initBroadreceive();//发数据广播 15 | void initDevice();//初始化设备 16 | void sendJson(String key, Object value) throws JSONException;//发数据 17 | } 18 | -------------------------------------------------------------------------------- /app/src/main/java/huantai/smarthome/bean/UserData.java: -------------------------------------------------------------------------------- 1 | package huantai.smarthome.bean; 2 | 3 | /** 4 | * Created by xuewenliao on 2017/8/7. 5 | */ 6 | 7 | public class UserData { 8 | public String uphone; 9 | public String upwd; 10 | 11 | 12 | public UserData(String userName, String upwd) { 13 | this.uphone = userName; 14 | this.upwd = upwd; 15 | } 16 | 17 | public String getUserName() { 18 | return uphone; 19 | } 20 | 21 | public void setUserName(String userName) { 22 | this.uphone = userName; 23 | } 24 | 25 | public String getPassWord() { 26 | return upwd; 27 | } 28 | 29 | public void setPassWord(String upwd) { 30 | this.upwd = upwd; 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /app/src/main/java/huantai/smarthome/initial/DeviceModule/DeviceListFragment.java: -------------------------------------------------------------------------------- 1 | package huantai.smarthome.initial.DeviceModule; 2 | 3 | 4 | 5 | import android.app.Fragment; 6 | import android.os.Bundle; 7 | import android.view.LayoutInflater; 8 | import android.view.View; 9 | import android.view.ViewGroup; 10 | 11 | import huantai.smarthome.initial.R; 12 | 13 | public class DeviceListFragment extends Fragment { 14 | 15 | 16 | @Override 17 | public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { 18 | 19 | View contextView = inflater.inflate(R.layout.activity_gos_shared_list, container, false); 20 | 21 | 22 | return super.onCreateView(inflater, container, savedInstanceState); 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /app/src/main/java/huantai/smarthome/initial/DeviceModule/MessageFragment.java: -------------------------------------------------------------------------------- 1 | package huantai.smarthome.initial.DeviceModule; 2 | 3 | 4 | 5 | import android.app.Fragment; 6 | import android.os.Bundle; 7 | import android.view.LayoutInflater; 8 | import android.view.View; 9 | import android.view.ViewGroup; 10 | 11 | import huantai.smarthome.initial.R; 12 | 13 | public class MessageFragment extends Fragment { 14 | 15 | @Override 16 | public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { 17 | 18 | 19 | View contextView = inflater.inflate(R.layout.activity_gos_shared_list, container, false); 20 | 21 | return super.onCreateView(inflater, container, savedInstanceState); 22 | } 23 | 24 | } 25 | -------------------------------------------------------------------------------- /app/src/main/java/huantai/smarthome/initial/DeviceModule/PersonalFragment.java: -------------------------------------------------------------------------------- 1 | package huantai.smarthome.initial.DeviceModule; 2 | 3 | 4 | 5 | import android.app.Fragment; 6 | import android.os.Bundle; 7 | import android.view.LayoutInflater; 8 | import android.view.View; 9 | import android.view.ViewGroup; 10 | 11 | import huantai.smarthome.initial.R; 12 | 13 | public class PersonalFragment extends Fragment { 14 | 15 | @Override 16 | public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { 17 | 18 | View contextView = inflater.inflate(R.layout.activity_gos_shared_list, container, false); 19 | 20 | return super.onCreateView(inflater, container, savedInstanceState); 21 | } 22 | 23 | } 24 | -------------------------------------------------------------------------------- /app/src/main/java/huantai/smarthome/initial/GosApplication.java: -------------------------------------------------------------------------------- 1 | package huantai.smarthome.initial; 2 | 3 | import android.app.Application; 4 | 5 | import com.orm.SugarContext; 6 | 7 | public class GosApplication extends Application { 8 | 9 | public static int flag = 0; 10 | 11 | @Override 12 | public void onCreate() { 13 | super.onCreate(); 14 | SugarContext.init(this); 15 | } 16 | 17 | @Override 18 | public void onTerminate() { 19 | super.onTerminate(); 20 | SugarContext.terminate(); 21 | 22 | } 23 | 24 | } 25 | -------------------------------------------------------------------------------- /app/src/main/java/huantai/smarthome/initial/PushModule/JPushReceiver.java: -------------------------------------------------------------------------------- 1 | package huantai.smarthome.initial.PushModule; 2 | 3 | import android.content.BroadcastReceiver; 4 | import android.content.Context; 5 | import android.content.Intent; 6 | 7 | public class JPushReceiver extends BroadcastReceiver { 8 | 9 | @Override 10 | public void onReceive(Context context, Intent intent) { 11 | 12 | 13 | } 14 | 15 | } 16 | -------------------------------------------------------------------------------- /app/src/main/java/huantai/smarthome/initial/ThirdAccountModule/BaseUiListener.java: -------------------------------------------------------------------------------- 1 | package huantai.smarthome.initial.ThirdAccountModule; 2 | 3 | import org.json.JSONObject; 4 | 5 | import com.tencent.tauth.IUiListener; 6 | import com.tencent.tauth.UiError; 7 | 8 | public class BaseUiListener implements IUiListener { 9 | 10 | @Override 11 | public void onCancel() { 12 | // TODO Auto-generated method stub 13 | } 14 | 15 | @Override 16 | public void onComplete(Object arg0) { 17 | doComplete((JSONObject)arg0); 18 | } 19 | 20 | protected void doComplete(JSONObject values) { 21 | } 22 | 23 | @Override 24 | public void onError(UiError arg0) { 25 | // TODO Auto-generated method stu 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /app/src/main/java/huantai/smarthome/initial/view/VerticalSwipeRefreshLayout.java: -------------------------------------------------------------------------------- 1 | package huantai.smarthome.initial.view; 2 | 3 | import android.content.Context; 4 | import android.support.v4.widget.SwipeRefreshLayout; 5 | import android.util.AttributeSet; 6 | import android.view.MotionEvent; 7 | import android.view.ViewConfiguration; 8 | 9 | public class VerticalSwipeRefreshLayout extends SwipeRefreshLayout { 10 | private int mTouchSlop; 11 | // 上一次触摸时的X坐标 12 | private float mPrevX; 13 | 14 | public VerticalSwipeRefreshLayout(Context context, AttributeSet attrs) { 15 | super(context, attrs); 16 | 17 | // 触发移动事件的最短距离,如果小于这个距离就不触发移动控件 18 | mTouchSlop = ViewConfiguration.get(context).getScaledTouchSlop(); 19 | } 20 | 21 | @Override 22 | public boolean onInterceptTouchEvent(MotionEvent event) { 23 | 24 | switch (event.getAction()) { 25 | case MotionEvent.ACTION_DOWN: 26 | mPrevX = event.getX(); 27 | break; 28 | 29 | case MotionEvent.ACTION_MOVE: 30 | final float eventX = event.getX(); 31 | float xDiff = Math.abs(eventX - mPrevX); 32 | // Log.d("refresh" ,"move----" + eventX + " " + mPrevX + " " + 33 | // mTouchSlop); 34 | // 增加60的容差,让下拉刷新在竖直滑动时就可以触发 35 | if (xDiff > mTouchSlop + 60) { 36 | return false; 37 | } 38 | } 39 | 40 | return super.onInterceptTouchEvent(event); 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /app/src/main/java/huantai/smarthome/utils/ActivityManager.java: -------------------------------------------------------------------------------- 1 | package huantai.smarthome.utils; 2 | 3 | import android.app.Activity; 4 | 5 | import java.util.ArrayList; 6 | import java.util.List; 7 | 8 | /** 9 | * Created by Administrator on 2016/6/30. 10 | */ 11 | public class ActivityManager { 12 | 13 | List list; 14 | 15 | private static ActivityManager manager = new ActivityManager(); 16 | private ActivityManager(){ 17 | list = new ArrayList(); 18 | } 19 | public static ActivityManager getInstance(){ 20 | return manager; 21 | } 22 | 23 | public void addActivity(Activity act){ 24 | list.add(act); 25 | } 26 | 27 | public void quit(){ 28 | for(int i=0;i 2 | 8 | -------------------------------------------------------------------------------- /app/src/main/res/anim/umeng_fb_slide_in_from_right.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | -------------------------------------------------------------------------------- /app/src/main/res/anim/umeng_fb_slide_out_from_left.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | -------------------------------------------------------------------------------- /app/src/main/res/anim/umeng_fb_slide_out_from_right.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/btn_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-hdpi/btn_normal.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/btn_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-hdpi/btn_press.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/fourth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-hdpi/fourth.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/gizwitslogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-hdpi/gizwitslogo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_richpush_actionbar_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-hdpi/ic_richpush_actionbar_back.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_richpush_actionbar_divider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-hdpi/ic_richpush_actionbar_divider.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/image_personhead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-hdpi/image_personhead.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/launch_activity_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-hdpi/launch_activity_bg.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/richpush_btn_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | 14 | 15 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/roller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-hdpi/roller.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/splashbackgroud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-hdpi/splashbackgroud.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/umeng_update_btn_check_off_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-hdpi/umeng_update_btn_check_off_focused_holo_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/umeng_update_btn_check_off_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-hdpi/umeng_update_btn_check_off_holo_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/umeng_update_btn_check_off_pressed_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-hdpi/umeng_update_btn_check_off_pressed_holo_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/umeng_update_btn_check_on_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-hdpi/umeng_update_btn_check_on_focused_holo_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/umeng_update_btn_check_on_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-hdpi/umeng_update_btn_check_on_holo_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/umeng_update_btn_check_on_pressed_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-hdpi/umeng_update_btn_check_on_pressed_holo_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/umeng_update_close_bg_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-hdpi/umeng_update_close_bg_normal.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/umeng_update_close_bg_tap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-hdpi/umeng_update_close_bg_tap.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ori.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-mdpi/ori.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/vir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-mdpi/vir.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/Thumbs.db -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/about_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/about_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/add.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/arrow.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/back_bt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/back_bt.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/back_bt_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/back_bt_.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/barcode_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/barcode_frame.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/barcode_laser_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/barcode_laser_line.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/bg_scan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/bg_scan.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/btn_mode_auto_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/btn_mode_auto_black.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/btn_mode_cold_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/btn_mode_cold_black.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/btn_mode_hot_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/btn_mode_hot_black.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/btn_mode_humidity_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/btn_mode_humidity_black.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/btn_next_v5_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/btn_next_v5_normal.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/btn_pre_v5_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/btn_pre_v5_normal.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/btn_winddirect_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/btn_winddirect_black.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/btn_windspread.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/btn_windspread.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/btn_windspread_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/btn_windspread_default.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/button_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/button_back.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/button_blue_long.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/button_blue_long.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/button_invisible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/button_invisible.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/button_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/button_more.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/button_not_sure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/button_not_sure.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/button_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/button_refresh.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/button_setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/button_setting.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/button_sure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/button_sure.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/button_visible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/button_visible.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/checkmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/checkmark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/controller_jd_btn_power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/controller_jd_btn_power.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/curtain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/curtain.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/device_add_bg_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/device_add_bg_title.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/device_air.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/device_air.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/device_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/device_back.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/device_btn_nodevice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/device_btn_nodevice.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/device_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/device_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/device_refresh_iconl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/device_refresh_iconl.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/failsoft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/failsoft.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/fourth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/fourth.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/home_add_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/home_add_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/home_icon_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/home_icon_menu.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_body_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/ic_body_a.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_conditionor_windcapacity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/ic_conditionor_windcapacity.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_conditionor_windcapacity_aoto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/ic_conditionor_windcapacity_aoto.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_conditionor_windcapacity_low.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/ic_conditionor_windcapacity_low.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_conditionor_windcapacity_middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/ic_conditionor_windcapacity_middle.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_curtain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/ic_curtain.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_gas_a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/ic_gas_a.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_gate_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/ic_gate_a.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_one_switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/ic_one_switch.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_smoke_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/ic_smoke_a.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_socket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/ic_socket.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_three_switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/ic_three_switch.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_two_switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/ic_two_switch.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/ic_video.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/icon_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/icon_more.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/laws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/laws.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/login_icon_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/login_icon_key.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/login_icon_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/login_icon_name.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/login_password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/login_password.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/login_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/login_user.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/logo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/logo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/logo3.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/mydefault.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/mydefault.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/mydefault0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/mydefault0.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/mymyshoft.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/mymyshoft.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/nodevice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/nodevice.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/nolaws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/nolaws.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/noselect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/noselect.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/phone.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/qq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/qq.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/reflash_bt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/reflash_bt.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/reset_logo_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/reset_logo_2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/return_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/return_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/right_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/right_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/scan_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/scan_bg.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/select.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/skip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/skip.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/sms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/sms.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/socket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/socket.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/splash.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/sub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/sub.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/switch1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/switch1.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/switch2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/switch2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/switch3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/switch3.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/tab_menu_better.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/tab_menu_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/tab_menu_channel.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/tab_menu_message.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/tab_menu_setting.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/tab_menu_text.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/wechat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/wechat.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/wifi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/wifi.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/wifi_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xhdpi/wifi_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable/add.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/airlink.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable/airlink.gif -------------------------------------------------------------------------------- /app/src/main/res/drawable/alert_bottom_left_shape.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/alert_bottom_right_shape.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/alert_bottom_shape.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/alert_shape.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/alert_top_shape.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 10 | 11 | 15 | 16 | 17 | 18 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/bg_dialog.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/bg_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable/bg_login.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/border_layer_list.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 8 | 9 | 10 | 15 | 16 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/btn_getcode_shape.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/btn_getcode_shape_gray.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/btn_next_shape_gray.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/btn_selec.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/bubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable/bubble.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/button_shape.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/button_shape_gray.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/checkbox_hook_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/checkbox_laws_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/circle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/device_images.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/devicelist_item_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/envelope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable/envelope.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/esp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable/esp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/f059.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable/f059.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/friends.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable/friends.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/green_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable/grid.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/grid_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable/grid_grey.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/hf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable/hf.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/home_icon_alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable/home_icon_alert.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/home_icon_body.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable/home_icon_body.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/home_icon_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable/home_icon_door.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/home_icon_gas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable/home_icon_gas.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/home_icon_humidity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable/home_icon_humidity.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/home_icon_smoke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable/home_icon_smoke.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/home_icon_tenperature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable/home_icon_tenperature.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/home_images.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/home_item_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable/home_item_add.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/home_item_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable/home_item_delete.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/home_item_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/img_bg_shape.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/img_bg_shape_blue.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/img_bg_shape_login_white.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/img_bg_shape_white.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable/message.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/message_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable/message_grey.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/mxchip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable/mxchip.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/mydefaultpic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable/mydefaultpic.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable/plus.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/plus_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable/plus_gray.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/qca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable/qca.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/redoval.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/resetsoftap.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable/resetsoftap.gif -------------------------------------------------------------------------------- /app/src/main/res/drawable/round_rect.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/rounded_edittext.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/rtk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable/rtk.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/scan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable/scan.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/shape_button.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/shape_button2.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable/share.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/sub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable/sub.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ti.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable/ti.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/umeng_common_gradient_green.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/umeng_common_gradient_orange.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/umeng_common_gradient_red.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/umeng_fb_arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable/umeng_fb_arrow_right.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/umeng_fb_back_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable/umeng_fb_back_normal.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/umeng_fb_back_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable/umeng_fb_back_selected.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/umeng_fb_back_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/umeng_fb_bar_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable/umeng_fb_bar_bg.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/umeng_fb_btn_bg_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/umeng_fb_conversation_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable/umeng_fb_conversation_bg.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/umeng_fb_gradient_green.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/umeng_fb_gradient_orange.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/umeng_fb_gray_frame.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/umeng_fb_list_item.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable/umeng_fb_list_item.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/umeng_fb_list_item_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable/umeng_fb_list_item_pressed.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/umeng_fb_list_item_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/umeng_fb_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable/umeng_fb_logo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/umeng_fb_point_new.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 7 | 8 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/umeng_fb_point_normal.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 7 | 8 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/umeng_fb_reply_left_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable/umeng_fb_reply_left_bg.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/umeng_fb_reply_right_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable/umeng_fb_reply_right_bg.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/umeng_fb_see_list_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable/umeng_fb_see_list_normal.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/umeng_fb_see_list_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable/umeng_fb_see_list_pressed.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/umeng_fb_see_list_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/umeng_fb_statusbar_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable/umeng_fb_statusbar_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/umeng_fb_submit_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/umeng_fb_tick_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable/umeng_fb_tick_normal.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/umeng_fb_tick_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable/umeng_fb_tick_selected.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/umeng_fb_tick_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/umeng_fb_top_banner.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/umeng_fb_user_bubble.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable/umeng_fb_user_bubble.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/umeng_fb_write_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable/umeng_fb_write_normal.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/umeng_fb_write_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable/umeng_fb_write_pressed.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/umeng_fb_write_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/umeng_update_button_cancel_bg_focused.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/umeng_update_button_cancel_bg_normal.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/umeng_update_button_cancel_bg_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 8 | 10 | 11 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/umeng_update_button_cancel_bg_tap.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/umeng_update_button_close_bg_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 8 | 10 | 11 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/umeng_update_button_ok_bg_focused.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/umeng_update_button_ok_bg_normal.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/umeng_update_button_ok_bg_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 8 | 10 | 11 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/umeng_update_button_ok_bg_tap.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/umeng_update_dialog_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/umeng_update_title_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/umeng_update_wifi_disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable/umeng_update_wifi_disable.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable/user.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/user_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable/user_grey.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/wm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable/wm.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szgeebye/HuanTaiSmartHome/695b2ad9811bad57c89d1f4c600f9cf3dc05c01b/app/src/main/res/drawable/yellow.png -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_device_shared_message_list.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_gos_airlink_config_countdown.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 15 | 16 | 22 | 23 | 24 | 31 | 32 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_gos_choose_device.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 17 | 18 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_gos_colorlist.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_gos_modelist.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_gos_mozu.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 11 | 12 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_gos_shared_device_list.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 13 | 14 | 15 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_gos_splash.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_independent_deployment_page.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_notice.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 16 | 17 | 18 | 19 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_qmultiline.xml: -------------------------------------------------------------------------------- 1 | 5 | 9 | 10 | 16 | 17 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_reset.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 17 | 18 | 24 | 25 | 33 | 34 | -------------------------------------------------------------------------------- /app/src/main/res/layout/alert_gos_wifi_list.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 16 | 17 | 21 | 22 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /app/src/main/res/layout/device_info.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 16 | 17 | 22 | 23 | 32 | 33 | -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_tips.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 |