From cb9567eab8f5b417dfa13e904798eef5095e5248 Mon Sep 17 00:00:00 2001
From: wxr <464027401@qq.com>
Date: 星期二, 21 十二月 2021 10:03:09 +0800
Subject: [PATCH] 安卓协议界面,插座电量功能
---
HDL-ON_Android/Properties/AndroidManifest.xml | 2
HDL_ON/UI/UI2/1-HomePage/HomePage.cs | 16
HDL-ON_Android/AgreementActivity.cs | 76
HDL-ON_Android/Assets/Language.ini | 12
HDL_ON/UI/UI2/FuntionControlView/EnvironmentalScience/EchartsOption_BrokenLine.cs | 10
HDL_ON/UI/UI2/FuntionControlView/ArmCenter/ArmCenterPage.cs | 2
HDL_ON/DAL/Mqtt/MqttClient.cs | 2
HDL_ON/HDL_ON.projitems | 2
HDL-ON_Android/HDL-ON_Android.csproj | 25
HDL-ON_Android/Resources/values/strings.xml | 8
HDL-ON_Android/SplashActivity.cs | 302 +
HDL-ON_iOS/Info.plist | 4
HDL-ON_iOS/Resources/Language.ini | 12
HDL_ON/UI/UI2/FuntionControlView/Electrical/SocketPage.cs | 176
HDL-ON_Android/Resources/drawable/btn_agree.xml | 18
HDL-ON_Android/Resources/Resource.designer.cs | 9128 ++++++++++++++++++++++++------------------------
HDL_ON/Common/OnAppConfig.cs | 4
HDL_ON/DAL/DriverLayer/Control.cs | 3
HDL_ON/UI/MainPage.cs | 3
HDL-ON_Android/Application.cs | 497 -
HDL_ON/UI/UI2/3-Intelligence/IntelligencePage.cs | 4
HDL-ON_Android/Resources/layout/activity_splash.xml | 93
HDL_ON/UI/UI2/FuntionControlView/EnvironmentalScience/EnvironmentalSensorPage.cs | 2
HDL_ON/UI/UI2/FuntionControlView/Electrical/SocketPage_CumulativePowerConsumption.cs | 374 ++
HDL_ON/UI/UI2/FuntionControlView/Electrical/SocketPageBLL.cs | 85
HDL-ON_Android/Resources/drawable/dialog_background2.xml | 13
HDL_ON/DAL/Server/HttpUtil.cs | 4
HDL_ON/UI/UI2/4-PersonalCenter/PersonalCenterPage.cs | 8
HDL_ON/Common/R.cs | 25
HDL_ON/UI/UI2/FuntionControlView/Electrical/SocketPage_InstantaneousValue.cs | 196 +
HDL-ON_Android/WebviewActivity.cs | 40
HDL-ON_Android/Resources/drawable/btn_disagree.xml | 24
HDL-ON_Android/Resources/layout/activity_webview.xml | 32
33 files changed, 6,188 insertions(+), 5,014 deletions(-)
diff --git a/HDL-ON_Android/AgreementActivity.cs b/HDL-ON_Android/AgreementActivity.cs
new file mode 100644
index 0000000..84a475a
--- /dev/null
+++ b/HDL-ON_Android/AgreementActivity.cs
@@ -0,0 +1,76 @@
+锘縰sing System;
+using Android.App;
+using Android.Content;
+using Android.Net;
+using Android.OS;
+using CN.Jpush.Android.Api;
+//using Android.Widget;
+using Com.Hdl.ON.Jpush.Androidjpush;
+using HDL_ON;
+using Java.Util;
+using Microsoft.AppCenter;
+using Microsoft.AppCenter.Analytics;
+using Microsoft.AppCenter.Crashes;
+using Shared;
+
+
+namespace HDL_ON_Android
+{
+ [Activity(Label = "AgreementActivity", Theme = "@style/MyTheme1")]
+ public class AgreementActivity : Activity
+ {
+ protected override void OnCreate(Bundle savedInstanceState)
+ {
+ base.OnCreate(savedInstanceState);
+
+ // Create your application here
+ SetContentView(Resource.Layout.activity_splash);
+
+ Android.Widget.TextView tvPrivacyPolicy = FindViewById<Android.Widget.TextView>(Resource.Id.privacy_policy_btn);
+ Android.Widget.TextView tvServiceAgreement = FindViewById<Android.Widget.TextView>(Resource.Id.service_agreement_btn);
+
+ Android.Widget.Button btnDisagree = FindViewById<Android.Widget.Button>(Resource.Id.disagree_btn);
+ Android.Widget.Button btnAgree = FindViewById<Android.Widget.Button>(Resource.Id.agree_btn);
+
+ tvPrivacyPolicy.Click += (sender, e) =>
+ {
+ Intent i = new Intent(this, typeof(WebviewActivity));
+
+ i.PutExtra("url", "https://developer.hdlcontrol.com/HDLOnPlusPrivacyPolicy.html");
+ StartActivity(i);
+ Intent data = new Intent();
+ data.PutExtra("data", "disagree");
+ SetResult(Result.Canceled, Intent);
+ };
+ tvServiceAgreement.Click += (sender, e) =>
+ {
+ Intent i = new Intent(this, typeof(WebviewActivity));
+
+ i.PutExtra("url", "https://developer.hdlcontrol.com/HDLOnPlusUserAgreement.html");
+
+ StartActivity(i);
+ Intent data = new Intent();
+ data.PutExtra("data", "disagree");
+ SetResult(Result.Canceled, Intent);
+ };
+ btnDisagree.Click += (sender, e) =>
+ {
+ //Java.Lang.JavaSystem.Exit(0);
+ FinishAffinity();
+ };
+ btnAgree.Click += (sender, e) =>
+ {
+ OnAppConfig.Instance.isAgreePrivacyPolicy = true;
+ OnAppConfig.Instance.FirstRunApp = false;
+ OnAppConfig.Instance.SaveConfig();
+
+ Intent data = new Intent();
+ data.PutExtra("data", "agree");
+ SetResult(Result.Ok, Intent);
+ Finish();
+ };
+ }
+
+
+ }
+}
\ No newline at end of file
diff --git a/HDL-ON_Android/Application.cs b/HDL-ON_Android/Application.cs
index b2261ff..dbb5630 100644
--- a/HDL-ON_Android/Application.cs
+++ b/HDL-ON_Android/Application.cs
@@ -18,400 +18,159 @@
namespace HDL_ON_Android
{
- /// <summary>
- /// 璁惧畾涓洪粯璁ゅ惎鍔ㄧ殑Application
- /// </summary>
- [Android.App.Application]
- public class Application : Android.App.Application, Android.App.Application.IActivityLifecycleCallbacks
- {
- static void reStartApp(Android.App.Application application)
- {
- var intent = new Intent(application, typeof(BaseActivity));
- intent.AddFlags(ActivityFlags.NewTask);
- application.StartActivity(intent);
- Android.OS.Process.KillProcess(Android.OS.Process.MyPid());
- }
-
- public Application(IntPtr handle, Android.Runtime.JniHandleOwnership ownerShip) : base(handle, ownerShip) { }
- public override void OnCreate()
- {
- //娉ㄥ唽鏈鐞嗗紓甯镐簨浠�
- AppCenter.Start("64ac5859-2cd7-4ef8-a5da-5455e29679ec", typeof(Analytics), typeof(Crashes));
- if (Shared.Application.Activity != null)
- {
- reStartApp(this);
- return;
- }
-
- base.OnCreate();
- RegisterActivityLifecycleCallbacks(this);
-
- initAll();
-
- }
-
-
-
/// <summary>
- /// 鎵�鏈夊垵濮嬪寲鍏ㄩ儴鍦ㄨ繖涓柟娉曞疄鐜�
+ /// 璁惧畾涓洪粯璁ゅ惎鍔ㄧ殑Application
/// </summary>
- void initAll()
+ [Android.App.Application]
+ public class Application : Android.App.Application, Android.App.Application.IActivityLifecycleCallbacks
{
-
- string[] permissions = new string[] { Manifest.Permission.WriteExternalStorage, Manifest.Permission.RecordAudio,
- Manifest.Permission.Camera, Manifest.Permission.ProcessOutgoingCalls, Manifest.Permission.GetAccounts};
- //绂佹灞忓箷闀夸寒
- BaseActivity.KeepScreenON = false;
- //闅愯棌铏氭嫙鎸夐敭
- BaseActivity.IsHideVirualButtons = true;
- //瀹炵幇瀹夊崜杩斿洖鎸夐敭
- BaseActivity.BackKeyAction = () =>
- {
- try
+ static void reStartApp(Android.App.Application application)
{
- var result = MainPage.LoadEvent_BackAction();
- switch (result)
- {
- case 0:
- break;
- case 1:
- case 2:
- BaseActivity.VerifyDateTime = DateTime.MaxValue;
- break;
- default:
- BaseActivity.VerifyDateTime = DateTime.MaxValue;
- break;
- }
+ var intent = new Intent(application, typeof(BaseActivity));
+ intent.AddFlags(ActivityFlags.NewTask);
+ application.StartActivity(intent);
+ Android.OS.Process.KillProcess(Android.OS.Process.MyPid());
}
- catch (Exception ex)
+
+ public Application(IntPtr handle, Android.Runtime.JniHandleOwnership ownerShip) : base(handle, ownerShip) { }
+ public override void OnCreate()
{
- MainPage.Log(ex.Message);
- BaseActivity.VerifyDateTime = DateTime.MaxValue;
- }
- };
-
- init();
- BaseActivity.OnCreateActoin += (activity, application) =>
- {
- Language.CurrentLanguage = "Chinese";
- Locale locale1 = Locale.Default;
- var localeList = Resources.Configuration.Locale;
- if (localeList.Language == "zh")
- {
- Language.CurrentLanguage = "Chinese";
- }
- else
- {
- Language.CurrentLanguage = "English";
- }
- //鑾峰彇鏋佸厜鎺ㄩ�両D
- GetJPushRegistrationID(activity);
-
- BaseActivity.NetworkStateChanged += (int internetStatus) =>
- {
- //if (!IsEnterBackground)
- //{
- // ////BusSocket.Stop();
- // //new System.Threading.Thread(() =>
- // //{
- // // System.Threading.Thread.Sleep(1000);
- // // //BusSocket.Start();
- // //})
- // //{ IsBackground = true }.Start();
-
- //}
- //else
- //{
- // Console.WriteLine("HHH 缃戠粶鍙樺寲浣嗗浜庡悗鍙�");
- //}
-
- //缃戠粶鍙樺寲澶勭悊
- HDLCommon.Current.UpdateInternetStatus((int)internetStatus, MainPage.IsEnterBackground);
- };
- };
- BaseActivity.RefreshUIAction += (activity) =>
- {
- MainPage.Show();
- checkSomeInfo();
- };
- BaseActivity.OnResumeAction += (activity) =>
- {
- checkSomeInfo();
- };
- BaseActivity.OnDestroyAction += (activity) =>
- {
- Console.WriteLine("OnDestroyAction");
- //BusSocket.Stop();
- //UserInfo.Current.unlockTime = DateTime.Now;
- };
-
-
- HDLUtils.SetAuthoritiesName("com.hdl.onpro.fileProvider");
-
- //Shared.Application.IsGpsEnable = true;
- bool isfirst = true;
- //鑾峰彇缁忕含搴�
- Shared.Application.LocationAction = (lon, lat) =>
- {
- try
- {
- if (isfirst)
- {
- //鍙Е鍙戜竴娆�
- //Shared.Application.LocationAction = null;
- new HDL_ON.DAL.Server.HttpServerRequest().GetCityWeatherInfo(lon.ToString(), lat.ToString());
- }
- isfirst = false;
- ///鐩戝惉缁忕含搴�
- HDL_ON.UI.UI2.Intelligence.Automation.LogicMethod.CurrLogicMethod.AppLatAndLonEvent(lon, lat);
- //鍏抽棴瀹氫綅鏈嶅姟
- //Shared.Application.StopGPSLocationService();
- }
- catch (Exception ex)
- {
- Utlis.WriteLine("GetCityInfo catch" + ex.Message);
- }
- MainPage.Log($"缁忕含搴�:::{lon}:{lat}");
- };
- }
-
- /// <summary>
- ///
- /// </summary>
- /// <param name="activity"></param>
- void GetJPushRegistrationID(BaseActivity activity)
- {
- try
- {
- //淇濆瓨鑾峰彇鐨勬瀬鍏夋湇鍔″櫒涓婄殑娉ㄥ唽ID鍒版湰鍦版枃浠�
- var tokenID = JPushInterface.GetRegistrationID(activity);
- Console.WriteLine("RegistrationID: " + tokenID);
- if (!string.IsNullOrEmpty(tokenID) && OnAppConfig.Instance.PushDeviceToken != tokenID)
- {
- OnAppConfig.Instance.PushDeviceToken = tokenID;
- OnAppConfig.Instance.PhoneName = Android.OS.Build.Manufacturer;
- OnAppConfig.Instance.SaveConfig();
- }
- int loadTokenCount = 0;
- System.Threading.Tasks.Task.Run(() =>
- {
- while (string.IsNullOrEmpty(tokenID))
- {
- System.Threading.Thread.Sleep(1000);
- tokenID = JPushInterface.GetRegistrationID(activity);
- Console.WriteLine("Sleep.tokenID + " + JPushInterface.GetRegistrationID(activity));
- loadTokenCount++;
- if (loadTokenCount > 30)
+ if (Shared.Application.Activity != null)
{
- break;
+ //reStartApp(this);
+ return;
}
- }
- Console.WriteLine("RegistrationID: " + tokenID);
- if (!string.IsNullOrEmpty(tokenID) && OnAppConfig.Instance.PushDeviceToken != tokenID)
- {
- OnAppConfig.Instance.PushDeviceToken = tokenID;
- OnAppConfig.Instance.PhoneName = Android.OS.Build.Manufacturer;
- OnAppConfig.Instance.SaveConfig();
- }
- });
- }
- catch
- {
-
- }
- }
-
- public static bool IsShowTip = true;
- void init()
- {
- //鎵嬫満鍚嶇О Android.OS.Build.Manufacturer;
- //OnAppConfig.Instance.PhoneName = Android.OS.Build.Manufacturer;
- //#if DEBUG
- //CN.Jpush.Android.Api.JPushInterface.SetDebugMode(true);
- //#endif
- CN.Jpush.Android.Api.JPushInterface.Init(this);
-
- }
- void checkSomeInfo()
- {
- try
- {
- IsShowTip = true;
- var status = isNetworkAvailable(this);
- int internetStatus = 0;
- if (!status)
- {
- internetStatus = 0;
+ base.OnCreate();
+ RegisterActivityLifecycleCallbacks(this);
}
- var isWifi = isWifiConnected(this);
- if (isWifi)
+ public void OnActivityCreated(Activity activity, Bundle savedInstanceState)
{
- internetStatus = 2;
+
}
- else
+
+ public void OnActivityDestroyed(Activity activity)
{
- internetStatus = 1;
+ //throw new NotImplementedException ();
}
- }
- catch (Exception ex)
- {
- Console.WriteLine($"android check some info erorr : {ex.Message}");
- }
- }
- bool isNetworkAvailable(Context context)
- {
- var cm = (ConnectivityManager)context.GetSystemService(ConnectivityService);
- if (cm == null || cm.ActiveNetworkInfo == null)
- {
- return false;
- }
- else
- {
- return cm.ActiveNetworkInfo.IsAvailable;
- }
- }
-
- bool isWifiConnected(Context context)
- {
- if (context != null)
- {
- var mConnectivityManager = (ConnectivityManager)context.GetSystemService
- (ConnectivityService);
- var mWiFiNetworkInfo = mConnectivityManager.GetNetworkInfo(ConnectivityType.Wifi);
- if (mWiFiNetworkInfo != null)
+ public void OnActivityPaused(Activity activity)
{
- return mWiFiNetworkInfo.IsAvailable;
+ //throw new NotImplementedException ();
}
- }
- return false;
- }
- public void OnActivityCreated(Activity activity, Bundle savedInstanceState)
- {
-
- }
-
- public void OnActivityDestroyed(Activity activity)
- {
- //throw new NotImplementedException ();
- }
-
- public void OnActivityPaused(Activity activity)
- {
- //throw new NotImplementedException ();
- }
-
- public void OnActivityResumed(Activity activity)
- {
- //throw new NotImplementedException ();
- }
-
- public void OnActivitySaveInstanceState(Activity activity, Bundle outState)
- {
- //throw new NotImplementedException ();
- }
-
- public void OnActivityStarted(Activity activity)
- {
- //throw new NotImplementedException ();
-
- mCount++;
- if (mCount == 1)
- {
- Console.WriteLine("HHH OnActivityStarted锛歠oreground");
- BusSocketStart();
- //鍚庡彴鍥炲埌鍓嶅彴
- new HDL_ON.UI.AppUnlockPage().LoadPage();
- }
- }
-
- public void OnActivityStopped(Activity activity)
- {
-
- mCount--;
- if (mCount == 0)
- {
- Console.WriteLine("HHH OnActivityStopped锛� background");
- BusSocketStop();
- //杩涘叆鍚庡彴
- UserInfo.Current.unlockTime = DateTime.Now;
-
- }
- }
-
-
- public override void OnTerminate()
- {
- base.OnTerminate();
- UnregisterActivityLifecycleCallbacks(this);
- }
-
- int mCount;
-
- ///// <summary>
- ///// 鏄惁杩涘叆鍚庡彴
- ///// </summary>
- //public bool IsEnterBackground = false;
-
- /// <summary>
- /// 杩涘叆鍚庡彴鐨勬椂闂�
- /// </summary>
- DateTime CloseTime = DateTime.Now;
-
- /// <summary>
- /// BusSocketStop
- /// </summary>
- void BusSocketStop()
- {
- //IsEnterBackground = true;
- CloseTime = DateTime.Now;
- MainPage.IsEnterBackground = true;
- //杩涘叆鍚庡彴mqtt姝e湪杩炴帴閲嶇疆鐘舵��
- HDL_ON.DAL.Mqtt.MqttClient.RemoteMqttIsConnecting = false;
- HDL_ON.DriverLayer.UdpSocket._BusSocket.Stop();
-
- }
-
- /// <summary>
- /// BusSocketStart
- /// </summary>
- void BusSocketStart()
- {
- //IsEnterBackground = false;
-
- if (CloseTime.AddSeconds(10) < DateTime.Now)
- {
- //鍚庡彴瓒呰繃10s灏辨柇寮�MQTT閲嶈繛
- //if (HDL_ON.DriverLayer.Control.Ins.IsRemote)
+ public void OnActivityResumed(Activity activity)
{
- HDL_ON.DAL.Mqtt.MqttClient.DisConnectRemote("closeTime", false);
+ //throw new NotImplementedException ();
}
- }
- MainPage.IsEnterBackground = false;
- HDL_ON.DriverLayer.UdpSocket._BusSocket.Start();
- HDL_ON.DriverLayer.Control.Ins.SearchLoaclGateway();
- }
+ public void OnActivitySaveInstanceState(Activity activity, Bundle outState)
+ {
+ //throw new NotImplementedException ();
+ }
- protected override void Dispose(bool disposing)
- {
- base.Dispose(disposing);
- }
+ public void OnActivityStarted(Activity activity)
+ {
+ //throw new NotImplementedException ();
+ if (HDL_ON.OnAppConfig.Instance.FirstRunApp)
+ {
+ return;
+ }
+ mCount++;
+ if (mCount == 1)
+ {
+ Console.WriteLine("HHH OnActivityStarted锛歠oreground");
+ BusSocketStart();
+ //鍚庡彴鍥炲埌鍓嶅彴
+ new HDL_ON.UI.AppUnlockPage().LoadPage();
+ }
+ }
- /// <summary>
- /// 鏌ヨ閫氱煡鏉冮檺锛屽苟鎻愮ず
- /// </summary>
- public void QueryNotificationPermission()
- {
+ public void OnActivityStopped(Activity activity)
+ {
+
+ mCount--;
+ if (mCount == 0)
+ {
+ Console.WriteLine("HHH OnActivityStopped锛� background");
+ BusSocketStop();
+ //杩涘叆鍚庡彴
+ UserInfo.Current.unlockTime = DateTime.Now;
+
+ }
+ }
+
+
+ public override void OnTerminate()
+ {
+ base.OnTerminate();
+ UnregisterActivityLifecycleCallbacks(this);
+ }
+
+ public int mCount;
+
+ ///// <summary>
+ ///// 鏄惁杩涘叆鍚庡彴
+ ///// </summary>
+ //public bool IsEnterBackground = false;
+
+ /// <summary>
+ /// 杩涘叆鍚庡彴鐨勬椂闂�
+ /// </summary>
+ DateTime CloseTime = DateTime.Now;
+
+ /// <summary>
+ /// BusSocketStop
+ /// </summary>
+ void BusSocketStop()
+ {
+ //IsEnterBackground = true;
+ CloseTime = DateTime.Now;
+ MainPage.IsEnterBackground = true;
+ //杩涘叆鍚庡彴mqtt姝e湪杩炴帴閲嶇疆鐘舵��
+ HDL_ON.DAL.Mqtt.MqttClient.RemoteMqttIsConnecting = false;
+ HDL_ON.DriverLayer.UdpSocket._BusSocket.Stop();
+
+ }
+
+ /// <summary>
+ /// BusSocketStart
+ /// </summary>
+ void BusSocketStart()
+ {
+ //IsEnterBackground = false;
+
+ if (CloseTime.AddSeconds(10) < DateTime.Now)
+ {
+ //鍚庡彴瓒呰繃10s灏辨柇寮�MQTT閲嶈繛
+ //if (HDL_ON.DriverLayer.Control.Ins.IsRemote)
+ {
+ HDL_ON.DAL.Mqtt.MqttClient.DisConnectRemote("closeTime", false);
+ }
+ }
+
+ MainPage.IsEnterBackground = false;
+ HDL_ON.DriverLayer.UdpSocket._BusSocket.Start();
+ HDL_ON.DriverLayer.Control.Ins.SearchLoaclGateway();
+ }
+
+ protected override void Dispose(bool disposing)
+ {
+ base.Dispose(disposing);
+ }
+
+ /// <summary>
+ /// 鏌ヨ閫氱煡鏉冮檺锛屽苟鎻愮ず
+ /// </summary>
+ public void QueryNotificationPermission()
+ {
+
+
+ }
+
}
-
-
- }
-
-}
+}
\ No newline at end of file
diff --git a/HDL-ON_Android/Assets/Language.ini b/HDL-ON_Android/Assets/Language.ini
index 8b816ae..f0a5536 100644
--- a/HDL-ON_Android/Assets/Language.ini
+++ b/HDL-ON_Android/Assets/Language.ini
@@ -502,6 +502,12 @@
514=Gateway location information is not configured
515=Add Security
516=Withdrawal
+517=Instantaneous value
+518=Cumulative power consumption
+519=Voltage (V)
+520=Electric Current (A)
+521=Power (W)
+522=Refresh
1000=Room Humidity
1001=V-chip
@@ -1627,6 +1633,12 @@
514=鏈厤缃綉鍏充綅缃俊鎭�
515=娣诲姞瀹夐槻
516=鎾ら攢鍚屾剰
+517=鐬椂鍊�
+518=绱鐢ㄧ數
+519=鐢靛帇(V)
+520=鐢垫祦(A)
+521=鍔熺巼(W)
+522=鍒锋柊
1000=瀹ゅ唴婀垮害
1001=绔ラ攣
diff --git a/HDL-ON_Android/HDL-ON_Android.csproj b/HDL-ON_Android/HDL-ON_Android.csproj
index 28741b6..3b7b8fa 100644
--- a/HDL-ON_Android/HDL-ON_Android.csproj
+++ b/HDL-ON_Android/HDL-ON_Android.csproj
@@ -200,6 +200,8 @@
<Compile Include="LeChengVideo\Form\ReverseCallFragment.cs" />
<Compile Include="LeChengVideoActivity.cs" />
<Compile Include="Other\HDLONUtils.cs" />
+ <Compile Include="WebviewActivity.cs" />
+ <Compile Include="AgreementActivity.cs" />
</ItemGroup>
<ItemGroup>
<AndroidAsset Include="Assets\agconnect-services.json" />
@@ -442,6 +444,29 @@
<Generator>
</Generator>
</AndroidResource>
+ <AndroidResource Include="Resources\layout\activity_splash.xml">
+ <SubType></SubType>
+ <Generator></Generator>
+ </AndroidResource>
+ <AndroidResource Include="Resources\drawable\dialog_background2.xml">
+ <SubType></SubType>
+ <Generator></Generator>
+ <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
+ </AndroidResource>
+ <AndroidResource Include="Resources\drawable\btn_agree.xml">
+ <SubType></SubType>
+ <Generator></Generator>
+ <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
+ </AndroidResource>
+ <AndroidResource Include="Resources\drawable\btn_disagree.xml">
+ <SubType></SubType>
+ <Generator></Generator>
+ <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
+ </AndroidResource>
+ <AndroidResource Include="Resources\layout\activity_webview.xml">
+ <SubType></SubType>
+ <Generator></Generator>
+ </AndroidResource>
</ItemGroup>
<ItemGroup>
<AndroidAsset Include="Assets\Phone\Public\MsgIcon\TipSuccessIcon.png" />
diff --git a/HDL-ON_Android/Properties/AndroidManifest.xml b/HDL-ON_Android/Properties/AndroidManifest.xml
index 29ed200..83f0db8 100644
--- a/HDL-ON_Android/Properties/AndroidManifest.xml
+++ b/HDL-ON_Android/Properties/AndroidManifest.xml
@@ -1,5 +1,5 @@
锘�<?xml version="1.0" encoding="utf-8"?>
-<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="202112131" android:versionName="1.4.3" package="com.hdl.onpro">
+<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="202112203" android:versionName="1.4.4" package="com.hdl.onpro">
<uses-sdk android:minSdkVersion="23" android:targetSdkVersion="28" />
<!-- 涔愭鍙瀵硅闇�瑕佺殑鏉冮檺 -->
<!--<uses-permission android:name="android.permission.INTERNET" />-->
diff --git a/HDL-ON_Android/Resources/Resource.designer.cs b/HDL-ON_Android/Resources/Resource.designer.cs
index 1e4ccef..ff06aa8 100644
--- a/HDL-ON_Android/Resources/Resource.designer.cs
+++ b/HDL-ON_Android/Resources/Resource.designer.cs
@@ -4039,2785 +4039,2794 @@
public const int btn_2_select = 2131230857;
// aapt resource value: 0x7F08008A
- public const int btn_auto_blue_selector = 2131230858;
+ public const int btn_agree = 2131230858;
// aapt resource value: 0x7F08008B
- public const int btn_auto_red_selector = 2131230859;
+ public const int btn_auto_blue_selector = 2131230859;
// aapt resource value: 0x7F08008C
- public const int btn_click_lp_screenshot = 2131230860;
+ public const int btn_auto_red_selector = 2131230860;
// aapt resource value: 0x7F08008D
- public const int btn_click_lp_unlock = 2131230861;
+ public const int btn_click_lp_screenshot = 2131230861;
// aapt resource value: 0x7F08008E
- public const int btn_collect = 2131230862;
+ public const int btn_click_lp_unlock = 2131230862;
// aapt resource value: 0x7F08008F
- public const int btn_collect_prs = 2131230863;
+ public const int btn_collect = 2131230863;
// aapt resource value: 0x7F080090
- public const int btn_r1_retry_dis = 2131230864;
+ public const int btn_collect_prs = 2131230864;
// aapt resource value: 0x7F080091
- public const int btn_r1_retry_normal = 2131230865;
+ public const int btn_disagree = 2131230865;
// aapt resource value: 0x7F080092
- public const int btn_r1_retry_pressed = 2131230866;
+ public const int btn_r1_retry_dis = 2131230866;
// aapt resource value: 0x7F080093
- public const int btn_r1_retry_selector = 2131230867;
+ public const int btn_r1_retry_normal = 2131230867;
// aapt resource value: 0x7F080094
- public const int btn_style_alert_dialog_special_normal = 2131230868;
+ public const int btn_r1_retry_pressed = 2131230868;
// aapt resource value: 0x7F080095
- public const int btn_style_alert_dialog_special_pressed = 2131230869;
+ public const int btn_r1_retry_selector = 2131230869;
// aapt resource value: 0x7F080096
- public const int btn_style_one_disabled = 2131230870;
+ public const int btn_style_alert_dialog_special_normal = 2131230870;
// aapt resource value: 0x7F080097
- public const int btn_style_one_focused = 2131230871;
+ public const int btn_style_alert_dialog_special_pressed = 2131230871;
// aapt resource value: 0x7F080098
- public const int btn_style_one_normal = 2131230872;
+ public const int btn_style_one_disabled = 2131230872;
// aapt resource value: 0x7F080099
- public const int btn_style_one_pressed = 2131230873;
+ public const int btn_style_one_focused = 2131230873;
// aapt resource value: 0x7F08009A
- public const int btn_white_selector = 2131230874;
+ public const int btn_style_one_normal = 2131230874;
// aapt resource value: 0x7F08009B
- public const int c3w_250 = 2131230875;
+ public const int btn_style_one_pressed = 2131230875;
// aapt resource value: 0x7F08009C
- public const int c6c_250_1080 = 2131230876;
+ public const int btn_white_selector = 2131230876;
// aapt resource value: 0x7F08009D
- public const int c6c_250_720 = 2131230877;
+ public const int c3w_250 = 2131230877;
// aapt resource value: 0x7F08009E
- public const int c6h_250 = 2131230878;
+ public const int c6c_250_1080 = 2131230878;
// aapt resource value: 0x7F08009F
- public const int c6p_250 = 2131230879;
+ public const int c6c_250_720 = 2131230879;
// aapt resource value: 0x7F0800A0
- public const int c6p_bg = 2131230880;
+ public const int c6h_250 = 2131230880;
// aapt resource value: 0x7F0800A1
- public const int calendar_date_sel = 2131230881;
+ public const int c6p_250 = 2131230881;
// aapt resource value: 0x7F0800A2
- public const int calendar_date_today = 2131230882;
-
- // aapt resource value: 0x7F0800AA
- public const int cameralist_add_camer_btn = 2131230890;
-
- // aapt resource value: 0x7F0800AB
- public const int cameralist_add_camer_btn_sel = 2131230891;
-
- // aapt resource value: 0x7F0800AC
- public const int cameralist_button_selector = 2131230892;
-
- // aapt resource value: 0x7F0800AD
- public const int cameralist_history_video_selector = 2131230893;
-
- // aapt resource value: 0x7F0800AE
- public const int cameralist_item_selector = 2131230894;
+ public const int c6p_bg = 2131230882;
// aapt resource value: 0x7F0800A3
- public const int camera_crop_height = 2131230883;
+ public const int calendar_date_sel = 2131230883;
// aapt resource value: 0x7F0800A4
- public const int camera_crop_width = 2131230884;
+ public const int calendar_date_today = 2131230884;
- // aapt resource value: 0x7F0800A5
- public const int camera_focus_ring_fail = 2131230885;
+ // aapt resource value: 0x7F0800AC
+ public const int cameralist_add_camer_btn = 2131230892;
- // aapt resource value: 0x7F0800A6
- public const int camera_focus_ring_success = 2131230886;
+ // aapt resource value: 0x7F0800AD
+ public const int cameralist_add_camer_btn_sel = 2131230893;
- // aapt resource value: 0x7F0800A7
- public const int camera_list_item = 2131230887;
-
- // aapt resource value: 0x7F0800A8
- public const int camera_list_item_press = 2131230888;
-
- // aapt resource value: 0x7F0800A9
- public const int camera_list_refresh = 2131230889;
+ // aapt resource value: 0x7F0800AE
+ public const int cameralist_button_selector = 2131230894;
// aapt resource value: 0x7F0800AF
- public const int capture = 2131230895;
-
- // aapt resource value: 0x7F0800B2
- public const int capturebtn_selector = 2131230898;
+ public const int cameralist_history_video_selector = 2131230895;
// aapt resource value: 0x7F0800B0
- public const int capture_disable = 2131230896;
+ public const int cameralist_item_selector = 2131230896;
+
+ // aapt resource value: 0x7F0800A5
+ public const int camera_crop_height = 2131230885;
+
+ // aapt resource value: 0x7F0800A6
+ public const int camera_crop_width = 2131230886;
+
+ // aapt resource value: 0x7F0800A7
+ public const int camera_focus_ring_fail = 2131230887;
+
+ // aapt resource value: 0x7F0800A8
+ public const int camera_focus_ring_success = 2131230888;
+
+ // aapt resource value: 0x7F0800A9
+ public const int camera_list_item = 2131230889;
+
+ // aapt resource value: 0x7F0800AA
+ public const int camera_list_item_press = 2131230890;
+
+ // aapt resource value: 0x7F0800AB
+ public const int camera_list_refresh = 2131230891;
// aapt resource value: 0x7F0800B1
- public const int capture_press = 2131230897;
-
- // aapt resource value: 0x7F0800B3
- public const int cc_bg_black_round = 2131230899;
-
- // aapt resource value: 0x7F0800B5
- public const int @checked = 2131230901;
+ public const int capture = 2131230897;
// aapt resource value: 0x7F0800B4
- public const int check_selector = 2131230900;
+ public const int capturebtn_selector = 2131230900;
- // aapt resource value: 0x7F0800B6
- public const int circle_roate_drawable = 2131230902;
+ // aapt resource value: 0x7F0800B2
+ public const int capture_disable = 2131230898;
+
+ // aapt resource value: 0x7F0800B3
+ public const int capture_press = 2131230899;
+
+ // aapt resource value: 0x7F0800B5
+ public const int cc_bg_black_round = 2131230901;
// aapt resource value: 0x7F0800B7
- public const int ckb_normal = 2131230903;
+ public const int @checked = 2131230903;
+
+ // aapt resource value: 0x7F0800B6
+ public const int check_selector = 2131230902;
// aapt resource value: 0x7F0800B8
- public const int ckb_selected = 2131230904;
+ public const int circle_roate_drawable = 2131230904;
// aapt resource value: 0x7F0800B9
- public const int ckb_selector = 2131230905;
+ public const int ckb_normal = 2131230905;
// aapt resource value: 0x7F0800BA
- public const int cloud_ad = 2131230906;
+ public const int ckb_selected = 2131230906;
// aapt resource value: 0x7F0800BB
- public const int code = 2131230907;
+ public const int ckb_selector = 2131230907;
// aapt resource value: 0x7F0800BC
- public const int collect_btn_selector = 2131230908;
+ public const int cloud_ad = 2131230908;
// aapt resource value: 0x7F0800BD
- public const int collect_loading = 2131230909;
+ public const int code = 2131230909;
// aapt resource value: 0x7F0800BE
- public const int common_loading = 2131230910;
+ public const int collect_btn_selector = 2131230910;
// aapt resource value: 0x7F0800BF
- public const int common_loading_indeterminate = 2131230911;
+ public const int collect_loading = 2131230911;
// aapt resource value: 0x7F0800C0
- public const int common_number_bg = 2131230912;
+ public const int common_loading = 2131230912;
// aapt resource value: 0x7F0800C1
- public const int common_refresh = 2131230913;
+ public const int common_loading_indeterminate = 2131230913;
// aapt resource value: 0x7F0800C2
- public const int common_refresh_indeterminate = 2131230914;
+ public const int common_number_bg = 2131230914;
// aapt resource value: 0x7F0800C3
- public const int common_title = 2131230915;
+ public const int common_refresh = 2131230915;
// aapt resource value: 0x7F0800C4
- public const int common_title_back = 2131230916;
+ public const int common_refresh_indeterminate = 2131230916;
// aapt resource value: 0x7F0800C5
- public const int common_title_back_dark = 2131230917;
+ public const int common_title = 2131230917;
// aapt resource value: 0x7F0800C6
- public const int common_title_back_sel = 2131230918;
+ public const int common_title_back = 2131230918;
// aapt resource value: 0x7F0800C7
- public const int common_title_back_selector = 2131230919;
+ public const int common_title_back_dark = 2131230919;
// aapt resource value: 0x7F0800C8
- public const int common_title_cancel = 2131230920;
+ public const int common_title_back_sel = 2131230920;
// aapt resource value: 0x7F0800C9
- public const int common_title_cancel_sel = 2131230921;
+ public const int common_title_back_selector = 2131230921;
// aapt resource value: 0x7F0800CA
- public const int common_title_cancel_selector = 2131230922;
+ public const int common_title_cancel = 2131230922;
// aapt resource value: 0x7F0800CB
- public const int common_title_confirm = 2131230923;
+ public const int common_title_cancel_sel = 2131230923;
// aapt resource value: 0x7F0800CC
- public const int common_title_confirm_dis = 2131230924;
+ public const int common_title_cancel_selector = 2131230924;
// aapt resource value: 0x7F0800CD
- public const int common_title_confirm_sel = 2131230925;
+ public const int common_title_confirm = 2131230925;
// aapt resource value: 0x7F0800CE
- public const int common_title_input = 2131230926;
+ public const int common_title_confirm_dis = 2131230926;
// aapt resource value: 0x7F0800CF
- public const int common_title_input_sel = 2131230927;
+ public const int common_title_confirm_sel = 2131230927;
// aapt resource value: 0x7F0800D0
- public const int common_title_input_selector = 2131230928;
+ public const int common_title_input = 2131230928;
// aapt resource value: 0x7F0800D1
- public const int common_title_more = 2131230929;
+ public const int common_title_input_sel = 2131230929;
// aapt resource value: 0x7F0800D2
- public const int common_title_more_sel = 2131230930;
+ public const int common_title_input_selector = 2131230930;
// aapt resource value: 0x7F0800D3
- public const int common_title_refresh = 2131230931;
+ public const int common_title_more = 2131230931;
// aapt resource value: 0x7F0800D4
- public const int common_title_setup = 2131230932;
+ public const int common_title_more_sel = 2131230932;
// aapt resource value: 0x7F0800D5
- public const int common_title_setup_dis = 2131230933;
+ public const int common_title_refresh = 2131230933;
// aapt resource value: 0x7F0800D6
- public const int common_title_setup_sel = 2131230934;
+ public const int common_title_setup = 2131230934;
// aapt resource value: 0x7F0800D7
- public const int common_title_setup_selector = 2131230935;
+ public const int common_title_setup_dis = 2131230935;
// aapt resource value: 0x7F0800D8
- public const int common_title_share = 2131230936;
+ public const int common_title_setup_sel = 2131230936;
// aapt resource value: 0x7F0800D9
- public const int common_title_share_dark = 2131230937;
+ public const int common_title_setup_selector = 2131230937;
// aapt resource value: 0x7F0800DA
- public const int common_title_share_sel = 2131230938;
+ public const int common_title_share = 2131230938;
// aapt resource value: 0x7F0800DB
- public const int common_title_vertical_more = 2131230939;
+ public const int common_title_share_dark = 2131230939;
// aapt resource value: 0x7F0800DC
- public const int common_title_vertical_more_dark = 2131230940;
+ public const int common_title_share_sel = 2131230940;
// aapt resource value: 0x7F0800DD
- public const int common_title_vertical_more_dark_dis = 2131230941;
+ public const int common_title_vertical_more = 2131230941;
// aapt resource value: 0x7F0800DE
- public const int common_title_vertical_more_dark_selector = 2131230942;
+ public const int common_title_vertical_more_dark = 2131230942;
// aapt resource value: 0x7F0800DF
- public const int common_title_vertical_more_sel = 2131230943;
+ public const int common_title_vertical_more_dark_dis = 2131230943;
// aapt resource value: 0x7F0800E0
- public const int connect_img1 = 2131230944;
+ public const int common_title_vertical_more_dark_selector = 2131230944;
// aapt resource value: 0x7F0800E1
- public const int connect_img2 = 2131230945;
+ public const int common_title_vertical_more_sel = 2131230945;
// aapt resource value: 0x7F0800E2
- public const int connect_reset = 2131230946;
+ public const int connect_img1 = 2131230946;
// aapt resource value: 0x7F0800E3
- public const int connect_wifi1 = 2131230947;
+ public const int connect_img2 = 2131230947;
// aapt resource value: 0x7F0800E4
- public const int connect_wifi2 = 2131230948;
+ public const int connect_reset = 2131230948;
// aapt resource value: 0x7F0800E5
- public const int connect_wifi3 = 2131230949;
+ public const int connect_wifi1 = 2131230949;
// aapt resource value: 0x7F0800E6
- public const int connect_wifi4 = 2131230950;
+ public const int connect_wifi2 = 2131230950;
// aapt resource value: 0x7F0800E7
- public const int connect_wifi_bg = 2131230951;
+ public const int connect_wifi3 = 2131230951;
// aapt resource value: 0x7F0800E8
- public const int control_bar_bg = 2131230952;
+ public const int connect_wifi4 = 2131230952;
// aapt resource value: 0x7F0800E9
- public const int decode_failed_tip_bg = 2131230953;
+ public const int connect_wifi_bg = 2131230953;
// aapt resource value: 0x7F0800EA
- public const int defalut_alarm = 2131230954;
+ public const int control_bar_bg = 2131230954;
// aapt resource value: 0x7F0800EB
- public const int default_cover_02 = 2131230955;
+ public const int decode_failed_tip_bg = 2131230955;
// aapt resource value: 0x7F0800EC
- public const int default_figure = 2131230956;
+ public const int defalut_alarm = 2131230956;
// aapt resource value: 0x7F0800ED
- public const int del_button = 2131230957;
+ public const int default_cover_02 = 2131230957;
// aapt resource value: 0x7F0800EE
- public const int del_button_dis = 2131230958;
+ public const int default_figure = 2131230958;
// aapt resource value: 0x7F0800EF
- public const int del_button_sel = 2131230959;
+ public const int del_button = 2131230959;
// aapt resource value: 0x7F0800F0
- public const int del_button_selector = 2131230960;
+ public const int del_button_dis = 2131230960;
// aapt resource value: 0x7F0800F1
- public const int design_bottom_navigation_item_background = 2131230961;
+ public const int del_button_sel = 2131230961;
// aapt resource value: 0x7F0800F2
- public const int design_fab_background = 2131230962;
+ public const int del_button_selector = 2131230962;
// aapt resource value: 0x7F0800F3
- public const int design_ic_visibility = 2131230963;
+ public const int design_bottom_navigation_item_background = 2131230963;
// aapt resource value: 0x7F0800F4
- public const int design_ic_visibility_off = 2131230964;
+ public const int design_fab_background = 2131230964;
// aapt resource value: 0x7F0800F5
- public const int design_password_eye = 2131230965;
+ public const int design_ic_visibility = 2131230965;
// aapt resource value: 0x7F0800F6
- public const int design_snackbar_background = 2131230966;
+ public const int design_ic_visibility_off = 2131230966;
// aapt resource value: 0x7F0800F7
- public const int device_16_nvr_bg = 2131230967;
+ public const int design_password_eye = 2131230967;
// aapt resource value: 0x7F0800F8
- public const int device_4_dvr_bg = 2131230968;
+ public const int design_snackbar_background = 2131230968;
// aapt resource value: 0x7F0800F9
- public const int device_4_nvr_bg = 2131230969;
+ public const int device_16_nvr_bg = 2131230969;
// aapt resource value: 0x7F0800FA
- public const int device_5k_vr104d = 2131230970;
+ public const int device_4_dvr_bg = 2131230970;
// aapt resource value: 0x7F0800FB
- public const int device_5k_vr104d_bg = 2131230971;
+ public const int device_4_nvr_bg = 2131230971;
// aapt resource value: 0x7F0800FC
- public const int device_5k_vr116d = 2131230972;
+ public const int device_5k_vr104d = 2131230972;
// aapt resource value: 0x7F0800FD
- public const int device_5k_vr116d_bg = 2131230973;
+ public const int device_5k_vr104d_bg = 2131230973;
// aapt resource value: 0x7F0800FE
- public const int device_8_16dvr_bg = 2131230974;
+ public const int device_5k_vr116d = 2131230974;
// aapt resource value: 0x7F0800FF
- public const int device_a1 = 2131230975;
-
- // aapt resource value: 0x7F080101
- public const int device_a1c = 2131230977;
-
- // aapt resource value: 0x7F080102
- public const int device_a1c_bg = 2131230978;
-
- // aapt resource value: 0x7F080103
- public const int device_a1s = 2131230979;
-
- // aapt resource value: 0x7F080104
- public const int device_a1s_bg = 2131230980;
+ public const int device_5k_vr116d_bg = 2131230975;
// aapt resource value: 0x7F080100
- public const int device_a1_bg = 2131230976;
+ public const int device_8_16dvr_bg = 2131230976;
+
+ // aapt resource value: 0x7F080101
+ public const int device_a1 = 2131230977;
+
+ // aapt resource value: 0x7F080103
+ public const int device_a1c = 2131230979;
+
+ // aapt resource value: 0x7F080104
+ public const int device_a1c_bg = 2131230980;
// aapt resource value: 0x7F080105
- public const int device_alertor = 2131230981;
+ public const int device_a1s = 2131230981;
// aapt resource value: 0x7F080106
- public const int device_baidu_c2s = 2131230982;
+ public const int device_a1s_bg = 2131230982;
+
+ // aapt resource value: 0x7F080102
+ public const int device_a1_bg = 2131230978;
// aapt resource value: 0x7F080107
- public const int device_c1 = 2131230983;
+ public const int device_alertor = 2131230983;
// aapt resource value: 0x7F080108
- public const int device_c1_rotate = 2131230984;
+ public const int device_baidu_c2s = 2131230984;
// aapt resource value: 0x7F080109
- public const int device_c2 = 2131230985;
-
- // aapt resource value: 0x7F08010C
- public const int device_c2c = 2131230988;
-
- // aapt resource value: 0x7F08010D
- public const int device_c2mini = 2131230989;
-
- // aapt resource value: 0x7F08010E
- public const int device_c2mini2 = 2131230990;
-
- // aapt resource value: 0x7F08010F
- public const int device_c2plus = 2131230991;
-
- // aapt resource value: 0x7F080110
- public const int device_c2plus_bg = 2131230992;
-
- // aapt resource value: 0x7F080111
- public const int device_c2s = 2131230993;
-
- // aapt resource value: 0x7F080112
- public const int device_c2w = 2131230994;
+ public const int device_c1 = 2131230985;
// aapt resource value: 0x7F08010A
- public const int device_c2_2 = 2131230986;
+ public const int device_c1_rotate = 2131230986;
// aapt resource value: 0x7F08010B
- public const int device_c2_usa = 2131230987;
+ public const int device_c2 = 2131230987;
+
+ // aapt resource value: 0x7F08010E
+ public const int device_c2c = 2131230990;
+
+ // aapt resource value: 0x7F08010F
+ public const int device_c2mini = 2131230991;
+
+ // aapt resource value: 0x7F080110
+ public const int device_c2mini2 = 2131230992;
+
+ // aapt resource value: 0x7F080111
+ public const int device_c2plus = 2131230993;
+
+ // aapt resource value: 0x7F080112
+ public const int device_c2plus_bg = 2131230994;
// aapt resource value: 0x7F080113
- public const int device_c3 = 2131230995;
+ public const int device_c2s = 2131230995;
// aapt resource value: 0x7F080114
- public const int device_c3c = 2131230996;
+ public const int device_c2w = 2131230996;
+
+ // aapt resource value: 0x7F08010C
+ public const int device_c2_2 = 2131230988;
+
+ // aapt resource value: 0x7F08010D
+ public const int device_c2_usa = 2131230989;
// aapt resource value: 0x7F080115
- public const int device_c3e = 2131230997;
+ public const int device_c3 = 2131230997;
// aapt resource value: 0x7F080116
- public const int device_c3e_bg = 2131230998;
+ public const int device_c3c = 2131230998;
// aapt resource value: 0x7F080117
- public const int device_c3s = 2131230999;
+ public const int device_c3e = 2131230999;
// aapt resource value: 0x7F080118
- public const int device_c4 = 2131231000;
+ public const int device_c3e_bg = 2131231000;
// aapt resource value: 0x7F080119
- public const int device_c4c = 2131231001;
+ public const int device_c3s = 2131231001;
// aapt resource value: 0x7F08011A
- public const int device_c4c_bg = 2131231002;
+ public const int device_c4 = 2131231002;
// aapt resource value: 0x7F08011B
- public const int device_c4e = 2131231003;
+ public const int device_c4c = 2131231003;
// aapt resource value: 0x7F08011C
- public const int device_c4e_bg = 2131231004;
+ public const int device_c4c_bg = 2131231004;
// aapt resource value: 0x7F08011D
- public const int device_c4s = 2131231005;
+ public const int device_c4e = 2131231005;
// aapt resource value: 0x7F08011E
- public const int device_c6 = 2131231006;
+ public const int device_c4e_bg = 2131231006;
// aapt resource value: 0x7F08011F
- public const int device_c6c = 2131231007;
+ public const int device_c4s = 2131231007;
// aapt resource value: 0x7F080120
- public const int device_c6c_1 = 2131231008;
+ public const int device_c6 = 2131231008;
// aapt resource value: 0x7F080121
- public const int device_c6c_2 = 2131231009;
+ public const int device_c6c = 2131231009;
// aapt resource value: 0x7F080122
- public const int device_c6h = 2131231010;
+ public const int device_c6c_1 = 2131231010;
// aapt resource value: 0x7F080123
- public const int device_c6p = 2131231011;
+ public const int device_c6c_2 = 2131231011;
// aapt resource value: 0x7F080124
- public const int device_c6t_bg = 2131231012;
+ public const int device_c6h = 2131231012;
// aapt resource value: 0x7F080125
- public const int device_callhelp = 2131231013;
+ public const int device_c6p = 2131231013;
// aapt resource value: 0x7F080126
- public const int device_co2 = 2131231014;
+ public const int device_c6t_bg = 2131231014;
// aapt resource value: 0x7F080127
- public const int device_cs_c3w = 2131231015;
+ public const int device_callhelp = 2131231015;
// aapt resource value: 0x7F080128
- public const int device_cs_vr104d = 2131231016;
+ public const int device_co2 = 2131231016;
// aapt resource value: 0x7F080129
- public const int device_cs_vr108d = 2131231017;
+ public const int device_cs_c3w = 2131231017;
// aapt resource value: 0x7F08012A
- public const int device_cs_vr116d = 2131231018;
+ public const int device_cs_vr104d = 2131231018;
// aapt resource value: 0x7F08012B
- public const int device_curtain = 2131231019;
+ public const int device_cs_vr108d = 2131231019;
// aapt resource value: 0x7F08012C
- public const int device_d1 = 2131231020;
+ public const int device_cs_vr116d = 2131231020;
// aapt resource value: 0x7F08012D
- public const int device_d1_bg = 2131231021;
+ public const int device_curtain = 2131231021;
// aapt resource value: 0x7F08012E
- public const int device_default_details = 2131231022;
+ public const int device_d1 = 2131231022;
// aapt resource value: 0x7F08012F
- public const int device_dh1 = 2131231023;
+ public const int device_d1_bg = 2131231023;
// aapt resource value: 0x7F080130
- public const int device_door = 2131231024;
+ public const int device_default_details = 2131231024;
// aapt resource value: 0x7F080131
- public const int device_doorbell = 2131231025;
+ public const int device_dh1 = 2131231025;
// aapt resource value: 0x7F080132
- public const int device_doorbell_hik = 2131231026;
+ public const int device_door = 2131231026;
// aapt resource value: 0x7F080133
- public const int device_dvr = 2131231027;
+ public const int device_doorbell = 2131231027;
// aapt resource value: 0x7F080134
- public const int device_f1 = 2131231028;
+ public const int device_doorbell_hik = 2131231028;
// aapt resource value: 0x7F080135
- public const int device_gas = 2131231029;
+ public const int device_dvr = 2131231029;
// aapt resource value: 0x7F080136
- public const int device_h2c = 2131231030;
+ public const int device_f1 = 2131231030;
// aapt resource value: 0x7F080137
- public const int device_h2s = 2131231031;
+ public const int device_gas = 2131231031;
// aapt resource value: 0x7F080138
- public const int device_infrared = 2131231032;
+ public const int device_h2c = 2131231032;
// aapt resource value: 0x7F080139
- public const int device_ipc_dome = 2131231033;
+ public const int device_h2s = 2131231033;
// aapt resource value: 0x7F08013A
- public const int device_keyboard = 2131231034;
+ public const int device_infrared = 2131231034;
// aapt resource value: 0x7F08013B
- public const int device_light = 2131231035;
+ public const int device_ipc_dome = 2131231035;
// aapt resource value: 0x7F08013C
- public const int device_mini_360_plus = 2131231036;
+ public const int device_keyboard = 2131231036;
// aapt resource value: 0x7F08013D
- public const int device_mini_trooper = 2131231037;
+ public const int device_light = 2131231037;
// aapt resource value: 0x7F08013E
- public const int device_move_magnetometer = 2131231038;
+ public const int device_mini_360_plus = 2131231038;
// aapt resource value: 0x7F08013F
- public const int device_n1 = 2131231039;
+ public const int device_mini_trooper = 2131231039;
// aapt resource value: 0x7F080140
- public const int device_n1w = 2131231040;
+ public const int device_move_magnetometer = 2131231040;
// aapt resource value: 0x7F080141
- public const int device_n1w_bg = 2131231041;
+ public const int device_n1 = 2131231041;
// aapt resource value: 0x7F080142
- public const int device_normal = 2131231042;
+ public const int device_n1w = 2131231042;
// aapt resource value: 0x7F080143
- public const int device_offline = 2131231043;
+ public const int device_n1w_bg = 2131231043;
// aapt resource value: 0x7F080144
- public const int device_other = 2131231044;
+ public const int device_normal = 2131231044;
// aapt resource value: 0x7F080145
- public const int device_pic_4_dvr = 2131231045;
+ public const int device_offline = 2131231045;
// aapt resource value: 0x7F080146
- public const int device_pic_4_nvr = 2131231046;
+ public const int device_other = 2131231046;
// aapt resource value: 0x7F080147
- public const int device_pic_8_16_dvr = 2131231047;
+ public const int device_pic_4_dvr = 2131231047;
// aapt resource value: 0x7F080148
- public const int device_pic_8_16_nvr = 2131231048;
+ public const int device_pic_4_nvr = 2131231048;
// aapt resource value: 0x7F080149
- public const int device_r1 = 2131231049;
+ public const int device_pic_8_16_dvr = 2131231049;
// aapt resource value: 0x7F08014A
- public const int device_r1_bg = 2131231050;
+ public const int device_pic_8_16_nvr = 2131231050;
// aapt resource value: 0x7F08014B
- public const int device_r2 = 2131231051;
+ public const int device_r1 = 2131231051;
// aapt resource value: 0x7F08014C
- public const int device_r2_bg = 2131231052;
+ public const int device_r1_bg = 2131231052;
// aapt resource value: 0x7F08014D
- public const int device_remote = 2131231053;
+ public const int device_r2 = 2131231053;
// aapt resource value: 0x7F08014E
- public const int device_smoke = 2131231054;
+ public const int device_r2_bg = 2131231054;
// aapt resource value: 0x7F08014F
- public const int device_vr104d_bg = 2131231055;
+ public const int device_remote = 2131231055;
// aapt resource value: 0x7F080150
- public const int device_vr108d_bg = 2131231056;
+ public const int device_smoke = 2131231056;
// aapt resource value: 0x7F080151
- public const int device_vr116d_bg = 2131231057;
+ public const int device_vr104d_bg = 2131231057;
// aapt resource value: 0x7F080152
- public const int device_w1 = 2131231058;
+ public const int device_vr108d_bg = 2131231058;
// aapt resource value: 0x7F080153
- public const int device_w2d = 2131231059;
+ public const int device_vr116d_bg = 2131231059;
// aapt resource value: 0x7F080154
- public const int device_w2d_bg = 2131231060;
+ public const int device_w1 = 2131231060;
// aapt resource value: 0x7F080155
- public const int device_w2s = 2131231061;
+ public const int device_w2d = 2131231061;
// aapt resource value: 0x7F080156
- public const int device_w2s_bg = 2131231062;
+ public const int device_w2d_bg = 2131231062;
// aapt resource value: 0x7F080157
- public const int device_w3 = 2131231063;
+ public const int device_w2s = 2131231063;
// aapt resource value: 0x7F080158
- public const int device_w3_details = 2131231064;
+ public const int device_w2s_bg = 2131231064;
// aapt resource value: 0x7F080159
- public const int device_water = 2131231065;
+ public const int device_w3 = 2131231065;
// aapt resource value: 0x7F08015A
- public const int device_wifi = 2131231066;
+ public const int device_w3_details = 2131231066;
// aapt resource value: 0x7F08015B
- public const int device_wifi2 = 2131231067;
+ public const int device_water = 2131231067;
// aapt resource value: 0x7F08015C
- public const int device_wifi3 = 2131231068;
+ public const int device_wifi = 2131231068;
// aapt resource value: 0x7F08015D
- public const int device_wlb = 2131231069;
+ public const int device_wifi2 = 2131231069;
// aapt resource value: 0x7F08015E
- public const int device_wlb_bg = 2131231070;
+ public const int device_wifi3 = 2131231070;
// aapt resource value: 0x7F08015F
- public const int device_x1 = 2131231071;
+ public const int device_wlb = 2131231071;
// aapt resource value: 0x7F080160
- public const int device_x1_bg = 2131231072;
+ public const int device_wlb_bg = 2131231072;
// aapt resource value: 0x7F080161
- public const int device_x2 = 2131231073;
+ public const int device_x1 = 2131231073;
// aapt resource value: 0x7F080162
- public const int device_x2_bg = 2131231074;
+ public const int device_x1_bg = 2131231074;
// aapt resource value: 0x7F080163
- public const int device_x3 = 2131231075;
-
- // aapt resource value: 0x7F080165
- public const int device_x3c = 2131231077;
-
- // aapt resource value: 0x7F080166
- public const int device_x3c_bg = 2131231078;
+ public const int device_x2 = 2131231075;
// aapt resource value: 0x7F080164
- public const int device_x3_bg = 2131231076;
+ public const int device_x2_bg = 2131231076;
+
+ // aapt resource value: 0x7F080165
+ public const int device_x3 = 2131231077;
// aapt resource value: 0x7F080167
- public const int device_x4 = 2131231079;
+ public const int device_x3c = 2131231079;
// aapt resource value: 0x7F080168
- public const int device_x4_bg = 2131231080;
+ public const int device_x3c_bg = 2131231080;
- // aapt resource value: 0x7F08016B
- public const int device_x5c = 2131231083;
-
- // aapt resource value: 0x7F08016C
- public const int device_x5c_bg = 2131231084;
+ // aapt resource value: 0x7F080166
+ public const int device_x3_bg = 2131231078;
// aapt resource value: 0x7F080169
- public const int device_x5_108tp = 2131231081;
+ public const int device_x4 = 2131231081;
// aapt resource value: 0x7F08016A
- public const int device_x5_108tp_bg = 2131231082;
+ public const int device_x4_bg = 2131231082;
// aapt resource value: 0x7F08016D
- public const int device_z1 = 2131231085;
+ public const int device_x5c = 2131231085;
// aapt resource value: 0x7F08016E
- public const int dialog_background = 2131231086;
+ public const int device_x5c_bg = 2131231086;
+
+ // aapt resource value: 0x7F08016B
+ public const int device_x5_108tp = 2131231083;
+
+ // aapt resource value: 0x7F08016C
+ public const int device_x5_108tp_bg = 2131231084;
// aapt resource value: 0x7F08016F
- public const int display_frame = 2131231087;
-
- // aapt resource value: 0x7F080172
- public const int download8 = 2131231090;
+ public const int device_z1 = 2131231087;
// aapt resource value: 0x7F080170
- public const int down_horizontal = 2131231088;
+ public const int dialog_background = 2131231088;
// aapt resource value: 0x7F080171
- public const int down_twinkle = 2131231089;
+ public const int dialog_background2 = 2131231089;
- // aapt resource value: 0x7F080173
- public const int edittext_bg = 2131231091;
-
- // aapt resource value: 0x7F080174
- public const int edittext_del = 2131231092;
+ // aapt resource value: 0x7F080172
+ public const int display_frame = 2131231090;
// aapt resource value: 0x7F080175
- public const int edittext_del_sel = 2131231093;
+ public const int download8 = 2131231093;
+
+ // aapt resource value: 0x7F080173
+ public const int down_horizontal = 2131231091;
+
+ // aapt resource value: 0x7F080174
+ public const int down_twinkle = 2131231092;
// aapt resource value: 0x7F080176
- public const int equipment = 2131231094;
+ public const int edittext_bg = 2131231094;
// aapt resource value: 0x7F080177
- public const int equipment_sel = 2131231095;
+ public const int edittext_del = 2131231095;
// aapt resource value: 0x7F080178
- public const int equipment_selector = 2131231096;
+ public const int edittext_del_sel = 2131231096;
// aapt resource value: 0x7F080179
- public const int event_list_fail_pic = 2131231097;
+ public const int equipment = 2131231097;
// aapt resource value: 0x7F08017A
- public const int exit = 2131231098;
+ public const int equipment_sel = 2131231098;
// aapt resource value: 0x7F08017B
- public const int exit_sel = 2131231099;
+ public const int equipment_selector = 2131231099;
// aapt resource value: 0x7F08017C
- public const int exit_selector = 2131231100;
+ public const int event_list_fail_pic = 2131231100;
// aapt resource value: 0x7F08017D
- public const int expression_del = 2131231101;
+ public const int exit = 2131231101;
// aapt resource value: 0x7F08017E
- public const int expression_del_sel = 2131231102;
-
- // aapt resource value: 0x7F080188
- public const int ezopen_vertical_preview_sound_off_selector = 2131231112;
-
- // aapt resource value: 0x7F080189
- public const int ezopen_vertical_preview_sound_selector = 2131231113;
+ public const int exit_sel = 2131231102;
// aapt resource value: 0x7F08017F
- public const int ez_border = 2131231103;
+ public const int exit_selector = 2131231103;
// aapt resource value: 0x7F080180
- public const int ez_border_selector = 2131231104;
+ public const int expression_del = 2131231104;
// aapt resource value: 0x7F080181
- public const int ez_btn_r1_retry_selector = 2131231105;
-
- // aapt resource value: 0x7F080182
- public const int ez_leave_message_play_selector = 2131231106;
-
- // aapt resource value: 0x7F080183
- public const int ez_play_video_selector = 2131231107;
-
- // aapt resource value: 0x7F080184
- public const int ez_real_play = 2131231108;
-
- // aapt resource value: 0x7F080185
- public const int ez_real_play_sel = 2131231109;
-
- // aapt resource value: 0x7F080186
- public const int ez_reaty_btn_selector = 2131231110;
-
- // aapt resource value: 0x7F080187
- public const int ez_remote_list_pause_btn_selector = 2131231111;
-
- // aapt resource value: 0x7F08018A
- public const int face_image3 = 2131231114;
+ public const int expression_del_sel = 2131231105;
// aapt resource value: 0x7F08018B
- public const int face_rect = 2131231115;
+ public const int ezopen_vertical_preview_sound_off_selector = 2131231115;
// aapt resource value: 0x7F08018C
- public const int failure_account = 2131231116;
+ public const int ezopen_vertical_preview_sound_selector = 2131231116;
+
+ // aapt resource value: 0x7F080182
+ public const int ez_border = 2131231106;
+
+ // aapt resource value: 0x7F080183
+ public const int ez_border_selector = 2131231107;
+
+ // aapt resource value: 0x7F080184
+ public const int ez_btn_r1_retry_selector = 2131231108;
+
+ // aapt resource value: 0x7F080185
+ public const int ez_leave_message_play_selector = 2131231109;
+
+ // aapt resource value: 0x7F080186
+ public const int ez_play_video_selector = 2131231110;
+
+ // aapt resource value: 0x7F080187
+ public const int ez_real_play = 2131231111;
+
+ // aapt resource value: 0x7F080188
+ public const int ez_real_play_sel = 2131231112;
+
+ // aapt resource value: 0x7F080189
+ public const int ez_reaty_btn_selector = 2131231113;
+
+ // aapt resource value: 0x7F08018A
+ public const int ez_remote_list_pause_btn_selector = 2131231114;
// aapt resource value: 0x7F08018D
- public const int failure_server = 2131231117;
+ public const int face_image3 = 2131231117;
// aapt resource value: 0x7F08018E
- public const int failure_wifi = 2131231118;
+ public const int face_rect = 2131231118;
// aapt resource value: 0x7F08018F
- public const int fingerprint_draw_off = 2131231119;
+ public const int failure_account = 2131231119;
// aapt resource value: 0x7F080190
- public const int fingerprint_draw_off_animation = 2131231120;
+ public const int failure_server = 2131231120;
// aapt resource value: 0x7F080191
- public const int fingerprint_draw_on = 2131231121;
+ public const int failure_wifi = 2131231121;
// aapt resource value: 0x7F080192
- public const int fingerprint_draw_on_animation = 2131231122;
+ public const int fingerprint_draw_off = 2131231122;
// aapt resource value: 0x7F080193
- public const int fingerprint_error = 2131231123;
+ public const int fingerprint_draw_off_animation = 2131231123;
// aapt resource value: 0x7F080194
- public const int fingerprint_error_off = 2131231124;
+ public const int fingerprint_draw_on = 2131231124;
// aapt resource value: 0x7F080195
- public const int fingerprint_error_off_animation = 2131231125;
+ public const int fingerprint_draw_on_animation = 2131231125;
// aapt resource value: 0x7F080196
- public const int fingerprint_error_on = 2131231126;
+ public const int fingerprint_error = 2131231126;
// aapt resource value: 0x7F080197
- public const int fingerprint_error_on_animation = 2131231127;
+ public const int fingerprint_error_off = 2131231127;
// aapt resource value: 0x7F080198
- public const int fingerprint_error_state_to_fp = 2131231128;
+ public const int fingerprint_error_off_animation = 2131231128;
// aapt resource value: 0x7F080199
- public const int fingerprint_error_state_to_fp_animation = 2131231129;
+ public const int fingerprint_error_on = 2131231129;
// aapt resource value: 0x7F08019A
- public const int fingerprint_fingerprint = 2131231130;
+ public const int fingerprint_error_on_animation = 2131231130;
// aapt resource value: 0x7F08019B
- public const int fingerprint_fp_to_error_state = 2131231131;
+ public const int fingerprint_error_state_to_fp = 2131231131;
// aapt resource value: 0x7F08019C
- public const int fingerprint_fp_to_error_state_animation = 2131231132;
+ public const int fingerprint_error_state_to_fp_animation = 2131231132;
// aapt resource value: 0x7F08019D
- public const int flashlight = 2131231133;
+ public const int fingerprint_fingerprint = 2131231133;
// aapt resource value: 0x7F08019E
- public const int flashlight_closed = 2131231134;
+ public const int fingerprint_fp_to_error_state = 2131231134;
// aapt resource value: 0x7F08019F
- public const int flashlight_selector = 2131231135;
+ public const int fingerprint_fp_to_error_state_animation = 2131231135;
// aapt resource value: 0x7F0801A0
- public const int fullscreen_button_selector = 2131231136;
+ public const int flashlight = 2131231136;
// aapt resource value: 0x7F0801A1
- public const int gd_btn_shape_app_b = 2131231137;
+ public const int flashlight_closed = 2131231137;
// aapt resource value: 0x7F0801A2
- public const int gd_btn_shape_app_g = 2131231138;
+ public const int flashlight_selector = 2131231138;
// aapt resource value: 0x7F0801A3
- public const int gd_btn_shape_app_w = 2131231139;
+ public const int fullscreen_button_selector = 2131231139;
// aapt resource value: 0x7F0801A4
- public const int gd_btn_shape_shadow_w = 2131231140;
+ public const int gd_btn_shape_app_b = 2131231140;
// aapt resource value: 0x7F0801A5
- public const int gd_click_effect_select = 2131231141;
+ public const int gd_btn_shape_app_g = 2131231141;
// aapt resource value: 0x7F0801A6
- public const int goback = 2131231142;
+ public const int gd_btn_shape_app_w = 2131231142;
// aapt resource value: 0x7F0801A7
- public const int goback_dis = 2131231143;
+ public const int gd_btn_shape_shadow_w = 2131231143;
// aapt resource value: 0x7F0801A8
- public const int goback_sel = 2131231144;
+ public const int gd_click_effect_select = 2131231144;
// aapt resource value: 0x7F0801A9
- public const int gohead = 2131231145;
+ public const int goback = 2131231145;
// aapt resource value: 0x7F0801AA
- public const int gohead_dis = 2131231146;
+ public const int goback_dis = 2131231146;
// aapt resource value: 0x7F0801AB
- public const int gohead_sel = 2131231147;
+ public const int goback_sel = 2131231147;
// aapt resource value: 0x7F0801AC
- public const int graybtn = 2131231148;
+ public const int gohead = 2131231148;
// aapt resource value: 0x7F0801AD
- public const int graybtn_press = 2131231149;
+ public const int gohead_dis = 2131231149;
// aapt resource value: 0x7F0801AE
- public const int graybtn_secetor = 2131231150;
+ public const int gohead_sel = 2131231150;
// aapt resource value: 0x7F0801AF
- public const int grouplayout_item_bg_selector = 2131231151;
-
- // aapt resource value: 0x7F0801B4
- public const int hangup = 2131231156;
-
- // aapt resource value: 0x7F0801B5
- public const int hide_bg2_1 = 2131231157;
-
- // aapt resource value: 0x7F0801B6
- public const int hide_bg2_2 = 2131231158;
-
- // aapt resource value: 0x7F0801B7
- public const int hide_bg2_3 = 2131231159;
-
- // aapt resource value: 0x7F0801B8
- public const int hide_bg2_4 = 2131231160;
-
- // aapt resource value: 0x7F0801B9
- public const int hide_bg2_5 = 2131231161;
-
- // aapt resource value: 0x7F0801BA
- public const int hide_bg2_6 = 2131231162;
-
- // aapt resource value: 0x7F0801BB
- public const int hide_bg2_7 = 2131231163;
-
- // aapt resource value: 0x7F0801BC
- public const int hide_bg2_8 = 2131231164;
-
- // aapt resource value: 0x7F0801BD
- public const int hide_bg2_9 = 2131231165;
-
- // aapt resource value: 0x7F0801BE
- public const int history_video = 2131231166;
-
- // aapt resource value: 0x7F0801BF
- public const int history_video_dis = 2131231167;
-
- // aapt resource value: 0x7F0801C0
- public const int history_video_sel = 2131231168;
-
- // aapt resource value: 0x7F0801C1
- public const int horizontal_fullscreen_button_selector = 2131231169;
-
- // aapt resource value: 0x7F0801C2
- public const int horizontal_shrink_screen_normal = 2131231170;
-
- // aapt resource value: 0x7F0801C3
- public const int horizontal_shrink_screen_pressed = 2131231171;
+ public const int graybtn = 2131231151;
// aapt resource value: 0x7F0801B0
- public const int h_bg = 2131231152;
+ public const int graybtn_press = 2131231152;
// aapt resource value: 0x7F0801B1
- public const int h_bg_sel = 2131231153;
+ public const int graybtn_secetor = 2131231153;
// aapt resource value: 0x7F0801B2
- public const int h_talk = 2131231154;
+ public const int grouplayout_item_bg_selector = 2131231154;
- // aapt resource value: 0x7F0801B3
- public const int h_talk_sel = 2131231155;
+ // aapt resource value: 0x7F0801B7
+ public const int hangup = 2131231159;
- // aapt resource value: 0x7F0801ED
- public const int icn_btn_bg_plus = 2131231213;
+ // aapt resource value: 0x7F0801B8
+ public const int hide_bg2_1 = 2131231160;
- // aapt resource value: 0x7F0801EE
- public const int Icon = 2131231214;
+ // aapt resource value: 0x7F0801B9
+ public const int hide_bg2_2 = 2131231161;
- // aapt resource value: 0x7F0801EF
- public const int icon_multi_screen_preview = 2131231215;
+ // aapt resource value: 0x7F0801BA
+ public const int hide_bg2_3 = 2131231162;
+
+ // aapt resource value: 0x7F0801BB
+ public const int hide_bg2_4 = 2131231163;
+
+ // aapt resource value: 0x7F0801BC
+ public const int hide_bg2_5 = 2131231164;
+
+ // aapt resource value: 0x7F0801BD
+ public const int hide_bg2_6 = 2131231165;
+
+ // aapt resource value: 0x7F0801BE
+ public const int hide_bg2_7 = 2131231166;
+
+ // aapt resource value: 0x7F0801BF
+ public const int hide_bg2_8 = 2131231167;
+
+ // aapt resource value: 0x7F0801C0
+ public const int hide_bg2_9 = 2131231168;
+
+ // aapt resource value: 0x7F0801C1
+ public const int history_video = 2131231169;
+
+ // aapt resource value: 0x7F0801C2
+ public const int history_video_dis = 2131231170;
+
+ // aapt resource value: 0x7F0801C3
+ public const int history_video_sel = 2131231171;
// aapt resource value: 0x7F0801C4
- public const int ic_action_search = 2131231172;
+ public const int horizontal_fullscreen_button_selector = 2131231172;
// aapt resource value: 0x7F0801C5
- public const int ic_esvideo_on_answer = 2131231173;
+ public const int horizontal_shrink_screen_normal = 2131231173;
// aapt resource value: 0x7F0801C6
- public const int ic_esvideo_on_back = 2131231174;
+ public const int horizontal_shrink_screen_pressed = 2131231174;
- // aapt resource value: 0x7F0801C7
- public const int ic_esvideo_on_hangup = 2131231175;
+ // aapt resource value: 0x7F0801B3
+ public const int h_bg = 2131231155;
- // aapt resource value: 0x7F0801C8
- public const int ic_esvideo_on_takephoto_select = 2131231176;
+ // aapt resource value: 0x7F0801B4
+ public const int h_bg_sel = 2131231156;
- // aapt resource value: 0x7F0801C9
- public const int ic_esvideo_on_takephoto_unselect = 2131231177;
+ // aapt resource value: 0x7F0801B5
+ public const int h_talk = 2131231157;
- // aapt resource value: 0x7F0801CA
- public const int ic_esvideo_on_unlock_select = 2131231178;
-
- // aapt resource value: 0x7F0801CB
- public const int ic_esvideo_on_unlock_unselect = 2131231179;
-
- // aapt resource value: 0x7F0801CC
- public const int ic_gdmap_add = 2131231180;
-
- // aapt resource value: 0x7F0801CD
- public const int ic_gdmap_back = 2131231181;
-
- // aapt resource value: 0x7F0801CE
- public const int ic_gdmap_delete = 2131231182;
-
- // aapt resource value: 0x7F0801CF
- public const int ic_gdmap_home = 2131231183;
-
- // aapt resource value: 0x7F0801D0
- public const int ic_gdmap_mylocation = 2131231184;
-
- // aapt resource value: 0x7F0801D1
- public const int ic_gdmap_now = 2131231185;
-
- // aapt resource value: 0x7F0801D2
- public const int ic_gdmap_search = 2131231186;
-
- // aapt resource value: 0x7F0801D3
- public const int ic_gdmap_zoom_out = 2131231187;
-
- // aapt resource value: 0x7F0801D4
- public const int ic_gps_point = 2131231188;
-
- // aapt resource value: 0x7F0801D5
- public const int ic_launcher_background = 2131231189;
-
- // aapt resource value: 0x7F0801D6
- public const int ic_launcher_foreground = 2131231190;
-
- // aapt resource value: 0x7F0801D7
- public const int ic_ss_arrow_back = 2131231191;
-
- // aapt resource value: 0x7F0801D8
- public const int ic_wd_arc_scale_bg = 2131231192;
-
- // aapt resource value: 0x7F0801D9
- public const int ic_wd_curtain_bg_top = 2131231193;
-
- // aapt resource value: 0x7F0801DA
- public const int ic_wd_curtain_h_bg = 2131231194;
-
- // aapt resource value: 0x7F0801DB
- public const int ic_wd_curtain_h_open = 2131231195;
-
- // aapt resource value: 0x7F0801DC
- public const int ic_wd_curtain_h_progress = 2131231196;
-
- // aapt resource value: 0x7F0801DD
- public const int ic_wd_curtain_h_top = 2131231197;
-
- // aapt resource value: 0x7F0801DE
- public const int ic_wd_curtain_open = 2131231198;
-
- // aapt resource value: 0x7F0801DF
- public const int ic_wd_curtain_roll_bg = 2131231199;
-
- // aapt resource value: 0x7F0801E0
- public const int ic_wd_curtain_roll_progress = 2131231200;
-
- // aapt resource value: 0x7F0801E1
- public const int ic_wd_on_curtain_blinds_progress = 2131231201;
-
- // aapt resource value: 0x7F0801E2
- public const int ic_wd_on_curtain_blinds_progress2 = 2131231202;
-
- // aapt resource value: 0x7F0801E3
- public const int ic_wd_on_curtain_blinds_progress_close = 2131231203;
-
- // aapt resource value: 0x7F0801E4
- public const int ic_wd_on_curtain_blinds_progress_close2 = 2131231204;
-
- // aapt resource value: 0x7F0801E5
- public const int ic_wd_on_curtain_h_bg = 2131231205;
-
- // aapt resource value: 0x7F0801E6
- public const int ic_wd_on_curtain_h_open = 2131231206;
-
- // aapt resource value: 0x7F0801E7
- public const int ic_wd_on_curtain_h_progress = 2131231207;
-
- // aapt resource value: 0x7F0801E8
- public const int ic_wd_on_curtain_h_progress_close = 2131231208;
-
- // aapt resource value: 0x7F0801E9
- public const int ic_wd_on_curtain_open = 2131231209;
-
- // aapt resource value: 0x7F0801EA
- public const int ic_wd_on_curtain_roll_bg = 2131231210;
-
- // aapt resource value: 0x7F0801EB
- public const int ic_wd_on_curtain_roll_progress = 2131231211;
-
- // aapt resource value: 0x7F0801EC
- public const int ic_wd_on_curtain_roll_progress_close = 2131231212;
+ // aapt resource value: 0x7F0801B6
+ public const int h_talk_sel = 2131231158;
// aapt resource value: 0x7F0801F0
- public const int image_a1 = 2131231216;
+ public const int icn_btn_bg_plus = 2131231216;
// aapt resource value: 0x7F0801F1
- public const int image_crispr = 2131231217;
+ public const int Icon = 2131231217;
// aapt resource value: 0x7F0801F2
- public const int image_everyday_1080p = 2131231218;
+ public const int icon_multi_screen_preview = 2131231218;
+
+ // aapt resource value: 0x7F0801C7
+ public const int ic_action_search = 2131231175;
+
+ // aapt resource value: 0x7F0801C8
+ public const int ic_esvideo_on_answer = 2131231176;
+
+ // aapt resource value: 0x7F0801C9
+ public const int ic_esvideo_on_back = 2131231177;
+
+ // aapt resource value: 0x7F0801CA
+ public const int ic_esvideo_on_hangup = 2131231178;
+
+ // aapt resource value: 0x7F0801CB
+ public const int ic_esvideo_on_takephoto_select = 2131231179;
+
+ // aapt resource value: 0x7F0801CC
+ public const int ic_esvideo_on_takephoto_unselect = 2131231180;
+
+ // aapt resource value: 0x7F0801CD
+ public const int ic_esvideo_on_unlock_select = 2131231181;
+
+ // aapt resource value: 0x7F0801CE
+ public const int ic_esvideo_on_unlock_unselect = 2131231182;
+
+ // aapt resource value: 0x7F0801CF
+ public const int ic_gdmap_add = 2131231183;
+
+ // aapt resource value: 0x7F0801D0
+ public const int ic_gdmap_back = 2131231184;
+
+ // aapt resource value: 0x7F0801D1
+ public const int ic_gdmap_delete = 2131231185;
+
+ // aapt resource value: 0x7F0801D2
+ public const int ic_gdmap_home = 2131231186;
+
+ // aapt resource value: 0x7F0801D3
+ public const int ic_gdmap_mylocation = 2131231187;
+
+ // aapt resource value: 0x7F0801D4
+ public const int ic_gdmap_now = 2131231188;
+
+ // aapt resource value: 0x7F0801D5
+ public const int ic_gdmap_search = 2131231189;
+
+ // aapt resource value: 0x7F0801D6
+ public const int ic_gdmap_zoom_out = 2131231190;
+
+ // aapt resource value: 0x7F0801D7
+ public const int ic_gps_point = 2131231191;
+
+ // aapt resource value: 0x7F0801D8
+ public const int ic_launcher_background = 2131231192;
+
+ // aapt resource value: 0x7F0801D9
+ public const int ic_launcher_foreground = 2131231193;
+
+ // aapt resource value: 0x7F0801DA
+ public const int ic_ss_arrow_back = 2131231194;
+
+ // aapt resource value: 0x7F0801DB
+ public const int ic_wd_arc_scale_bg = 2131231195;
+
+ // aapt resource value: 0x7F0801DC
+ public const int ic_wd_curtain_bg_top = 2131231196;
+
+ // aapt resource value: 0x7F0801DD
+ public const int ic_wd_curtain_h_bg = 2131231197;
+
+ // aapt resource value: 0x7F0801DE
+ public const int ic_wd_curtain_h_open = 2131231198;
+
+ // aapt resource value: 0x7F0801DF
+ public const int ic_wd_curtain_h_progress = 2131231199;
+
+ // aapt resource value: 0x7F0801E0
+ public const int ic_wd_curtain_h_top = 2131231200;
+
+ // aapt resource value: 0x7F0801E1
+ public const int ic_wd_curtain_open = 2131231201;
+
+ // aapt resource value: 0x7F0801E2
+ public const int ic_wd_curtain_roll_bg = 2131231202;
+
+ // aapt resource value: 0x7F0801E3
+ public const int ic_wd_curtain_roll_progress = 2131231203;
+
+ // aapt resource value: 0x7F0801E4
+ public const int ic_wd_on_curtain_blinds_progress = 2131231204;
+
+ // aapt resource value: 0x7F0801E5
+ public const int ic_wd_on_curtain_blinds_progress2 = 2131231205;
+
+ // aapt resource value: 0x7F0801E6
+ public const int ic_wd_on_curtain_blinds_progress_close = 2131231206;
+
+ // aapt resource value: 0x7F0801E7
+ public const int ic_wd_on_curtain_blinds_progress_close2 = 2131231207;
+
+ // aapt resource value: 0x7F0801E8
+ public const int ic_wd_on_curtain_h_bg = 2131231208;
+
+ // aapt resource value: 0x7F0801E9
+ public const int ic_wd_on_curtain_h_open = 2131231209;
+
+ // aapt resource value: 0x7F0801EA
+ public const int ic_wd_on_curtain_h_progress = 2131231210;
+
+ // aapt resource value: 0x7F0801EB
+ public const int ic_wd_on_curtain_h_progress_close = 2131231211;
+
+ // aapt resource value: 0x7F0801EC
+ public const int ic_wd_on_curtain_open = 2131231212;
+
+ // aapt resource value: 0x7F0801ED
+ public const int ic_wd_on_curtain_roll_bg = 2131231213;
+
+ // aapt resource value: 0x7F0801EE
+ public const int ic_wd_on_curtain_roll_progress = 2131231214;
+
+ // aapt resource value: 0x7F0801EF
+ public const int ic_wd_on_curtain_roll_progress_close = 2131231215;
// aapt resource value: 0x7F0801F3
- public const int image_everyday_3mp = 2131231219;
+ public const int image_a1 = 2131231219;
// aapt resource value: 0x7F0801F4
- public const int image_everyday_4mp_ip = 2131231220;
+ public const int image_crispr = 2131231220;
// aapt resource value: 0x7F0801F5
- public const int image_everyday_720p = 2131231221;
+ public const int image_everyday_1080p = 2131231221;
// aapt resource value: 0x7F0801F6
- public const int image_everyday_ip_1080p = 2131231222;
+ public const int image_everyday_3mp = 2131231222;
// aapt resource value: 0x7F0801F7
- public const int image_husky = 2131231223;
+ public const int image_everyday_4mp_ip = 2131231223;
// aapt resource value: 0x7F0801F8
- public const int image_husky_c = 2131231224;
+ public const int image_everyday_720p = 2131231224;
// aapt resource value: 0x7F0801F9
- public const int image_husky_dome = 2131231225;
+ public const int image_everyday_ip_1080p = 2131231225;
// aapt resource value: 0x7F0801FA
- public const int image_mini = 2131231226;
-
- // aapt resource value: 0x7F080200
- public const int image_minio = 2131231232;
+ public const int image_husky = 2131231226;
// aapt resource value: 0x7F0801FB
- public const int image_mini_360 = 2131231227;
+ public const int image_husky_c = 2131231227;
// aapt resource value: 0x7F0801FC
- public const int image_mini_360_plus = 2131231228;
+ public const int image_husky_dome = 2131231228;
// aapt resource value: 0x7F0801FD
- public const int image_mini_o = 2131231229;
-
- // aapt resource value: 0x7F0801FE
- public const int image_mini_plus = 2131231230;
-
- // aapt resource value: 0x7F0801FF
- public const int image_mini_trooper = 2131231231;
-
- // aapt resource value: 0x7F080201
- public const int img_slider_handle = 2131231233;
-
- // aapt resource value: 0x7F080202
- public const int indicator_autocrop = 2131231234;
-
- // aapt resource value: 0x7F080204
- public const int inputlayout_bg = 2131231236;
+ public const int image_mini = 2131231229;
// aapt resource value: 0x7F080203
- public const int input_shade = 2131231235;
+ public const int image_minio = 2131231235;
+
+ // aapt resource value: 0x7F0801FE
+ public const int image_mini_360 = 2131231230;
+
+ // aapt resource value: 0x7F0801FF
+ public const int image_mini_360_plus = 2131231231;
+
+ // aapt resource value: 0x7F080200
+ public const int image_mini_o = 2131231232;
+
+ // aapt resource value: 0x7F080201
+ public const int image_mini_plus = 2131231233;
+
+ // aapt resource value: 0x7F080202
+ public const int image_mini_trooper = 2131231234;
+
+ // aapt resource value: 0x7F080204
+ public const int img_slider_handle = 2131231236;
// aapt resource value: 0x7F080205
- public const int interface_call_btn_selector = 2131231237;
-
- // aapt resource value: 0x7F080206
- public const int join_qq_group = 2131231238;
+ public const int indicator_autocrop = 2131231237;
// aapt resource value: 0x7F080207
- public const int label_bg_line = 2131231239;
+ public const int inputlayout_bg = 2131231239;
+
+ // aapt resource value: 0x7F080206
+ public const int input_shade = 2131231238;
// aapt resource value: 0x7F080208
- public const int label_bg_sel = 2131231240;
+ public const int interface_call_btn_selector = 2131231240;
// aapt resource value: 0x7F080209
- public const int launchImage = 2131231241;
+ public const int join_qq_group = 2131231241;
// aapt resource value: 0x7F08020A
- public const int leave_message_play = 2131231242;
+ public const int label_bg_line = 2131231242;
// aapt resource value: 0x7F08020B
- public const int leave_message_play_sel = 2131231243;
+ public const int label_bg_sel = 2131231243;
// aapt resource value: 0x7F08020C
- public const int leave_message_play_selector = 2131231244;
+ public const int launchImage = 2131231244;
// aapt resource value: 0x7F08020D
- public const int left_horizontal = 2131231245;
+ public const int leave_message_play = 2131231245;
// aapt resource value: 0x7F08020E
- public const int left_twinkle = 2131231246;
+ public const int leave_message_play_sel = 2131231246;
// aapt resource value: 0x7F08020F
- public const int link_account1 = 2131231247;
+ public const int leave_message_play_selector = 2131231247;
// aapt resource value: 0x7F080210
- public const int link_account2 = 2131231248;
+ public const int left_horizontal = 2131231248;
// aapt resource value: 0x7F080211
- public const int link_account3 = 2131231249;
+ public const int left_twinkle = 2131231249;
// aapt resource value: 0x7F080212
- public const int link_account4 = 2131231250;
-
- // aapt resource value: 0x7F080214
- public const int Loading = 2131231252;
+ public const int link_account1 = 2131231250;
// aapt resource value: 0x7F080213
- public const int load_failed_bg = 2131231251;
+ public const int link_account2 = 2131231251;
+
+ // aapt resource value: 0x7F080214
+ public const int link_account3 = 2131231252;
// aapt resource value: 0x7F080215
- public const int lock_bg = 2131231253;
-
- // aapt resource value: 0x7F080216
- public const int login_btn_selector = 2131231254;
+ public const int link_account4 = 2131231253;
// aapt resource value: 0x7F080217
- public const int login_logo = 2131231255;
+ public const int Loading = 2131231255;
+
+ // aapt resource value: 0x7F080216
+ public const int load_failed_bg = 2131231254;
// aapt resource value: 0x7F080218
- public const int login_logo_button = 2131231256;
+ public const int lock_bg = 2131231256;
// aapt resource value: 0x7F080219
- public const int login_logo_button_sel = 2131231257;
+ public const int login_btn_selector = 2131231257;
// aapt resource value: 0x7F08021A
- public const int logo_loading_1 = 2131231258;
+ public const int login_logo = 2131231258;
// aapt resource value: 0x7F08021B
- public const int logo_loading_2 = 2131231259;
+ public const int login_logo_button = 2131231259;
// aapt resource value: 0x7F08021C
- public const int logo_loading_3 = 2131231260;
+ public const int login_logo_button_sel = 2131231260;
// aapt resource value: 0x7F08021D
- public const int logo_loading_4 = 2131231261;
+ public const int logo_loading_1 = 2131231261;
// aapt resource value: 0x7F08021E
- public const int lp_calltime_shape = 2131231262;
+ public const int logo_loading_2 = 2131231262;
// aapt resource value: 0x7F08021F
- public const int lp_calltime_shape_gray = 2131231263;
+ public const int logo_loading_3 = 2131231263;
// aapt resource value: 0x7F080220
- public const int lp_line_shape = 2131231264;
+ public const int logo_loading_4 = 2131231264;
// aapt resource value: 0x7F080221
- public const int mesage_details_callhelp = 2131231265;
+ public const int lp_calltime_shape = 2131231265;
// aapt resource value: 0x7F080222
- public const int mesage_details_curtain = 2131231266;
+ public const int lp_calltime_shape_gray = 2131231266;
// aapt resource value: 0x7F080223
- public const int mesage_details_data = 2131231267;
+ public const int lp_line_shape = 2131231267;
// aapt resource value: 0x7F080224
- public const int mesage_details_door = 2131231268;
+ public const int mesage_details_callhelp = 2131231268;
// aapt resource value: 0x7F080225
- public const int mesage_details_gas = 2131231269;
+ public const int mesage_details_curtain = 2131231269;
// aapt resource value: 0x7F080226
- public const int mesage_details_hdd = 2131231270;
+ public const int mesage_details_data = 2131231270;
// aapt resource value: 0x7F080227
- public const int mesage_details_infrared = 2131231271;
+ public const int mesage_details_door = 2131231271;
// aapt resource value: 0x7F080228
- public const int mesage_details_keyboard = 2131231272;
+ public const int mesage_details_gas = 2131231272;
// aapt resource value: 0x7F080229
- public const int mesage_details_loss = 2131231273;
+ public const int mesage_details_hdd = 2131231273;
// aapt resource value: 0x7F08022A
- public const int mesage_details_low_battery = 2131231274;
+ public const int mesage_details_infrared = 2131231274;
// aapt resource value: 0x7F08022B
- public const int mesage_details_offline = 2131231275;
+ public const int mesage_details_keyboard = 2131231275;
// aapt resource value: 0x7F08022C
- public const int mesage_details_power = 2131231276;
+ public const int mesage_details_loss = 2131231276;
// aapt resource value: 0x7F08022D
- public const int mesage_details_smoke = 2131231277;
+ public const int mesage_details_low_battery = 2131231277;
// aapt resource value: 0x7F08022E
- public const int mesage_details_tampering = 2131231278;
+ public const int mesage_details_offline = 2131231278;
// aapt resource value: 0x7F08022F
- public const int mesage_details_video_loss = 2131231279;
+ public const int mesage_details_power = 2131231279;
// aapt resource value: 0x7F080230
- public const int mesage_details_water = 2131231280;
+ public const int mesage_details_smoke = 2131231280;
// aapt resource value: 0x7F080231
- public const int message = 2131231281;
+ public const int mesage_details_tampering = 2131231281;
// aapt resource value: 0x7F080232
- public const int message_a1_bg = 2131231282;
+ public const int mesage_details_video_loss = 2131231282;
// aapt resource value: 0x7F080233
- public const int message_back = 2131231283;
+ public const int mesage_details_water = 2131231283;
// aapt resource value: 0x7F080234
- public const int message_back_sel = 2131231284;
+ public const int message = 2131231284;
// aapt resource value: 0x7F080235
- public const int message_back_selector = 2131231285;
+ public const int message_a1_bg = 2131231285;
// aapt resource value: 0x7F080236
- public const int message_border_bg = 2131231286;
+ public const int message_back = 2131231286;
// aapt resource value: 0x7F080237
- public const int message_callhelp = 2131231287;
+ public const int message_back_sel = 2131231287;
// aapt resource value: 0x7F080238
- public const int message_curtain = 2131231288;
+ public const int message_back_selector = 2131231288;
// aapt resource value: 0x7F080239
- public const int message_data = 2131231289;
+ public const int message_border_bg = 2131231289;
// aapt resource value: 0x7F08023A
- public const int message_door = 2131231290;
+ public const int message_callhelp = 2131231290;
// aapt resource value: 0x7F08023B
- public const int message_gas = 2131231291;
+ public const int message_curtain = 2131231291;
// aapt resource value: 0x7F08023C
- public const int message_hdd = 2131231292;
+ public const int message_data = 2131231292;
// aapt resource value: 0x7F08023D
- public const int message_infrared = 2131231293;
+ public const int message_door = 2131231293;
// aapt resource value: 0x7F08023E
- public const int message_item_bg_selector = 2131231294;
+ public const int message_gas = 2131231294;
// aapt resource value: 0x7F08023F
- public const int message_keyboard = 2131231295;
+ public const int message_hdd = 2131231295;
// aapt resource value: 0x7F080240
- public const int message_loss = 2131231296;
+ public const int message_infrared = 2131231296;
// aapt resource value: 0x7F080241
- public const int message_low_battery = 2131231297;
+ public const int message_item_bg_selector = 2131231297;
// aapt resource value: 0x7F080242
- public const int message_move_magnetometer = 2131231298;
+ public const int message_keyboard = 2131231298;
// aapt resource value: 0x7F080243
- public const int message_offline = 2131231299;
+ public const int message_loss = 2131231299;
// aapt resource value: 0x7F080244
- public const int message_play = 2131231300;
+ public const int message_low_battery = 2131231300;
// aapt resource value: 0x7F080245
- public const int message_play_dis = 2131231301;
+ public const int message_move_magnetometer = 2131231301;
// aapt resource value: 0x7F080246
- public const int message_play_sel = 2131231302;
+ public const int message_offline = 2131231302;
// aapt resource value: 0x7F080247
- public const int message_play_selector = 2131231303;
+ public const int message_play = 2131231303;
// aapt resource value: 0x7F080248
- public const int message_power = 2131231304;
+ public const int message_play_dis = 2131231304;
// aapt resource value: 0x7F080249
- public const int message_sel = 2131231305;
+ public const int message_play_sel = 2131231305;
// aapt resource value: 0x7F08024A
- public const int message_smoke = 2131231306;
+ public const int message_play_selector = 2131231306;
// aapt resource value: 0x7F08024B
- public const int message_tampering = 2131231307;
+ public const int message_power = 2131231307;
// aapt resource value: 0x7F08024C
- public const int message_video = 2131231308;
+ public const int message_sel = 2131231308;
// aapt resource value: 0x7F08024D
- public const int message_video_dis = 2131231309;
+ public const int message_smoke = 2131231309;
// aapt resource value: 0x7F08024E
- public const int message_video_loss = 2131231310;
+ public const int message_tampering = 2131231310;
// aapt resource value: 0x7F08024F
- public const int message_video_sel = 2131231311;
+ public const int message_video = 2131231311;
// aapt resource value: 0x7F080250
- public const int message_video_selector = 2131231312;
+ public const int message_video_dis = 2131231312;
// aapt resource value: 0x7F080251
- public const int message_water = 2131231313;
+ public const int message_video_loss = 2131231313;
// aapt resource value: 0x7F080252
- public const int mic = 2131231314;
+ public const int message_video_sel = 2131231314;
// aapt resource value: 0x7F080253
- public const int mm_trans = 2131231315;
+ public const int message_video_selector = 2131231315;
// aapt resource value: 0x7F080254
- public const int more = 2131231316;
+ public const int message_water = 2131231316;
// aapt resource value: 0x7F080255
- public const int my_5k_vr = 2131231317;
+ public const int mic = 2131231317;
// aapt resource value: 0x7F080256
- public const int my_5k_vr116 = 2131231318;
+ public const int mm_trans = 2131231318;
// aapt resource value: 0x7F080257
- public const int my_a1 = 2131231319;
+ public const int more = 2131231319;
// aapt resource value: 0x7F080258
- public const int my_a1c = 2131231320;
+ public const int my_5k_vr = 2131231320;
// aapt resource value: 0x7F080259
- public const int my_a1s = 2131231321;
+ public const int my_5k_vr116 = 2131231321;
// aapt resource value: 0x7F08025A
- public const int my_add = 2131231322;
+ public const int my_a1 = 2131231322;
// aapt resource value: 0x7F08025B
- public const int my_c6p = 2131231323;
+ public const int my_a1c = 2131231323;
// aapt resource value: 0x7F08025C
- public const int my_c6t = 2131231324;
+ public const int my_a1s = 2131231324;
// aapt resource value: 0x7F08025D
- public const int my_cover = 2131231325;
+ public const int my_add = 2131231325;
// aapt resource value: 0x7F08025E
- public const int my_cover620 = 2131231326;
+ public const int my_c6p = 2131231326;
// aapt resource value: 0x7F08025F
- public const int my_db1 = 2131231327;
+ public const int my_c6t = 2131231327;
// aapt resource value: 0x7F080260
- public const int my_doorbell = 2131231328;
+ public const int my_cover = 2131231328;
// aapt resource value: 0x7F080261
- public const int my_doorbell_hik = 2131231329;
+ public const int my_cover620 = 2131231329;
// aapt resource value: 0x7F080262
- public const int my_n1 = 2131231330;
+ public const int my_db1 = 2131231330;
// aapt resource value: 0x7F080263
- public const int my_no_video = 2131231331;
+ public const int my_doorbell = 2131231331;
// aapt resource value: 0x7F080264
- public const int my_progress_drawable = 2131231332;
+ public const int my_doorbell_hik = 2131231332;
// aapt resource value: 0x7F080265
- public const int my_r1 = 2131231333;
+ public const int my_n1 = 2131231333;
// aapt resource value: 0x7F080266
- public const int my_r2 = 2131231334;
+ public const int my_no_video = 2131231334;
// aapt resource value: 0x7F080267
- public const int my_shoping = 2131231335;
+ public const int my_progress_drawable = 2131231335;
// aapt resource value: 0x7F080268
- public const int my_switch_off = 2131231336;
+ public const int my_r1 = 2131231336;
// aapt resource value: 0x7F080269
- public const int my_switch_on = 2131231337;
+ public const int my_r2 = 2131231337;
// aapt resource value: 0x7F08026A
- public const int my_switch_selector = 2131231338;
+ public const int my_shoping = 2131231338;
// aapt resource value: 0x7F08026B
- public const int my_vr104d = 2131231339;
+ public const int my_switch_off = 2131231339;
// aapt resource value: 0x7F08026C
- public const int my_w1 = 2131231340;
+ public const int my_switch_on = 2131231340;
// aapt resource value: 0x7F08026D
- public const int my_w2d = 2131231341;
+ public const int my_switch_selector = 2131231341;
// aapt resource value: 0x7F08026E
- public const int my_w2s = 2131231342;
+ public const int my_vr104d = 2131231342;
// aapt resource value: 0x7F08026F
- public const int my_w3 = 2131231343;
+ public const int my_w1 = 2131231343;
// aapt resource value: 0x7F080270
- public const int my_wlb = 2131231344;
+ public const int my_w2d = 2131231344;
// aapt resource value: 0x7F080271
- public const int my_x1 = 2131231345;
+ public const int my_w2s = 2131231345;
// aapt resource value: 0x7F080272
- public const int my_x2 = 2131231346;
+ public const int my_w3 = 2131231346;
// aapt resource value: 0x7F080273
- public const int my_x3 = 2131231347;
+ public const int my_wlb = 2131231347;
// aapt resource value: 0x7F080274
- public const int my_x3c = 2131231348;
+ public const int my_x1 = 2131231348;
// aapt resource value: 0x7F080275
- public const int my_x4 = 2131231349;
+ public const int my_x2 = 2131231349;
// aapt resource value: 0x7F080276
- public const int my_x5c = 2131231350;
+ public const int my_x3 = 2131231350;
// aapt resource value: 0x7F080277
- public const int name_del = 2131231351;
+ public const int my_x3c = 2131231351;
// aapt resource value: 0x7F080278
- public const int name_del_sel = 2131231352;
+ public const int my_x4 = 2131231352;
// aapt resource value: 0x7F080279
- public const int name_del_selector = 2131231353;
+ public const int my_x5c = 2131231353;
// aapt resource value: 0x7F08027A
- public const int navigation_empty_icon = 2131231354;
-
- // aapt resource value: 0x7F08027D
- public const int nomessage = 2131231357;
-
- // aapt resource value: 0x7F08027E
- public const int notification_action_background = 2131231358;
-
- // aapt resource value: 0x7F08027F
- public const int notification_bg = 2131231359;
-
- // aapt resource value: 0x7F080280
- public const int notification_bg_low = 2131231360;
-
- // aapt resource value: 0x7F080281
- public const int notification_bg_low_normal = 2131231361;
-
- // aapt resource value: 0x7F080282
- public const int notification_bg_low_pressed = 2131231362;
-
- // aapt resource value: 0x7F080283
- public const int notification_bg_normal = 2131231363;
-
- // aapt resource value: 0x7F080284
- public const int notification_bg_normal_pressed = 2131231364;
-
- // aapt resource value: 0x7F080285
- public const int notification_icon_background = 2131231365;
-
- // aapt resource value: 0x7F080286
- public const int notification_template_icon_bg = 2131231366;
-
- // aapt resource value: 0x7F080287
- public const int notification_template_icon_low_bg = 2131231367;
-
- // aapt resource value: 0x7F080288
- public const int notification_tile_bg = 2131231368;
-
- // aapt resource value: 0x7F080289
- public const int notify_bg = 2131231369;
-
- // aapt resource value: 0x7F08028A
- public const int notify_panel_notification_icon_bg = 2131231370;
+ public const int name_del = 2131231354;
// aapt resource value: 0x7F08027B
- public const int no_message = 2131231355;
+ public const int name_del_sel = 2131231355;
// aapt resource value: 0x7F08027C
- public const int no_read = 2131231356;
+ public const int name_del_selector = 2131231356;
+
+ // aapt resource value: 0x7F08027D
+ public const int navigation_empty_icon = 2131231357;
+
+ // aapt resource value: 0x7F080280
+ public const int nomessage = 2131231360;
+
+ // aapt resource value: 0x7F080281
+ public const int notification_action_background = 2131231361;
+
+ // aapt resource value: 0x7F080282
+ public const int notification_bg = 2131231362;
+
+ // aapt resource value: 0x7F080283
+ public const int notification_bg_low = 2131231363;
+
+ // aapt resource value: 0x7F080284
+ public const int notification_bg_low_normal = 2131231364;
+
+ // aapt resource value: 0x7F080285
+ public const int notification_bg_low_pressed = 2131231365;
+
+ // aapt resource value: 0x7F080286
+ public const int notification_bg_normal = 2131231366;
+
+ // aapt resource value: 0x7F080287
+ public const int notification_bg_normal_pressed = 2131231367;
+
+ // aapt resource value: 0x7F080288
+ public const int notification_icon_background = 2131231368;
+
+ // aapt resource value: 0x7F080289
+ public const int notification_template_icon_bg = 2131231369;
+
+ // aapt resource value: 0x7F08028A
+ public const int notification_template_icon_low_bg = 2131231370;
// aapt resource value: 0x7F08028B
- public const int number_bg = 2131231371;
+ public const int notification_tile_bg = 2131231371;
// aapt resource value: 0x7F08028C
- public const int offline = 2131231372;
+ public const int notify_bg = 2131231372;
// aapt resource value: 0x7F08028D
- public const int open_cameralist_alarmlist_selector = 2131231373;
+ public const int notify_panel_notification_icon_bg = 2131231373;
+
+ // aapt resource value: 0x7F08027E
+ public const int no_message = 2131231358;
+
+ // aapt resource value: 0x7F08027F
+ public const int no_read = 2131231359;
// aapt resource value: 0x7F08028E
- public const int open_cameralist_button_selector = 2131231374;
+ public const int number_bg = 2131231374;
// aapt resource value: 0x7F08028F
- public const int open_cameralist_remotepb_selector = 2131231375;
+ public const int offline = 2131231375;
// aapt resource value: 0x7F080290
- public const int open_cameralist_setup_selector = 2131231376;
+ public const int open_cameralist_alarmlist_selector = 2131231376;
// aapt resource value: 0x7F080291
- public const int opinion = 2131231377;
+ public const int open_cameralist_button_selector = 2131231377;
// aapt resource value: 0x7F080292
- public const int palyback_alarm_icon2 = 2131231378;
+ public const int open_cameralist_remotepb_selector = 2131231378;
// aapt resource value: 0x7F080293
- public const int palyback_close = 2131231379;
+ public const int open_cameralist_setup_selector = 2131231379;
// aapt resource value: 0x7F080294
- public const int palyback_close_sel = 2131231380;
+ public const int opinion = 2131231380;
// aapt resource value: 0x7F080295
- public const int palyback_close_selector = 2131231381;
+ public const int palyback_alarm_icon2 = 2131231381;
// aapt resource value: 0x7F080296
- public const int palyback_date_down = 2131231382;
+ public const int palyback_close = 2131231382;
// aapt resource value: 0x7F080297
- public const int palyback_date_down_sel = 2131231383;
+ public const int palyback_close_sel = 2131231383;
// aapt resource value: 0x7F080298
- public const int palyback_full_down = 2131231384;
+ public const int palyback_close_selector = 2131231384;
// aapt resource value: 0x7F080299
- public const int palyback_full_up = 2131231385;
+ public const int palyback_date_down = 2131231385;
// aapt resource value: 0x7F08029A
- public const int palyback_nest = 2131231386;
+ public const int palyback_date_down_sel = 2131231386;
// aapt resource value: 0x7F08029B
- public const int palyback_pause = 2131231387;
+ public const int palyback_full_down = 2131231387;
// aapt resource value: 0x7F08029C
- public const int palyback_pause_sel = 2131231388;
+ public const int palyback_full_up = 2131231388;
// aapt resource value: 0x7F08029D
- public const int palyback_previously = 2131231389;
+ public const int palyback_nest = 2131231389;
// aapt resource value: 0x7F08029E
- public const int palyback_previously_sel = 2131231390;
+ public const int palyback_pause = 2131231390;
// aapt resource value: 0x7F08029F
- public const int palyback_previously_selector = 2131231391;
+ public const int palyback_pause_sel = 2131231391;
// aapt resource value: 0x7F0802A0
- public const int palyback_replay = 2131231392;
+ public const int palyback_previously = 2131231392;
// aapt resource value: 0x7F0802A1
- public const int palyback_retry = 2131231393;
+ public const int palyback_previously_sel = 2131231393;
// aapt resource value: 0x7F0802A2
- public const int palyback_time_bg = 2131231394;
+ public const int palyback_previously_selector = 2131231394;
// aapt resource value: 0x7F0802A3
- public const int palyback_video = 2131231395;
+ public const int palyback_replay = 2131231395;
// aapt resource value: 0x7F0802A4
- public const int palyback_video_now = 2131231396;
+ public const int palyback_retry = 2131231396;
// aapt resource value: 0x7F0802A5
- public const int palyback_video_now_sel = 2131231397;
+ public const int palyback_time_bg = 2131231397;
// aapt resource value: 0x7F0802A6
- public const int palyback_video_now_selector = 2131231398;
+ public const int palyback_video = 2131231398;
// aapt resource value: 0x7F0802A7
- public const int palyback_video_sel = 2131231399;
+ public const int palyback_video_now = 2131231399;
// aapt resource value: 0x7F0802A8
- public const int palyback_video_selector = 2131231400;
+ public const int palyback_video_now_sel = 2131231400;
// aapt resource value: 0x7F0802A9
- public const int pause = 2131231401;
+ public const int palyback_video_now_selector = 2131231401;
// aapt resource value: 0x7F0802AA
- public const int pause_sel = 2131231402;
+ public const int palyback_video_sel = 2131231402;
// aapt resource value: 0x7F0802AB
- public const int pic_bg = 2131231403;
+ public const int palyback_video_selector = 2131231403;
// aapt resource value: 0x7F0802AC
- public const int play = 2131231404;
-
- // aapt resource value: 0x7F08030B
- public const int playback = 2131231499;
-
- // aapt resource value: 0x7F08031B
- public const int playbackslider = 2131231515;
-
- // aapt resource value: 0x7F08031C
- public const int playbackslider_sel = 2131231516;
-
- // aapt resource value: 0x7F08030C
- public const int playback_button = 2131231500;
-
- // aapt resource value: 0x7F08030D
- public const int playback_cancel = 2131231501;
-
- // aapt resource value: 0x7F08030E
- public const int playback_check_selector = 2131231502;
-
- // aapt resource value: 0x7F08030F
- public const int playback_cover2 = 2131231503;
-
- // aapt resource value: 0x7F080310
- public const int playback_cut = 2131231504;
-
- // aapt resource value: 0x7F080311
- public const int playback_cut_btn_selector = 2131231505;
-
- // aapt resource value: 0x7F080312
- public const int playback_cut_disable = 2131231506;
-
- // aapt resource value: 0x7F080313
- public const int playback_cut_sel = 2131231507;
-
- // aapt resource value: 0x7F080314
- public const int playback_matte = 2131231508;
-
- // aapt resource value: 0x7F080315
- public const int playback_more_down = 2131231509;
-
- // aapt resource value: 0x7F080316
- public const int playback_more_down1 = 2131231510;
-
- // aapt resource value: 0x7F080317
- public const int playback_more_up1 = 2131231511;
-
- // aapt resource value: 0x7F080318
- public const int playback_play = 2131231512;
-
- // aapt resource value: 0x7F080319
- public const int playback_play_sel = 2131231513;
-
- // aapt resource value: 0x7F08031A
- public const int playback_sel = 2131231514;
-
- // aapt resource value: 0x7F08031D
- public const int playbtn_selector = 2131231517;
+ public const int pause = 2131231404;
// aapt resource value: 0x7F0802AD
- public const int play_balanced = 2131231405;
+ public const int pause_sel = 2131231405;
// aapt resource value: 0x7F0802AE
- public const int play_balanced_disabel = 2131231406;
+ public const int pic_bg = 2131231406;
// aapt resource value: 0x7F0802AF
- public const int play_balanced_sel = 2131231407;
+ public const int play = 2131231407;
- // aapt resource value: 0x7F0802B0
- public const int play_balanced_selector = 2131231408;
-
- // aapt resource value: 0x7F0802B1
- public const int play_big = 2131231409;
-
- // aapt resource value: 0x7F0802B3
- public const int play_bigbtn_selector = 2131231411;
-
- // aapt resource value: 0x7F0802B2
- public const int play_big_press = 2131231410;
-
- // aapt resource value: 0x7F0802B4
- public const int play_button_bg = 2131231412;
-
- // aapt resource value: 0x7F0802B5
- public const int play_button_sel = 2131231413;
-
- // aapt resource value: 0x7F0802B6
- public const int play_button_selector = 2131231414;
-
- // aapt resource value: 0x7F0802B7
- public const int play_close = 2131231415;
-
- // aapt resource value: 0x7F0802B8
- public const int play_close_sel = 2131231416;
-
- // aapt resource value: 0x7F0802B9
- public const int play_close_selector = 2131231417;
-
- // aapt resource value: 0x7F0802BA
- public const int play_disable = 2131231418;
-
- // aapt resource value: 0x7F0802BB
- public const int play_flunet = 2131231419;
-
- // aapt resource value: 0x7F0802BC
- public const int play_flunet_disabel = 2131231420;
-
- // aapt resource value: 0x7F0802BD
- public const int play_flunet_sel = 2131231421;
-
- // aapt resource value: 0x7F0802BE
- public const int play_flunet_selector = 2131231422;
-
- // aapt resource value: 0x7F0802BF
- public const int play_full_loding_logo = 2131231423;
-
- // aapt resource value: 0x7F0802C0
- public const int play_full_multiple = 2131231424;
-
- // aapt resource value: 0x7F0802C1
- public const int play_full_multiple2 = 2131231425;
-
- // aapt resource value: 0x7F0802C2
- public const int play_full_multiple3 = 2131231426;
-
- // aapt resource value: 0x7F0802C3
- public const int play_full_multiple4 = 2131231427;
-
- // aapt resource value: 0x7F0802C4
- public const int play_full_multiple5 = 2131231428;
-
- // aapt resource value: 0x7F0802C5
- public const int play_full_pause = 2131231429;
-
- // aapt resource value: 0x7F0802C6
- public const int play_full_pause_sel = 2131231430;
-
- // aapt resource value: 0x7F0802C7
- public const int play_full_pause_selector = 2131231431;
-
- // aapt resource value: 0x7F0802C8
- public const int play_full_play = 2131231432;
-
- // aapt resource value: 0x7F0802C9
- public const int play_full_play_sel = 2131231433;
-
- // aapt resource value: 0x7F0802CA
- public const int play_full_play_selector = 2131231434;
-
- // aapt resource value: 0x7F0802CB
- public const int play_full_previously = 2131231435;
-
- // aapt resource value: 0x7F0802CC
- public const int play_full_previously_sel = 2131231436;
-
- // aapt resource value: 0x7F0802CD
- public const int play_full_previously_selector = 2131231437;
-
- // aapt resource value: 0x7F0802CE
- public const int play_full_ptz_selector = 2131231438;
-
- // aapt resource value: 0x7F0802CF
- public const int play_full_quality_color_selector = 2131231439;
-
- // aapt resource value: 0x7F0802D0
- public const int play_full_quality_selector = 2131231440;
-
- // aapt resource value: 0x7F0802D1
- public const int play_full_soundoff_btn_selector = 2131231441;
-
- // aapt resource value: 0x7F0802D2
- public const int play_full_soundon_btn_selector = 2131231442;
-
- // aapt resource value: 0x7F0802D3
- public const int play_full_stop = 2131231443;
-
- // aapt resource value: 0x7F0802D4
- public const int play_full_stop_sel = 2131231444;
-
- // aapt resource value: 0x7F0802D5
- public const int play_full_stop_selector = 2131231445;
-
- // aapt resource value: 0x7F0802D6
- public const int play_full_talk_selector = 2131231446;
-
- // aapt resource value: 0x7F0802D7
- public const int play_full_video = 2131231447;
-
- // aapt resource value: 0x7F0802D8
- public const int play_full_video_now = 2131231448;
-
- // aapt resource value: 0x7F0802D9
- public const int play_full_video_now_sel = 2131231449;
-
- // aapt resource value: 0x7F0802DA
- public const int play_full_video_now_selector = 2131231450;
-
- // aapt resource value: 0x7F0802DB
- public const int play_full_video_sel = 2131231451;
-
- // aapt resource value: 0x7F0802DC
- public const int play_full_video_selector = 2131231452;
-
- // aapt resource value: 0x7F0802DD
- public const int play_hd = 2131231453;
-
- // aapt resource value: 0x7F0802DE
- public const int play_hd_disabel = 2131231454;
-
- // aapt resource value: 0x7F0802DF
- public const int play_hd_sel = 2131231455;
-
- // aapt resource value: 0x7F0802E0
- public const int play_hd_selector = 2131231456;
-
- // aapt resource value: 0x7F0802E1
- public const int play_play = 2131231457;
-
- // aapt resource value: 0x7F0802E2
- public const int play_play_dis = 2131231458;
-
- // aapt resource value: 0x7F0802E3
- public const int play_play_sel = 2131231459;
-
- // aapt resource value: 0x7F0802E4
- public const int play_play_selector = 2131231460;
-
- // aapt resource value: 0x7F0802E5
- public const int play_press = 2131231461;
-
- // aapt resource value: 0x7F0802E6
- public const int play_previously = 2131231462;
-
- // aapt resource value: 0x7F0802E7
- public const int play_previously_dis = 2131231463;
-
- // aapt resource value: 0x7F0802E8
- public const int play_previously_sel = 2131231464;
-
- // aapt resource value: 0x7F0802E9
- public const int play_previously_selector = 2131231465;
-
- // aapt resource value: 0x7F0802EA
- public const int play_privacy_selector = 2131231466;
-
- // aapt resource value: 0x7F0802EB
- public const int play_ptz = 2131231467;
-
- // aapt resource value: 0x7F0802EC
- public const int play_ptz_dis = 2131231468;
-
- // aapt resource value: 0x7F0802ED
- public const int play_ptz_sel = 2131231469;
-
- // aapt resource value: 0x7F0802EE
- public const int play_ptz_selector = 2131231470;
-
- // aapt resource value: 0x7F0802EF
- public const int play_small = 2131231471;
-
- // aapt resource value: 0x7F0802F1
- public const int play_smallbtn_selector = 2131231473;
-
- // aapt resource value: 0x7F0802F0
- public const int play_small_press = 2131231472;
-
- // aapt resource value: 0x7F0802F2
- public const int play_speech = 2131231474;
-
- // aapt resource value: 0x7F0802F3
- public const int play_speech_dis = 2131231475;
-
- // aapt resource value: 0x7F0802F4
- public const int play_speech_sel = 2131231476;
-
- // aapt resource value: 0x7F0802F5
- public const int play_speech_selector = 2131231477;
-
- // aapt resource value: 0x7F0802F6
- public const int play_stop = 2131231478;
-
- // aapt resource value: 0x7F0802F7
- public const int play_stop_sel = 2131231479;
-
- // aapt resource value: 0x7F0802F8
- public const int play_stop_selector = 2131231480;
-
- // aapt resource value: 0x7F0802F9
- public const int play_talk = 2131231481;
-
- // aapt resource value: 0x7F0802FD
- public const int play_talkback = 2131231485;
-
- // aapt resource value: 0x7F0802FE
- public const int play_talkback_sel = 2131231486;
-
- // aapt resource value: 0x7F0802FF
- public const int play_talkback_selector = 2131231487;
-
- // aapt resource value: 0x7F0802FA
- public const int play_talk_dis = 2131231482;
-
- // aapt resource value: 0x7F0802FB
- public const int play_talk_sel = 2131231483;
-
- // aapt resource value: 0x7F0802FC
- public const int play_talk_selector = 2131231484;
-
- // aapt resource value: 0x7F080300
- public const int play_video = 2131231488;
-
- // aapt resource value: 0x7F080301
- public const int play_video_dis = 2131231489;
-
- // aapt resource value: 0x7F080302
- public const int play_video_record = 2131231490;
-
- // aapt resource value: 0x7F080303
- public const int play_video_sel = 2131231491;
-
- // aapt resource value: 0x7F080304
- public const int play_video_selector = 2131231492;
-
- // aapt resource value: 0x7F080305
- public const int play_video_start = 2131231493;
-
- // aapt resource value: 0x7F080306
- public const int play_video_time_bg = 2131231494;
-
- // aapt resource value: 0x7F080307
- public const int play_voice = 2131231495;
-
- // aapt resource value: 0x7F080308
- public const int play_voice_dis = 2131231496;
-
- // aapt resource value: 0x7F080309
- public const int play_voice_sel = 2131231497;
-
- // aapt resource value: 0x7F08030A
- public const int play_voice_selector = 2131231498;
+ // aapt resource value: 0x7F08030E
+ public const int playback = 2131231502;
// aapt resource value: 0x7F08031E
- public const int popdialogbg = 2131231518;
+ public const int playbackslider = 2131231518;
// aapt resource value: 0x7F08031F
- public const int prepare_device = 2131231519;
+ public const int playbackslider_sel = 2131231519;
+
+ // aapt resource value: 0x7F08030F
+ public const int playback_button = 2131231503;
+
+ // aapt resource value: 0x7F080310
+ public const int playback_cancel = 2131231504;
+
+ // aapt resource value: 0x7F080311
+ public const int playback_check_selector = 2131231505;
+
+ // aapt resource value: 0x7F080312
+ public const int playback_cover2 = 2131231506;
+
+ // aapt resource value: 0x7F080313
+ public const int playback_cut = 2131231507;
+
+ // aapt resource value: 0x7F080314
+ public const int playback_cut_btn_selector = 2131231508;
+
+ // aapt resource value: 0x7F080315
+ public const int playback_cut_disable = 2131231509;
+
+ // aapt resource value: 0x7F080316
+ public const int playback_cut_sel = 2131231510;
+
+ // aapt resource value: 0x7F080317
+ public const int playback_matte = 2131231511;
+
+ // aapt resource value: 0x7F080318
+ public const int playback_more_down = 2131231512;
+
+ // aapt resource value: 0x7F080319
+ public const int playback_more_down1 = 2131231513;
+
+ // aapt resource value: 0x7F08031A
+ public const int playback_more_up1 = 2131231514;
+
+ // aapt resource value: 0x7F08031B
+ public const int playback_play = 2131231515;
+
+ // aapt resource value: 0x7F08031C
+ public const int playback_play_sel = 2131231516;
+
+ // aapt resource value: 0x7F08031D
+ public const int playback_sel = 2131231517;
// aapt resource value: 0x7F080320
- public const int preview_close1_video_ico = 2131231520;
+ public const int playbtn_selector = 2131231520;
+
+ // aapt resource value: 0x7F0802B0
+ public const int play_balanced = 2131231408;
+
+ // aapt resource value: 0x7F0802B1
+ public const int play_balanced_disabel = 2131231409;
+
+ // aapt resource value: 0x7F0802B2
+ public const int play_balanced_sel = 2131231410;
+
+ // aapt resource value: 0x7F0802B3
+ public const int play_balanced_selector = 2131231411;
+
+ // aapt resource value: 0x7F0802B4
+ public const int play_big = 2131231412;
+
+ // aapt resource value: 0x7F0802B6
+ public const int play_bigbtn_selector = 2131231414;
+
+ // aapt resource value: 0x7F0802B5
+ public const int play_big_press = 2131231413;
+
+ // aapt resource value: 0x7F0802B7
+ public const int play_button_bg = 2131231415;
+
+ // aapt resource value: 0x7F0802B8
+ public const int play_button_sel = 2131231416;
+
+ // aapt resource value: 0x7F0802B9
+ public const int play_button_selector = 2131231417;
+
+ // aapt resource value: 0x7F0802BA
+ public const int play_close = 2131231418;
+
+ // aapt resource value: 0x7F0802BB
+ public const int play_close_sel = 2131231419;
+
+ // aapt resource value: 0x7F0802BC
+ public const int play_close_selector = 2131231420;
+
+ // aapt resource value: 0x7F0802BD
+ public const int play_disable = 2131231421;
+
+ // aapt resource value: 0x7F0802BE
+ public const int play_flunet = 2131231422;
+
+ // aapt resource value: 0x7F0802BF
+ public const int play_flunet_disabel = 2131231423;
+
+ // aapt resource value: 0x7F0802C0
+ public const int play_flunet_sel = 2131231424;
+
+ // aapt resource value: 0x7F0802C1
+ public const int play_flunet_selector = 2131231425;
+
+ // aapt resource value: 0x7F0802C2
+ public const int play_full_loding_logo = 2131231426;
+
+ // aapt resource value: 0x7F0802C3
+ public const int play_full_multiple = 2131231427;
+
+ // aapt resource value: 0x7F0802C4
+ public const int play_full_multiple2 = 2131231428;
+
+ // aapt resource value: 0x7F0802C5
+ public const int play_full_multiple3 = 2131231429;
+
+ // aapt resource value: 0x7F0802C6
+ public const int play_full_multiple4 = 2131231430;
+
+ // aapt resource value: 0x7F0802C7
+ public const int play_full_multiple5 = 2131231431;
+
+ // aapt resource value: 0x7F0802C8
+ public const int play_full_pause = 2131231432;
+
+ // aapt resource value: 0x7F0802C9
+ public const int play_full_pause_sel = 2131231433;
+
+ // aapt resource value: 0x7F0802CA
+ public const int play_full_pause_selector = 2131231434;
+
+ // aapt resource value: 0x7F0802CB
+ public const int play_full_play = 2131231435;
+
+ // aapt resource value: 0x7F0802CC
+ public const int play_full_play_sel = 2131231436;
+
+ // aapt resource value: 0x7F0802CD
+ public const int play_full_play_selector = 2131231437;
+
+ // aapt resource value: 0x7F0802CE
+ public const int play_full_previously = 2131231438;
+
+ // aapt resource value: 0x7F0802CF
+ public const int play_full_previously_sel = 2131231439;
+
+ // aapt resource value: 0x7F0802D0
+ public const int play_full_previously_selector = 2131231440;
+
+ // aapt resource value: 0x7F0802D1
+ public const int play_full_ptz_selector = 2131231441;
+
+ // aapt resource value: 0x7F0802D2
+ public const int play_full_quality_color_selector = 2131231442;
+
+ // aapt resource value: 0x7F0802D3
+ public const int play_full_quality_selector = 2131231443;
+
+ // aapt resource value: 0x7F0802D4
+ public const int play_full_soundoff_btn_selector = 2131231444;
+
+ // aapt resource value: 0x7F0802D5
+ public const int play_full_soundon_btn_selector = 2131231445;
+
+ // aapt resource value: 0x7F0802D6
+ public const int play_full_stop = 2131231446;
+
+ // aapt resource value: 0x7F0802D7
+ public const int play_full_stop_sel = 2131231447;
+
+ // aapt resource value: 0x7F0802D8
+ public const int play_full_stop_selector = 2131231448;
+
+ // aapt resource value: 0x7F0802D9
+ public const int play_full_talk_selector = 2131231449;
+
+ // aapt resource value: 0x7F0802DA
+ public const int play_full_video = 2131231450;
+
+ // aapt resource value: 0x7F0802DB
+ public const int play_full_video_now = 2131231451;
+
+ // aapt resource value: 0x7F0802DC
+ public const int play_full_video_now_sel = 2131231452;
+
+ // aapt resource value: 0x7F0802DD
+ public const int play_full_video_now_selector = 2131231453;
+
+ // aapt resource value: 0x7F0802DE
+ public const int play_full_video_sel = 2131231454;
+
+ // aapt resource value: 0x7F0802DF
+ public const int play_full_video_selector = 2131231455;
+
+ // aapt resource value: 0x7F0802E0
+ public const int play_hd = 2131231456;
+
+ // aapt resource value: 0x7F0802E1
+ public const int play_hd_disabel = 2131231457;
+
+ // aapt resource value: 0x7F0802E2
+ public const int play_hd_sel = 2131231458;
+
+ // aapt resource value: 0x7F0802E3
+ public const int play_hd_selector = 2131231459;
+
+ // aapt resource value: 0x7F0802E4
+ public const int play_play = 2131231460;
+
+ // aapt resource value: 0x7F0802E5
+ public const int play_play_dis = 2131231461;
+
+ // aapt resource value: 0x7F0802E6
+ public const int play_play_sel = 2131231462;
+
+ // aapt resource value: 0x7F0802E7
+ public const int play_play_selector = 2131231463;
+
+ // aapt resource value: 0x7F0802E8
+ public const int play_press = 2131231464;
+
+ // aapt resource value: 0x7F0802E9
+ public const int play_previously = 2131231465;
+
+ // aapt resource value: 0x7F0802EA
+ public const int play_previously_dis = 2131231466;
+
+ // aapt resource value: 0x7F0802EB
+ public const int play_previously_sel = 2131231467;
+
+ // aapt resource value: 0x7F0802EC
+ public const int play_previously_selector = 2131231468;
+
+ // aapt resource value: 0x7F0802ED
+ public const int play_privacy_selector = 2131231469;
+
+ // aapt resource value: 0x7F0802EE
+ public const int play_ptz = 2131231470;
+
+ // aapt resource value: 0x7F0802EF
+ public const int play_ptz_dis = 2131231471;
+
+ // aapt resource value: 0x7F0802F0
+ public const int play_ptz_sel = 2131231472;
+
+ // aapt resource value: 0x7F0802F1
+ public const int play_ptz_selector = 2131231473;
+
+ // aapt resource value: 0x7F0802F2
+ public const int play_small = 2131231474;
+
+ // aapt resource value: 0x7F0802F4
+ public const int play_smallbtn_selector = 2131231476;
+
+ // aapt resource value: 0x7F0802F3
+ public const int play_small_press = 2131231475;
+
+ // aapt resource value: 0x7F0802F5
+ public const int play_speech = 2131231477;
+
+ // aapt resource value: 0x7F0802F6
+ public const int play_speech_dis = 2131231478;
+
+ // aapt resource value: 0x7F0802F7
+ public const int play_speech_sel = 2131231479;
+
+ // aapt resource value: 0x7F0802F8
+ public const int play_speech_selector = 2131231480;
+
+ // aapt resource value: 0x7F0802F9
+ public const int play_stop = 2131231481;
+
+ // aapt resource value: 0x7F0802FA
+ public const int play_stop_sel = 2131231482;
+
+ // aapt resource value: 0x7F0802FB
+ public const int play_stop_selector = 2131231483;
+
+ // aapt resource value: 0x7F0802FC
+ public const int play_talk = 2131231484;
+
+ // aapt resource value: 0x7F080300
+ public const int play_talkback = 2131231488;
+
+ // aapt resource value: 0x7F080301
+ public const int play_talkback_sel = 2131231489;
+
+ // aapt resource value: 0x7F080302
+ public const int play_talkback_selector = 2131231490;
+
+ // aapt resource value: 0x7F0802FD
+ public const int play_talk_dis = 2131231485;
+
+ // aapt resource value: 0x7F0802FE
+ public const int play_talk_sel = 2131231486;
+
+ // aapt resource value: 0x7F0802FF
+ public const int play_talk_selector = 2131231487;
+
+ // aapt resource value: 0x7F080303
+ public const int play_video = 2131231491;
+
+ // aapt resource value: 0x7F080304
+ public const int play_video_dis = 2131231492;
+
+ // aapt resource value: 0x7F080305
+ public const int play_video_record = 2131231493;
+
+ // aapt resource value: 0x7F080306
+ public const int play_video_sel = 2131231494;
+
+ // aapt resource value: 0x7F080307
+ public const int play_video_selector = 2131231495;
+
+ // aapt resource value: 0x7F080308
+ public const int play_video_start = 2131231496;
+
+ // aapt resource value: 0x7F080309
+ public const int play_video_time_bg = 2131231497;
+
+ // aapt resource value: 0x7F08030A
+ public const int play_voice = 2131231498;
+
+ // aapt resource value: 0x7F08030B
+ public const int play_voice_dis = 2131231499;
+
+ // aapt resource value: 0x7F08030C
+ public const int play_voice_sel = 2131231500;
+
+ // aapt resource value: 0x7F08030D
+ public const int play_voice_selector = 2131231501;
// aapt resource value: 0x7F080321
- public const int preview_close_video = 2131231521;
+ public const int popdialogbg = 2131231521;
// aapt resource value: 0x7F080322
- public const int preview_close_video_dis = 2131231522;
+ public const int prepare_device = 2131231522;
// aapt resource value: 0x7F080323
- public const int preview_close_video_sel = 2131231523;
+ public const int preview_close1_video_ico = 2131231523;
// aapt resource value: 0x7F080324
- public const int preview_down_bg_normal = 2131231524;
+ public const int preview_close_video = 2131231524;
// aapt resource value: 0x7F080325
- public const int preview_down_bg_pressed = 2131231525;
+ public const int preview_close_video_dis = 2131231525;
// aapt resource value: 0x7F080326
- public const int preview_down_ico = 2131231526;
+ public const int preview_close_video_sel = 2131231526;
// aapt resource value: 0x7F080327
- public const int preview_down_selector = 2131231527;
+ public const int preview_down_bg_normal = 2131231527;
// aapt resource value: 0x7F080328
- public const int preview_enlarge = 2131231528;
+ public const int preview_down_bg_pressed = 2131231528;
// aapt resource value: 0x7F080329
- public const int preview_enlarge_btn_sel = 2131231529;
+ public const int preview_down_ico = 2131231529;
// aapt resource value: 0x7F08032A
- public const int preview_enlarge_dis = 2131231530;
+ public const int preview_down_selector = 2131231530;
// aapt resource value: 0x7F08032B
- public const int preview_enlarge_selector = 2131231531;
+ public const int preview_enlarge = 2131231531;
// aapt resource value: 0x7F08032C
- public const int preview_play_btn = 2131231532;
+ public const int preview_enlarge_btn_sel = 2131231532;
// aapt resource value: 0x7F08032D
- public const int preview_play_btn_dis = 2131231533;
+ public const int preview_enlarge_dis = 2131231533;
// aapt resource value: 0x7F08032E
- public const int preview_play_btn_sel = 2131231534;
+ public const int preview_enlarge_selector = 2131231534;
// aapt resource value: 0x7F08032F
- public const int preview_recording = 2131231535;
+ public const int preview_play_btn = 2131231535;
// aapt resource value: 0x7F080330
- public const int preview_recording_dis = 2131231536;
+ public const int preview_play_btn_dis = 2131231536;
// aapt resource value: 0x7F080331
- public const int preview_recording_sel = 2131231537;
+ public const int preview_play_btn_sel = 2131231537;
// aapt resource value: 0x7F080332
- public const int preview_selection_bg = 2131231538;
+ public const int preview_recording = 2131231538;
// aapt resource value: 0x7F080333
- public const int preview_stopplay_btn_dis = 2131231539;
+ public const int preview_recording_dis = 2131231539;
// aapt resource value: 0x7F080334
- public const int preview_unvoice_btn = 2131231540;
+ public const int preview_recording_sel = 2131231540;
// aapt resource value: 0x7F080335
- public const int preview_unvoice_btn_sel = 2131231541;
+ public const int preview_selection_bg = 2131231541;
// aapt resource value: 0x7F080336
- public const int preview_video_selection = 2131231542;
+ public const int preview_stopplay_btn_dis = 2131231542;
// aapt resource value: 0x7F080337
- public const int preview_video_selection_hover = 2131231543;
+ public const int preview_unvoice_btn = 2131231543;
// aapt resource value: 0x7F080338
- public const int preview_voice_btn = 2131231544;
+ public const int preview_unvoice_btn_sel = 2131231544;
// aapt resource value: 0x7F080339
- public const int preview_voice_btn_dis = 2131231545;
+ public const int preview_video_selection = 2131231545;
// aapt resource value: 0x7F08033A
- public const int preview_voice_btn_sel = 2131231546;
+ public const int preview_video_selection_hover = 2131231546;
// aapt resource value: 0x7F08033B
- public const int previously = 2131231547;
+ public const int preview_voice_btn = 2131231547;
// aapt resource value: 0x7F08033C
- public const int previously_dis = 2131231548;
+ public const int preview_voice_btn_dis = 2131231548;
// aapt resource value: 0x7F08033D
- public const int previously_sel = 2131231549;
+ public const int preview_voice_btn_sel = 2131231549;
// aapt resource value: 0x7F08033E
- public const int ptz_bg = 2131231550;
+ public const int previously = 2131231550;
// aapt resource value: 0x7F08033F
- public const int ptz_bottom_limit = 2131231551;
+ public const int previously_dis = 2131231551;
// aapt resource value: 0x7F080340
- public const int ptz_bottom_sel = 2131231552;
+ public const int previously_sel = 2131231552;
// aapt resource value: 0x7F080341
- public const int ptz_left_limit = 2131231553;
+ public const int ptz_bg = 2131231553;
// aapt resource value: 0x7F080342
- public const int ptz_left_sel = 2131231554;
+ public const int ptz_bottom_limit = 2131231554;
// aapt resource value: 0x7F080343
- public const int ptz_prompt = 2131231555;
+ public const int ptz_bottom_sel = 2131231555;
// aapt resource value: 0x7F080344
- public const int ptz_right_limit = 2131231556;
+ public const int ptz_left_limit = 2131231556;
// aapt resource value: 0x7F080345
- public const int ptz_right_sel = 2131231557;
+ public const int ptz_left_sel = 2131231557;
// aapt resource value: 0x7F080346
- public const int ptz_top_limit = 2131231558;
+ public const int ptz_prompt = 2131231558;
// aapt resource value: 0x7F080347
- public const int ptz_turn = 2131231559;
+ public const int ptz_right_limit = 2131231559;
// aapt resource value: 0x7F080348
- public const int ptz_turn_sel = 2131231560;
+ public const int ptz_right_sel = 2131231560;
// aapt resource value: 0x7F080349
- public const int ptz_turn_selector = 2131231561;
+ public const int ptz_top_limit = 2131231561;
// aapt resource value: 0x7F08034A
- public const int ptz_up_sel = 2131231562;
+ public const int ptz_turn = 2131231562;
// aapt resource value: 0x7F08034B
- public const int push_close = 2131231563;
+ public const int ptz_turn_sel = 2131231563;
// aapt resource value: 0x7F08034C
- public const int push_close_sel = 2131231564;
+ public const int ptz_turn_selector = 2131231564;
// aapt resource value: 0x7F08034D
- public const int push_close_selector = 2131231565;
+ public const int ptz_up_sel = 2131231565;
// aapt resource value: 0x7F08034E
- public const int put_ico = 2131231566;
+ public const int push_close = 2131231566;
// aapt resource value: 0x7F08034F
- public const int query_loding1 = 2131231567;
+ public const int push_close_sel = 2131231567;
// aapt resource value: 0x7F080350
- public const int query_loding2 = 2131231568;
+ public const int push_close_selector = 2131231568;
// aapt resource value: 0x7F080351
- public const int query_loding3 = 2131231569;
+ public const int put_ico = 2131231569;
// aapt resource value: 0x7F080352
- public const int query_loding4 = 2131231570;
+ public const int query_loding1 = 2131231570;
// aapt resource value: 0x7F080353
- public const int query_loding5 = 2131231571;
+ public const int query_loding2 = 2131231571;
// aapt resource value: 0x7F080354
- public const int radius_rect_bg_qq_group = 2131231572;
+ public const int query_loding3 = 2131231572;
// aapt resource value: 0x7F080355
- public const int read_button = 2131231573;
+ public const int query_loding4 = 2131231573;
// aapt resource value: 0x7F080356
- public const int read_button_sel = 2131231574;
+ public const int query_loding5 = 2131231574;
// aapt resource value: 0x7F080357
- public const int read_button_selector = 2131231575;
+ public const int radius_rect_bg_qq_group = 2131231575;
// aapt resource value: 0x7F080358
- public const int refresh_selector = 2131231576;
+ public const int read_button = 2131231576;
// aapt resource value: 0x7F080359
- public const int register_server_bg = 2131231577;
+ public const int read_button_sel = 2131231577;
// aapt resource value: 0x7F08035A
- public const int remote_cal_selector = 2131231578;
+ public const int read_button_selector = 2131231578;
// aapt resource value: 0x7F08035B
- public const int remote_exit_btn_selector = 2131231579;
+ public const int refresh_selector = 2131231579;
// aapt resource value: 0x7F08035C
- public const int remote_list_pause_btn_selector = 2131231580;
+ public const int register_server_bg = 2131231580;
// aapt resource value: 0x7F08035D
- public const int remote_list_play_btn_selector = 2131231581;
+ public const int remote_cal_selector = 2131231581;
// aapt resource value: 0x7F08035E
- public const int remote_list_soundoff_btn_selector = 2131231582;
+ public const int remote_exit_btn_selector = 2131231582;
// aapt resource value: 0x7F08035F
- public const int remote_list_soundon_btn_selector = 2131231583;
+ public const int remote_list_pause_btn_selector = 2131231583;
// aapt resource value: 0x7F080360
- public const int remote_play = 2131231584;
+ public const int remote_list_play_btn_selector = 2131231584;
// aapt resource value: 0x7F080361
- public const int remote_play_sel = 2131231585;
+ public const int remote_list_soundoff_btn_selector = 2131231585;
// aapt resource value: 0x7F080362
- public const int remote_seekbar_style = 2131231586;
+ public const int remote_list_soundon_btn_selector = 2131231586;
// aapt resource value: 0x7F080363
- public const int remote_seekbar_thumb = 2131231587;
+ public const int remote_play = 2131231587;
// aapt resource value: 0x7F080364
- public const int reset_deivce = 2131231588;
-
- // aapt resource value: 0x7F080371
- public const int results_4_dvr = 2131231601;
-
- // aapt resource value: 0x7F080372
- public const int results_8_16_nvr = 2131231602;
-
- // aapt resource value: 0x7F080373
- public const int results_8_nvr = 2131231603;
-
- // aapt resource value: 0x7F080374
- public const int results_c6p = 2131231604;
-
- // aapt resource value: 0x7F080375
- public const int results_mini_360_plus = 2131231605;
-
- // aapt resource value: 0x7F080376
- public const int results_mini_trooper = 2131231606;
-
- // aapt resource value: 0x7F080377
- public const int results_pic_a1 = 2131231607;
-
- // aapt resource value: 0x7F080378
- public const int results_pic_a1c = 2131231608;
-
- // aapt resource value: 0x7F080379
- public const int results_pic_a1s = 2131231609;
-
- // aapt resource value: 0x7F08037A
- public const int results_pic_baidu_c2s = 2131231610;
-
- // aapt resource value: 0x7F08037B
- public const int results_pic_bg = 2131231611;
-
- // aapt resource value: 0x7F08037C
- public const int results_pic_c1 = 2131231612;
-
- // aapt resource value: 0x7F08037D
- public const int results_pic_c2 = 2131231613;
-
- // aapt resource value: 0x7F080380
- public const int results_pic_c2c = 2131231616;
-
- // aapt resource value: 0x7F080381
- public const int results_pic_c2mini = 2131231617;
-
- // aapt resource value: 0x7F080382
- public const int results_pic_c2mini2 = 2131231618;
-
- // aapt resource value: 0x7F080383
- public const int results_pic_c2plus = 2131231619;
-
- // aapt resource value: 0x7F080384
- public const int results_pic_c2s = 2131231620;
-
- // aapt resource value: 0x7F080385
- public const int results_pic_c2w = 2131231621;
-
- // aapt resource value: 0x7F08037E
- public const int results_pic_c2_2 = 2131231614;
-
- // aapt resource value: 0x7F08037F
- public const int results_pic_c2_usa = 2131231615;
-
- // aapt resource value: 0x7F080386
- public const int results_pic_c3 = 2131231622;
-
- // aapt resource value: 0x7F080387
- public const int results_pic_c3c = 2131231623;
-
- // aapt resource value: 0x7F080388
- public const int results_pic_c3e = 2131231624;
-
- // aapt resource value: 0x7F080389
- public const int results_pic_c3s = 2131231625;
-
- // aapt resource value: 0x7F08038A
- public const int results_pic_c4 = 2131231626;
-
- // aapt resource value: 0x7F08038B
- public const int results_pic_c4c = 2131231627;
-
- // aapt resource value: 0x7F08038C
- public const int results_pic_c4e = 2131231628;
-
- // aapt resource value: 0x7F08038D
- public const int results_pic_c4s = 2131231629;
-
- // aapt resource value: 0x7F08038E
- public const int results_pic_c6 = 2131231630;
-
- // aapt resource value: 0x7F08038F
- public const int results_pic_c6c = 2131231631;
-
- // aapt resource value: 0x7F080390
- public const int results_pic_c6c_1 = 2131231632;
-
- // aapt resource value: 0x7F080391
- public const int results_pic_c6c_2 = 2131231633;
-
- // aapt resource value: 0x7F080392
- public const int results_pic_c6h = 2131231634;
-
- // aapt resource value: 0x7F080393
- public const int results_pic_co2 = 2131231635;
-
- // aapt resource value: 0x7F080394
- public const int results_pic_d1 = 2131231636;
-
- // aapt resource value: 0x7F080395
- public const int results_pic_default = 2131231637;
-
- // aapt resource value: 0x7F080396
- public const int results_pic_f1 = 2131231638;
-
- // aapt resource value: 0x7F080397
- public const int results_pic_h2c = 2131231639;
-
- // aapt resource value: 0x7F080398
- public const int results_pic_h2s = 2131231640;
-
- // aapt resource value: 0x7F080399
- public const int results_pic_n1 = 2131231641;
-
- // aapt resource value: 0x7F08039A
- public const int results_pic_n1w = 2131231642;
-
- // aapt resource value: 0x7F08039B
- public const int results_pic_r1 = 2131231643;
-
- // aapt resource value: 0x7F08039C
- public const int results_pic_r2 = 2131231644;
-
- // aapt resource value: 0x7F08039D
- public const int results_pic_w1 = 2131231645;
-
- // aapt resource value: 0x7F08039E
- public const int results_pic_w3 = 2131231646;
-
- // aapt resource value: 0x7F08039F
- public const int results_pic_x1 = 2131231647;
-
- // aapt resource value: 0x7F0803A0
- public const int results_pic_x2 = 2131231648;
-
- // aapt resource value: 0x7F0803A1
- public const int results_pic_x3 = 2131231649;
-
- // aapt resource value: 0x7F0803A2
- public const int results_pic_x3c = 2131231650;
-
- // aapt resource value: 0x7F0803A3
- public const int results_pic_x4 = 2131231651;
-
- // aapt resource value: 0x7F0803A4
- public const int results_pic_z1 = 2131231652;
-
- // aapt resource value: 0x7F0803A5
- public const int results_w2d = 2131231653;
-
- // aapt resource value: 0x7F0803A6
- public const int results_w2s = 2131231654;
-
- // aapt resource value: 0x7F0803A7
- public const int results_wlb = 2131231655;
-
- // aapt resource value: 0x7F0803A8
- public const int results_x5_108tp = 2131231656;
+ public const int remote_play_sel = 2131231588;
// aapt resource value: 0x7F080365
- public const int result_5k_vr104d = 2131231589;
+ public const int remote_seekbar_style = 2131231589;
// aapt resource value: 0x7F080366
- public const int result_5k_vr116d = 2131231590;
+ public const int remote_seekbar_thumb = 2131231590;
// aapt resource value: 0x7F080367
- public const int result_8_16dvr = 2131231591;
+ public const int reset_deivce = 2131231591;
- // aapt resource value: 0x7F080368
- public const int result_cs_c3w = 2131231592;
+ // aapt resource value: 0x7F080374
+ public const int results_4_dvr = 2131231604;
- // aapt resource value: 0x7F080369
- public const int result_cs_vr104d = 2131231593;
+ // aapt resource value: 0x7F080375
+ public const int results_8_16_nvr = 2131231605;
- // aapt resource value: 0x7F08036A
- public const int result_cs_vr108d = 2131231594;
+ // aapt resource value: 0x7F080376
+ public const int results_8_nvr = 2131231606;
- // aapt resource value: 0x7F08036B
- public const int result_cs_vr116d = 2131231595;
+ // aapt resource value: 0x7F080377
+ public const int results_c6p = 2131231607;
- // aapt resource value: 0x7F08036C
- public const int result_pic_dh1 = 2131231596;
+ // aapt resource value: 0x7F080378
+ public const int results_mini_360_plus = 2131231608;
- // aapt resource value: 0x7F08036D
- public const int result_pic_doorbell = 2131231597;
+ // aapt resource value: 0x7F080379
+ public const int results_mini_trooper = 2131231609;
- // aapt resource value: 0x7F08036E
- public const int result_pic_doorbell_hik = 2131231598;
+ // aapt resource value: 0x7F08037A
+ public const int results_pic_a1 = 2131231610;
- // aapt resource value: 0x7F08036F
- public const int result_pic_light = 2131231599;
+ // aapt resource value: 0x7F08037B
+ public const int results_pic_a1c = 2131231611;
- // aapt resource value: 0x7F080370
- public const int result_x5c = 2131231600;
+ // aapt resource value: 0x7F08037C
+ public const int results_pic_a1s = 2131231612;
+
+ // aapt resource value: 0x7F08037D
+ public const int results_pic_baidu_c2s = 2131231613;
+
+ // aapt resource value: 0x7F08037E
+ public const int results_pic_bg = 2131231614;
+
+ // aapt resource value: 0x7F08037F
+ public const int results_pic_c1 = 2131231615;
+
+ // aapt resource value: 0x7F080380
+ public const int results_pic_c2 = 2131231616;
+
+ // aapt resource value: 0x7F080383
+ public const int results_pic_c2c = 2131231619;
+
+ // aapt resource value: 0x7F080384
+ public const int results_pic_c2mini = 2131231620;
+
+ // aapt resource value: 0x7F080385
+ public const int results_pic_c2mini2 = 2131231621;
+
+ // aapt resource value: 0x7F080386
+ public const int results_pic_c2plus = 2131231622;
+
+ // aapt resource value: 0x7F080387
+ public const int results_pic_c2s = 2131231623;
+
+ // aapt resource value: 0x7F080388
+ public const int results_pic_c2w = 2131231624;
+
+ // aapt resource value: 0x7F080381
+ public const int results_pic_c2_2 = 2131231617;
+
+ // aapt resource value: 0x7F080382
+ public const int results_pic_c2_usa = 2131231618;
+
+ // aapt resource value: 0x7F080389
+ public const int results_pic_c3 = 2131231625;
+
+ // aapt resource value: 0x7F08038A
+ public const int results_pic_c3c = 2131231626;
+
+ // aapt resource value: 0x7F08038B
+ public const int results_pic_c3e = 2131231627;
+
+ // aapt resource value: 0x7F08038C
+ public const int results_pic_c3s = 2131231628;
+
+ // aapt resource value: 0x7F08038D
+ public const int results_pic_c4 = 2131231629;
+
+ // aapt resource value: 0x7F08038E
+ public const int results_pic_c4c = 2131231630;
+
+ // aapt resource value: 0x7F08038F
+ public const int results_pic_c4e = 2131231631;
+
+ // aapt resource value: 0x7F080390
+ public const int results_pic_c4s = 2131231632;
+
+ // aapt resource value: 0x7F080391
+ public const int results_pic_c6 = 2131231633;
+
+ // aapt resource value: 0x7F080392
+ public const int results_pic_c6c = 2131231634;
+
+ // aapt resource value: 0x7F080393
+ public const int results_pic_c6c_1 = 2131231635;
+
+ // aapt resource value: 0x7F080394
+ public const int results_pic_c6c_2 = 2131231636;
+
+ // aapt resource value: 0x7F080395
+ public const int results_pic_c6h = 2131231637;
+
+ // aapt resource value: 0x7F080396
+ public const int results_pic_co2 = 2131231638;
+
+ // aapt resource value: 0x7F080397
+ public const int results_pic_d1 = 2131231639;
+
+ // aapt resource value: 0x7F080398
+ public const int results_pic_default = 2131231640;
+
+ // aapt resource value: 0x7F080399
+ public const int results_pic_f1 = 2131231641;
+
+ // aapt resource value: 0x7F08039A
+ public const int results_pic_h2c = 2131231642;
+
+ // aapt resource value: 0x7F08039B
+ public const int results_pic_h2s = 2131231643;
+
+ // aapt resource value: 0x7F08039C
+ public const int results_pic_n1 = 2131231644;
+
+ // aapt resource value: 0x7F08039D
+ public const int results_pic_n1w = 2131231645;
+
+ // aapt resource value: 0x7F08039E
+ public const int results_pic_r1 = 2131231646;
+
+ // aapt resource value: 0x7F08039F
+ public const int results_pic_r2 = 2131231647;
+
+ // aapt resource value: 0x7F0803A0
+ public const int results_pic_w1 = 2131231648;
+
+ // aapt resource value: 0x7F0803A1
+ public const int results_pic_w3 = 2131231649;
+
+ // aapt resource value: 0x7F0803A2
+ public const int results_pic_x1 = 2131231650;
+
+ // aapt resource value: 0x7F0803A3
+ public const int results_pic_x2 = 2131231651;
+
+ // aapt resource value: 0x7F0803A4
+ public const int results_pic_x3 = 2131231652;
+
+ // aapt resource value: 0x7F0803A5
+ public const int results_pic_x3c = 2131231653;
+
+ // aapt resource value: 0x7F0803A6
+ public const int results_pic_x4 = 2131231654;
+
+ // aapt resource value: 0x7F0803A7
+ public const int results_pic_z1 = 2131231655;
+
+ // aapt resource value: 0x7F0803A8
+ public const int results_w2d = 2131231656;
// aapt resource value: 0x7F0803A9
- public const int right_horizontal = 2131231657;
+ public const int results_w2s = 2131231657;
// aapt resource value: 0x7F0803AA
- public const int right_twinkle = 2131231658;
+ public const int results_wlb = 2131231658;
// aapt resource value: 0x7F0803AB
- public const int ring_off = 2131231659;
+ public const int results_x5_108tp = 2131231659;
+
+ // aapt resource value: 0x7F080368
+ public const int result_5k_vr104d = 2131231592;
+
+ // aapt resource value: 0x7F080369
+ public const int result_5k_vr116d = 2131231593;
+
+ // aapt resource value: 0x7F08036A
+ public const int result_8_16dvr = 2131231594;
+
+ // aapt resource value: 0x7F08036B
+ public const int result_cs_c3w = 2131231595;
+
+ // aapt resource value: 0x7F08036C
+ public const int result_cs_vr104d = 2131231596;
+
+ // aapt resource value: 0x7F08036D
+ public const int result_cs_vr108d = 2131231597;
+
+ // aapt resource value: 0x7F08036E
+ public const int result_cs_vr116d = 2131231598;
+
+ // aapt resource value: 0x7F08036F
+ public const int result_pic_dh1 = 2131231599;
+
+ // aapt resource value: 0x7F080370
+ public const int result_pic_doorbell = 2131231600;
+
+ // aapt resource value: 0x7F080371
+ public const int result_pic_doorbell_hik = 2131231601;
+
+ // aapt resource value: 0x7F080372
+ public const int result_pic_light = 2131231602;
+
+ // aapt resource value: 0x7F080373
+ public const int result_x5c = 2131231603;
// aapt resource value: 0x7F0803AC
- public const int say_bg = 2131231660;
+ public const int right_horizontal = 2131231660;
// aapt resource value: 0x7F0803AD
- public const int screenshot = 2131231661;
+ public const int right_twinkle = 2131231661;
// aapt resource value: 0x7F0803AE
- public const int screenshot_def = 2131231662;
+ public const int ring_off = 2131231662;
// aapt resource value: 0x7F0803AF
- public const int screenshot_sel = 2131231663;
+ public const int say_bg = 2131231663;
// aapt resource value: 0x7F0803B0
- public const int search = 2131231664;
+ public const int screenshot = 2131231664;
// aapt resource value: 0x7F0803B1
- public const int search_bnt = 2131231665;
+ public const int screenshot_def = 2131231665;
// aapt resource value: 0x7F0803B2
- public const int search_bnt_sel = 2131231666;
+ public const int screenshot_sel = 2131231666;
// aapt resource value: 0x7F0803B3
- public const int search_button_selector = 2131231667;
+ public const int search = 2131231667;
// aapt resource value: 0x7F0803B4
- public const int search_input = 2131231668;
+ public const int search_bnt = 2131231668;
// aapt resource value: 0x7F0803B5
- public const int seekbar_thumb = 2131231669;
-
- // aapt resource value: 0x7F0803B7
- public const int selected_icon = 2131231671;
-
- // aapt resource value: 0x7F0803B8
- public const int selector_pickerview_btn = 2131231672;
+ public const int search_bnt_sel = 2131231669;
// aapt resource value: 0x7F0803B6
- public const int select_icon = 2131231670;
+ public const int search_button_selector = 2131231670;
- // aapt resource value: 0x7F0803B9
- public const int server1 = 2131231673;
+ // aapt resource value: 0x7F0803B7
+ public const int search_input = 2131231671;
+
+ // aapt resource value: 0x7F0803B8
+ public const int seekbar_thumb = 2131231672;
// aapt resource value: 0x7F0803BA
- public const int server2 = 2131231674;
+ public const int selected_icon = 2131231674;
// aapt resource value: 0x7F0803BB
- public const int server3 = 2131231675;
+ public const int selector_pickerview_btn = 2131231675;
+
+ // aapt resource value: 0x7F0803B9
+ public const int select_icon = 2131231673;
// aapt resource value: 0x7F0803BC
- public const int server4 = 2131231676;
+ public const int server1 = 2131231676;
// aapt resource value: 0x7F0803BD
- public const int setup = 2131231677;
+ public const int server2 = 2131231677;
// aapt resource value: 0x7F0803BE
- public const int setup_sel = 2131231678;
+ public const int server3 = 2131231678;
// aapt resource value: 0x7F0803BF
- public const int setup_wechat = 2131231679;
+ public const int server4 = 2131231679;
// aapt resource value: 0x7F0803C0
- public const int share_management_label_button = 2131231680;
+ public const int setup = 2131231680;
// aapt resource value: 0x7F0803C1
- public const int share_management_label_button_sel = 2131231681;
+ public const int setup_sel = 2131231681;
// aapt resource value: 0x7F0803C2
- public const int shipin7_alarm_msg_new = 2131231682;
+ public const int setup_wechat = 2131231682;
// aapt resource value: 0x7F0803C3
- public const int shrink_screen_normal = 2131231683;
+ public const int share_management_label_button = 2131231683;
// aapt resource value: 0x7F0803C4
- public const int shrink_screen_pressed = 2131231684;
+ public const int share_management_label_button_sel = 2131231684;
// aapt resource value: 0x7F0803C5
- public const int small_button_cameralist = 2131231685;
+ public const int shipin7_alarm_msg_new = 2131231685;
// aapt resource value: 0x7F0803C6
- public const int sound_off = 2131231686;
+ public const int shrink_screen_normal = 2131231686;
// aapt resource value: 0x7F0803C7
- public const int sound_off_blue = 2131231687;
+ public const int shrink_screen_pressed = 2131231687;
// aapt resource value: 0x7F0803C8
- public const int sound_off_sel = 2131231688;
+ public const int small_button_cameralist = 2131231688;
// aapt resource value: 0x7F0803C9
- public const int sound_off_sel_blue = 2131231689;
+ public const int sound_off = 2131231689;
// aapt resource value: 0x7F0803CA
- public const int sound_on = 2131231690;
+ public const int sound_off_blue = 2131231690;
// aapt resource value: 0x7F0803CB
- public const int sound_on_blue = 2131231691;
+ public const int sound_off_sel = 2131231691;
// aapt resource value: 0x7F0803CC
- public const int sound_on_sel = 2131231692;
+ public const int sound_off_sel_blue = 2131231692;
// aapt resource value: 0x7F0803CD
- public const int sound_on_sel_blue = 2131231693;
+ public const int sound_on = 2131231693;
// aapt resource value: 0x7F0803CE
- public const int sound_source = 2131231694;
+ public const int sound_on_blue = 2131231694;
// aapt resource value: 0x7F0803CF
- public const int sound_source_sel = 2131231695;
+ public const int sound_on_sel = 2131231695;
// aapt resource value: 0x7F0803D0
- public const int speech = 2131231696;
+ public const int sound_on_sel_blue = 2131231696;
// aapt resource value: 0x7F0803D1
- public const int speech_0 = 2131231697;
+ public const int sound_source = 2131231697;
// aapt resource value: 0x7F0803D2
- public const int speech_1 = 2131231698;
+ public const int sound_source_sel = 2131231698;
// aapt resource value: 0x7F0803D3
- public const int speech_2 = 2131231699;
+ public const int speech = 2131231699;
// aapt resource value: 0x7F0803D4
- public const int speech_3 = 2131231700;
+ public const int speech_0 = 2131231700;
// aapt resource value: 0x7F0803D5
- public const int speech_4 = 2131231701;
+ public const int speech_1 = 2131231701;
// aapt resource value: 0x7F0803D6
- public const int speech_5 = 2131231702;
+ public const int speech_2 = 2131231702;
// aapt resource value: 0x7F0803D7
- public const int speech_full_selector = 2131231703;
+ public const int speech_3 = 2131231703;
// aapt resource value: 0x7F0803D8
- public const int stop = 2131231704;
-
- // aapt resource value: 0x7F0803DB
- public const int stopbtn_selector = 2131231707;
-
- // aapt resource value: 0x7F0803DC
- public const int stoplay_btn = 2131231708;
-
- // aapt resource value: 0x7F0803DD
- public const int stoplay_btn_sel = 2131231709;
+ public const int speech_4 = 2131231704;
// aapt resource value: 0x7F0803D9
- public const int stop_disable = 2131231705;
+ public const int speech_5 = 2131231705;
// aapt resource value: 0x7F0803DA
- public const int stop_press = 2131231706;
+ public const int speech_full_selector = 2131231706;
+
+ // aapt resource value: 0x7F0803DB
+ public const int stop = 2131231707;
// aapt resource value: 0x7F0803DE
- public const int success = 2131231710;
+ public const int stopbtn_selector = 2131231710;
// aapt resource value: 0x7F0803DF
- public const int success_icon = 2131231711;
+ public const int stoplay_btn = 2131231711;
// aapt resource value: 0x7F0803E0
- public const int success_img = 2131231712;
+ public const int stoplay_btn_sel = 2131231712;
+
+ // aapt resource value: 0x7F0803DC
+ public const int stop_disable = 2131231708;
+
+ // aapt resource value: 0x7F0803DD
+ public const int stop_press = 2131231709;
// aapt resource value: 0x7F0803E1
- public const int sure_background_def = 2131231713;
+ public const int success = 2131231713;
// aapt resource value: 0x7F0803E2
- public const int sure_background_sel = 2131231714;
+ public const int success_icon = 2131231714;
// aapt resource value: 0x7F0803E3
- public const int switch_camera = 2131231715;
+ public const int success_img = 2131231715;
// aapt resource value: 0x7F0803E4
- public const int tab_left = 2131231716;
+ public const int sure_background_def = 2131231716;
// aapt resource value: 0x7F0803E5
- public const int tab_left_sel = 2131231717;
+ public const int sure_background_sel = 2131231717;
// aapt resource value: 0x7F0803E6
- public const int tab_right = 2131231718;
+ public const int switch_camera = 2131231718;
// aapt resource value: 0x7F0803E7
- public const int tab_right_sel = 2131231719;
+ public const int tab_left = 2131231719;
// aapt resource value: 0x7F0803E8
- public const int tiltle_button_selector = 2131231720;
+ public const int tab_left_sel = 2131231720;
// aapt resource value: 0x7F0803E9
- public const int timeline = 2131231721;
+ public const int tab_right = 2131231721;
// aapt resource value: 0x7F0803EA
- public const int timeline_sel = 2131231722;
+ public const int tab_right_sel = 2131231722;
// aapt resource value: 0x7F0803EB
- public const int tip_background = 2131231723;
+ public const int tiltle_button_selector = 2131231723;
// aapt resource value: 0x7F0803EC
- public const int tip_textview_bg = 2131231724;
+ public const int timeline = 2131231724;
// aapt resource value: 0x7F0803ED
- public const int title_down_bg = 2131231725;
+ public const int timeline_sel = 2131231725;
// aapt resource value: 0x7F0803EE
- public const int title_down_play = 2131231726;
+ public const int tip_background = 2131231726;
// aapt resource value: 0x7F0803EF
- public const int title_down_play_sel = 2131231727;
+ public const int tip_textview_bg = 2131231727;
// aapt resource value: 0x7F0803F0
- public const int title_down_play_selector = 2131231728;
+ public const int title_down_bg = 2131231728;
// aapt resource value: 0x7F0803F1
- public const int title_menu_bg = 2131231729;
+ public const int title_down_play = 2131231729;
// aapt resource value: 0x7F0803F2
- public const int tittel_button_bg = 2131231730;
+ public const int title_down_play_sel = 2131231730;
// aapt resource value: 0x7F0803F3
- public const int tittel_button_press_bg = 2131231731;
+ public const int title_down_play_selector = 2131231731;
// aapt resource value: 0x7F0803F4
- public const int tooltip_frame_dark = 2131231732;
+ public const int title_menu_bg = 2131231732;
// aapt resource value: 0x7F0803F5
- public const int tooltip_frame_light = 2131231733;
+ public const int tittel_button_bg = 2131231733;
// aapt resource value: 0x7F0803F6
- public const int top_bar_bg = 2131231734;
+ public const int tittel_button_press_bg = 2131231734;
// aapt resource value: 0x7F0803F7
- public const int track_bar_bg = 2131231735;
+ public const int tooltip_frame_dark = 2131231735;
// aapt resource value: 0x7F0803F8
- public const int translucent = 2131231736;
+ public const int tooltip_frame_light = 2131231736;
// aapt resource value: 0x7F0803F9
- public const int @unchecked = 2131231737;
+ public const int top_bar_bg = 2131231737;
// aapt resource value: 0x7F0803FA
- public const int unlock = 2131231738;
+ public const int track_bar_bg = 2131231738;
// aapt resource value: 0x7F0803FB
- public const int unlock_def = 2131231739;
+ public const int translucent = 2131231739;
// aapt resource value: 0x7F0803FC
- public const int unlock_sel = 2131231740;
-
- // aapt resource value: 0x7F0803FF
- public const int upgrade = 2131231743;
-
- // aapt resource value: 0x7F080400
- public const int upsdk_cancel_bg = 2131231744;
-
- // aapt resource value: 0x7F080401
- public const int upsdk_cancel_normal = 2131231745;
-
- // aapt resource value: 0x7F080402
- public const int upsdk_cancel_pressed_bg = 2131231746;
-
- // aapt resource value: 0x7F080403
- public const int upsdk_third_download_bg = 2131231747;
+ public const int @unchecked = 2131231740;
// aapt resource value: 0x7F0803FD
- public const int up_horizontal = 2131231741;
+ public const int unlock = 2131231741;
// aapt resource value: 0x7F0803FE
- public const int up_twinkle = 2131231742;
+ public const int unlock_def = 2131231742;
+
+ // aapt resource value: 0x7F0803FF
+ public const int unlock_sel = 2131231743;
+
+ // aapt resource value: 0x7F080402
+ public const int upgrade = 2131231746;
+
+ // aapt resource value: 0x7F080403
+ public const int upsdk_cancel_bg = 2131231747;
// aapt resource value: 0x7F080404
- public const int user = 2131231748;
+ public const int upsdk_cancel_normal = 2131231748;
// aapt resource value: 0x7F080405
- public const int vertical_preview_sound_selector = 2131231749;
+ public const int upsdk_cancel_pressed_bg = 2131231749;
// aapt resource value: 0x7F080406
- public const int vertical_preview_stop_selector = 2131231750;
+ public const int upsdk_third_download_bg = 2131231750;
- // aapt resource value: 0x7F080416
- public const int videogo_icon = 2131231766;
+ // aapt resource value: 0x7F080400
+ public const int up_horizontal = 2131231744;
+
+ // aapt resource value: 0x7F080401
+ public const int up_twinkle = 2131231745;
// aapt resource value: 0x7F080407
- public const int video_background = 2131231751;
+ public const int user = 2131231751;
// aapt resource value: 0x7F080408
- public const int video_camera1_1 = 2131231752;
+ public const int vertical_preview_sound_selector = 2131231752;
// aapt resource value: 0x7F080409
- public const int video_camera1_2 = 2131231753;
-
- // aapt resource value: 0x7F08040A
- public const int video_camera1_3 = 2131231754;
-
- // aapt resource value: 0x7F08040B
- public const int video_file_watermark = 2131231755;
-
- // aapt resource value: 0x7F08040C
- public const int video_quality_selector = 2131231756;
-
- // aapt resource value: 0x7F08040D
- public const int video_talk_sdk_icn_watch = 2131231757;
-
- // aapt resource value: 0x7F08040E
- public const int video_talk_sdk_placeholder_images_user = 2131231758;
-
- // aapt resource value: 0x7F08040F
- public const int video_talk_sdk_video_answer = 2131231759;
-
- // aapt resource value: 0x7F080410
- public const int video_talk_sdk_video_hangup = 2131231760;
-
- // aapt resource value: 0x7F080411
- public const int video_talk_sdk_video_record_off = 2131231761;
-
- // aapt resource value: 0x7F080412
- public const int video_talk_sdk_video_record_on = 2131231762;
-
- // aapt resource value: 0x7F080413
- public const int video_talk_sdk_video_snap = 2131231763;
-
- // aapt resource value: 0x7F080414
- public const int video_talk_sdk_video_stop = 2131231764;
-
- // aapt resource value: 0x7F080415
- public const int video_talk_sdk_video_switch_camera = 2131231765;
-
- // aapt resource value: 0x7F080420
- public const int waiting_bg = 2131231776;
-
- // aapt resource value: 0x7F080421
- public const int waiting_progressbar_bg = 2131231777;
-
- // aapt resource value: 0x7F080417
- public const int wait_1 = 2131231767;
-
- // aapt resource value: 0x7F080418
- public const int wait_2 = 2131231768;
+ public const int vertical_preview_stop_selector = 2131231753;
// aapt resource value: 0x7F080419
- public const int wait_3 = 2131231769;
+ public const int videogo_icon = 2131231769;
- // aapt resource value: 0x7F08041A
- public const int wait_4 = 2131231770;
+ // aapt resource value: 0x7F08040A
+ public const int video_background = 2131231754;
- // aapt resource value: 0x7F08041B
- public const int wait_5 = 2131231771;
+ // aapt resource value: 0x7F08040B
+ public const int video_camera1_1 = 2131231755;
- // aapt resource value: 0x7F08041C
- public const int wait_6 = 2131231772;
+ // aapt resource value: 0x7F08040C
+ public const int video_camera1_2 = 2131231756;
- // aapt resource value: 0x7F08041D
- public const int wait_7 = 2131231773;
+ // aapt resource value: 0x7F08040D
+ public const int video_camera1_3 = 2131231757;
- // aapt resource value: 0x7F08041E
- public const int wait_8 = 2131231774;
+ // aapt resource value: 0x7F08040E
+ public const int video_file_watermark = 2131231758;
- // aapt resource value: 0x7F08041F
- public const int wait_upload_img = 2131231775;
+ // aapt resource value: 0x7F08040F
+ public const int video_quality_selector = 2131231759;
- // aapt resource value: 0x7F080422
- public const int water_alarm = 2131231778;
+ // aapt resource value: 0x7F080410
+ public const int video_talk_sdk_icn_watch = 2131231760;
+
+ // aapt resource value: 0x7F080411
+ public const int video_talk_sdk_placeholder_images_user = 2131231761;
+
+ // aapt resource value: 0x7F080412
+ public const int video_talk_sdk_video_answer = 2131231762;
+
+ // aapt resource value: 0x7F080413
+ public const int video_talk_sdk_video_hangup = 2131231763;
+
+ // aapt resource value: 0x7F080414
+ public const int video_talk_sdk_video_record_off = 2131231764;
+
+ // aapt resource value: 0x7F080415
+ public const int video_talk_sdk_video_record_on = 2131231765;
+
+ // aapt resource value: 0x7F080416
+ public const int video_talk_sdk_video_snap = 2131231766;
+
+ // aapt resource value: 0x7F080417
+ public const int video_talk_sdk_video_stop = 2131231767;
+
+ // aapt resource value: 0x7F080418
+ public const int video_talk_sdk_video_switch_camera = 2131231768;
// aapt resource value: 0x7F080423
- public const int wifi_config_bg = 2131231779;
+ public const int waiting_bg = 2131231779;
// aapt resource value: 0x7F080424
- public const int wifi_connect_tip = 2131231780;
+ public const int waiting_progressbar_bg = 2131231780;
+
+ // aapt resource value: 0x7F08041A
+ public const int wait_1 = 2131231770;
+
+ // aapt resource value: 0x7F08041B
+ public const int wait_2 = 2131231771;
+
+ // aapt resource value: 0x7F08041C
+ public const int wait_3 = 2131231772;
+
+ // aapt resource value: 0x7F08041D
+ public const int wait_4 = 2131231773;
+
+ // aapt resource value: 0x7F08041E
+ public const int wait_5 = 2131231774;
+
+ // aapt resource value: 0x7F08041F
+ public const int wait_6 = 2131231775;
+
+ // aapt resource value: 0x7F080420
+ public const int wait_7 = 2131231776;
+
+ // aapt resource value: 0x7F080421
+ public const int wait_8 = 2131231777;
+
+ // aapt resource value: 0x7F080422
+ public const int wait_upload_img = 2131231778;
// aapt resource value: 0x7F080425
- public const int yuntai_normal = 2131231781;
+ public const int water_alarm = 2131231781;
// aapt resource value: 0x7F080426
- public const int yuntai_pressed = 2131231782;
+ public const int wifi_config_bg = 2131231782;
// aapt resource value: 0x7F080427
- public const int yxs_head = 2131231783;
+ public const int wifi_connect_tip = 2131231783;
// aapt resource value: 0x7F080428
- public const int z1_bg = 2131231784;
+ public const int yuntai_normal = 2131231784;
+
+ // aapt resource value: 0x7F080429
+ public const int yuntai_pressed = 2131231785;
+
+ // aapt resource value: 0x7F08042A
+ public const int yxs_head = 2131231786;
+
+ // aapt resource value: 0x7F08042B
+ public const int z1_bg = 2131231787;
static Drawable()
{
@@ -6919,842 +6928,848 @@
// aapt resource value: 0x7F09002D
public const int add_btn = 2131296301;
- // aapt resource value: 0x7F090031
- public const int alarmlist_lv = 2131296305;
+ // aapt resource value: 0x7F09002E
+ public const int agree_btn = 2131296302;
// aapt resource value: 0x7F090032
- public const int alarmlist_ly = 2131296306;
-
- // aapt resource value: 0x7F09002E
- public const int alarm_close_btn = 2131296302;
-
- // aapt resource value: 0x7F09002F
- public const int alarm_image = 2131296303;
-
- // aapt resource value: 0x7F090030
- public const int alarm_info_rl = 2131296304;
+ public const int alarmlist_lv = 2131296306;
// aapt resource value: 0x7F090033
- public const int alertTitle = 2131296307;
+ public const int alarmlist_ly = 2131296307;
+
+ // aapt resource value: 0x7F09002F
+ public const int alarm_close_btn = 2131296303;
+
+ // aapt resource value: 0x7F090030
+ public const int alarm_image = 2131296304;
+
+ // aapt resource value: 0x7F090031
+ public const int alarm_info_rl = 2131296305;
// aapt resource value: 0x7F090034
- public const int all = 2131296308;
+ public const int alertTitle = 2131296308;
// aapt resource value: 0x7F090035
- public const int allsize_textview = 2131296309;
+ public const int all = 2131296309;
+
+ // aapt resource value: 0x7F090036
+ public const int allsize_textview = 2131296310;
// aapt resource value: 0x7F090000
public const int ALT = 2131296256;
- // aapt resource value: 0x7F090036
- public const int always = 2131296310;
-
- // aapt resource value: 0x7F090040
- public const int appsize_textview = 2131296320;
-
// aapt resource value: 0x7F090037
- public const int app_common_all_config_error_info = 2131296311;
-
- // aapt resource value: 0x7F090038
- public const int app_common_config_result_fail = 2131296312;
-
- // aapt resource value: 0x7F090039
- public const int app_common_config_result_success = 2131296313;
-
- // aapt resource value: 0x7F09003A
- public const int app_common_device_hotspot_name = 2131296314;
-
- // aapt resource value: 0x7F09003B
- public const int app_common_device_hotspot_pwd = 2131296315;
-
- // aapt resource value: 0x7F09003C
- public const int app_common_tv_title = 2131296316;
-
- // aapt resource value: 0x7F09003D
- public const int app_common_vg_config_result = 2131296317;
-
- // aapt resource value: 0x7F09003E
- public const int app_progress_bar_add_device = 2131296318;
-
- // aapt resource value: 0x7F09003F
- public const int app_vg_failed_to_add_device = 2131296319;
+ public const int always = 2131296311;
// aapt resource value: 0x7F090041
- public const int async = 2131296321;
+ public const int appsize_textview = 2131296321;
+
+ // aapt resource value: 0x7F090038
+ public const int app_common_all_config_error_info = 2131296312;
+
+ // aapt resource value: 0x7F090039
+ public const int app_common_config_result_fail = 2131296313;
+
+ // aapt resource value: 0x7F09003A
+ public const int app_common_config_result_success = 2131296314;
+
+ // aapt resource value: 0x7F09003B
+ public const int app_common_device_hotspot_name = 2131296315;
+
+ // aapt resource value: 0x7F09003C
+ public const int app_common_device_hotspot_pwd = 2131296316;
+
+ // aapt resource value: 0x7F09003D
+ public const int app_common_tv_title = 2131296317;
+
+ // aapt resource value: 0x7F09003E
+ public const int app_common_vg_config_result = 2131296318;
+
+ // aapt resource value: 0x7F09003F
+ public const int app_progress_bar_add_device = 2131296319;
+
+ // aapt resource value: 0x7F090040
+ public const int app_vg_failed_to_add_device = 2131296320;
// aapt resource value: 0x7F090042
- public const int auto = 2131296322;
+ public const int async = 2131296322;
// aapt resource value: 0x7F090043
- public const int autoAccept = 2131296323;
+ public const int auto = 2131296323;
// aapt resource value: 0x7F090044
- public const int autoTest = 2131296324;
+ public const int autoAccept = 2131296324;
// aapt resource value: 0x7F090045
- public const int auto_focus = 2131296325;
+ public const int autoTest = 2131296325;
// aapt resource value: 0x7F090046
- public const int auto_play_layout = 2131296326;
+ public const int auto_focus = 2131296326;
// aapt resource value: 0x7F090047
- public const int back_img = 2131296327;
+ public const int auto_play_layout = 2131296327;
// aapt resource value: 0x7F090048
- public const int barrier = 2131296328;
-
- // aapt resource value: 0x7F09004A
- public const int beginning = 2131296330;
+ public const int back_img = 2131296328;
// aapt resource value: 0x7F090049
- public const int begin_time_tv = 2131296329;
+ public const int barrier = 2131296329;
// aapt resource value: 0x7F09004B
- public const int belongType = 2131296331;
+ public const int beginning = 2131296331;
+
+ // aapt resource value: 0x7F09004A
+ public const int begin_time_tv = 2131296330;
// aapt resource value: 0x7F09004C
- public const int blocking = 2131296332;
+ public const int belongType = 2131296332;
// aapt resource value: 0x7F09004D
- public const int bottom = 2131296333;
+ public const int blocking = 2131296333;
// aapt resource value: 0x7F09004E
- public const int bottom_bar = 2131296334;
+ public const int bottom = 2131296334;
// aapt resource value: 0x7F09004F
- public const int btnAddCameraSuccess = 2131296335;
+ public const int bottom_bar = 2131296335;
// aapt resource value: 0x7F090050
- public const int btnBack = 2131296336;
+ public const int btnAddCameraSuccess = 2131296336;
// aapt resource value: 0x7F090051
- public const int btnCancel = 2131296337;
+ public const int btnBack = 2131296337;
// aapt resource value: 0x7F090052
- public const int btnFinish = 2131296338;
+ public const int btnCancel = 2131296338;
// aapt resource value: 0x7F090053
- public const int btnIntroduce = 2131296339;
+ public const int btnFinish = 2131296339;
// aapt resource value: 0x7F090054
- public const int btnLineConnet = 2131296340;
+ public const int btnIntroduce = 2131296340;
// aapt resource value: 0x7F090055
- public const int btnLineConnetOk = 2131296341;
+ public const int btnLineConnet = 2131296341;
// aapt resource value: 0x7F090056
- public const int btnNext = 2131296342;
+ public const int btnLineConnetOk = 2131296342;
// aapt resource value: 0x7F090057
- public const int btnReset = 2131296343;
+ public const int btnNext = 2131296343;
// aapt resource value: 0x7F090058
- public const int btnRetry = 2131296344;
+ public const int btnReset = 2131296344;
// aapt resource value: 0x7F090059
- public const int btnSubmit = 2131296345;
+ public const int btnRetry = 2131296345;
// aapt resource value: 0x7F09005A
- public const int btn_add = 2131296346;
+ public const int btnSubmit = 2131296346;
// aapt resource value: 0x7F09005B
- public const int btn_capture = 2131296347;
+ public const int btn_add = 2131296347;
// aapt resource value: 0x7F09005C
- public const int btn_change_playback_rate = 2131296348;
+ public const int btn_capture = 2131296348;
// aapt resource value: 0x7F09005D
- public const int btn_ddns = 2131296349;
+ public const int btn_change_playback_rate = 2131296349;
// aapt resource value: 0x7F09005E
- public const int btn_ezviz_login = 2131296350;
+ public const int btn_ddns = 2131296350;
// aapt resource value: 0x7F09005F
- public const int btn_get_device_list = 2131296351;
+ public const int btn_ezviz_login = 2131296351;
// aapt resource value: 0x7F090060
- public const int btn_hat_audio_caller = 2131296352;
+ public const int btn_get_device_list = 2131296352;
// aapt resource value: 0x7F090061
- public const int btn_hat_video_caller = 2131296353;
+ public const int btn_hat_audio_caller = 2131296353;
// aapt resource value: 0x7F090062
- public const int btn_id_save_name = 2131296354;
+ public const int btn_hat_video_caller = 2131296354;
// aapt resource value: 0x7F090063
- public const int btn_landevice = 2131296355;
+ public const int btn_id_save_name = 2131296355;
// aapt resource value: 0x7F090064
- public const int btn_logout = 2131296356;
+ public const int btn_landevice = 2131296356;
// aapt resource value: 0x7F090065
- public const int btn_multi_screen_preview = 2131296357;
+ public const int btn_logout = 2131296357;
// aapt resource value: 0x7F090066
- public const int btn_online_device = 2131296358;
+ public const int btn_multi_screen_preview = 2131296358;
// aapt resource value: 0x7F090067
- public const int btn_sdk_login = 2131296359;
+ public const int btn_online_device = 2131296359;
// aapt resource value: 0x7F090068
- public const int btn_show_debug_tools = 2131296360;
+ public const int btn_sdk_login = 2131296360;
// aapt resource value: 0x7F090069
- public const int btn_start_ap = 2131296361;
+ public const int btn_show_debug_tools = 2131296361;
// aapt resource value: 0x7F09006A
- public const int btn_stop_ap = 2131296362;
+ public const int btn_start_ap = 2131296362;
// aapt resource value: 0x7F09006B
- public const int btn_support = 2131296363;
+ public const int btn_stop_ap = 2131296363;
// aapt resource value: 0x7F09006C
- public const int btn_test = 2131296364;
+ public const int btn_support = 2131296364;
// aapt resource value: 0x7F09006D
- public const int btn_to_alarm_list = 2131296365;
+ public const int btn_test = 2131296365;
// aapt resource value: 0x7F09006E
- public const int btn_to_ap = 2131296366;
+ public const int btn_to_alarm_list = 2131296366;
// aapt resource value: 0x7F09006F
- public const int btn_to_device_list = 2131296367;
+ public const int btn_to_ap = 2131296367;
// aapt resource value: 0x7F090070
- public const int btn_to_smart_config = 2131296368;
+ public const int btn_to_device_list = 2131296368;
// aapt resource value: 0x7F090071
- public const int btn_to_sound_wave = 2131296369;
+ public const int btn_to_smart_config = 2131296369;
// aapt resource value: 0x7F090072
- public const int btn_user = 2131296370;
+ public const int btn_to_sound_wave = 2131296370;
// aapt resource value: 0x7F090073
- public const int buttonPanel = 2131296371;
+ public const int btn_user = 2131296371;
// aapt resource value: 0x7F090074
- public const int callAnswerImg = 2131296372;
+ public const int buttonPanel = 2131296372;
// aapt resource value: 0x7F090075
- public const int callAnswerLayout = 2131296373;
+ public const int callAnswerImg = 2131296373;
// aapt resource value: 0x7F090076
- public const int callHangupImg = 2131296374;
+ public const int callAnswerLayout = 2131296374;
// aapt resource value: 0x7F090077
- public const int callHangupText = 2131296375;
+ public const int callHangupImg = 2131296375;
// aapt resource value: 0x7F090078
- public const int callScreenshotImg = 2131296376;
+ public const int callHangupText = 2131296376;
// aapt resource value: 0x7F090079
- public const int callTipText = 2131296377;
+ public const int callScreenshotImg = 2131296377;
// aapt resource value: 0x7F09007A
- public const int callUnlockImg = 2131296378;
+ public const int callTipText = 2131296378;
// aapt resource value: 0x7F09007B
- public const int call_accept = 2131296379;
+ public const int callUnlockImg = 2131296379;
// aapt resource value: 0x7F09007C
- public const int camera0 = 2131296380;
+ public const int call_accept = 2131296380;
// aapt resource value: 0x7F09007D
- public const int camera1 = 2131296381;
+ public const int camera0 = 2131296381;
// aapt resource value: 0x7F09007E
- public const int cameraListLy = 2131296382;
+ public const int camera1 = 2131296382;
// aapt resource value: 0x7F09007F
- public const int cameraName = 2131296383;
+ public const int cameraListLy = 2131296383;
// aapt resource value: 0x7F090080
- public const int cameraNameSort = 2131296384;
+ public const int cameraName = 2131296384;
// aapt resource value: 0x7F090081
- public const int camera_del_btn = 2131296385;
+ public const int cameraNameSort = 2131296385;
// aapt resource value: 0x7F090082
- public const int camera_item_btn = 2131296386;
+ public const int camera_del_btn = 2131296386;
// aapt resource value: 0x7F090083
- public const int camera_item_rl = 2131296387;
+ public const int camera_item_btn = 2131296387;
// aapt resource value: 0x7F090084
- public const int camera_layout = 2131296388;
+ public const int camera_item_rl = 2131296388;
// aapt resource value: 0x7F090085
- public const int camera_layout_my = 2131296389;
-
- // aapt resource value: 0x7F090088
- public const int camera_listview = 2131296392;
+ public const int camera_layout = 2131296389;
// aapt resource value: 0x7F090086
- public const int camera_list_gc_ly = 2131296390;
-
- // aapt resource value: 0x7F090087
- public const int camera_list_refresh_btn = 2131296391;
+ public const int camera_layout_my = 2131296390;
// aapt resource value: 0x7F090089
- public const int camera_name_tv = 2131296393;
+ public const int camera_listview = 2131296393;
+
+ // aapt resource value: 0x7F090087
+ public const int camera_list_gc_ly = 2131296391;
+
+ // aapt resource value: 0x7F090088
+ public const int camera_list_refresh_btn = 2131296392;
// aapt resource value: 0x7F09008A
- public const int camera_switch_btn = 2131296394;
+ public const int camera_name_tv = 2131296394;
// aapt resource value: 0x7F09008B
- public const int camera_view = 2131296395;
+ public const int camera_switch_btn = 2131296395;
// aapt resource value: 0x7F09008C
- public const int camera_view_my = 2131296396;
+ public const int camera_view = 2131296396;
// aapt resource value: 0x7F09008D
- public const int cancel_action = 2131296397;
+ public const int camera_view_my = 2131296397;
// aapt resource value: 0x7F09008E
- public const int cancel_auto_play_btn = 2131296398;
+ public const int cancel_action = 2131296398;
// aapt resource value: 0x7F09008F
- public const int cancel_bg = 2131296399;
+ public const int cancel_auto_play_btn = 2131296399;
// aapt resource value: 0x7F090090
- public const int cancel_btn = 2131296400;
+ public const int cancel_bg = 2131296400;
// aapt resource value: 0x7F090091
- public const int cancel_imageview = 2131296401;
+ public const int cancel_btn = 2131296401;
// aapt resource value: 0x7F090092
- public const int cc_btn_back = 2131296402;
+ public const int cancel_imageview = 2131296402;
// aapt resource value: 0x7F090093
- public const int cc_line_long = 2131296403;
+ public const int cc_btn_back = 2131296403;
// aapt resource value: 0x7F090094
- public const int cc_listview = 2131296404;
+ public const int cc_line_long = 2131296404;
// aapt resource value: 0x7F090095
- public const int cc_nameView = 2131296405;
+ public const int cc_listview = 2131296405;
// aapt resource value: 0x7F090096
- public const int cc_rl_topview = 2131296406;
+ public const int cc_nameView = 2131296406;
// aapt resource value: 0x7F090097
- public const int cc_searchBarContainer = 2131296407;
+ public const int cc_rl_topview = 2131296407;
// aapt resource value: 0x7F090098
- public const int cc_sectionTextView = 2131296408;
+ public const int cc_searchBarContainer = 2131296408;
// aapt resource value: 0x7F090099
- public const int cc_tv_activity_title = 2131296409;
+ public const int cc_sectionTextView = 2131296409;
// aapt resource value: 0x7F09009A
- public const int center = 2131296410;
+ public const int cc_tv_activity_title = 2131296410;
// aapt resource value: 0x7F09009B
- public const int center_horizontal = 2131296411;
+ public const int center = 2131296411;
// aapt resource value: 0x7F09009C
- public const int center_vertical = 2131296412;
+ public const int center_horizontal = 2131296412;
// aapt resource value: 0x7F09009D
- public const int chains = 2131296413;
+ public const int center_vertical = 2131296413;
// aapt resource value: 0x7F09009E
- public const int channel_id_et = 2131296414;
+ public const int chains = 2131296414;
// aapt resource value: 0x7F09009F
- public const int check1 = 2131296415;
+ public const int channel_id_et = 2131296415;
// aapt resource value: 0x7F0900A0
- public const int check2 = 2131296416;
+ public const int check1 = 2131296416;
// aapt resource value: 0x7F0900A1
- public const int check3 = 2131296417;
-
- // aapt resource value: 0x7F0900AB
- public const int checkbox = 2131296427;
+ public const int check2 = 2131296417;
// aapt resource value: 0x7F0900A2
- public const int check_all = 2131296418;
-
- // aapt resource value: 0x7F0900A3
- public const int check_mic = 2131296419;
-
- // aapt resource value: 0x7F0900A4
- public const int check_mic_my = 2131296420;
-
- // aapt resource value: 0x7F0900A5
- public const int check_mode_bottom = 2131296421;
-
- // aapt resource value: 0x7F0900A6
- public const int check_mode_bottom_divider = 2131296422;
-
- // aapt resource value: 0x7F0900A7
- public const int check_mode_top = 2131296423;
-
- // aapt resource value: 0x7F0900A8
- public const int check_mode_top_divider = 2131296424;
-
- // aapt resource value: 0x7F0900A9
- public const int check_video = 2131296425;
-
- // aapt resource value: 0x7F0900AA
- public const int check_video_my = 2131296426;
+ public const int check3 = 2131296418;
// aapt resource value: 0x7F0900AC
- public const int chronometer = 2131296428;
+ public const int checkbox = 2131296428;
+
+ // aapt resource value: 0x7F0900A3
+ public const int check_all = 2131296419;
+
+ // aapt resource value: 0x7F0900A4
+ public const int check_mic = 2131296420;
+
+ // aapt resource value: 0x7F0900A5
+ public const int check_mic_my = 2131296421;
+
+ // aapt resource value: 0x7F0900A6
+ public const int check_mode_bottom = 2131296422;
+
+ // aapt resource value: 0x7F0900A7
+ public const int check_mode_bottom_divider = 2131296423;
+
+ // aapt resource value: 0x7F0900A8
+ public const int check_mode_top = 2131296424;
+
+ // aapt resource value: 0x7F0900A9
+ public const int check_mode_top_divider = 2131296425;
+
+ // aapt resource value: 0x7F0900AA
+ public const int check_video = 2131296426;
+
+ // aapt resource value: 0x7F0900AB
+ public const int check_video_my = 2131296427;
// aapt resource value: 0x7F0900AD
- public const int cifyConfigList = 2131296429;
+ public const int chronometer = 2131296429;
// aapt resource value: 0x7F0900AE
- public const int cityKey = 2131296430;
+ public const int cifyConfigList = 2131296430;
// aapt resource value: 0x7F0900AF
- public const int cityName = 2131296431;
+ public const int cityKey = 2131296431;
// aapt resource value: 0x7F0900B0
- public const int ckbCloundService = 2131296432;
+ public const int cityName = 2131296432;
// aapt resource value: 0x7F0900B1
- public const int ckbLight = 2131296433;
+ public const int ckbCloundService = 2131296433;
// aapt resource value: 0x7F0900B2
- public const int client_id_tv = 2131296434;
+ public const int ckbLight = 2131296434;
// aapt resource value: 0x7F0900B3
- public const int clip_horizontal = 2131296435;
+ public const int client_id_tv = 2131296435;
// aapt resource value: 0x7F0900B4
- public const int clip_vertical = 2131296436;
+ public const int clip_horizontal = 2131296436;
// aapt resource value: 0x7F0900B5
- public const int collapseActionView = 2131296437;
+ public const int clip_vertical = 2131296437;
// aapt resource value: 0x7F0900B6
- public const int collectBtn = 2131296438;
+ public const int collapseActionView = 2131296438;
// aapt resource value: 0x7F0900B7
- public const int collectedTV = 2131296439;
+ public const int collectBtn = 2131296439;
// aapt resource value: 0x7F0900B8
- public const int common_name_layout = 2131296440;
+ public const int collectedTV = 2131296440;
// aapt resource value: 0x7F0900B9
- public const int configAVMsg = 2131296441;
+ public const int common_name_layout = 2131296441;
// aapt resource value: 0x7F0900BA
- public const int connectStateContainer = 2131296442;
+ public const int configAVMsg = 2131296442;
// aapt resource value: 0x7F0900BB
- public const int connectTip = 2131296443;
+ public const int connectStateContainer = 2131296443;
// aapt resource value: 0x7F0900BC
- public const int container = 2131296444;
+ public const int connectTip = 2131296444;
// aapt resource value: 0x7F0900BD
- public const int content = 2131296445;
+ public const int container = 2131296445;
// aapt resource value: 0x7F0900BE
- public const int contentFrame = 2131296446;
+ public const int content = 2131296446;
// aapt resource value: 0x7F0900BF
- public const int contentPanel = 2131296447;
+ public const int contentFrame = 2131296447;
// aapt resource value: 0x7F0900C0
- public const int content_container = 2131296448;
+ public const int contentPanel = 2131296448;
// aapt resource value: 0x7F0900C1
- public const int content_layout = 2131296449;
+ public const int content_container = 2131296449;
// aapt resource value: 0x7F0900C2
- public const int content_tab_cloud_root = 2131296450;
+ public const int content_layout = 2131296450;
// aapt resource value: 0x7F0900C3
- public const int content_tab_device_root = 2131296451;
+ public const int content_tab_cloud_root = 2131296451;
// aapt resource value: 0x7F0900C4
- public const int content_textview = 2131296452;
+ public const int content_tab_device_root = 2131296452;
// aapt resource value: 0x7F0900C5
- public const int control_area = 2131296453;
+ public const int content_textview = 2131296453;
// aapt resource value: 0x7F0900C6
- public const int coordinator = 2131296454;
+ public const int control_area = 2131296454;
// aapt resource value: 0x7F0900C7
- public const int cover = 2131296455;
+ public const int coordinator = 2131296455;
+
+ // aapt resource value: 0x7F0900C8
+ public const int cover = 2131296456;
// aapt resource value: 0x7F090002
public const int CoverArea = 2131296258;
- // aapt resource value: 0x7F0900C8
- public const int create_room_btn = 2131296456;
+ // aapt resource value: 0x7F0900C9
+ public const int create_room_btn = 2131296457;
// aapt resource value: 0x7F090001
public const int CTRL = 2131296257;
- // aapt resource value: 0x7F0900C9
- public const int current_version = 2131296457;
-
// aapt resource value: 0x7F0900CA
- public const int current_version_layout = 2131296458;
+ public const int current_version = 2131296458;
// aapt resource value: 0x7F0900CB
- public const int custom = 2131296459;
+ public const int current_version_layout = 2131296459;
// aapt resource value: 0x7F0900CC
- public const int customPanel = 2131296460;
+ public const int custom = 2131296460;
// aapt resource value: 0x7F0900CD
- public const int custom_pwd_et = 2131296461;
+ public const int customPanel = 2131296461;
// aapt resource value: 0x7F0900CE
- public const int custom_pwd_layout = 2131296462;
+ public const int custom_pwd_et = 2131296462;
// aapt resource value: 0x7F0900CF
- public const int day = 2131296463;
+ public const int custom_pwd_layout = 2131296463;
// aapt resource value: 0x7F0900D0
- public const int debug_room_id = 2131296464;
+ public const int day = 2131296464;
// aapt resource value: 0x7F0900D1
- public const int decode = 2131296465;
+ public const int debug_room_id = 2131296465;
// aapt resource value: 0x7F0900D2
- public const int decode_failed = 2131296466;
+ public const int decode = 2131296466;
// aapt resource value: 0x7F0900D3
- public const int decode_succeeded = 2131296467;
+ public const int decode_failed = 2131296467;
// aapt resource value: 0x7F0900D4
- public const int decor_content_parent = 2131296468;
+ public const int decode_succeeded = 2131296468;
// aapt resource value: 0x7F0900D5
- public const int default_activity_button = 2131296469;
+ public const int decor_content_parent = 2131296469;
// aapt resource value: 0x7F0900D6
- public const int default_figure_iv = 2131296470;
+ public const int default_activity_button = 2131296470;
// aapt resource value: 0x7F0900D7
- public const int defence = 2131296471;
+ public const int default_figure_iv = 2131296471;
// aapt resource value: 0x7F0900D8
- public const int defence_layout = 2131296472;
+ public const int defence = 2131296472;
// aapt resource value: 0x7F0900D9
- public const int defence_plan_arrow = 2131296473;
+ public const int defence_layout = 2131296473;
// aapt resource value: 0x7F0900DA
- public const int defence_plan_button = 2131296474;
+ public const int defence_plan_arrow = 2131296474;
// aapt resource value: 0x7F0900DB
- public const int defence_plan_new = 2131296475;
+ public const int defence_plan_button = 2131296475;
// aapt resource value: 0x7F0900DC
- public const int defence_plan_parent_layout = 2131296476;
+ public const int defence_plan_new = 2131296476;
// aapt resource value: 0x7F0900DD
- public const int defence_plan_progress = 2131296477;
+ public const int defence_plan_parent_layout = 2131296477;
// aapt resource value: 0x7F0900DE
- public const int defence_plan_retry = 2131296478;
+ public const int defence_plan_progress = 2131296478;
// aapt resource value: 0x7F0900DF
- public const int defence_plan_set_layout = 2131296479;
+ public const int defence_plan_retry = 2131296479;
// aapt resource value: 0x7F0900E0
- public const int defence_plan_state = 2131296480;
+ public const int defence_plan_set_layout = 2131296480;
// aapt resource value: 0x7F0900E1
- public const int defence_plan_status_progress = 2131296481;
+ public const int defence_plan_state = 2131296481;
// aapt resource value: 0x7F0900E2
- public const int defence_plan_status_retry = 2131296482;
+ public const int defence_plan_status_progress = 2131296482;
// aapt resource value: 0x7F0900E3
- public const int defence_state = 2131296483;
+ public const int defence_plan_status_retry = 2131296483;
// aapt resource value: 0x7F0900E4
- public const int defence_toggle_button = 2131296484;
-
- // aapt resource value: 0x7F0900E6
- public const int delete_playback = 2131296486;
-
- // aapt resource value: 0x7F0900E7
- public const int delete_playback_device = 2131296487;
+ public const int defence_state = 2131296484;
// aapt resource value: 0x7F0900E5
- public const int del_button = 2131296485;
+ public const int defence_toggle_button = 2131296485;
+
+ // aapt resource value: 0x7F0900E7
+ public const int delete_playback = 2131296487;
// aapt resource value: 0x7F0900E8
- public const int description = 2131296488;
+ public const int delete_playback_device = 2131296488;
+
+ // aapt resource value: 0x7F0900E6
+ public const int del_button = 2131296486;
// aapt resource value: 0x7F0900E9
- public const int design_bottom_sheet = 2131296489;
+ public const int description = 2131296489;
// aapt resource value: 0x7F0900EA
- public const int design_menu_item_action_area = 2131296490;
+ public const int design_bottom_sheet = 2131296490;
// aapt resource value: 0x7F0900EB
- public const int design_menu_item_action_area_stub = 2131296491;
+ public const int design_menu_item_action_area = 2131296491;
// aapt resource value: 0x7F0900EC
- public const int design_menu_item_text = 2131296492;
+ public const int design_menu_item_action_area_stub = 2131296492;
// aapt resource value: 0x7F0900ED
- public const int design_navigation_view = 2131296493;
+ public const int design_menu_item_text = 2131296493;
// aapt resource value: 0x7F0900EE
- public const int detector_type = 2131296494;
+ public const int design_navigation_view = 2131296494;
// aapt resource value: 0x7F0900EF
- public const int deviceIcon = 2131296495;
+ public const int detector_type = 2131296495;
// aapt resource value: 0x7F0900F0
- public const int deviceName = 2131296496;
+ public const int deviceIcon = 2131296496;
// aapt resource value: 0x7F0900F1
- public const int device_delete = 2131296497;
+ public const int deviceName = 2131296497;
// aapt resource value: 0x7F0900F2
- public const int device_id_et = 2131296498;
+ public const int device_delete = 2131296498;
// aapt resource value: 0x7F0900F3
- public const int device_id_layout = 2131296499;
+ public const int device_id_et = 2131296499;
// aapt resource value: 0x7F0900F4
- public const int device_info_layout = 2131296500;
+ public const int device_id_layout = 2131296500;
// aapt resource value: 0x7F0900F5
- public const int device_name = 2131296501;
+ public const int device_info_layout = 2131296501;
// aapt resource value: 0x7F0900F6
- public const int device_type_sn = 2131296502;
+ public const int device_name = 2131296502;
// aapt resource value: 0x7F0900F7
- public const int dimensions = 2131296503;
+ public const int device_type_sn = 2131296503;
// aapt resource value: 0x7F0900F8
- public const int direct = 2131296504;
+ public const int dimensions = 2131296504;
// aapt resource value: 0x7F0900F9
- public const int disableHome = 2131296505;
+ public const int direct = 2131296505;
// aapt resource value: 0x7F0900FA
- public const int disableReportBytes = 2131296506;
+ public const int disableHome = 2131296506;
// aapt resource value: 0x7F0900FB
- public const int discover_list_lv = 2131296507;
+ public const int disableReportBytes = 2131296507;
// aapt resource value: 0x7F0900FC
- public const int discover_tv = 2131296508;
+ public const int disagree_btn = 2131296508;
// aapt resource value: 0x7F0900FD
- public const int display_layout = 2131296509;
+ public const int discover_list_lv = 2131296509;
// aapt resource value: 0x7F0900FE
- public const int divider = 2131296510;
-
- // aapt resource value: 0x7F090101
- public const int downloading = 2131296513;
-
- // aapt resource value: 0x7F090102
- public const int downloading_number = 2131296514;
-
- // aapt resource value: 0x7F090100
- public const int download_info_progress = 2131296512;
+ public const int discover_tv = 2131296510;
// aapt resource value: 0x7F0900FF
- public const int down_layout = 2131296511;
+ public const int display_layout = 2131296511;
+
+ // aapt resource value: 0x7F090100
+ public const int divider = 2131296512;
// aapt resource value: 0x7F090103
- public const int edit_accesstoken = 2131296515;
+ public const int downloading = 2131296515;
// aapt resource value: 0x7F090104
- public const int edit_apiurl = 2131296516;
+ public const int downloading_number = 2131296516;
+
+ // aapt resource value: 0x7F090102
+ public const int download_info_progress = 2131296514;
+
+ // aapt resource value: 0x7F090101
+ public const int down_layout = 2131296513;
// aapt resource value: 0x7F090105
- public const int edit_appkey = 2131296517;
+ public const int edit_accesstoken = 2131296517;
// aapt resource value: 0x7F090106
- public const int edit_deviceserial = 2131296518;
+ public const int edit_apiurl = 2131296518;
// aapt resource value: 0x7F090107
- public const int edit_query = 2131296519;
+ public const int edit_appkey = 2131296519;
// aapt resource value: 0x7F090108
- public const int edit_weburl = 2131296520;
+ public const int edit_deviceserial = 2131296520;
// aapt resource value: 0x7F090109
- public const int edtPassword = 2131296521;
+ public const int edit_query = 2131296521;
// aapt resource value: 0x7F09010A
- public const int emptyView = 2131296522;
+ public const int edit_weburl = 2131296522;
// aapt resource value: 0x7F09010B
- public const int enableReportBytes = 2131296523;
+ public const int edtPassword = 2131296523;
// aapt resource value: 0x7F09010C
- public const int enable_audio_cb = 2131296524;
+ public const int emptyView = 2131296524;
// aapt resource value: 0x7F09010D
- public const int enable_service_text = 2131296525;
+ public const int enableReportBytes = 2131296525;
// aapt resource value: 0x7F09010E
- public const int enable_video_cb = 2131296526;
+ public const int enable_audio_cb = 2131296526;
// aapt resource value: 0x7F09010F
- public const int encode_failed = 2131296527;
+ public const int enable_service_text = 2131296527;
// aapt resource value: 0x7F090110
- public const int encode_succeeded = 2131296528;
+ public const int enable_video_cb = 2131296528;
// aapt resource value: 0x7F090111
- public const int encrypt_button = 2131296529;
+ public const int encode_failed = 2131296529;
// aapt resource value: 0x7F090112
- public const int encrypt_layout = 2131296530;
+ public const int encode_succeeded = 2131296530;
// aapt resource value: 0x7F090113
- public const int encrypt_parent_layout = 2131296531;
+ public const int encrypt_button = 2131296531;
// aapt resource value: 0x7F090114
- public const int end = 2131296532;
+ public const int encrypt_layout = 2131296532;
// aapt resource value: 0x7F090115
- public const int end_padder = 2131296533;
+ public const int encrypt_parent_layout = 2131296533;
// aapt resource value: 0x7F090116
- public const int end_time_tv = 2131296534;
+ public const int end = 2131296534;
// aapt resource value: 0x7F090117
- public const int enterAlways = 2131296535;
+ public const int end_padder = 2131296535;
// aapt resource value: 0x7F090118
- public const int enterAlwaysCollapsed = 2131296536;
+ public const int end_time_tv = 2131296536;
// aapt resource value: 0x7F090119
- public const int errorPage = 2131296537;
+ public const int enterAlways = 2131296537;
// aapt resource value: 0x7F09011A
- public const int error_info_tv = 2131296538;
+ public const int enterAlwaysCollapsed = 2131296538;
// aapt resource value: 0x7F09011B
- public const int error_prompt = 2131296539;
+ public const int errorPage = 2131296539;
// aapt resource value: 0x7F09011C
- public const int error_replay_btn = 2131296540;
+ public const int error_info_tv = 2131296540;
// aapt resource value: 0x7F09011D
- public const int et_access_token = 2131296541;
+ public const int error_prompt = 2131296541;
// aapt resource value: 0x7F09011E
- public const int et_app_key = 2131296542;
+ public const int error_replay_btn = 2131296542;
// aapt resource value: 0x7F09011F
- public const int et_camera_no = 2131296543;
+ public const int et_access_token = 2131296543;
// aapt resource value: 0x7F090120
- public const int et_device_serial = 2131296544;
+ public const int et_app_key = 2131296544;
// aapt resource value: 0x7F090121
- public const int et_record_file_start_time = 2131296545;
+ public const int et_camera_no = 2131296545;
// aapt resource value: 0x7F090122
- public const int et_record_file_stop_time = 2131296546;
+ public const int et_device_serial = 2131296546;
// aapt resource value: 0x7F090123
- public const int et_specified_device = 2131296547;
+ public const int et_record_file_start_time = 2131296547;
// aapt resource value: 0x7F090124
- public const int exitUntilCollapsed = 2131296548;
+ public const int et_record_file_stop_time = 2131296548;
// aapt resource value: 0x7F090125
- public const int exit_btn = 2131296549;
-
- // aapt resource value: 0x7F090127
- public const int expanded_menu = 2131296551;
+ public const int et_specified_device = 2131296549;
// aapt resource value: 0x7F090126
- public const int expand_activities_button = 2131296550;
+ public const int exitUntilCollapsed = 2131296550;
- // aapt resource value: 0x7F090132
- public const int ezopen_realplay_operate_bar = 2131296562;
-
- // aapt resource value: 0x7F090133
- public const int ezopen_realplay_operate_bar2 = 2131296563;
-
- // aapt resource value: 0x7F090134
- public const int ezupgrade_button = 2131296564;
-
- // aapt resource value: 0x7F090135
- public const int ezupgrade_ll_btn = 2131296565;
-
- // aapt resource value: 0x7F090136
- public const int ezupgrade_ll_progress = 2131296566;
-
- // aapt resource value: 0x7F090137
- public const int ezupgrade_progress_text = 2131296567;
-
- // aapt resource value: 0x7F090138
- public const int ezupgrade_text_version_desc = 2131296568;
-
- // aapt resource value: 0x7F090128
- public const int ez_api_self_test = 2131296552;
+ // aapt resource value: 0x7F090127
+ public const int exit_btn = 2131296551;
// aapt resource value: 0x7F090129
- public const int ez_device_serial = 2131296553;
+ public const int expanded_menu = 2131296553;
- // aapt resource value: 0x7F09012A
- public const int ez_device_serial_layout = 2131296554;
+ // aapt resource value: 0x7F090128
+ public const int expand_activities_button = 2131296552;
- // aapt resource value: 0x7F09012B
- public const int ez_handle_lyt = 2131296555;
+ // aapt resource value: 0x7F090134
+ public const int ezopen_realplay_operate_bar = 2131296564;
- // aapt resource value: 0x7F09012C
- public const int ez_platform_login_btn = 2131296556;
+ // aapt resource value: 0x7F090135
+ public const int ezopen_realplay_operate_bar2 = 2131296565;
- // aapt resource value: 0x7F09012D
- public const int ez_sms_code_et = 2131296557;
+ // aapt resource value: 0x7F090136
+ public const int ezupgrade_button = 2131296566;
- // aapt resource value: 0x7F09012E
- public const int ez_sms_code_lyt = 2131296558;
+ // aapt resource value: 0x7F090137
+ public const int ezupgrade_ll_btn = 2131296567;
- // aapt resource value: 0x7F09012F
- public const int ez_square_btn = 2131296559;
-
- // aapt resource value: 0x7F090130
- public const int ez_tab_content_frame = 2131296560;
-
- // aapt resource value: 0x7F090131
- public const int ez_v32_api_test = 2131296561;
+ // aapt resource value: 0x7F090138
+ public const int ezupgrade_ll_progress = 2131296568;
// aapt resource value: 0x7F090139
- public const int failedMsg = 2131296569;
+ public const int ezupgrade_progress_text = 2131296569;
// aapt resource value: 0x7F09013A
- public const int file_size_text = 2131296570;
+ public const int ezupgrade_text_version_desc = 2131296570;
+
+ // aapt resource value: 0x7F09012A
+ public const int ez_api_self_test = 2131296554;
+
+ // aapt resource value: 0x7F09012B
+ public const int ez_device_serial = 2131296555;
+
+ // aapt resource value: 0x7F09012C
+ public const int ez_device_serial_layout = 2131296556;
+
+ // aapt resource value: 0x7F09012D
+ public const int ez_handle_lyt = 2131296557;
+
+ // aapt resource value: 0x7F09012E
+ public const int ez_platform_login_btn = 2131296558;
+
+ // aapt resource value: 0x7F09012F
+ public const int ez_sms_code_et = 2131296559;
+
+ // aapt resource value: 0x7F090130
+ public const int ez_sms_code_lyt = 2131296560;
+
+ // aapt resource value: 0x7F090131
+ public const int ez_square_btn = 2131296561;
+
+ // aapt resource value: 0x7F090132
+ public const int ez_tab_content_frame = 2131296562;
+
+ // aapt resource value: 0x7F090133
+ public const int ez_v32_api_test = 2131296563;
+
+ // aapt resource value: 0x7F09013B
+ public const int failedMsg = 2131296571;
+
+ // aapt resource value: 0x7F09013C
+ public const int file_size_text = 2131296572;
// aapt resource value: 0x7F090003
public const int FILL = 2131296259;
- // aapt resource value: 0x7F09013B
- public const int fill = 2131296571;
+ // aapt resource value: 0x7F09013D
+ public const int fill = 2131296573;
- // aapt resource value: 0x7F09013C
- public const int fill_horizontal = 2131296572;
+ // aapt resource value: 0x7F09013E
+ public const int fill_horizontal = 2131296574;
// aapt resource value: 0x7F090004
public const int FILL_STROKE = 2131296260;
- // aapt resource value: 0x7F09013D
- public const int fill_vertical = 2131296573;
-
- // aapt resource value: 0x7F09013E
- public const int fingerprint_icon = 2131296574;
-
// aapt resource value: 0x7F09013F
- public const int @fixed = 2131296575;
+ public const int fill_vertical = 2131296575;
+
+ // aapt resource value: 0x7F090140
+ public const int fingerprint_icon = 2131296576;
+
+ // aapt resource value: 0x7F090141
+ public const int @fixed = 2131296577;
// aapt resource value: 0x7F090006
public const int FixedBehind = 2131296262;
@@ -7762,1847 +7777,1856 @@
// aapt resource value: 0x7F090007
public const int FixedFront = 2131296263;
- // aapt resource value: 0x7F090140
- public const int flow_area = 2131296576;
-
- // aapt resource value: 0x7F090141
- public const int flow_line = 2131296577;
-
// aapt resource value: 0x7F090142
- public const int flt_layout = 2131296578;
+ public const int flow_area = 2131296578;
// aapt resource value: 0x7F090143
- public const int focus_view = 2131296579;
+ public const int flow_line = 2131296579;
// aapt resource value: 0x7F090144
- public const int footer_hint = 2131296580;
+ public const int flt_layout = 2131296580;
// aapt resource value: 0x7F090145
- public const int footer_hint_more = 2131296581;
+ public const int focus_view = 2131296581;
// aapt resource value: 0x7F090146
- public const int footer_loading_layout = 2131296582;
+ public const int footer_hint = 2131296582;
// aapt resource value: 0x7F090147
- public const int footer_progress = 2131296583;
+ public const int footer_hint_more = 2131296583;
// aapt resource value: 0x7F090148
- public const int forever = 2131296584;
+ public const int footer_loading_layout = 2131296584;
// aapt resource value: 0x7F090149
- public const int from_tv = 2131296585;
+ public const int footer_progress = 2131296585;
// aapt resource value: 0x7F09014A
- public const int fullscreen_button = 2131296586;
+ public const int forever = 2131296586;
// aapt resource value: 0x7F09014B
- public const int fullscreen_full_button = 2131296587;
+ public const int from_tv = 2131296587;
+
+ // aapt resource value: 0x7F09014C
+ public const int fullscreen_button = 2131296588;
+
+ // aapt resource value: 0x7F09014D
+ public const int fullscreen_full_button = 2131296589;
// aapt resource value: 0x7F090005
public const int FUNCTION = 2131296261;
- // aapt resource value: 0x7F09014C
- public const int gd_btn_back = 2131296588;
-
- // aapt resource value: 0x7F09014D
- public const int gd_btn_myLocation = 2131296589;
-
// aapt resource value: 0x7F09014E
- public const int gd_btn_save = 2131296590;
+ public const int gd_btn_back = 2131296590;
// aapt resource value: 0x7F09014F
- public const int gd_img_search_delete = 2131296591;
+ public const int gd_btn_myLocation = 2131296591;
// aapt resource value: 0x7F090150
- public const int gd_ll_myhome = 2131296592;
+ public const int gd_btn_save = 2131296592;
// aapt resource value: 0x7F090151
- public const int gd_ll_search = 2131296593;
+ public const int gd_img_search_delete = 2131296593;
// aapt resource value: 0x7F090152
- public const int gd_mapView = 2131296594;
+ public const int gd_ll_myhome = 2131296594;
// aapt resource value: 0x7F090153
- public const int gd_rl_topview = 2131296595;
+ public const int gd_ll_search = 2131296595;
// aapt resource value: 0x7F090154
- public const int gd_tv_activity_title = 2131296596;
+ public const int gd_mapView = 2131296596;
// aapt resource value: 0x7F090155
- public const int gd_tv_radius = 2131296597;
+ public const int gd_rl_topview = 2131296597;
// aapt resource value: 0x7F090156
- public const int gd_tv_search_title = 2131296598;
+ public const int gd_tv_activity_title = 2131296598;
// aapt resource value: 0x7F090157
- public const int get_camera_fail_tip_ly = 2131296599;
+ public const int gd_tv_radius = 2131296599;
// aapt resource value: 0x7F090158
- public const int get_camera_list_fail_tv = 2131296600;
+ public const int gd_tv_search_title = 2131296600;
// aapt resource value: 0x7F090159
- public const int get_sms_code_btn = 2131296601;
+ public const int get_camera_fail_tip_ly = 2131296601;
// aapt resource value: 0x7F09015A
- public const int get_sms_code_lyt = 2131296602;
+ public const int get_camera_list_fail_tv = 2131296602;
// aapt resource value: 0x7F09015B
- public const int ghost_view = 2131296603;
+ public const int get_sms_code_btn = 2131296603;
// aapt resource value: 0x7F09015C
- public const int gone = 2131296604;
+ public const int get_sms_code_lyt = 2131296604;
// aapt resource value: 0x7F09015D
- public const int handle_lyt = 2131296605;
+ public const int ghost_view = 2131296605;
// aapt resource value: 0x7F09015E
- public const int hangup = 2131296606;
+ public const int gone = 2131296606;
// aapt resource value: 0x7F09015F
- public const int hangupMonitorIn = 2131296607;
+ public const int handle_lyt = 2131296607;
// aapt resource value: 0x7F090160
- public const int hdl_gallery_rootView = 2131296608;
+ public const int hangup = 2131296608;
// aapt resource value: 0x7F090161
- public const int hdl_gallery_viewPager = 2131296609;
+ public const int hangupMonitorIn = 2131296609;
// aapt resource value: 0x7F090162
- public const int hdl_options1 = 2131296610;
+ public const int hdl_gallery_rootView = 2131296610;
// aapt resource value: 0x7F090163
- public const int hdl_options2 = 2131296611;
+ public const int hdl_gallery_viewPager = 2131296611;
// aapt resource value: 0x7F090164
- public const int hdl_options3 = 2131296612;
+ public const int hdl_options1 = 2131296612;
// aapt resource value: 0x7F090165
- public const int hdl_pickerview_ll = 2131296613;
+ public const int hdl_options2 = 2131296613;
// aapt resource value: 0x7F090166
- public const int header = 2131296614;
+ public const int hdl_options3 = 2131296614;
// aapt resource value: 0x7F090167
- public const int header_arrow = 2131296615;
+ public const int hdl_pickerview_ll = 2131296615;
// aapt resource value: 0x7F090168
- public const int header_hint = 2131296616;
+ public const int header = 2131296616;
// aapt resource value: 0x7F090169
- public const int header_hint_more = 2131296617;
+ public const int header_arrow = 2131296617;
// aapt resource value: 0x7F09016A
- public const int header_parent = 2131296618;
+ public const int header_hint = 2131296618;
// aapt resource value: 0x7F09016B
- public const int header_progress = 2131296619;
+ public const int header_hint_more = 2131296619;
// aapt resource value: 0x7F09016C
- public const int header_text = 2131296620;
+ public const int header_parent = 2131296620;
// aapt resource value: 0x7F09016D
- public const int header_text_layout = 2131296621;
+ public const int header_progress = 2131296621;
// aapt resource value: 0x7F09016E
- public const int header_time = 2131296622;
+ public const int header_text = 2131296622;
// aapt resource value: 0x7F09016F
- public const int header_time_layout = 2131296623;
+ public const int header_text_layout = 2131296623;
// aapt resource value: 0x7F090170
- public const int help = 2131296624;
+ public const int header_time = 2131296624;
// aapt resource value: 0x7F090171
- public const int helpTop = 2131296625;
+ public const int header_time_layout = 2131296625;
// aapt resource value: 0x7F090172
- public const int hide = 2131296626;
+ public const int help = 2131296626;
// aapt resource value: 0x7F090173
- public const int hms_message_text = 2131296627;
+ public const int helpTop = 2131296627;
// aapt resource value: 0x7F090174
- public const int hms_progress_bar = 2131296628;
+ public const int hide = 2131296628;
// aapt resource value: 0x7F090175
- public const int hms_progress_text = 2131296629;
+ public const int hms_message_text = 2131296629;
// aapt resource value: 0x7F090176
- public const int home = 2131296630;
+ public const int hms_progress_bar = 2131296630;
// aapt resource value: 0x7F090177
- public const int homeAsUp = 2131296631;
+ public const int hms_progress_text = 2131296631;
// aapt resource value: 0x7F090178
- public const int horizontal = 2131296632;
+ public const int home = 2131296632;
// aapt resource value: 0x7F090179
- public const int hour = 2131296633;
+ public const int homeAsUp = 2131296633;
// aapt resource value: 0x7F09017A
- public const int icon = 2131296634;
+ public const int horizontal = 2131296634;
// aapt resource value: 0x7F09017B
- public const int icon_group = 2131296635;
+ public const int hour = 2131296635;
// aapt resource value: 0x7F09017C
- public const int icon_sceenshotImg = 2131296636;
+ public const int icon = 2131296636;
// aapt resource value: 0x7F09017D
- public const int icon_sceenshotLayout = 2131296637;
+ public const int icon_group = 2131296637;
// aapt resource value: 0x7F09017E
- public const int icon_sceenshotText = 2131296638;
+ public const int icon_sceenshotImg = 2131296638;
// aapt resource value: 0x7F09017F
- public const int icon_unlockImg = 2131296639;
+ public const int icon_sceenshotLayout = 2131296639;
// aapt resource value: 0x7F090180
- public const int icon_unlockLayout = 2131296640;
+ public const int icon_sceenshotText = 2131296640;
// aapt resource value: 0x7F090181
- public const int icon_unlockText = 2131296641;
+ public const int icon_unlockImg = 2131296641;
// aapt resource value: 0x7F090182
- public const int id_btn_join_qq_group = 2131296642;
+ public const int icon_unlockLayout = 2131296642;
// aapt resource value: 0x7F090183
- public const int id_interface_self_test_forgetPassword = 2131296643;
+ public const int icon_unlockText = 2131296643;
// aapt resource value: 0x7F090184
- public const int id_interface_self_test_openCloudPage = 2131296644;
+ public const int id_btn_join_qq_group = 2131296644;
// aapt resource value: 0x7F090185
- public const int id_interface_test_forgetPassword = 2131296645;
+ public const int id_interface_self_test_forgetPassword = 2131296645;
// aapt resource value: 0x7F090186
- public const int id_interface_test_openCloudPage = 2131296646;
+ public const int id_interface_self_test_openCloudPage = 2131296646;
// aapt resource value: 0x7F090187
- public const int id_ll_join_qq_group = 2131296647;
+ public const int id_interface_test_forgetPassword = 2131296647;
// aapt resource value: 0x7F090188
- public const int id_show_stream_limit_dialog = 2131296648;
+ public const int id_interface_test_openCloudPage = 2131296648;
// aapt resource value: 0x7F090189
- public const int id_show_stream_limit_dialog2 = 2131296649;
+ public const int id_ll_join_qq_group = 2131296649;
// aapt resource value: 0x7F09018A
- public const int id_tv_join_qq_group = 2131296650;
+ public const int id_show_stream_limit_dialog = 2131296650;
// aapt resource value: 0x7F09018B
- public const int ifRoom = 2131296651;
+ public const int id_show_stream_limit_dialog2 = 2131296651;
// aapt resource value: 0x7F09018C
- public const int image = 2131296652;
+ public const int id_tv_join_qq_group = 2131296652;
// aapt resource value: 0x7F09018D
- public const int image1 = 2131296653;
+ public const int ifRoom = 2131296653;
// aapt resource value: 0x7F09018E
- public const int image2 = 2131296654;
+ public const int image = 2131296654;
// aapt resource value: 0x7F09018F
- public const int image3 = 2131296655;
+ public const int image1 = 2131296655;
// aapt resource value: 0x7F090190
- public const int imageBg = 2131296656;
+ public const int image2 = 2131296656;
// aapt resource value: 0x7F090191
- public const int image_back = 2131296657;
+ public const int image3 = 2131296657;
// aapt resource value: 0x7F090192
- public const int imgAnimation = 2131296658;
+ public const int imageBg = 2131296658;
// aapt resource value: 0x7F090193
- public const int imgLineConnectGuid = 2131296659;
+ public const int image_back = 2131296659;
// aapt resource value: 0x7F090194
- public const int imgResetPic = 2131296660;
+ public const int imgAnimation = 2131296660;
// aapt resource value: 0x7F090195
- public const int img_active_cloud_video = 2131296661;
+ public const int imgLineConnectGuid = 2131296661;
// aapt resource value: 0x7F090196
- public const int img_area1 = 2131296662;
+ public const int imgResetPic = 2131296662;
// aapt resource value: 0x7F090197
- public const int img_area2 = 2131296663;
+ public const int img_active_cloud_video = 2131296663;
// aapt resource value: 0x7F090198
- public const int img_area3 = 2131296664;
+ public const int img_area1 = 2131296664;
// aapt resource value: 0x7F090199
- public const int info = 2131296665;
+ public const int img_area2 = 2131296665;
// aapt resource value: 0x7F09019A
- public const int inputLinearlayout = 2131296666;
+ public const int img_area3 = 2131296666;
// aapt resource value: 0x7F09019B
- public const int input_hint = 2131296667;
+ public const int info = 2131296667;
// aapt resource value: 0x7F09019C
- public const int input_search_query = 2131296668;
+ public const int inputLinearlayout = 2131296668;
// aapt resource value: 0x7F09019D
- public const int input_view1 = 2131296669;
+ public const int input_hint = 2131296669;
// aapt resource value: 0x7F09019E
- public const int interface_self_test_button = 2131296670;
+ public const int input_search_query = 2131296670;
// aapt resource value: 0x7F09019F
- public const int interface_self_test_editText = 2131296671;
+ public const int input_view1 = 2131296671;
// aapt resource value: 0x7F0901A0
- public const int interface_test_button = 2131296672;
+ public const int interface_self_test_button = 2131296672;
// aapt resource value: 0x7F0901A1
- public const int interface_test_editText = 2131296673;
+ public const int interface_self_test_editText = 2131296673;
// aapt resource value: 0x7F0901A2
- public const int interface_v33_self_test_button = 2131296674;
+ public const int interface_test_button = 2131296674;
// aapt resource value: 0x7F0901A3
- public const int interface_v33_test_button = 2131296675;
+ public const int interface_test_editText = 2131296675;
// aapt resource value: 0x7F0901A4
- public const int invisible = 2131296676;
+ public const int interface_v33_self_test_button = 2131296676;
// aapt resource value: 0x7F0901A5
- public const int ip_info = 2131296677;
+ public const int interface_v33_test_button = 2131296677;
// aapt resource value: 0x7F0901A6
- public const int ip_tv = 2131296678;
+ public const int invisible = 2131296678;
// aapt resource value: 0x7F0901A7
- public const int is_call_device_cb = 2131296679;
+ public const int ip_info = 2131296679;
// aapt resource value: 0x7F0901A8
- public const int italic = 2131296680;
+ public const int ip_tv = 2131296680;
// aapt resource value: 0x7F0901A9
- public const int item_icon = 2131296681;
+ public const int is_call_device_cb = 2131296681;
// aapt resource value: 0x7F0901AA
- public const int item_icon_area = 2131296682;
+ public const int italic = 2131296682;
// aapt resource value: 0x7F0901AB
- public const int item_offline = 2131296683;
+ public const int item_icon = 2131296683;
// aapt resource value: 0x7F0901AC
- public const int item_play_btn = 2131296684;
+ public const int item_icon_area = 2131296684;
// aapt resource value: 0x7F0901AD
- public const int item_touch_helper_previous_elevation = 2131296685;
+ public const int item_offline = 2131296685;
// aapt resource value: 0x7F0901AE
- public const int iv_child_watch_video_talk_player_head_image = 2131296686;
+ public const int item_play_btn = 2131296686;
// aapt resource value: 0x7F0901AF
- public const int iv_lp_answer = 2131296687;
+ public const int item_touch_helper_previous_elevation = 2131296687;
// aapt resource value: 0x7F0901B0
- public const int iv_lp_hangUp = 2131296688;
+ public const int iv_child_watch_video_talk_player_head_image = 2131296688;
// aapt resource value: 0x7F0901B1
- public const int iv_lp_screenshot = 2131296689;
+ public const int iv_lp_answer = 2131296689;
// aapt resource value: 0x7F0901B2
- public const int iv_lp_unlock = 2131296690;
+ public const int iv_lp_hangUp = 2131296690;
// aapt resource value: 0x7F0901B3
- public const int iv_more = 2131296691;
+ public const int iv_lp_screenshot = 2131296691;
// aapt resource value: 0x7F0901B4
- public const int join_room_btn = 2131296692;
-
- // aapt resource value: 0x7F0901B8
- public const int labelbelongType = 2131296696;
+ public const int iv_lp_unlock = 2131296692;
// aapt resource value: 0x7F0901B5
- public const int labelFilter = 2131296693;
+ public const int iv_more = 2131296693;
// aapt resource value: 0x7F0901B6
- public const int labelLocation = 2131296694;
-
- // aapt resource value: 0x7F0901B7
- public const int labelSort = 2131296695;
-
- // aapt resource value: 0x7F0901B9
- public const int largeLabel = 2131296697;
+ public const int join_room_btn = 2131296694;
// aapt resource value: 0x7F0901BA
- public const int latitude = 2131296698;
+ public const int labelbelongType = 2131296698;
+
+ // aapt resource value: 0x7F0901B7
+ public const int labelFilter = 2131296695;
+
+ // aapt resource value: 0x7F0901B8
+ public const int labelLocation = 2131296696;
+
+ // aapt resource value: 0x7F0901B9
+ public const int labelSort = 2131296697;
// aapt resource value: 0x7F0901BB
- public const int launch_product_query = 2131296699;
+ public const int largeLabel = 2131296699;
// aapt resource value: 0x7F0901BC
- public const int layout = 2131296700;
+ public const int latitude = 2131296700;
// aapt resource value: 0x7F0901BD
- public const int layout_more_ly = 2131296701;
+ public const int launch_product_query = 2131296701;
// aapt resource value: 0x7F0901BE
- public const int left = 2131296702;
+ public const int layout = 2131296702;
// aapt resource value: 0x7F0901BF
- public const int likedCount = 2131296703;
+ public const int layout_more_ly = 2131296703;
// aapt resource value: 0x7F0901C0
- public const int line1 = 2131296704;
+ public const int left = 2131296704;
// aapt resource value: 0x7F0901C1
- public const int line3 = 2131296705;
+ public const int likedCount = 2131296705;
// aapt resource value: 0x7F0901C2
- public const int lineConnectContainer = 2131296706;
+ public const int line1 = 2131296706;
// aapt resource value: 0x7F0901C3
- public const int listMode = 2131296707;
+ public const int line3 = 2131296707;
// aapt resource value: 0x7F0901C4
- public const int listView = 2131296708;
+ public const int lineConnectContainer = 2131296708;
// aapt resource value: 0x7F0901C5
- public const int listView_device = 2131296709;
-
- // aapt resource value: 0x7F0901C9
- public const int listview_line = 2131296713;
-
- // aapt resource value: 0x7F0901CA
- public const int listview_line_device = 2131296714;
+ public const int listMode = 2131296709;
// aapt resource value: 0x7F0901C6
- public const int list_camera = 2131296710;
+ public const int listView = 2131296710;
// aapt resource value: 0x7F0901C7
- public const int list_device = 2131296711;
-
- // aapt resource value: 0x7F0901C8
- public const int list_item = 2131296712;
+ public const int listView_device = 2131296711;
// aapt resource value: 0x7F0901CB
- public const int live_window = 2131296715;
-
- // aapt resource value: 0x7F0901CE
- public const int llyCloundService = 2131296718;
-
- // aapt resource value: 0x7F0901CF
- public const int llyStatus1 = 2131296719;
-
- // aapt resource value: 0x7F0901D0
- public const int llyStatus2 = 2131296720;
-
- // aapt resource value: 0x7F0901D1
- public const int llyStatus3 = 2131296721;
+ public const int listview_line = 2131296715;
// aapt resource value: 0x7F0901CC
- public const int ll_lp_btn_back = 2131296716;
+ public const int listview_line_device = 2131296716;
+
+ // aapt resource value: 0x7F0901C8
+ public const int list_camera = 2131296712;
+
+ // aapt resource value: 0x7F0901C9
+ public const int list_device = 2131296713;
+
+ // aapt resource value: 0x7F0901CA
+ public const int list_item = 2131296714;
// aapt resource value: 0x7F0901CD
- public const int ll_video_lp_rendering = 2131296717;
+ public const int live_window = 2131296717;
+
+ // aapt resource value: 0x7F0901D0
+ public const int llyCloundService = 2131296720;
+
+ // aapt resource value: 0x7F0901D1
+ public const int llyStatus1 = 2131296721;
// aapt resource value: 0x7F0901D2
- public const int loadingTextView = 2131296722;
+ public const int llyStatus2 = 2131296722;
// aapt resource value: 0x7F0901D3
- public const int loading_pb_ly = 2131296723;
+ public const int llyStatus3 = 2131296723;
+
+ // aapt resource value: 0x7F0901CE
+ public const int ll_lp_btn_back = 2131296718;
+
+ // aapt resource value: 0x7F0901CF
+ public const int ll_video_lp_rendering = 2131296719;
// aapt resource value: 0x7F0901D4
- public const int loading_play_btn = 2131296724;
+ public const int loadingTextView = 2131296724;
// aapt resource value: 0x7F0901D5
- public const int loading_text = 2131296725;
+ public const int loading_pb_ly = 2131296725;
// aapt resource value: 0x7F0901D6
- public const int loading_view = 2131296726;
-
- // aapt resource value: 0x7F0901D8
- public const int localDoorUnlock = 2131296728;
-
- // aapt resource value: 0x7F0901D9
- public const int localVideo = 2131296729;
-
- // aapt resource value: 0x7F0901DA
- public const int local_alarm1 = 2131296730;
-
- // aapt resource value: 0x7F0901DB
- public const int local_alarm2 = 2131296731;
-
- // aapt resource value: 0x7F0901DC
- public const int local_alarm3 = 2131296732;
-
- // aapt resource value: 0x7F0901DD
- public const int local_l1 = 2131296733;
-
- // aapt resource value: 0x7F0901DE
- public const int local_l2 = 2131296734;
-
- // aapt resource value: 0x7F0901DF
- public const int local_l3 = 2131296735;
-
- // aapt resource value: 0x7F0901E0
- public const int local_realplay_btn = 2131296736;
-
- // aapt resource value: 0x7F0901E1
- public const int local_time_part1 = 2131296737;
-
- // aapt resource value: 0x7F0901E2
- public const int local_time_part2 = 2131296738;
-
- // aapt resource value: 0x7F0901E3
- public const int local_time_part3 = 2131296739;
+ public const int loading_play_btn = 2131296726;
// aapt resource value: 0x7F0901D7
- public const int locaVideo = 2131296727;
+ public const int loading_text = 2131296727;
+
+ // aapt resource value: 0x7F0901D8
+ public const int loading_view = 2131296728;
+
+ // aapt resource value: 0x7F0901DA
+ public const int localDoorUnlock = 2131296730;
+
+ // aapt resource value: 0x7F0901DB
+ public const int localVideo = 2131296731;
+
+ // aapt resource value: 0x7F0901DC
+ public const int local_alarm1 = 2131296732;
+
+ // aapt resource value: 0x7F0901DD
+ public const int local_alarm2 = 2131296733;
+
+ // aapt resource value: 0x7F0901DE
+ public const int local_alarm3 = 2131296734;
+
+ // aapt resource value: 0x7F0901DF
+ public const int local_l1 = 2131296735;
+
+ // aapt resource value: 0x7F0901E0
+ public const int local_l2 = 2131296736;
+
+ // aapt resource value: 0x7F0901E1
+ public const int local_l3 = 2131296737;
+
+ // aapt resource value: 0x7F0901E2
+ public const int local_realplay_btn = 2131296738;
+
+ // aapt resource value: 0x7F0901E3
+ public const int local_time_part1 = 2131296739;
// aapt resource value: 0x7F0901E4
- public const int login_name = 2131296740;
+ public const int local_time_part2 = 2131296740;
// aapt resource value: 0x7F0901E5
- public const int login_pwd = 2131296741;
+ public const int local_time_part3 = 2131296741;
+
+ // aapt resource value: 0x7F0901D9
+ public const int locaVideo = 2131296729;
// aapt resource value: 0x7F0901E6
- public const int longitude = 2131296742;
+ public const int login_name = 2131296742;
// aapt resource value: 0x7F0901E7
- public const int main_layout = 2131296743;
+ public const int login_pwd = 2131296743;
// aapt resource value: 0x7F0901E8
- public const int masked = 2131296744;
+ public const int longitude = 2131296744;
+
+ // aapt resource value: 0x7F0901E9
+ public const int main_layout = 2131296745;
+
+ // aapt resource value: 0x7F0901EA
+ public const int masked = 2131296746;
// aapt resource value: 0x7F090009
public const int MatchLayout = 2131296265;
- // aapt resource value: 0x7F0901E9
- public const int matte_image = 2131296745;
-
- // aapt resource value: 0x7F0901EA
- public const int media_actions = 2131296746;
-
// aapt resource value: 0x7F0901EB
- public const int menu_layout = 2131296747;
+ public const int matte_image = 2131296747;
// aapt resource value: 0x7F0901EC
- public const int menu_play = 2131296748;
+ public const int media_actions = 2131296748;
// aapt resource value: 0x7F0901ED
- public const int message = 2131296749;
+ public const int menu_layout = 2131296749;
// aapt resource value: 0x7F0901EE
- public const int message1 = 2131296750;
+ public const int menu_play = 2131296750;
// aapt resource value: 0x7F0901EF
- public const int message2 = 2131296751;
+ public const int message = 2131296751;
// aapt resource value: 0x7F0901F0
- public const int message_check = 2131296752;
+ public const int message1 = 2131296752;
// aapt resource value: 0x7F0901F1
- public const int message_content = 2131296753;
+ public const int message2 = 2131296753;
// aapt resource value: 0x7F0901F2
- public const int message_from = 2131296754;
+ public const int message_check = 2131296754;
// aapt resource value: 0x7F0901F3
- public const int message_from_tip = 2131296755;
+ public const int message_content = 2131296755;
// aapt resource value: 0x7F0901F4
- public const int message_image = 2131296756;
+ public const int message_from = 2131296756;
// aapt resource value: 0x7F0901F5
- public const int message_image_layout = 2131296757;
+ public const int message_from_tip = 2131296757;
// aapt resource value: 0x7F0901F6
- public const int message_image_progress = 2131296758;
+ public const int message_image = 2131296758;
// aapt resource value: 0x7F0901F7
- public const int message_layout = 2131296759;
+ public const int message_image_layout = 2131296759;
// aapt resource value: 0x7F0901F8
- public const int message_list = 2131296760;
+ public const int message_image_progress = 2131296760;
// aapt resource value: 0x7F0901F9
- public const int message_num_tv = 2131296761;
+ public const int message_layout = 2131296761;
// aapt resource value: 0x7F0901FA
- public const int message_play_layout = 2131296762;
+ public const int message_list = 2131296762;
// aapt resource value: 0x7F0901FB
- public const int message_time = 2131296763;
+ public const int message_num_tv = 2131296763;
// aapt resource value: 0x7F0901FC
- public const int message_type = 2131296764;
+ public const int message_play_layout = 2131296764;
// aapt resource value: 0x7F0901FD
- public const int message_unread = 2131296765;
+ public const int message_time = 2131296765;
// aapt resource value: 0x7F0901FE
- public const int message_video_layout = 2131296766;
+ public const int message_type = 2131296766;
+
+ // aapt resource value: 0x7F0901FF
+ public const int message_unread = 2131296767;
+
+ // aapt resource value: 0x7F090200
+ public const int message_video_layout = 2131296768;
// aapt resource value: 0x7F090008
public const int META = 2131296264;
- // aapt resource value: 0x7F090200
- public const int middle = 2131296768;
-
- // aapt resource value: 0x7F0901FF
- public const int mid_vertical_view = 2131296767;
+ // aapt resource value: 0x7F090202
+ public const int middle = 2131296770;
// aapt resource value: 0x7F090201
- public const int min = 2131296769;
-
- // aapt resource value: 0x7F090202
- public const int mini = 2131296770;
+ public const int mid_vertical_view = 2131296769;
// aapt resource value: 0x7F090203
- public const int mirror_line = 2131296771;
+ public const int min = 2131296771;
// aapt resource value: 0x7F090204
- public const int modify_password_layout = 2131296772;
+ public const int mini = 2131296772;
// aapt resource value: 0x7F090205
- public const int monitor = 2131296773;
+ public const int mirror_line = 2131296773;
// aapt resource value: 0x7F090206
- public const int month = 2131296774;
+ public const int modify_password_layout = 2131296774;
// aapt resource value: 0x7F090207
- public const int more_btn = 2131296775;
+ public const int monitor = 2131296775;
// aapt resource value: 0x7F090208
- public const int multiply = 2131296776;
+ public const int month = 2131296776;
// aapt resource value: 0x7F090209
- public const int myRelativeLayout = 2131296777;
+ public const int more_btn = 2131296777;
// aapt resource value: 0x7F09020A
- public const int myRetry = 2131296778;
+ public const int msg_content_tv = 2131296778;
// aapt resource value: 0x7F09020B
- public const int nameText = 2131296779;
+ public const int multiply = 2131296779;
// aapt resource value: 0x7F09020C
- public const int name_del = 2131296780;
+ public const int myRelativeLayout = 2131296780;
// aapt resource value: 0x7F09020D
- public const int name_layout = 2131296781;
+ public const int myRetry = 2131296781;
// aapt resource value: 0x7F09020E
- public const int name_text = 2131296782;
+ public const int nameText = 2131296782;
// aapt resource value: 0x7F09020F
- public const int name_textview = 2131296783;
+ public const int name_del = 2131296783;
// aapt resource value: 0x7F090210
- public const int name_tv = 2131296784;
+ public const int name_layout = 2131296784;
// aapt resource value: 0x7F090211
- public const int navigation_header_container = 2131296785;
+ public const int name_text = 2131296785;
// aapt resource value: 0x7F090212
- public const int never = 2131296786;
+ public const int name_textview = 2131296786;
// aapt resource value: 0x7F090213
- public const int new_password = 2131296787;
+ public const int name_tv = 2131296787;
// aapt resource value: 0x7F090214
- public const int next_play_btn = 2131296788;
-
- // aapt resource value: 0x7F09021C
- public const int none = 2131296796;
-
- // aapt resource value: 0x7F09021D
- public const int normal = 2131296797;
+ public const int navigation_header_container = 2131296788;
// aapt resource value: 0x7F090215
- public const int noText = 2131296789;
-
- // aapt resource value: 0x7F09021E
- public const int notification_background = 2131296798;
-
- // aapt resource value: 0x7F09021F
- public const int notification_main_column = 2131296799;
-
- // aapt resource value: 0x7F090220
- public const int notification_main_column_container = 2131296800;
-
- // aapt resource value: 0x7F090221
- public const int novideo_img = 2131296801;
-
- // aapt resource value: 0x7F090222
- public const int novideo_img_device = 2131296802;
+ public const int never = 2131296789;
// aapt resource value: 0x7F090216
- public const int no_camera_tip_ly = 2131296790;
+ public const int new_password = 2131296790;
// aapt resource value: 0x7F090217
- public const int no_message_button = 2131296791;
+ public const int next_play_btn = 2131296791;
+
+ // aapt resource value: 0x7F09021F
+ public const int none = 2131296799;
+
+ // aapt resource value: 0x7F090220
+ public const int normal = 2131296800;
// aapt resource value: 0x7F090218
- public const int no_message_layout = 2131296792;
+ public const int noText = 2131296792;
- // aapt resource value: 0x7F090219
- public const int no_message_text = 2131296793;
+ // aapt resource value: 0x7F090221
+ public const int notification_background = 2131296801;
- // aapt resource value: 0x7F09021A
- public const int no_more_hint = 2131296794;
-
- // aapt resource value: 0x7F09021B
- public const int no_more_text = 2131296795;
+ // aapt resource value: 0x7F090222
+ public const int notification_main_column = 2131296802;
// aapt resource value: 0x7F090223
- public const int offline_bg = 2131296803;
+ public const int notification_main_column_container = 2131296803;
// aapt resource value: 0x7F090224
- public const int ok_tv = 2131296804;
+ public const int novideo_img = 2131296804;
// aapt resource value: 0x7F090225
- public const int options1 = 2131296805;
+ public const int novideo_img_device = 2131296805;
+
+ // aapt resource value: 0x7F090219
+ public const int no_camera_tip_ly = 2131296793;
+
+ // aapt resource value: 0x7F09021A
+ public const int no_message_button = 2131296794;
+
+ // aapt resource value: 0x7F09021B
+ public const int no_message_layout = 2131296795;
+
+ // aapt resource value: 0x7F09021C
+ public const int no_message_text = 2131296796;
+
+ // aapt resource value: 0x7F09021D
+ public const int no_more_hint = 2131296797;
+
+ // aapt resource value: 0x7F09021E
+ public const int no_more_text = 2131296798;
// aapt resource value: 0x7F090226
- public const int options2 = 2131296806;
+ public const int offline_bg = 2131296806;
// aapt resource value: 0x7F090227
- public const int options3 = 2131296807;
+ public const int ok_tv = 2131296807;
// aapt resource value: 0x7F090228
- public const int optionspicker = 2131296808;
+ public const int options1 = 2131296808;
// aapt resource value: 0x7F090229
- public const int outmost_container = 2131296809;
+ public const int options2 = 2131296809;
// aapt resource value: 0x7F09022A
- public const int packed = 2131296810;
-
- // aapt resource value: 0x7F09022C
- public const int pager = 2131296812;
-
- // aapt resource value: 0x7F09022D
- public const int pager_tab_strip = 2131296813;
+ public const int options3 = 2131296810;
// aapt resource value: 0x7F09022B
- public const int page_container = 2131296811;
+ public const int optionspicker = 2131296811;
- // aapt resource value: 0x7F09022E
- public const int parallax = 2131296814;
+ // aapt resource value: 0x7F09022C
+ public const int outmost_container = 2131296812;
+
+ // aapt resource value: 0x7F09022D
+ public const int packed = 2131296813;
// aapt resource value: 0x7F09022F
- public const int parent = 2131296815;
+ public const int pager = 2131296815;
// aapt resource value: 0x7F090230
- public const int parentPanel = 2131296816;
+ public const int pager_tab_strip = 2131296816;
+
+ // aapt resource value: 0x7F09022E
+ public const int page_container = 2131296814;
// aapt resource value: 0x7F090231
- public const int parent_matrix = 2131296817;
+ public const int parallax = 2131296817;
// aapt resource value: 0x7F090232
- public const int passwordETV = 2131296818;
+ public const int parent = 2131296818;
// aapt resource value: 0x7F090233
- public const int pb_notlist_title_bar_landscape = 2131296819;
+ public const int parentPanel = 2131296819;
// aapt resource value: 0x7F090234
- public const int pb_play_loading = 2131296820;
+ public const int parent_matrix = 2131296820;
// aapt resource value: 0x7F090235
- public const int pb_search_content_tab = 2131296821;
+ public const int passwordETV = 2131296821;
// aapt resource value: 0x7F090236
- public const int pb_search_tab_btn_cloud = 2131296822;
+ public const int pb_notlist_title_bar_landscape = 2131296822;
// aapt resource value: 0x7F090237
- public const int pb_search_tab_btn_device = 2131296823;
+ public const int pb_play_loading = 2131296823;
// aapt resource value: 0x7F090238
- public const int pb_title_bar_landscape = 2131296824;
+ public const int pb_search_content_tab = 2131296824;
// aapt resource value: 0x7F090239
- public const int peerAddress = 2131296825;
+ public const int pb_search_tab_btn_cloud = 2131296825;
// aapt resource value: 0x7F09023A
- public const int percent = 2131296826;
+ public const int pb_search_tab_btn_device = 2131296826;
// aapt resource value: 0x7F09023B
- public const int phone_et = 2131296827;
+ public const int pb_title_bar_landscape = 2131296827;
// aapt resource value: 0x7F09023C
- public const int phone_ly = 2131296828;
+ public const int peerAddress = 2131296828;
// aapt resource value: 0x7F09023D
- public const int phone_lyt = 2131296829;
+ public const int percent = 2131296829;
// aapt resource value: 0x7F09023E
- public const int pin = 2131296830;
-
- // aapt resource value: 0x7F090240
- public const int platform_login_btn = 2131296832;
+ public const int phone_et = 2131296830;
// aapt resource value: 0x7F09023F
- public const int plat_tv = 2131296831;
+ public const int phone_ly = 2131296831;
+
+ // aapt resource value: 0x7F090240
+ public const int phone_lyt = 2131296832;
// aapt resource value: 0x7F090241
- public const int play_video_layout = 2131296833;
-
- // aapt resource value: 0x7F090242
- public const int preview_view = 2131296834;
-
- // aapt resource value: 0x7F090247
- public const int progressbar = 2131296839;
+ public const int pin = 2131296833;
// aapt resource value: 0x7F090243
- public const int progress_area = 2131296835;
+ public const int platform_login_btn = 2131296835;
+
+ // aapt resource value: 0x7F090242
+ public const int plat_tv = 2131296834;
// aapt resource value: 0x7F090244
- public const int progress_circular = 2131296836;
+ public const int play_video_layout = 2131296836;
// aapt resource value: 0x7F090245
- public const int progress_horizontal = 2131296837;
+ public const int preview_view = 2131296837;
// aapt resource value: 0x7F090246
- public const int progress_seekbar = 2131296838;
-
- // aapt resource value: 0x7F090248
- public const int ptz_bottom_btn = 2131296840;
-
- // aapt resource value: 0x7F090249
- public const int ptz_close_btn = 2131296841;
-
- // aapt resource value: 0x7F09024A
- public const int ptz_control_ly = 2131296842;
+ public const int privacy_policy_btn = 2131296838;
// aapt resource value: 0x7F09024B
- public const int ptz_flip_btn = 2131296843;
+ public const int progressbar = 2131296843;
+
+ // aapt resource value: 0x7F090247
+ public const int progress_area = 2131296839;
+
+ // aapt resource value: 0x7F090248
+ public const int progress_circular = 2131296840;
+
+ // aapt resource value: 0x7F090249
+ public const int progress_horizontal = 2131296841;
+
+ // aapt resource value: 0x7F09024A
+ public const int progress_seekbar = 2131296842;
// aapt resource value: 0x7F09024C
- public const int ptz_left_btn = 2131296844;
+ public const int ptz_bottom_btn = 2131296844;
// aapt resource value: 0x7F09024D
- public const int ptz_right_btn = 2131296845;
+ public const int ptz_close_btn = 2131296845;
// aapt resource value: 0x7F09024E
- public const int ptz_top_btn = 2131296846;
+ public const int ptz_control_ly = 2131296846;
// aapt resource value: 0x7F09024F
- public const int quality_balanced_btn = 2131296847;
+ public const int ptz_flip_btn = 2131296847;
// aapt resource value: 0x7F090250
- public const int quality_close_btn = 2131296848;
+ public const int ptz_left_btn = 2131296848;
// aapt resource value: 0x7F090251
- public const int quality_flunet_btn = 2131296849;
+ public const int ptz_right_btn = 2131296849;
// aapt resource value: 0x7F090252
- public const int quality_hd_btn = 2131296850;
+ public const int ptz_top_btn = 2131296850;
// aapt resource value: 0x7F090253
- public const int quality_line = 2131296851;
+ public const int quality_balanced_btn = 2131296851;
// aapt resource value: 0x7F090254
- public const int quality_super_hd_btn = 2131296852;
-
- // aapt resource value: 0x7F090256
- public const int queryingCameraRyt = 2131296854;
-
- // aapt resource value: 0x7F090257
- public const int querying_camera_tv = 2131296855;
+ public const int quality_close_btn = 2131296852;
// aapt resource value: 0x7F090255
- public const int query_exception_ly = 2131296853;
+ public const int quality_flunet_btn = 2131296853;
+
+ // aapt resource value: 0x7F090256
+ public const int quality_hd_btn = 2131296854;
+
+ // aapt resource value: 0x7F090257
+ public const int quality_line = 2131296855;
// aapt resource value: 0x7F090258
- public const int quit = 2131296856;
-
- // aapt resource value: 0x7F090259
- public const int radio = 2131296857;
+ public const int quality_super_hd_btn = 2131296856;
// aapt resource value: 0x7F09025A
- public const int range = 2131296858;
+ public const int queryingCameraRyt = 2131296858;
// aapt resource value: 0x7F09025B
- public const int rangeSort = 2131296859;
+ public const int querying_camera_tv = 2131296859;
+
+ // aapt resource value: 0x7F090259
+ public const int query_exception_ly = 2131296857;
// aapt resource value: 0x7F09025C
- public const int rate_16x = 2131296860;
+ public const int quit = 2131296860;
// aapt resource value: 0x7F09025D
- public const int rate_1x = 2131296861;
+ public const int radio = 2131296861;
// aapt resource value: 0x7F09025E
- public const int rate_4x = 2131296862;
+ public const int range = 2131296862;
// aapt resource value: 0x7F09025F
- public const int rate_8x = 2131296863;
-
- // aapt resource value: 0x7F090261
- public const int read_button = 2131296865;
-
- // aapt resource value: 0x7F090262
- public const int realplay_area = 2131296866;
-
- // aapt resource value: 0x7F090263
- public const int realplay_back_btn = 2131296867;
-
- // aapt resource value: 0x7F090264
- public const int realplay_capture_iv = 2131296868;
-
- // aapt resource value: 0x7F090265
- public const int realplay_capture_rl = 2131296869;
-
- // aapt resource value: 0x7F090266
- public const int realplay_capture_watermark_iv = 2131296870;
-
- // aapt resource value: 0x7F090267
- public const int realplay_control_bar = 2131296871;
-
- // aapt resource value: 0x7F090268
- public const int realplay_control_rl = 2131296872;
-
- // aapt resource value: 0x7F090269
- public const int realplay_display_view = 2131296873;
-
- // aapt resource value: 0x7F09026A
- public const int realplay_flow_tv = 2131296874;
-
- // aapt resource value: 0x7F09026B
- public const int realplay_full_anim_btn = 2131296875;
-
- // aapt resource value: 0x7F09026C
- public const int realplay_full_flow_ly = 2131296876;
-
- // aapt resource value: 0x7F09026D
- public const int realplay_full_flow_tv = 2131296877;
-
- // aapt resource value: 0x7F09026E
- public const int realplay_full_operate_bar = 2131296878;
-
- // aapt resource value: 0x7F09026F
- public const int realplay_full_operate_layout = 2131296879;
-
- // aapt resource value: 0x7F090270
- public const int realplay_full_play_btn = 2131296880;
-
- // aapt resource value: 0x7F090271
- public const int realplay_full_previously_btn = 2131296881;
-
- // aapt resource value: 0x7F090272
- public const int realplay_full_ptz_anim_btn = 2131296882;
-
- // aapt resource value: 0x7F090273
- public const int realplay_full_ptz_btn = 2131296883;
-
- // aapt resource value: 0x7F090274
- public const int realplay_full_ptz_prompt_iv = 2131296884;
-
- // aapt resource value: 0x7F090275
- public const int realplay_full_rate_tv = 2131296885;
-
- // aapt resource value: 0x7F090276
- public const int realplay_full_sound_btn = 2131296886;
-
- // aapt resource value: 0x7F090277
- public const int realplay_full_talk_anim_btn = 2131296887;
-
- // aapt resource value: 0x7F090278
- public const int realplay_full_talk_btn = 2131296888;
-
- // aapt resource value: 0x7F090279
- public const int realplay_full_video_btn = 2131296889;
-
- // aapt resource value: 0x7F09027A
- public const int realplay_full_video_container = 2131296890;
-
- // aapt resource value: 0x7F09027B
- public const int realplay_full_video_start_btn = 2131296891;
-
- // aapt resource value: 0x7F09027C
- public const int realplay_loading = 2131296892;
-
- // aapt resource value: 0x7F09027D
- public const int realplay_loading_rl = 2131296893;
-
- // aapt resource value: 0x7F09027E
- public const int realplay_operate_bar = 2131296894;
-
- // aapt resource value: 0x7F09027F
- public const int realplay_operate_bar2 = 2131296895;
-
- // aapt resource value: 0x7F090280
- public const int realplay_operate_ly = 2131296896;
-
- // aapt resource value: 0x7F090281
- public const int realplay_operate_ly2 = 2131296897;
-
- // aapt resource value: 0x7F090284
- public const int realplay_pages_gallery = 2131296900;
-
- // aapt resource value: 0x7F090282
- public const int realplay_page_anim_iv = 2131296898;
-
- // aapt resource value: 0x7F090283
- public const int realplay_page_ly = 2131296899;
-
- // aapt resource value: 0x7F090285
- public const int realplay_play_btn = 2131296901;
-
- // aapt resource value: 0x7F090286
- public const int realplay_play_iv = 2131296902;
-
- // aapt resource value: 0x7F090287
- public const int realplay_play_rl = 2131296903;
-
- // aapt resource value: 0x7F090288
- public const int realplay_previously_btn = 2131296904;
-
- // aapt resource value: 0x7F090289
- public const int realplay_previously_btn2 = 2131296905;
-
- // aapt resource value: 0x7F09028A
- public const int realplay_previously_btn_ly = 2131296906;
-
- // aapt resource value: 0x7F09028B
- public const int realplay_previously_btn_ly2 = 2131296907;
-
- // aapt resource value: 0x7F09028C
- public const int realplay_privacy_btn = 2131296908;
-
- // aapt resource value: 0x7F09028D
- public const int realplay_privacy_btn2 = 2131296909;
-
- // aapt resource value: 0x7F09028E
- public const int realplay_privacy_btn_ly = 2131296910;
-
- // aapt resource value: 0x7F09028F
- public const int realplay_privacy_btn_ly2 = 2131296911;
-
- // aapt resource value: 0x7F090290
- public const int realplay_privacy_ly = 2131296912;
-
- // aapt resource value: 0x7F090291
- public const int realplay_privacy_tv = 2131296913;
-
- // aapt resource value: 0x7F090292
- public const int realplay_privacy_tv2 = 2131296914;
-
- // aapt resource value: 0x7F090293
- public const int realplay_prompt_rl = 2131296915;
-
- // aapt resource value: 0x7F090294
- public const int realplay_ptz_btn = 2131296916;
-
- // aapt resource value: 0x7F090295
- public const int realplay_ptz_btn2 = 2131296917;
-
- // aapt resource value: 0x7F090296
- public const int realplay_ptz_btn_ly = 2131296918;
-
- // aapt resource value: 0x7F090297
- public const int realplay_ptz_btn_ly2 = 2131296919;
-
- // aapt resource value: 0x7F090298
- public const int realplay_ptz_direction_iv = 2131296920;
-
- // aapt resource value: 0x7F090299
- public const int realplay_quality_btn = 2131296921;
-
- // aapt resource value: 0x7F09029A
- public const int realplay_ratio_tv = 2131296922;
-
- // aapt resource value: 0x7F09029B
- public const int realplay_record_iv = 2131296923;
-
- // aapt resource value: 0x7F09029C
- public const int realplay_record_ly = 2131296924;
-
- // aapt resource value: 0x7F09029D
- public const int realplay_record_tv = 2131296925;
-
- // aapt resource value: 0x7F09029E
- public const int realplay_sound_btn = 2131296926;
-
- // aapt resource value: 0x7F09029F
- public const int realplay_ssl_btn = 2131296927;
-
- // aapt resource value: 0x7F0902A0
- public const int realplay_ssl_btn2 = 2131296928;
-
- // aapt resource value: 0x7F0902A1
- public const int realplay_ssl_btn_ly = 2131296929;
-
- // aapt resource value: 0x7F0902A2
- public const int realplay_ssl_btn_ly2 = 2131296930;
-
- // aapt resource value: 0x7F0902A3
- public const int realplay_ssl_btn_rl = 2131296931;
-
- // aapt resource value: 0x7F0902A4
- public const int realplay_ssl_btn_rl2 = 2131296932;
-
- // aapt resource value: 0x7F0902A5
- public const int realplay_ssl_progress = 2131296933;
-
- // aapt resource value: 0x7F0902A6
- public const int realplay_ssl_progress2 = 2131296934;
-
- // aapt resource value: 0x7F0902A7
- public const int realplay_ssl_tv = 2131296935;
-
- // aapt resource value: 0x7F0902A8
- public const int realplay_ssl_tv2 = 2131296936;
-
- // aapt resource value: 0x7F0902A9
- public const int realplay_stop_btn = 2131296937;
-
- // aapt resource value: 0x7F0902AA
- public const int realplay_sv = 2131296938;
-
- // aapt resource value: 0x7F0902AB
- public const int realplay_talk_btn = 2131296939;
-
- // aapt resource value: 0x7F0902AC
- public const int realplay_talk_btn2 = 2131296940;
-
- // aapt resource value: 0x7F0902AD
- public const int realplay_talk_btn_ly = 2131296941;
-
- // aapt resource value: 0x7F0902AE
- public const int realplay_talk_btn_ly2 = 2131296942;
-
- // aapt resource value: 0x7F0902AF
- public const int realplay_tip_tv = 2131296943;
-
- // aapt resource value: 0x7F0902B0
- public const int realplay_title_tv = 2131296944;
-
- // aapt resource value: 0x7F0902B1
- public const int realplay_top_bar = 2131296945;
-
- // aapt resource value: 0x7F0902B2
- public const int realplay_video_btn = 2131296946;
-
- // aapt resource value: 0x7F0902B3
- public const int realplay_video_btn2 = 2131296947;
-
- // aapt resource value: 0x7F0902B4
- public const int realplay_video_container = 2131296948;
-
- // aapt resource value: 0x7F0902B5
- public const int realplay_video_container2 = 2131296949;
-
- // aapt resource value: 0x7F0902B6
- public const int realplay_video_container_ly = 2131296950;
-
- // aapt resource value: 0x7F0902B7
- public const int realplay_video_container_ly2 = 2131296951;
-
- // aapt resource value: 0x7F0902B8
- public const int realplay_video_start_btn = 2131296952;
-
- // aapt resource value: 0x7F0902B9
- public const int realplay_video_start_btn2 = 2131296953;
-
- // aapt resource value: 0x7F0902BA
- public const int realplay_waiting_lr = 2131296954;
-
- // aapt resource value: 0x7F0902BB
- public const int realplay_watting_pb = 2131296955;
-
- // aapt resource value: 0x7F0902BC
- public const int realplay_watting_tv = 2131296956;
-
- // aapt resource value: 0x7F0902BD
- public const int realplay_wnd_sv = 2131296957;
-
- // aapt resource value: 0x7F0902BE
- public const int recycler_view = 2131296958;
-
- // aapt resource value: 0x7F0902BF
- public const int refresh_button = 2131296959;
-
- // aapt resource value: 0x7F0902C0
- public const int refresh_layout = 2131296960;
-
- // aapt resource value: 0x7F0902C1
- public const int refresh_tip = 2131296961;
-
- // aapt resource value: 0x7F0902C2
- public const int remoteFrame = 2131296962;
-
- // aapt resource value: 0x7F0902C3
- public const int remoteFrameContainer = 2131296963;
-
- // aapt resource value: 0x7F0902D0
- public const int remoteplayback_begin_time_tv = 2131296976;
-
- // aapt resource value: 0x7F0902D1
- public const int remoteplayback_capture_iv = 2131296977;
-
- // aapt resource value: 0x7F0902D2
- public const int remoteplayback_capture_rl = 2131296978;
-
- // aapt resource value: 0x7F0902D3
- public const int remoteplayback_capture_watermark_iv = 2131296979;
-
- // aapt resource value: 0x7F0902D4
- public const int remoteplayback_control_rl = 2131296980;
-
- // aapt resource value: 0x7F0902D5
- public const int remoteplayback_end_time_tv = 2131296981;
-
- // aapt resource value: 0x7F0902D6
- public const int remoteplayback_file_time_bar = 2131296982;
-
- // aapt resource value: 0x7F0902D7
- public const int remoteplayback_flow_tv = 2131296983;
-
- // aapt resource value: 0x7F0902D8
- public const int remoteplayback_full_down_btn = 2131296984;
-
- // aapt resource value: 0x7F0902D9
- public const int remoteplayback_full_flow_ly = 2131296985;
-
- // aapt resource value: 0x7F0902DA
- public const int remoteplayback_full_flow_tv = 2131296986;
-
- // aapt resource value: 0x7F0902DB
- public const int remoteplayback_full_operate_bar = 2131296987;
-
- // aapt resource value: 0x7F0902DC
- public const int remoteplayback_full_play_btn = 2131296988;
-
- // aapt resource value: 0x7F0902DD
- public const int remoteplayback_full_previously_btn = 2131296989;
-
- // aapt resource value: 0x7F0902DE
- public const int remoteplayback_full_rate_tv = 2131296990;
-
- // aapt resource value: 0x7F0902DF
- public const int remoteplayback_full_sound_btn = 2131296991;
-
- // aapt resource value: 0x7F0902E0
- public const int remoteplayback_full_video_btn = 2131296992;
-
- // aapt resource value: 0x7F0902E1
- public const int remoteplayback_full_video_container = 2131296993;
-
- // aapt resource value: 0x7F0902E2
- public const int remoteplayback_full_video_start_btn = 2131296994;
-
- // aapt resource value: 0x7F0902E3
- public const int remoteplayback_loading_iv = 2131296995;
-
- // aapt resource value: 0x7F0902E4
- public const int remoteplayback_loading_ly = 2131296996;
-
- // aapt resource value: 0x7F0902E5
- public const int remoteplayback_loading_pb_ly = 2131296997;
-
- // aapt resource value: 0x7F0902E6
- public const int remoteplayback_loading_play_btn = 2131296998;
-
- // aapt resource value: 0x7F0902E7
- public const int remoteplayback_loading_tv = 2131296999;
-
- // aapt resource value: 0x7F0902E8
- public const int remoteplayback_operate_bar = 2131297000;
-
- // aapt resource value: 0x7F0902E9
- public const int remoteplayback_page_ly = 2131297001;
-
- // aapt resource value: 0x7F0902EA
- public const int remoteplayback_play_btn = 2131297002;
-
- // aapt resource value: 0x7F0902EB
- public const int remoteplayback_play_rl = 2131297003;
-
- // aapt resource value: 0x7F0902EC
- public const int remoteplayback_previously_btn = 2131297004;
-
- // aapt resource value: 0x7F0902EF
- public const int remoteplayback_progressbar = 2131297007;
-
- // aapt resource value: 0x7F0902ED
- public const int remoteplayback_progress_ly = 2131297005;
-
- // aapt resource value: 0x7F0902EE
- public const int remoteplayback_progress_seekbar = 2131297006;
-
- // aapt resource value: 0x7F0902F0
- public const int remoteplayback_ratio_tv = 2131297008;
-
- // aapt resource value: 0x7F0902F1
- public const int remoteplayback_record_iv = 2131297009;
-
- // aapt resource value: 0x7F0902F2
- public const int remoteplayback_record_ly = 2131297010;
-
- // aapt resource value: 0x7F0902F3
- public const int remoteplayback_record_tv = 2131297011;
-
- // aapt resource value: 0x7F0902F4
- public const int remoteplayback_replay_btn = 2131297012;
-
- // aapt resource value: 0x7F0902F5
- public const int remoteplayback_small_previously_btn = 2131297013;
-
- // aapt resource value: 0x7F0902F6
- public const int remoteplayback_small_video_btn = 2131297014;
-
- // aapt resource value: 0x7F0902F7
- public const int remoteplayback_small_video_container = 2131297015;
-
- // aapt resource value: 0x7F0902F8
- public const int remoteplayback_small_video_start_btn = 2131297016;
-
- // aapt resource value: 0x7F0902F9
- public const int remoteplayback_sound_btn = 2131297017;
-
- // aapt resource value: 0x7F0902FA
- public const int remoteplayback_sv = 2131297018;
-
- // aapt resource value: 0x7F0902FC
- public const int remoteplayback_timebar = 2131297020;
-
- // aapt resource value: 0x7F0902FD
- public const int remoteplayback_timebar_rl = 2131297021;
-
- // aapt resource value: 0x7F0902FB
- public const int remoteplayback_time_tv = 2131297019;
-
- // aapt resource value: 0x7F0902FE
- public const int remoteplayback_tip_tv = 2131297022;
-
- // aapt resource value: 0x7F0902FF
- public const int remoteplayback_video_btn = 2131297023;
-
- // aapt resource value: 0x7F090300
- public const int remoteplayback_video_container = 2131297024;
-
- // aapt resource value: 0x7F090301
- public const int remoteplayback_video_start_btn = 2131297025;
-
- // aapt resource value: 0x7F0902C4
- public const int remoteVideo = 2131296964;
-
- // aapt resource value: 0x7F0902C5
- public const int remote_list_page = 2131296965;
-
- // aapt resource value: 0x7F0902C6
- public const int remote_loading_buffer_tv = 2131296966;
-
- // aapt resource value: 0x7F0902C7
- public const int remote_loading_iv = 2131296967;
-
- // aapt resource value: 0x7F0902C8
- public const int remote_playback_area = 2131296968;
-
- // aapt resource value: 0x7F0902C9
- public const int remote_playback_capture_btn = 2131296969;
-
- // aapt resource value: 0x7F0902CA
- public const int remote_playback_download_btn = 2131296970;
-
- // aapt resource value: 0x7F0902CB
- public const int remote_playback_flow_tv = 2131296971;
-
- // aapt resource value: 0x7F0902CC
- public const int remote_playback_pause_btn = 2131296972;
-
- // aapt resource value: 0x7F0902CD
- public const int remote_playback_sound_btn = 2131296973;
-
- // aapt resource value: 0x7F0902CE
- public const int remote_playback_video_recording_btn = 2131296974;
-
- // aapt resource value: 0x7F0902CF
- public const int remote_playback_wnd_sv = 2131296975;
-
- // aapt resource value: 0x7F090302
- public const int render_texture_view = 2131297026;
-
- // aapt resource value: 0x7F090303
- public const int render_texture_view_soft = 2131297027;
-
- // aapt resource value: 0x7F090304
- public const int replay_btn = 2131297028;
-
- // aapt resource value: 0x7F090305
- public const int requestA = 2131297029;
-
- // aapt resource value: 0x7F090306
- public const int requestMasterAudio = 2131297030;
-
- // aapt resource value: 0x7F090307
- public const int requestMasterVideo = 2131297031;
-
- // aapt resource value: 0x7F090308
- public const int requestV = 2131297032;
-
- // aapt resource value: 0x7F090309
- public const int restart_preview = 2131297033;
-
- // aapt resource value: 0x7F09030A
- public const int retry_btn = 2131297034;
-
- // aapt resource value: 0x7F09030B
- public const int retry_button = 2131297035;
-
- // aapt resource value: 0x7F09030C
- public const int return_scan_result = 2131297036;
-
- // aapt resource value: 0x7F09030D
- public const int reverseCall = 2131297037;
-
- // aapt resource value: 0x7F09030E
- public const int reverseCallInfo = 2131297038;
+ public const int rangeSort = 2131296863;
// aapt resource value: 0x7F090260
- public const int re_next_area = 2131296864;
+ public const int rate_16x = 2131296864;
+
+ // aapt resource value: 0x7F090261
+ public const int rate_1x = 2131296865;
+
+ // aapt resource value: 0x7F090262
+ public const int rate_4x = 2131296866;
+
+ // aapt resource value: 0x7F090263
+ public const int rate_8x = 2131296867;
+
+ // aapt resource value: 0x7F090265
+ public const int read_button = 2131296869;
+
+ // aapt resource value: 0x7F090266
+ public const int realplay_area = 2131296870;
+
+ // aapt resource value: 0x7F090267
+ public const int realplay_back_btn = 2131296871;
+
+ // aapt resource value: 0x7F090268
+ public const int realplay_capture_iv = 2131296872;
+
+ // aapt resource value: 0x7F090269
+ public const int realplay_capture_rl = 2131296873;
+
+ // aapt resource value: 0x7F09026A
+ public const int realplay_capture_watermark_iv = 2131296874;
+
+ // aapt resource value: 0x7F09026B
+ public const int realplay_control_bar = 2131296875;
+
+ // aapt resource value: 0x7F09026C
+ public const int realplay_control_rl = 2131296876;
+
+ // aapt resource value: 0x7F09026D
+ public const int realplay_display_view = 2131296877;
+
+ // aapt resource value: 0x7F09026E
+ public const int realplay_flow_tv = 2131296878;
+
+ // aapt resource value: 0x7F09026F
+ public const int realplay_full_anim_btn = 2131296879;
+
+ // aapt resource value: 0x7F090270
+ public const int realplay_full_flow_ly = 2131296880;
+
+ // aapt resource value: 0x7F090271
+ public const int realplay_full_flow_tv = 2131296881;
+
+ // aapt resource value: 0x7F090272
+ public const int realplay_full_operate_bar = 2131296882;
+
+ // aapt resource value: 0x7F090273
+ public const int realplay_full_operate_layout = 2131296883;
+
+ // aapt resource value: 0x7F090274
+ public const int realplay_full_play_btn = 2131296884;
+
+ // aapt resource value: 0x7F090275
+ public const int realplay_full_previously_btn = 2131296885;
+
+ // aapt resource value: 0x7F090276
+ public const int realplay_full_ptz_anim_btn = 2131296886;
+
+ // aapt resource value: 0x7F090277
+ public const int realplay_full_ptz_btn = 2131296887;
+
+ // aapt resource value: 0x7F090278
+ public const int realplay_full_ptz_prompt_iv = 2131296888;
+
+ // aapt resource value: 0x7F090279
+ public const int realplay_full_rate_tv = 2131296889;
+
+ // aapt resource value: 0x7F09027A
+ public const int realplay_full_sound_btn = 2131296890;
+
+ // aapt resource value: 0x7F09027B
+ public const int realplay_full_talk_anim_btn = 2131296891;
+
+ // aapt resource value: 0x7F09027C
+ public const int realplay_full_talk_btn = 2131296892;
+
+ // aapt resource value: 0x7F09027D
+ public const int realplay_full_video_btn = 2131296893;
+
+ // aapt resource value: 0x7F09027E
+ public const int realplay_full_video_container = 2131296894;
+
+ // aapt resource value: 0x7F09027F
+ public const int realplay_full_video_start_btn = 2131296895;
+
+ // aapt resource value: 0x7F090280
+ public const int realplay_loading = 2131296896;
+
+ // aapt resource value: 0x7F090281
+ public const int realplay_loading_rl = 2131296897;
+
+ // aapt resource value: 0x7F090282
+ public const int realplay_operate_bar = 2131296898;
+
+ // aapt resource value: 0x7F090283
+ public const int realplay_operate_bar2 = 2131296899;
+
+ // aapt resource value: 0x7F090284
+ public const int realplay_operate_ly = 2131296900;
+
+ // aapt resource value: 0x7F090285
+ public const int realplay_operate_ly2 = 2131296901;
+
+ // aapt resource value: 0x7F090288
+ public const int realplay_pages_gallery = 2131296904;
+
+ // aapt resource value: 0x7F090286
+ public const int realplay_page_anim_iv = 2131296902;
+
+ // aapt resource value: 0x7F090287
+ public const int realplay_page_ly = 2131296903;
+
+ // aapt resource value: 0x7F090289
+ public const int realplay_play_btn = 2131296905;
+
+ // aapt resource value: 0x7F09028A
+ public const int realplay_play_iv = 2131296906;
+
+ // aapt resource value: 0x7F09028B
+ public const int realplay_play_rl = 2131296907;
+
+ // aapt resource value: 0x7F09028C
+ public const int realplay_previously_btn = 2131296908;
+
+ // aapt resource value: 0x7F09028D
+ public const int realplay_previously_btn2 = 2131296909;
+
+ // aapt resource value: 0x7F09028E
+ public const int realplay_previously_btn_ly = 2131296910;
+
+ // aapt resource value: 0x7F09028F
+ public const int realplay_previously_btn_ly2 = 2131296911;
+
+ // aapt resource value: 0x7F090290
+ public const int realplay_privacy_btn = 2131296912;
+
+ // aapt resource value: 0x7F090291
+ public const int realplay_privacy_btn2 = 2131296913;
+
+ // aapt resource value: 0x7F090292
+ public const int realplay_privacy_btn_ly = 2131296914;
+
+ // aapt resource value: 0x7F090293
+ public const int realplay_privacy_btn_ly2 = 2131296915;
+
+ // aapt resource value: 0x7F090294
+ public const int realplay_privacy_ly = 2131296916;
+
+ // aapt resource value: 0x7F090295
+ public const int realplay_privacy_tv = 2131296917;
+
+ // aapt resource value: 0x7F090296
+ public const int realplay_privacy_tv2 = 2131296918;
+
+ // aapt resource value: 0x7F090297
+ public const int realplay_prompt_rl = 2131296919;
+
+ // aapt resource value: 0x7F090298
+ public const int realplay_ptz_btn = 2131296920;
+
+ // aapt resource value: 0x7F090299
+ public const int realplay_ptz_btn2 = 2131296921;
+
+ // aapt resource value: 0x7F09029A
+ public const int realplay_ptz_btn_ly = 2131296922;
+
+ // aapt resource value: 0x7F09029B
+ public const int realplay_ptz_btn_ly2 = 2131296923;
+
+ // aapt resource value: 0x7F09029C
+ public const int realplay_ptz_direction_iv = 2131296924;
+
+ // aapt resource value: 0x7F09029D
+ public const int realplay_quality_btn = 2131296925;
+
+ // aapt resource value: 0x7F09029E
+ public const int realplay_ratio_tv = 2131296926;
+
+ // aapt resource value: 0x7F09029F
+ public const int realplay_record_iv = 2131296927;
+
+ // aapt resource value: 0x7F0902A0
+ public const int realplay_record_ly = 2131296928;
+
+ // aapt resource value: 0x7F0902A1
+ public const int realplay_record_tv = 2131296929;
+
+ // aapt resource value: 0x7F0902A2
+ public const int realplay_sound_btn = 2131296930;
+
+ // aapt resource value: 0x7F0902A3
+ public const int realplay_ssl_btn = 2131296931;
+
+ // aapt resource value: 0x7F0902A4
+ public const int realplay_ssl_btn2 = 2131296932;
+
+ // aapt resource value: 0x7F0902A5
+ public const int realplay_ssl_btn_ly = 2131296933;
+
+ // aapt resource value: 0x7F0902A6
+ public const int realplay_ssl_btn_ly2 = 2131296934;
+
+ // aapt resource value: 0x7F0902A7
+ public const int realplay_ssl_btn_rl = 2131296935;
+
+ // aapt resource value: 0x7F0902A8
+ public const int realplay_ssl_btn_rl2 = 2131296936;
+
+ // aapt resource value: 0x7F0902A9
+ public const int realplay_ssl_progress = 2131296937;
+
+ // aapt resource value: 0x7F0902AA
+ public const int realplay_ssl_progress2 = 2131296938;
+
+ // aapt resource value: 0x7F0902AB
+ public const int realplay_ssl_tv = 2131296939;
+
+ // aapt resource value: 0x7F0902AC
+ public const int realplay_ssl_tv2 = 2131296940;
+
+ // aapt resource value: 0x7F0902AD
+ public const int realplay_stop_btn = 2131296941;
+
+ // aapt resource value: 0x7F0902AE
+ public const int realplay_sv = 2131296942;
+
+ // aapt resource value: 0x7F0902AF
+ public const int realplay_talk_btn = 2131296943;
+
+ // aapt resource value: 0x7F0902B0
+ public const int realplay_talk_btn2 = 2131296944;
+
+ // aapt resource value: 0x7F0902B1
+ public const int realplay_talk_btn_ly = 2131296945;
+
+ // aapt resource value: 0x7F0902B2
+ public const int realplay_talk_btn_ly2 = 2131296946;
+
+ // aapt resource value: 0x7F0902B3
+ public const int realplay_tip_tv = 2131296947;
+
+ // aapt resource value: 0x7F0902B4
+ public const int realplay_title_tv = 2131296948;
+
+ // aapt resource value: 0x7F0902B5
+ public const int realplay_top_bar = 2131296949;
+
+ // aapt resource value: 0x7F0902B6
+ public const int realplay_video_btn = 2131296950;
+
+ // aapt resource value: 0x7F0902B7
+ public const int realplay_video_btn2 = 2131296951;
+
+ // aapt resource value: 0x7F0902B8
+ public const int realplay_video_container = 2131296952;
+
+ // aapt resource value: 0x7F0902B9
+ public const int realplay_video_container2 = 2131296953;
+
+ // aapt resource value: 0x7F0902BA
+ public const int realplay_video_container_ly = 2131296954;
+
+ // aapt resource value: 0x7F0902BB
+ public const int realplay_video_container_ly2 = 2131296955;
+
+ // aapt resource value: 0x7F0902BC
+ public const int realplay_video_start_btn = 2131296956;
+
+ // aapt resource value: 0x7F0902BD
+ public const int realplay_video_start_btn2 = 2131296957;
+
+ // aapt resource value: 0x7F0902BE
+ public const int realplay_waiting_lr = 2131296958;
+
+ // aapt resource value: 0x7F0902BF
+ public const int realplay_watting_pb = 2131296959;
+
+ // aapt resource value: 0x7F0902C0
+ public const int realplay_watting_tv = 2131296960;
+
+ // aapt resource value: 0x7F0902C1
+ public const int realplay_wnd_sv = 2131296961;
+
+ // aapt resource value: 0x7F0902C2
+ public const int recycler_view = 2131296962;
+
+ // aapt resource value: 0x7F0902C3
+ public const int refresh_button = 2131296963;
+
+ // aapt resource value: 0x7F0902C4
+ public const int refresh_layout = 2131296964;
+
+ // aapt resource value: 0x7F0902C5
+ public const int refresh_tip = 2131296965;
+
+ // aapt resource value: 0x7F0902C6
+ public const int remoteFrame = 2131296966;
+
+ // aapt resource value: 0x7F0902C7
+ public const int remoteFrameContainer = 2131296967;
+
+ // aapt resource value: 0x7F0902D4
+ public const int remoteplayback_begin_time_tv = 2131296980;
+
+ // aapt resource value: 0x7F0902D5
+ public const int remoteplayback_capture_iv = 2131296981;
+
+ // aapt resource value: 0x7F0902D6
+ public const int remoteplayback_capture_rl = 2131296982;
+
+ // aapt resource value: 0x7F0902D7
+ public const int remoteplayback_capture_watermark_iv = 2131296983;
+
+ // aapt resource value: 0x7F0902D8
+ public const int remoteplayback_control_rl = 2131296984;
+
+ // aapt resource value: 0x7F0902D9
+ public const int remoteplayback_end_time_tv = 2131296985;
+
+ // aapt resource value: 0x7F0902DA
+ public const int remoteplayback_file_time_bar = 2131296986;
+
+ // aapt resource value: 0x7F0902DB
+ public const int remoteplayback_flow_tv = 2131296987;
+
+ // aapt resource value: 0x7F0902DC
+ public const int remoteplayback_full_down_btn = 2131296988;
+
+ // aapt resource value: 0x7F0902DD
+ public const int remoteplayback_full_flow_ly = 2131296989;
+
+ // aapt resource value: 0x7F0902DE
+ public const int remoteplayback_full_flow_tv = 2131296990;
+
+ // aapt resource value: 0x7F0902DF
+ public const int remoteplayback_full_operate_bar = 2131296991;
+
+ // aapt resource value: 0x7F0902E0
+ public const int remoteplayback_full_play_btn = 2131296992;
+
+ // aapt resource value: 0x7F0902E1
+ public const int remoteplayback_full_previously_btn = 2131296993;
+
+ // aapt resource value: 0x7F0902E2
+ public const int remoteplayback_full_rate_tv = 2131296994;
+
+ // aapt resource value: 0x7F0902E3
+ public const int remoteplayback_full_sound_btn = 2131296995;
+
+ // aapt resource value: 0x7F0902E4
+ public const int remoteplayback_full_video_btn = 2131296996;
+
+ // aapt resource value: 0x7F0902E5
+ public const int remoteplayback_full_video_container = 2131296997;
+
+ // aapt resource value: 0x7F0902E6
+ public const int remoteplayback_full_video_start_btn = 2131296998;
+
+ // aapt resource value: 0x7F0902E7
+ public const int remoteplayback_loading_iv = 2131296999;
+
+ // aapt resource value: 0x7F0902E8
+ public const int remoteplayback_loading_ly = 2131297000;
+
+ // aapt resource value: 0x7F0902E9
+ public const int remoteplayback_loading_pb_ly = 2131297001;
+
+ // aapt resource value: 0x7F0902EA
+ public const int remoteplayback_loading_play_btn = 2131297002;
+
+ // aapt resource value: 0x7F0902EB
+ public const int remoteplayback_loading_tv = 2131297003;
+
+ // aapt resource value: 0x7F0902EC
+ public const int remoteplayback_operate_bar = 2131297004;
+
+ // aapt resource value: 0x7F0902ED
+ public const int remoteplayback_page_ly = 2131297005;
+
+ // aapt resource value: 0x7F0902EE
+ public const int remoteplayback_play_btn = 2131297006;
+
+ // aapt resource value: 0x7F0902EF
+ public const int remoteplayback_play_rl = 2131297007;
+
+ // aapt resource value: 0x7F0902F0
+ public const int remoteplayback_previously_btn = 2131297008;
+
+ // aapt resource value: 0x7F0902F3
+ public const int remoteplayback_progressbar = 2131297011;
+
+ // aapt resource value: 0x7F0902F1
+ public const int remoteplayback_progress_ly = 2131297009;
+
+ // aapt resource value: 0x7F0902F2
+ public const int remoteplayback_progress_seekbar = 2131297010;
+
+ // aapt resource value: 0x7F0902F4
+ public const int remoteplayback_ratio_tv = 2131297012;
+
+ // aapt resource value: 0x7F0902F5
+ public const int remoteplayback_record_iv = 2131297013;
+
+ // aapt resource value: 0x7F0902F6
+ public const int remoteplayback_record_ly = 2131297014;
+
+ // aapt resource value: 0x7F0902F7
+ public const int remoteplayback_record_tv = 2131297015;
+
+ // aapt resource value: 0x7F0902F8
+ public const int remoteplayback_replay_btn = 2131297016;
+
+ // aapt resource value: 0x7F0902F9
+ public const int remoteplayback_small_previously_btn = 2131297017;
+
+ // aapt resource value: 0x7F0902FA
+ public const int remoteplayback_small_video_btn = 2131297018;
+
+ // aapt resource value: 0x7F0902FB
+ public const int remoteplayback_small_video_container = 2131297019;
+
+ // aapt resource value: 0x7F0902FC
+ public const int remoteplayback_small_video_start_btn = 2131297020;
+
+ // aapt resource value: 0x7F0902FD
+ public const int remoteplayback_sound_btn = 2131297021;
+
+ // aapt resource value: 0x7F0902FE
+ public const int remoteplayback_sv = 2131297022;
+
+ // aapt resource value: 0x7F090300
+ public const int remoteplayback_timebar = 2131297024;
+
+ // aapt resource value: 0x7F090301
+ public const int remoteplayback_timebar_rl = 2131297025;
+
+ // aapt resource value: 0x7F0902FF
+ public const int remoteplayback_time_tv = 2131297023;
+
+ // aapt resource value: 0x7F090302
+ public const int remoteplayback_tip_tv = 2131297026;
+
+ // aapt resource value: 0x7F090303
+ public const int remoteplayback_video_btn = 2131297027;
+
+ // aapt resource value: 0x7F090304
+ public const int remoteplayback_video_container = 2131297028;
+
+ // aapt resource value: 0x7F090305
+ public const int remoteplayback_video_start_btn = 2131297029;
+
+ // aapt resource value: 0x7F0902C8
+ public const int remoteVideo = 2131296968;
+
+ // aapt resource value: 0x7F0902C9
+ public const int remote_list_page = 2131296969;
+
+ // aapt resource value: 0x7F0902CA
+ public const int remote_loading_buffer_tv = 2131296970;
+
+ // aapt resource value: 0x7F0902CB
+ public const int remote_loading_iv = 2131296971;
+
+ // aapt resource value: 0x7F0902CC
+ public const int remote_playback_area = 2131296972;
+
+ // aapt resource value: 0x7F0902CD
+ public const int remote_playback_capture_btn = 2131296973;
+
+ // aapt resource value: 0x7F0902CE
+ public const int remote_playback_download_btn = 2131296974;
+
+ // aapt resource value: 0x7F0902CF
+ public const int remote_playback_flow_tv = 2131296975;
+
+ // aapt resource value: 0x7F0902D0
+ public const int remote_playback_pause_btn = 2131296976;
+
+ // aapt resource value: 0x7F0902D1
+ public const int remote_playback_sound_btn = 2131296977;
+
+ // aapt resource value: 0x7F0902D2
+ public const int remote_playback_video_recording_btn = 2131296978;
+
+ // aapt resource value: 0x7F0902D3
+ public const int remote_playback_wnd_sv = 2131296979;
+
+ // aapt resource value: 0x7F090306
+ public const int render_texture_view = 2131297030;
+
+ // aapt resource value: 0x7F090307
+ public const int render_texture_view_soft = 2131297031;
+
+ // aapt resource value: 0x7F090308
+ public const int replay_btn = 2131297032;
+
+ // aapt resource value: 0x7F090309
+ public const int requestA = 2131297033;
+
+ // aapt resource value: 0x7F09030A
+ public const int requestMasterAudio = 2131297034;
+
+ // aapt resource value: 0x7F09030B
+ public const int requestMasterVideo = 2131297035;
+
+ // aapt resource value: 0x7F09030C
+ public const int requestV = 2131297036;
+
+ // aapt resource value: 0x7F09030D
+ public const int restart_preview = 2131297037;
+
+ // aapt resource value: 0x7F09030E
+ public const int retry_btn = 2131297038;
// aapt resource value: 0x7F09030F
- public const int right = 2131297039;
+ public const int retry_button = 2131297039;
// aapt resource value: 0x7F090310
- public const int right_icon = 2131297040;
+ public const int return_scan_result = 2131297040;
// aapt resource value: 0x7F090311
- public const int right_side = 2131297041;
+ public const int reverseCall = 2131297041;
// aapt resource value: 0x7F090312
- public const int rl_lp_answerView = 2131297042;
+ public const int reverseCallInfo = 2131297042;
+
+ // aapt resource value: 0x7F090264
+ public const int re_next_area = 2131296868;
// aapt resource value: 0x7F090313
- public const int rl_lp_topView = 2131297043;
+ public const int right = 2131297043;
// aapt resource value: 0x7F090314
- public const int rl_lp_unlock = 2131297044;
+ public const int right_icon = 2131297044;
// aapt resource value: 0x7F090315
- public const int room_id = 2131297045;
+ public const int right_side = 2131297045;
// aapt resource value: 0x7F090316
- public const int room_id_text = 2131297046;
+ public const int rl_lp_answerView = 2131297046;
// aapt resource value: 0x7F090317
- public const int rv_multi_screen = 2131297047;
+ public const int rl_lp_topView = 2131297047;
// aapt resource value: 0x7F090318
- public const int rv_topbar = 2131297048;
+ public const int rl_lp_unlock = 2131297048;
// aapt resource value: 0x7F090319
- public const int safe_box_tip = 2131297049;
+ public const int room_id = 2131297049;
// aapt resource value: 0x7F09031A
- public const int sample_text = 2131297050;
+ public const int room_id_text = 2131297050;
// aapt resource value: 0x7F09031B
- public const int save_image_matrix = 2131297051;
+ public const int rv_multi_screen = 2131297051;
// aapt resource value: 0x7F09031C
- public const int save_non_transition_alpha = 2131297052;
+ public const int rv_topbar = 2131297052;
// aapt resource value: 0x7F09031D
- public const int save_scale_type = 2131297053;
+ public const int safe_box_tip = 2131297053;
+
+ // aapt resource value: 0x7F09031E
+ public const int sample_text = 2131297054;
+
+ // aapt resource value: 0x7F09031F
+ public const int save_image_matrix = 2131297055;
+
+ // aapt resource value: 0x7F090320
+ public const int save_non_transition_alpha = 2131297056;
+
+ // aapt resource value: 0x7F090321
+ public const int save_scale_type = 2131297057;
// aapt resource value: 0x7F09000D
public const int Scale = 2131296269;
- // aapt resource value: 0x7F09031E
- public const int screen = 2131297054;
-
- // aapt resource value: 0x7F09031F
- public const int scroll = 2131297055;
-
- // aapt resource value: 0x7F090324
- public const int scrollable = 2131297060;
-
- // aapt resource value: 0x7F090320
- public const int scrollIndicatorDown = 2131297056;
-
- // aapt resource value: 0x7F090321
- public const int scrollIndicatorUp = 2131297057;
-
// aapt resource value: 0x7F090322
- public const int scrollView = 2131297058;
+ public const int screen = 2131297058;
// aapt resource value: 0x7F090323
- public const int scroll_layout = 2131297059;
-
- // aapt resource value: 0x7F090325
- public const int searchAnim = 2131297061;
-
- // aapt resource value: 0x7F090326
- public const int searchBtn = 2131297062;
-
- // aapt resource value: 0x7F090327
- public const int searchEditTextContainer = 2131297063;
+ public const int scroll = 2131297059;
// aapt resource value: 0x7F090328
- public const int searchFragment = 2131297064;
+ public const int scrollable = 2131297064;
+
+ // aapt resource value: 0x7F090324
+ public const int scrollIndicatorDown = 2131297060;
+
+ // aapt resource value: 0x7F090325
+ public const int scrollIndicatorUp = 2131297061;
+
+ // aapt resource value: 0x7F090326
+ public const int scrollView = 2131297062;
+
+ // aapt resource value: 0x7F090327
+ public const int scroll_layout = 2131297063;
// aapt resource value: 0x7F090329
- public const int search_badge = 2131297065;
+ public const int searchAnim = 2131297065;
// aapt resource value: 0x7F09032A
- public const int search_bar = 2131297066;
+ public const int searchBtn = 2131297066;
// aapt resource value: 0x7F09032B
- public const int search_button = 2131297067;
+ public const int searchEditTextContainer = 2131297067;
// aapt resource value: 0x7F09032C
- public const int search_close_btn = 2131297068;
+ public const int searchFragment = 2131297068;
// aapt resource value: 0x7F09032D
- public const int search_edit_frame = 2131297069;
+ public const int search_badge = 2131297069;
// aapt resource value: 0x7F09032E
- public const int search_go_btn = 2131297070;
+ public const int search_bar = 2131297070;
// aapt resource value: 0x7F09032F
- public const int search_mag_icon = 2131297071;
+ public const int search_button = 2131297071;
// aapt resource value: 0x7F090330
- public const int search_plate = 2131297072;
+ public const int search_close_btn = 2131297072;
// aapt resource value: 0x7F090331
- public const int search_src_text = 2131297073;
+ public const int search_edit_frame = 2131297073;
// aapt resource value: 0x7F090332
- public const int search_voice_btn = 2131297074;
+ public const int search_go_btn = 2131297074;
// aapt resource value: 0x7F090333
- public const int second = 2131297075;
+ public const int search_mag_icon = 2131297075;
// aapt resource value: 0x7F090334
- public const int select_dialog_listview = 2131297076;
+ public const int search_plate = 2131297076;
// aapt resource value: 0x7F090335
- public const int select_ipc_talkback = 2131297077;
+ public const int search_src_text = 2131297077;
// aapt resource value: 0x7F090336
- public const int select_nvr_talkback = 2131297078;
+ public const int search_voice_btn = 2131297078;
// aapt resource value: 0x7F090337
- public const int sendA = 2131297079;
+ public const int second = 2131297079;
// aapt resource value: 0x7F090338
- public const int sendCustomData = 2131297080;
+ public const int select_dialog_listview = 2131297080;
// aapt resource value: 0x7F090339
- public const int sendV = 2131297081;
+ public const int select_ipc_talkback = 2131297081;
// aapt resource value: 0x7F09033A
- public const int separate_line = 2131297082;
+ public const int select_nvr_talkback = 2131297082;
// aapt resource value: 0x7F09033B
- public const int serial_tv = 2131297083;
+ public const int sendA = 2131297083;
// aapt resource value: 0x7F09033C
- public const int seriesNumberEt = 2131297084;
+ public const int sendCustomData = 2131297084;
+
+ // aapt resource value: 0x7F09033D
+ public const int sendV = 2131297085;
+
+ // aapt resource value: 0x7F09033E
+ public const int separate_line = 2131297086;
+
+ // aapt resource value: 0x7F09033F
+ public const int serial_tv = 2131297087;
+
+ // aapt resource value: 0x7F090340
+ public const int seriesNumberEt = 2131297088;
+
+ // aapt resource value: 0x7F090341
+ public const int service_agreement_btn = 2131297089;
// aapt resource value: 0x7F09000A
public const int SHIFT = 2131296266;
- // aapt resource value: 0x7F09033D
- public const int shipin7_logo_lyt = 2131297085;
-
- // aapt resource value: 0x7F09033E
- public const int shortcut = 2131297086;
-
- // aapt resource value: 0x7F09033F
- public const int show = 2131297087;
-
- // aapt resource value: 0x7F090340
- public const int showCustom = 2131297088;
-
- // aapt resource value: 0x7F090341
- public const int showHome = 2131297089;
-
// aapt resource value: 0x7F090342
- public const int showTitle = 2131297090;
+ public const int shipin7_logo_lyt = 2131297090;
// aapt resource value: 0x7F090343
- public const int sign_et = 2131297091;
+ public const int shortcut = 2131297091;
// aapt resource value: 0x7F090344
- public const int size_layout = 2131297092;
+ public const int show = 2131297092;
// aapt resource value: 0x7F090345
- public const int smallLabel = 2131297093;
+ public const int showCustom = 2131297093;
// aapt resource value: 0x7F090346
- public const int sms_code_et = 2131297094;
+ public const int showHome = 2131297094;
// aapt resource value: 0x7F090347
- public const int sms_code_lyt = 2131297095;
+ public const int showTitle = 2131297095;
// aapt resource value: 0x7F090348
- public const int sms_verify_dailog_ly = 2131297096;
+ public const int sign_et = 2131297096;
// aapt resource value: 0x7F090349
- public const int snackbar_action = 2131297097;
+ public const int size_layout = 2131297097;
// aapt resource value: 0x7F09034A
- public const int snackbar_text = 2131297098;
+ public const int smallLabel = 2131297098;
// aapt resource value: 0x7F09034B
- public const int snap = 2131297099;
+ public const int sms_code_et = 2131297099;
// aapt resource value: 0x7F09034C
- public const int snapshot = 2131297100;
+ public const int sms_code_lyt = 2131297100;
// aapt resource value: 0x7F09034D
- public const int sound_line = 2131297101;
-
- // aapt resource value: 0x7F09034F
- public const int spacer = 2131297103;
-
- // aapt resource value: 0x7F090350
- public const int split_action_bar = 2131297104;
-
- // aapt resource value: 0x7F090351
- public const int spread = 2131297105;
-
- // aapt resource value: 0x7F090352
- public const int spread_inside = 2131297106;
+ public const int sms_verify_dailog_ly = 2131297101;
// aapt resource value: 0x7F09034E
- public const int sp_server_area = 2131297102;
+ public const int snackbar_action = 2131297102;
- // aapt resource value: 0x7F090353
- public const int squareColumnItem = 2131297107;
+ // aapt resource value: 0x7F09034F
+ public const int snackbar_text = 2131297103;
+
+ // aapt resource value: 0x7F090350
+ public const int snap = 2131297104;
+
+ // aapt resource value: 0x7F090351
+ public const int snapshot = 2131297105;
+
+ // aapt resource value: 0x7F090352
+ public const int sound_line = 2131297106;
// aapt resource value: 0x7F090354
- public const int squareVideo = 2131297108;
+ public const int spacer = 2131297108;
// aapt resource value: 0x7F090355
- public const int squareVideoList = 2131297109;
+ public const int split_action_bar = 2131297109;
// aapt resource value: 0x7F090356
- public const int square_channel = 2131297110;
+ public const int spread = 2131297110;
// aapt resource value: 0x7F090357
- public const int src_atop = 2131297111;
+ public const int spread_inside = 2131297111;
+
+ // aapt resource value: 0x7F090353
+ public const int sp_server_area = 2131297107;
// aapt resource value: 0x7F090358
- public const int src_in = 2131297112;
+ public const int squareColumnItem = 2131297112;
// aapt resource value: 0x7F090359
- public const int src_over = 2131297113;
+ public const int squareVideo = 2131297113;
// aapt resource value: 0x7F09035A
- public const int srl_classics_arrow = 2131297114;
+ public const int squareVideoList = 2131297114;
// aapt resource value: 0x7F09035B
- public const int srl_classics_center = 2131297115;
+ public const int square_channel = 2131297115;
// aapt resource value: 0x7F09035C
- public const int srl_classics_progress = 2131297116;
+ public const int src_atop = 2131297116;
// aapt resource value: 0x7F09035D
- public const int srl_classics_title = 2131297117;
+ public const int src_in = 2131297117;
// aapt resource value: 0x7F09035E
- public const int srl_classics_update = 2131297118;
+ public const int src_over = 2131297118;
// aapt resource value: 0x7F09035F
- public const int standard = 2131297119;
+ public const int srl_classics_arrow = 2131297119;
// aapt resource value: 0x7F090360
- public const int start = 2131297120;
+ public const int srl_classics_center = 2131297120;
// aapt resource value: 0x7F090361
- public const int startAVMsg = 2131297121;
+ public const int srl_classics_progress = 2131297121;
// aapt resource value: 0x7F090362
- public const int startDoorKey = 2131297122;
+ public const int srl_classics_title = 2131297122;
// aapt resource value: 0x7F090363
- public const int startLocalRecord = 2131297123;
+ public const int srl_classics_update = 2131297123;
// aapt resource value: 0x7F090364
- public const int startReadCard = 2131297124;
+ public const int standard = 2131297124;
// aapt resource value: 0x7F090365
- public const int startRecord = 2131297125;
+ public const int start = 2131297125;
// aapt resource value: 0x7F090366
- public const int startRecordLocalAudio = 2131297126;
+ public const int startAVMsg = 2131297126;
// aapt resource value: 0x7F090367
- public const int startRecordPeerAudio = 2131297127;
+ public const int startDoorKey = 2131297127;
// aapt resource value: 0x7F090368
- public const int startStream = 2131297128;
+ public const int startLocalRecord = 2131297128;
// aapt resource value: 0x7F090369
- public const int startWatchDog = 2131297129;
+ public const int startReadCard = 2131297129;
// aapt resource value: 0x7F09036A
- public const int start_stop = 2131297130;
+ public const int startRecord = 2131297130;
// aapt resource value: 0x7F09036B
- public const int start_stop_stream = 2131297131;
+ public const int startRecordLocalAudio = 2131297131;
// aapt resource value: 0x7F09036C
- public const int status = 2131297132;
+ public const int startRecordPeerAudio = 2131297132;
// aapt resource value: 0x7F09036D
- public const int status_bar_latest_event_content = 2131297133;
+ public const int startStream = 2131297133;
// aapt resource value: 0x7F09036E
- public const int stopAVMsg = 2131297134;
+ public const int startWatchDog = 2131297134;
// aapt resource value: 0x7F09036F
- public const int stopDoorKey = 2131297135;
+ public const int start_stop = 2131297135;
// aapt resource value: 0x7F090370
- public const int stopLocalRecord = 2131297136;
+ public const int start_stop_stream = 2131297136;
// aapt resource value: 0x7F090371
- public const int stopReadCard = 2131297137;
+ public const int status = 2131297137;
// aapt resource value: 0x7F090372
- public const int stopRecord = 2131297138;
+ public const int status_bar_latest_event_content = 2131297138;
// aapt resource value: 0x7F090373
- public const int stopRecordLocalAudio = 2131297139;
+ public const int stopAVMsg = 2131297139;
// aapt resource value: 0x7F090374
- public const int stopRecordPeerAudio = 2131297140;
+ public const int stopDoorKey = 2131297140;
// aapt resource value: 0x7F090375
- public const int stopStream = 2131297141;
+ public const int stopLocalRecord = 2131297141;
// aapt resource value: 0x7F090376
- public const int stopWatchDog = 2131297142;
+ public const int stopReadCard = 2131297142;
// aapt resource value: 0x7F090377
- public const int storage_layout = 2131297143;
+ public const int stopRecord = 2131297143;
// aapt resource value: 0x7F090378
- public const int storage_notice = 2131297144;
+ public const int stopRecordLocalAudio = 2131297144;
+
+ // aapt resource value: 0x7F090379
+ public const int stopRecordPeerAudio = 2131297145;
+
+ // aapt resource value: 0x7F09037A
+ public const int stopStream = 2131297146;
+
+ // aapt resource value: 0x7F09037B
+ public const int stopWatchDog = 2131297147;
+
+ // aapt resource value: 0x7F09037C
+ public const int storage_layout = 2131297148;
+
+ // aapt resource value: 0x7F09037D
+ public const int storage_notice = 2131297149;
// aapt resource value: 0x7F09000B
public const int STROKE = 2131296267;
- // aapt resource value: 0x7F09037A
- public const int submenuarrow = 2131297146;
+ // aapt resource value: 0x7F09037F
+ public const int submenuarrow = 2131297151;
- // aapt resource value: 0x7F09037B
- public const int submit = 2131297147;
+ // aapt resource value: 0x7F090380
+ public const int submit = 2131297152;
- // aapt resource value: 0x7F09037C
- public const int submit_area = 2131297148;
+ // aapt resource value: 0x7F090381
+ public const int submit_area = 2131297153;
- // aapt resource value: 0x7F09037D
- public const int subtitle = 2131297149;
-
- // aapt resource value: 0x7F090379
- public const int sub_title_text = 2131297145;
+ // aapt resource value: 0x7F090382
+ public const int subtitle = 2131297154;
// aapt resource value: 0x7F09037E
- public const int successIcon = 2131297150;
+ public const int sub_title_text = 2131297150;
- // aapt resource value: 0x7F09037F
- public const int surfaceview = 2131297151;
+ // aapt resource value: 0x7F090383
+ public const int successIcon = 2131297155;
+
+ // aapt resource value: 0x7F090384
+ public const int surfaceview = 2131297156;
// aapt resource value: 0x7F09000C
public const int SYM = 2131296268;
- // aapt resource value: 0x7F090380
- public const int tabMode = 2131297152;
-
- // aapt resource value: 0x7F090381
- public const int tab_alarmlist_btn = 2131297153;
-
- // aapt resource value: 0x7F090382
- public const int tab_alarmlist_rl = 2131297154;
-
- // aapt resource value: 0x7F090383
- public const int tab_devicedefence_btn = 2131297155;
-
- // aapt resource value: 0x7F090384
- public const int tab_devicedefence_rl = 2131297156;
-
// aapt resource value: 0x7F090385
- public const int tab_devicepicture_btn = 2131297157;
+ public const int tabMode = 2131297157;
// aapt resource value: 0x7F090386
- public const int tab_devicepicture_rl = 2131297158;
+ public const int tab_alarmlist_btn = 2131297158;
// aapt resource value: 0x7F090387
- public const int tab_devicevideo_btn = 2131297159;
+ public const int tab_alarmlist_rl = 2131297159;
// aapt resource value: 0x7F090388
- public const int tab_devicevideo_rl = 2131297160;
+ public const int tab_devicedefence_btn = 2131297160;
// aapt resource value: 0x7F090389
- public const int tab_remoteplayback_btn = 2131297161;
+ public const int tab_devicedefence_rl = 2131297161;
// aapt resource value: 0x7F09038A
- public const int tab_remoteplayback_rl = 2131297162;
+ public const int tab_devicepicture_btn = 2131297162;
// aapt resource value: 0x7F09038B
- public const int tab_setdevice_btn = 2131297163;
+ public const int tab_devicepicture_rl = 2131297163;
// aapt resource value: 0x7F09038C
- public const int tab_setdevice_rl = 2131297164;
+ public const int tab_devicevideo_btn = 2131297164;
// aapt resource value: 0x7F09038D
- public const int tab_video_talk_btn = 2131297165;
+ public const int tab_devicevideo_rl = 2131297165;
// aapt resource value: 0x7F09038E
- public const int tab_video_talk_rl = 2131297166;
+ public const int tab_remoteplayback_btn = 2131297166;
// aapt resource value: 0x7F09038F
- public const int tag_key_position = 2131297167;
+ public const int tab_remoteplayback_rl = 2131297167;
// aapt resource value: 0x7F090390
- public const int talkback_close_btn = 2131297168;
+ public const int tab_setdevice_btn = 2131297168;
// aapt resource value: 0x7F090391
- public const int talkback_control_btn = 2131297169;
+ public const int tab_setdevice_rl = 2131297169;
// aapt resource value: 0x7F090392
- public const int talkback_rv = 2131297170;
+ public const int tab_video_talk_btn = 2131297170;
// aapt resource value: 0x7F090393
- public const int test = 2131297171;
+ public const int tab_video_talk_rl = 2131297171;
// aapt resource value: 0x7F090394
- public const int testWatchDogReboot = 2131297172;
+ public const int tag_key_position = 2131297172;
// aapt resource value: 0x7F090395
- public const int text = 2131297173;
+ public const int talkback_close_btn = 2131297173;
// aapt resource value: 0x7F090396
- public const int text1 = 2131297174;
+ public const int talkback_control_btn = 2131297174;
// aapt resource value: 0x7F090397
- public const int text2 = 2131297175;
+ public const int talkback_rv = 2131297175;
// aapt resource value: 0x7F090398
- public const int text3 = 2131297176;
-
- // aapt resource value: 0x7F0903A5
- public const int textinput_counter = 2131297189;
-
- // aapt resource value: 0x7F0903A6
- public const int textinput_error = 2131297190;
+ public const int test = 2131297176;
// aapt resource value: 0x7F090399
- public const int textSpacerNoButtons = 2131297177;
+ public const int testWatchDogReboot = 2131297177;
// aapt resource value: 0x7F09039A
- public const int textSpacerNoTitle = 2131297178;
+ public const int text = 2131297178;
- // aapt resource value: 0x7F0903A7
- public const int textureView_play = 2131297191;
+ // aapt resource value: 0x7F09039B
+ public const int text1 = 2131297179;
- // aapt resource value: 0x7F0903A8
- public const int texture_view_play_window = 2131297192;
+ // aapt resource value: 0x7F09039C
+ public const int text2 = 2131297180;
+
+ // aapt resource value: 0x7F09039D
+ public const int text3 = 2131297181;
+
+ // aapt resource value: 0x7F0903AA
+ public const int textinput_counter = 2131297194;
+
+ // aapt resource value: 0x7F0903AB
+ public const int textinput_error = 2131297195;
+
+ // aapt resource value: 0x7F09039E
+ public const int textSpacerNoButtons = 2131297182;
+
+ // aapt resource value: 0x7F09039F
+ public const int textSpacerNoTitle = 2131297183;
+
+ // aapt resource value: 0x7F0903AC
+ public const int textureView_play = 2131297196;
+
+ // aapt resource value: 0x7F0903AD
+ public const int texture_view_play_window = 2131297197;
// aapt resource value: 0x7F09000E
public const int TextView01 = 2131296270;
@@ -9610,422 +9634,434 @@
// aapt resource value: 0x7F09000F
public const int TextView03 = 2131296271;
- // aapt resource value: 0x7F09039C
- public const int text_camerano = 2131297180;
-
- // aapt resource value: 0x7F09039B
- public const int text_camera_name = 2131297179;
-
- // aapt resource value: 0x7F09039D
- public const int text_device_ip = 2131297181;
-
- // aapt resource value: 0x7F09039E
- public const int text_input_password_toggle = 2131297182;
-
- // aapt resource value: 0x7F09039F
- public const int text_left = 2131297183;
+ // aapt resource value: 0x7F0903A1
+ public const int text_camerano = 2131297185;
// aapt resource value: 0x7F0903A0
- public const int text_my = 2131297184;
-
- // aapt resource value: 0x7F0903A1
- public const int text_right = 2131297185;
+ public const int text_camera_name = 2131297184;
// aapt resource value: 0x7F0903A2
- public const int text_serial = 2131297186;
+ public const int text_device_ip = 2131297186;
// aapt resource value: 0x7F0903A3
- public const int text_share = 2131297187;
+ public const int text_input_password_toggle = 2131297187;
// aapt resource value: 0x7F0903A4
- public const int text_title = 2131297188;
+ public const int text_left = 2131297188;
- // aapt resource value: 0x7F0903AA
- public const int third_app_dl_progressbar = 2131297194;
+ // aapt resource value: 0x7F0903A5
+ public const int text_my = 2131297189;
+
+ // aapt resource value: 0x7F0903A6
+ public const int text_right = 2131297190;
+
+ // aapt resource value: 0x7F0903A7
+ public const int text_serial = 2131297191;
+
+ // aapt resource value: 0x7F0903A8
+ public const int text_share = 2131297192;
// aapt resource value: 0x7F0903A9
- public const int third_app_dl_progress_text = 2131297193;
-
- // aapt resource value: 0x7F0903AB
- public const int third_app_warn_text = 2131297195;
-
- // aapt resource value: 0x7F0903AC
- public const int time = 2131297196;
+ public const int text_title = 2131297193;
// aapt resource value: 0x7F0903AF
- public const int timeline_image = 2131297199;
-
- // aapt resource value: 0x7F0903B0
- public const int timepicker = 2131297200;
-
- // aapt resource value: 0x7F0903B1
- public const int timer = 2131297201;
-
- // aapt resource value: 0x7F0903B2
- public const int timer_lp_calltime = 2131297202;
-
- // aapt resource value: 0x7F0903AD
- public const int time_text = 2131297197;
+ public const int third_app_dl_progressbar = 2131297199;
// aapt resource value: 0x7F0903AE
- public const int time_tv = 2131297198;
+ public const int third_app_dl_progress_text = 2131297198;
- // aapt resource value: 0x7F0903B3
- public const int tip = 2131297203;
+ // aapt resource value: 0x7F0903B0
+ public const int third_app_warn_text = 2131297200;
+
+ // aapt resource value: 0x7F0903B1
+ public const int time = 2131297201;
// aapt resource value: 0x7F0903B4
- public const int title = 2131297204;
+ public const int timeline_image = 2131297204;
// aapt resource value: 0x7F0903B5
- public const int titleBar = 2131297205;
+ public const int timepicker = 2131297205;
// aapt resource value: 0x7F0903B6
- public const int titleDividerNoCustom = 2131297206;
+ public const int timer = 2131297206;
// aapt resource value: 0x7F0903B7
- public const int title_bar = 2131297207;
+ public const int timer_lp_calltime = 2131297207;
+
+ // aapt resource value: 0x7F0903B2
+ public const int time_text = 2131297202;
+
+ // aapt resource value: 0x7F0903B3
+ public const int time_tv = 2131297203;
// aapt resource value: 0x7F0903B8
- public const int title_bar_landscape = 2131297208;
+ public const int tip = 2131297208;
// aapt resource value: 0x7F0903B9
- public const int title_bar_portrait = 2131297209;
+ public const int title = 2131297209;
// aapt resource value: 0x7F0903BA
- public const int title_layout = 2131297210;
+ public const int titleBar = 2131297210;
// aapt resource value: 0x7F0903BB
- public const int title_left = 2131297211;
+ public const int titleDividerNoCustom = 2131297211;
// aapt resource value: 0x7F0903BC
- public const int title_right = 2131297212;
+ public const int title_bar = 2131297212;
// aapt resource value: 0x7F0903BD
- public const int title_template = 2131297213;
+ public const int title_bar_landscape = 2131297213;
// aapt resource value: 0x7F0903BE
- public const int title_text = 2131297214;
+ public const int title_bar_portrait = 2131297214;
// aapt resource value: 0x7F0903BF
- public const int title_text_layout = 2131297215;
+ public const int title_layout = 2131297215;
// aapt resource value: 0x7F0903C0
- public const int title_top = 2131297216;
+ public const int title_left = 2131297216;
// aapt resource value: 0x7F0903C1
- public const int top = 2131297217;
-
- // aapt resource value: 0x7F0903C4
- public const int topbar = 2131297220;
-
- // aapt resource value: 0x7F0903C5
- public const int topbar_right_img = 2131297221;
+ public const int title_right = 2131297217;
// aapt resource value: 0x7F0903C2
- public const int topPanel = 2131297218;
+ public const int title_template = 2131297218;
// aapt resource value: 0x7F0903C3
- public const int topTip = 2131297219;
+ public const int title_text = 2131297219;
+
+ // aapt resource value: 0x7F0903C4
+ public const int title_text_layout = 2131297220;
+
+ // aapt resource value: 0x7F0903C5
+ public const int title_top = 2131297221;
// aapt resource value: 0x7F0903C6
- public const int touch_loading_buffer_tv = 2131297222;
+ public const int title_tv = 2131297222;
// aapt resource value: 0x7F0903C7
- public const int touch_outside = 2131297223;
-
- // aapt resource value: 0x7F0903C8
- public const int touch_progress_layout = 2131297224;
-
- // aapt resource value: 0x7F0903C9
- public const int transition_current_scene = 2131297225;
+ public const int top = 2131297223;
// aapt resource value: 0x7F0903CA
- public const int transition_layout_save = 2131297226;
+ public const int topbar = 2131297226;
// aapt resource value: 0x7F0903CB
- public const int transition_position = 2131297227;
+ public const int topbar_right_img = 2131297227;
+
+ // aapt resource value: 0x7F0903C8
+ public const int topPanel = 2131297224;
+
+ // aapt resource value: 0x7F0903C9
+ public const int topTip = 2131297225;
// aapt resource value: 0x7F0903CC
- public const int transition_scene_layoutid_cache = 2131297228;
+ public const int touch_loading_buffer_tv = 2131297228;
// aapt resource value: 0x7F0903CD
- public const int transition_transform = 2131297229;
+ public const int touch_outside = 2131297229;
+
+ // aapt resource value: 0x7F0903CE
+ public const int touch_progress_layout = 2131297230;
+
+ // aapt resource value: 0x7F0903CF
+ public const int transition_current_scene = 2131297231;
+
+ // aapt resource value: 0x7F0903D0
+ public const int transition_layout_save = 2131297232;
+
+ // aapt resource value: 0x7F0903D1
+ public const int transition_position = 2131297233;
+
+ // aapt resource value: 0x7F0903D2
+ public const int transition_scene_layoutid_cache = 2131297234;
+
+ // aapt resource value: 0x7F0903D3
+ public const int transition_transform = 2131297235;
// aapt resource value: 0x7F090010
public const int Translate = 2131296272;
- // aapt resource value: 0x7F0903CE
- public const int tvDeviceWifiConfigTip = 2131297230;
-
- // aapt resource value: 0x7F0903CF
- public const int tvIntroduce1 = 2131297231;
-
- // aapt resource value: 0x7F0903D0
- public const int tvIntroduce2 = 2131297232;
-
- // aapt resource value: 0x7F0903D1
- public const int tvMore = 2131297233;
-
- // aapt resource value: 0x7F0903D2
- public const int tvSSID = 2131297234;
-
- // aapt resource value: 0x7F0903D3
- public const int tvStatus = 2131297235;
-
// aapt resource value: 0x7F0903D4
- public const int tvSuccess = 2131297236;
+ public const int tvDeviceWifiConfigTip = 2131297236;
// aapt resource value: 0x7F0903D5
- public const int tvTip = 2131297237;
+ public const int tvIntroduce1 = 2131297237;
// aapt resource value: 0x7F0903D6
- public const int tvTitle = 2131297238;
+ public const int tvIntroduce2 = 2131297238;
// aapt resource value: 0x7F0903D7
- public const int tv_adding_to_account = 2131297239;
+ public const int tvMore = 2131297239;
// aapt resource value: 0x7F0903D8
- public const int tv_camera_name = 2131297240;
+ public const int tvSSID = 2131297240;
// aapt resource value: 0x7F0903D9
- public const int tv_child_watch_video_talk_notification = 2131297241;
+ public const int tvStatus = 2131297241;
// aapt resource value: 0x7F0903DA
- public const int tv_connecting_to_device = 2131297242;
+ public const int tvSuccess = 2131297242;
// aapt resource value: 0x7F0903DB
- public const int tv_content = 2131297243;
+ public const int tvTip = 2131297243;
// aapt resource value: 0x7F0903DC
- public const int tv_decode_type = 2131297244;
+ public const int tvTitle = 2131297244;
// aapt resource value: 0x7F0903DD
- public const int tv_ezviz_account_login = 2131297245;
+ public const int tv_adding_to_account = 2131297245;
// aapt resource value: 0x7F0903DE
- public const int tv_file_path = 2131297246;
+ public const int tv_camera_name = 2131297246;
// aapt resource value: 0x7F0903DF
- public const int tv_lp_answer = 2131297247;
+ public const int tv_child_watch_video_talk_notification = 2131297247;
// aapt resource value: 0x7F0903E0
- public const int tv_lp_calltime = 2131297248;
+ public const int tv_connecting_to_device = 2131297248;
// aapt resource value: 0x7F0903E1
- public const int tv_lp_hangUp = 2131297249;
+ public const int tv_content = 2131297249;
// aapt resource value: 0x7F0903E2
- public const int tv_lp_screenshot = 2131297250;
+ public const int tv_decode_type = 2131297250;
// aapt resource value: 0x7F0903E3
- public const int tv_lp_title = 2131297251;
+ public const int tv_ezviz_account_login = 2131297251;
// aapt resource value: 0x7F0903E4
- public const int tv_lp_unlock = 2131297252;
+ public const int tv_file_path = 2131297252;
// aapt resource value: 0x7F0903E5
- public const int tv_ok = 2131297253;
+ public const int tv_lp_answer = 2131297253;
// aapt resource value: 0x7F0903E6
- public const int tv_play_error = 2131297254;
+ public const int tv_lp_calltime = 2131297254;
// aapt resource value: 0x7F0903E7
- public const int tv_pwd = 2131297255;
+ public const int tv_lp_hangUp = 2131297255;
// aapt resource value: 0x7F0903E8
- public const int tv_registering_to_platform = 2131297256;
+ public const int tv_lp_screenshot = 2131297256;
// aapt resource value: 0x7F0903E9
- public const int tv_sdk_ver = 2131297257;
+ public const int tv_lp_title = 2131297257;
// aapt resource value: 0x7F0903EA
- public const int tv_ssid = 2131297258;
+ public const int tv_lp_unlock = 2131297258;
// aapt resource value: 0x7F0903EB
- public const int tv_stream_type = 2131297259;
+ public const int tv_ok = 2131297259;
// aapt resource value: 0x7F0903EC
- public const int tv_tip = 2131297260;
+ public const int tv_play_error = 2131297260;
// aapt resource value: 0x7F0903ED
- public const int tv_title = 2131297261;
+ public const int tv_pwd = 2131297261;
// aapt resource value: 0x7F0903EE
- public const int tv_zxing_back = 2131297262;
+ public const int tv_registering_to_platform = 2131297262;
// aapt resource value: 0x7F0903EF
- public const int tv_zxing_flash = 2131297263;
+ public const int tv_sdk_ver = 2131297263;
// aapt resource value: 0x7F0903F0
- public const int tv_zxing_scan = 2131297264;
+ public const int tv_ssid = 2131297264;
// aapt resource value: 0x7F0903F1
- public const int txtResult = 2131297265;
+ public const int tv_stream_type = 2131297265;
// aapt resource value: 0x7F0903F2
- public const int unbind_button = 2131297266;
+ public const int tv_tip = 2131297266;
// aapt resource value: 0x7F0903F3
- public const int uniform = 2131297267;
+ public const int tv_title = 2131297267;
// aapt resource value: 0x7F0903F4
- public const int up = 2131297268;
+ public const int tv_zxing_back = 2131297268;
// aapt resource value: 0x7F0903F5
- public const int useLogo = 2131297269;
-
- // aapt resource value: 0x7F0903F7
- public const int userid_et = 2131297271;
-
- // aapt resource value: 0x7F0903F8
- public const int userid_lyt = 2131297272;
-
- // aapt resource value: 0x7F0903F9
- public const int username_et = 2131297273;
-
- // aapt resource value: 0x7F0903FA
- public const int username_text = 2131297274;
-
- // aapt resource value: 0x7F0903FB
- public const int username_tv = 2131297275;
+ public const int tv_zxing_flash = 2131297269;
// aapt resource value: 0x7F0903F6
- public const int use_custom_pwd_cb = 2131297270;
+ public const int tv_zxing_scan = 2131297270;
- // aapt resource value: 0x7F0903FC
- public const int uvc = 2131297276;
+ // aapt resource value: 0x7F0903F7
+ public const int txtResult = 2131297271;
+
+ // aapt resource value: 0x7F0903F8
+ public const int unbind_button = 2131297272;
+
+ // aapt resource value: 0x7F0903F9
+ public const int uniform = 2131297273;
+
+ // aapt resource value: 0x7F0903FA
+ public const int up = 2131297274;
+
+ // aapt resource value: 0x7F0903FB
+ public const int useLogo = 2131297275;
// aapt resource value: 0x7F0903FD
- public const int verifycodeEditTextContainer = 2131297277;
+ public const int userid_et = 2131297277;
// aapt resource value: 0x7F0903FE
- public const int verifycodeEt = 2131297278;
+ public const int userid_lyt = 2131297278;
// aapt resource value: 0x7F0903FF
- public const int version = 2131297279;
+ public const int username_et = 2131297279;
// aapt resource value: 0x7F090400
- public const int version_arrow = 2131297280;
+ public const int username_text = 2131297280;
// aapt resource value: 0x7F090401
- public const int version_layout = 2131297281;
+ public const int username_tv = 2131297281;
+
+ // aapt resource value: 0x7F0903FC
+ public const int use_custom_pwd_cb = 2131297276;
// aapt resource value: 0x7F090402
- public const int version_newest = 2131297282;
+ public const int uvc = 2131297282;
// aapt resource value: 0x7F090403
- public const int version_notice = 2131297283;
+ public const int verifycodeEditTextContainer = 2131297283;
// aapt resource value: 0x7F090404
- public const int version_textview = 2131297284;
+ public const int verifycodeEt = 2131297284;
// aapt resource value: 0x7F090405
- public const int vertical = 2131297285;
+ public const int version = 2131297285;
// aapt resource value: 0x7F090406
- public const int vg_child_watch_video_talk_camera = 2131297286;
+ public const int version_arrow = 2131297286;
// aapt resource value: 0x7F090407
- public const int vg_child_watch_video_talk_notification_container = 2131297287;
+ public const int version_layout = 2131297287;
// aapt resource value: 0x7F090408
- public const int vg_child_watch_video_talk_operation_container = 2131297288;
+ public const int version_newest = 2131297288;
// aapt resource value: 0x7F090409
- public const int vg_child_watch_video_talk_player = 2131297289;
+ public const int version_notice = 2131297289;
// aapt resource value: 0x7F09040A
- public const int vg_child_watch_video_talk_tool_container = 2131297290;
+ public const int version_textview = 2131297290;
// aapt resource value: 0x7F09040B
- public const int vg_child_watch_video_talk_video_container = 2131297291;
+ public const int vertical = 2131297291;
// aapt resource value: 0x7F09040C
- public const int vg_error_tips = 2131297292;
+ public const int vg_child_watch_video_talk_camera = 2131297292;
// aapt resource value: 0x7F09040D
- public const int vg_login_anim = 2131297293;
+ public const int vg_child_watch_video_talk_notification_container = 2131297293;
// aapt resource value: 0x7F09040E
- public const int vg_notification_operation_tool_container = 2131297294;
+ public const int vg_child_watch_video_talk_operation_container = 2131297294;
// aapt resource value: 0x7F09040F
- public const int vg_play_info = 2131297295;
+ public const int vg_child_watch_video_talk_player = 2131297295;
// aapt resource value: 0x7F090410
- public const int vg_play_window = 2131297296;
+ public const int vg_child_watch_video_talk_tool_container = 2131297296;
// aapt resource value: 0x7F090411
- public const int videoBackImg = 2131297297;
+ public const int vg_child_watch_video_talk_video_container = 2131297297;
// aapt resource value: 0x7F090412
- public const int videoParent = 2131297298;
+ public const int vg_error_tips = 2131297298;
// aapt resource value: 0x7F090413
- public const int videoTitle = 2131297299;
+ public const int vg_login_anim = 2131297299;
// aapt resource value: 0x7F090414
- public const int video_button = 2131297300;
+ public const int vg_notification_operation_tool_container = 2131297300;
// aapt resource value: 0x7F090415
- public const int video_lp_rendering = 2131297301;
+ public const int vg_play_info = 2131297301;
// aapt resource value: 0x7F090416
- public const int video_lp_rendering2 = 2131297302;
+ public const int vg_play_window = 2131297302;
// aapt resource value: 0x7F090417
- public const int video_talk_et_room_id = 2131297303;
-
- // aapt resource value: 0x7F09041C
- public const int viewedCount = 2131297308;
-
- // aapt resource value: 0x7F09041D
- public const int viewfinder_view = 2131297309;
+ public const int videoBackImg = 2131297303;
// aapt resource value: 0x7F090418
- public const int viewSort = 2131297304;
+ public const int videoParent = 2131297304;
// aapt resource value: 0x7F090419
- public const int view_child_watch_video_talk_camera = 2131297305;
+ public const int videoTitle = 2131297305;
// aapt resource value: 0x7F09041A
- public const int view_child_watch_video_talk_player = 2131297306;
+ public const int video_button = 2131297306;
// aapt resource value: 0x7F09041B
- public const int view_offset_helper = 2131297307;
+ public const int video_lp_rendering = 2131297307;
- // aapt resource value: 0x7F09041E
- public const int visible = 2131297310;
+ // aapt resource value: 0x7F09041C
+ public const int video_lp_rendering2 = 2131297308;
- // aapt resource value: 0x7F09041F
- public const int wait_bar = 2131297311;
-
- // aapt resource value: 0x7F090420
- public const int wait_tv = 2131297312;
-
- // aapt resource value: 0x7F090421
- public const int watting_pb = 2131297313;
-
- // aapt resource value: 0x7F090423
- public const int webview = 2131297315;
+ // aapt resource value: 0x7F09041D
+ public const int video_talk_et_room_id = 2131297309;
// aapt resource value: 0x7F090422
- public const int web_login_btn = 2131297314;
+ public const int viewedCount = 2131297314;
+
+ // aapt resource value: 0x7F090423
+ public const int viewfinder_view = 2131297315;
+
+ // aapt resource value: 0x7F09041E
+ public const int viewSort = 2131297310;
+
+ // aapt resource value: 0x7F09041F
+ public const int view_child_watch_video_talk_camera = 2131297311;
+
+ // aapt resource value: 0x7F090420
+ public const int view_child_watch_video_talk_player = 2131297312;
+
+ // aapt resource value: 0x7F090421
+ public const int view_offset_helper = 2131297313;
// aapt resource value: 0x7F090424
- public const int wifi_tv = 2131297316;
+ public const int visible = 2131297316;
// aapt resource value: 0x7F090425
- public const int withText = 2131297317;
+ public const int wait_bar = 2131297317;
// aapt resource value: 0x7F090426
- public const int wrap = 2131297318;
+ public const int wait_tv = 2131297318;
// aapt resource value: 0x7F090427
- public const int wrap_content = 2131297319;
+ public const int watting_pb = 2131297319;
+
+ // aapt resource value: 0x7F09042A
+ public const int webview = 2131297322;
// aapt resource value: 0x7F090428
- public const int year = 2131297320;
+ public const int webView1 = 2131297320;
+
+ // aapt resource value: 0x7F09042B
+ public const int webview_back_img = 2131297323;
+
+ // aapt resource value: 0x7F09042C
+ public const int webview_back_ll = 2131297324;
+
+ // aapt resource value: 0x7F090429
+ public const int web_login_btn = 2131297321;
+
+ // aapt resource value: 0x7F09042D
+ public const int wifi_tv = 2131297325;
+
+ // aapt resource value: 0x7F09042E
+ public const int withText = 2131297326;
+
+ // aapt resource value: 0x7F09042F
+ public const int wrap = 2131297327;
+
+ // aapt resource value: 0x7F090430
+ public const int wrap_content = 2131297328;
+
+ // aapt resource value: 0x7F090431
+ public const int year = 2131297329;
static Id()
{
@@ -10255,514 +10291,520 @@
public const int activity_safety_hat_talk = 2131427383;
// aapt resource value: 0x7F0B0038
- public const int activity_square = 2131427384;
+ public const int activity_splash = 2131427384;
// aapt resource value: 0x7F0B0039
- public const int activity_square_video_list = 2131427385;
+ public const int activity_square = 2131427385;
// aapt resource value: 0x7F0B003A
- public const int activity_square_video_list2 = 2131427386;
+ public const int activity_square_video_list = 2131427386;
// aapt resource value: 0x7F0B003B
- public const int activity_square_video_search = 2131427387;
+ public const int activity_square_video_list2 = 2131427387;
// aapt resource value: 0x7F0B003C
- public const int activity_support = 2131427388;
+ public const int activity_square_video_search = 2131427388;
// aapt resource value: 0x7F0B003D
- public const int activity_test_config_wifi = 2131427389;
+ public const int activity_support = 2131427389;
// aapt resource value: 0x7F0B003E
- public const int activity_test_for_sdk = 2131427390;
+ public const int activity_test_config_wifi = 2131427390;
// aapt resource value: 0x7F0B003F
- public const int activity_test_page = 2131427391;
+ public const int activity_test_for_sdk = 2131427391;
// aapt resource value: 0x7F0B0040
- public const int activity_video_phone = 2131427392;
+ public const int activity_test_page = 2131427392;
// aapt resource value: 0x7F0B0041
- public const int activity_video_talk = 2131427393;
+ public const int activity_video_phone = 2131427393;
// aapt resource value: 0x7F0B0042
- public const int add_camera_by_series_number_page = 2131427394;
+ public const int activity_video_talk = 2131427394;
// aapt resource value: 0x7F0B0043
- public const int auto_wifi_connecting = 2131427395;
+ public const int activity_webview = 2131427395;
// aapt resource value: 0x7F0B0044
- public const int auto_wifi_connecting_status_item = 2131427396;
+ public const int add_camera_by_series_number_page = 2131427396;
// aapt resource value: 0x7F0B0045
- public const int auto_wifi_connecting_status_item_ez = 2131427397;
+ public const int auto_wifi_connecting = 2131427397;
// aapt resource value: 0x7F0B0046
- public const int auto_wifi_net_config = 2131427398;
+ public const int auto_wifi_connecting_status_item = 2131427398;
// aapt resource value: 0x7F0B0047
- public const int auto_wifi_prepare_step_on = 2131427399;
+ public const int auto_wifi_connecting_status_item_ez = 2131427399;
// aapt resource value: 0x7F0B0048
- public const int auto_wifi_reset = 2131427400;
+ public const int auto_wifi_net_config = 2131427400;
// aapt resource value: 0x7F0B0049
- public const int auto_wifi_reset_introduce = 2131427401;
+ public const int auto_wifi_prepare_step_on = 2131427401;
// aapt resource value: 0x7F0B004A
- public const int biometric_prompt_dialog_content = 2131427402;
+ public const int auto_wifi_reset = 2131427402;
// aapt resource value: 0x7F0B004B
- public const int cameralist_page = 2131427403;
+ public const int auto_wifi_reset_introduce = 2131427403;
// aapt resource value: 0x7F0B004C
- public const int cameralist_page_common = 2131427404;
+ public const int biometric_prompt_dialog_content = 2131427404;
// aapt resource value: 0x7F0B004D
- public const int cameralist_small_item = 2131427405;
+ public const int cameralist_page = 2131427405;
// aapt resource value: 0x7F0B004E
- public const int cameralist_small_item_common = 2131427406;
+ public const int cameralist_page_common = 2131427406;
// aapt resource value: 0x7F0B004F
- public const int capture_activity = 2131427407;
+ public const int cameralist_small_item = 2131427407;
// aapt resource value: 0x7F0B0050
- public const int cc_activity_widget_countrycode = 2131427408;
+ public const int cameralist_small_item_common = 2131427408;
// aapt resource value: 0x7F0B0051
- public const int cc_activity_widget_sortselection = 2131427409;
+ public const int capture_activity = 2131427409;
// aapt resource value: 0x7F0B0052
- public const int cc_country_list_item = 2131427410;
+ public const int cc_activity_widget_countrycode = 2131427410;
// aapt resource value: 0x7F0B0053
- public const int city_config_item = 2131427411;
+ public const int cc_activity_widget_sortselection = 2131427411;
// aapt resource value: 0x7F0B0054
- public const int ddns_device_ist_page = 2131427412;
+ public const int cc_country_list_item = 2131427412;
// aapt resource value: 0x7F0B0055
- public const int ddns_device_list_item = 2131427413;
+ public const int city_config_item = 2131427413;
// aapt resource value: 0x7F0B0056
- public const int design_bottom_navigation_item = 2131427414;
+ public const int ddns_device_ist_page = 2131427414;
// aapt resource value: 0x7F0B0057
- public const int design_bottom_sheet_dialog = 2131427415;
+ public const int ddns_device_list_item = 2131427415;
// aapt resource value: 0x7F0B0058
- public const int design_layout_snackbar = 2131427416;
+ public const int design_bottom_navigation_item = 2131427416;
// aapt resource value: 0x7F0B0059
- public const int design_layout_snackbar_include = 2131427417;
+ public const int design_bottom_sheet_dialog = 2131427417;
// aapt resource value: 0x7F0B005A
- public const int design_layout_tab_icon = 2131427418;
+ public const int design_layout_snackbar = 2131427418;
// aapt resource value: 0x7F0B005B
- public const int design_layout_tab_text = 2131427419;
+ public const int design_layout_snackbar_include = 2131427419;
// aapt resource value: 0x7F0B005C
- public const int design_menu_item_action_area = 2131427420;
+ public const int design_layout_tab_icon = 2131427420;
// aapt resource value: 0x7F0B005D
- public const int design_navigation_item = 2131427421;
+ public const int design_layout_tab_text = 2131427421;
// aapt resource value: 0x7F0B005E
- public const int design_navigation_item_header = 2131427422;
+ public const int design_menu_item_action_area = 2131427422;
// aapt resource value: 0x7F0B005F
- public const int design_navigation_item_separator = 2131427423;
+ public const int design_navigation_item = 2131427423;
// aapt resource value: 0x7F0B0060
- public const int design_navigation_item_subheader = 2131427424;
+ public const int design_navigation_item_header = 2131427424;
// aapt resource value: 0x7F0B0061
- public const int design_navigation_menu = 2131427425;
+ public const int design_navigation_item_separator = 2131427425;
// aapt resource value: 0x7F0B0062
- public const int design_navigation_menu_item = 2131427426;
+ public const int design_navigation_item_subheader = 2131427426;
// aapt resource value: 0x7F0B0063
- public const int design_text_input_password_icon = 2131427427;
+ public const int design_navigation_menu = 2131427427;
// aapt resource value: 0x7F0B0064
- public const int device_discover_item = 2131427428;
+ public const int design_navigation_menu_item = 2131427428;
// aapt resource value: 0x7F0B0065
- public const int device_discover_page = 2131427429;
+ public const int design_text_input_password_icon = 2131427429;
// aapt resource value: 0x7F0B0066
- public const int device_setting_page = 2131427430;
+ public const int device_discover_item = 2131427430;
// aapt resource value: 0x7F0B0067
- public const int device_video_encrypt_dialog = 2131427431;
+ public const int device_discover_page = 2131427431;
// aapt resource value: 0x7F0B0068
- public const int dialog_tip = 2131427432;
-
- // aapt resource value: 0x7F0B007E
- public const int ezopen_realplay_operate_bar = 2131427454;
-
- // aapt resource value: 0x7F0B007F
- public const int ezopen_realplay_operate_bar2 = 2131427455;
+ public const int device_setting_page = 2131427432;
// aapt resource value: 0x7F0B0069
- public const int ez_demo_interface_activity = 2131427433;
+ public const int device_video_encrypt_dialog = 2131427433;
// aapt resource value: 0x7F0B006A
- public const int ez_message_image_page = 2131427434;
-
- // aapt resource value: 0x7F0B006B
- public const int ez_message_image_page_new = 2131427435;
-
- // aapt resource value: 0x7F0B006C
- public const int ez_message_list_item = 2131427436;
-
- // aapt resource value: 0x7F0B006D
- public const int ez_message_list_item_new = 2131427437;
-
- // aapt resource value: 0x7F0B006E
- public const int ez_message_list_section = 2131427438;
-
- // aapt resource value: 0x7F0B006F
- public const int ez_message_list_section_new = 2131427439;
-
- // aapt resource value: 0x7F0B0070
- public const int ez_message_page = 2131427440;
-
- // aapt resource value: 0x7F0B0071
- public const int ez_message_page_new = 2131427441;
-
- // aapt resource value: 0x7F0B0074
- public const int ez_playback_list_page_common = 2131427444;
-
- // aapt resource value: 0x7F0B0075
- public const int ez_playback_list_page_new = 2131427445;
-
- // aapt resource value: 0x7F0B0072
- public const int ez_play_control = 2131427442;
-
- // aapt resource value: 0x7F0B0073
- public const int ez_play_control_new = 2131427443;
-
- // aapt resource value: 0x7F0B0076
- public const int ez_realplay_page = 2131427446;
-
- // aapt resource value: 0x7F0B0077
- public const int ez_realplay_page_new = 2131427447;
-
- // aapt resource value: 0x7F0B0078
- public const int ez_realplay_prompt_layout = 2131427448;
-
- // aapt resource value: 0x7F0B0079
- public const int ez_realplay_prompt_layout_new = 2131427449;
-
- // aapt resource value: 0x7F0B007A
- public const int ez_realplay_quality_items = 2131427450;
-
- // aapt resource value: 0x7F0B007B
- public const int ez_realplay_quality_items_new = 2131427451;
-
- // aapt resource value: 0x7F0B007C
- public const int ez_remote_playback_page = 2131427452;
-
- // aapt resource value: 0x7F0B007D
- public const int ez_remote_playback_page_new = 2131427453;
+ public const int dialog_tip = 2131427434;
// aapt resource value: 0x7F0B0080
- public const int fragment_call = 2131427456;
+ public const int ezopen_realplay_operate_bar = 2131427456;
// aapt resource value: 0x7F0B0081
- public const int fragment_city_config = 2131427457;
+ public const int ezopen_realplay_operate_bar2 = 2131427457;
+
+ // aapt resource value: 0x7F0B006B
+ public const int ez_demo_interface_activity = 2131427435;
+
+ // aapt resource value: 0x7F0B006C
+ public const int ez_message_image_page = 2131427436;
+
+ // aapt resource value: 0x7F0B006D
+ public const int ez_message_image_page_new = 2131427437;
+
+ // aapt resource value: 0x7F0B006E
+ public const int ez_message_list_item = 2131427438;
+
+ // aapt resource value: 0x7F0B006F
+ public const int ez_message_list_item_new = 2131427439;
+
+ // aapt resource value: 0x7F0B0070
+ public const int ez_message_list_section = 2131427440;
+
+ // aapt resource value: 0x7F0B0071
+ public const int ez_message_list_section_new = 2131427441;
+
+ // aapt resource value: 0x7F0B0072
+ public const int ez_message_page = 2131427442;
+
+ // aapt resource value: 0x7F0B0073
+ public const int ez_message_page_new = 2131427443;
+
+ // aapt resource value: 0x7F0B0076
+ public const int ez_playback_list_page_common = 2131427446;
+
+ // aapt resource value: 0x7F0B0077
+ public const int ez_playback_list_page_new = 2131427447;
+
+ // aapt resource value: 0x7F0B0074
+ public const int ez_play_control = 2131427444;
+
+ // aapt resource value: 0x7F0B0075
+ public const int ez_play_control_new = 2131427445;
+
+ // aapt resource value: 0x7F0B0078
+ public const int ez_realplay_page = 2131427448;
+
+ // aapt resource value: 0x7F0B0079
+ public const int ez_realplay_page_new = 2131427449;
+
+ // aapt resource value: 0x7F0B007A
+ public const int ez_realplay_prompt_layout = 2131427450;
+
+ // aapt resource value: 0x7F0B007B
+ public const int ez_realplay_prompt_layout_new = 2131427451;
+
+ // aapt resource value: 0x7F0B007C
+ public const int ez_realplay_quality_items = 2131427452;
+
+ // aapt resource value: 0x7F0B007D
+ public const int ez_realplay_quality_items_new = 2131427453;
+
+ // aapt resource value: 0x7F0B007E
+ public const int ez_remote_playback_page = 2131427454;
+
+ // aapt resource value: 0x7F0B007F
+ public const int ez_remote_playback_page_new = 2131427455;
// aapt resource value: 0x7F0B0082
- public const int fragment_monitor = 2131427458;
+ public const int fragment_call = 2131427458;
// aapt resource value: 0x7F0B0083
- public const int fragment_search_video = 2131427459;
+ public const int fragment_city_config = 2131427459;
// aapt resource value: 0x7F0B0084
- public const int fragment_square_video_list = 2131427460;
+ public const int fragment_monitor = 2131427460;
// aapt resource value: 0x7F0B0085
- public const int hdl_gallery_banner_view_layout = 2131427461;
+ public const int fragment_search_video = 2131427461;
// aapt resource value: 0x7F0B0086
- public const int hdl_widget_activity_crop_image = 2131427462;
+ public const int fragment_square_video_list = 2131427462;
// aapt resource value: 0x7F0B0087
- public const int hdl_widget_activity_geofence_round = 2131427463;
+ public const int hdl_gallery_banner_view_layout = 2131427463;
// aapt resource value: 0x7F0B0088
- public const int hdl_widget_air_button = 2131427464;
+ public const int hdl_widget_activity_crop_image = 2131427464;
// aapt resource value: 0x7F0B0089
- public const int hdl_widget_include_pickerview_topbar = 2131427465;
+ public const int hdl_widget_activity_geofence_round = 2131427465;
// aapt resource value: 0x7F0B008A
- public const int hdl_widget_layout_basepickerview = 2131427466;
+ public const int hdl_widget_air_button = 2131427466;
// aapt resource value: 0x7F0B008B
- public const int hdl_widget_pickerview = 2131427467;
+ public const int hdl_widget_include_pickerview_topbar = 2131427467;
// aapt resource value: 0x7F0B008C
- public const int hdl_widget_pickerview_options = 2131427468;
+ public const int hdl_widget_layout_basepickerview = 2131427468;
// aapt resource value: 0x7F0B008D
- public const int hdl_widget_pickerview_time = 2131427469;
+ public const int hdl_widget_pickerview = 2131427469;
// aapt resource value: 0x7F0B008E
- public const int hms_download_progress = 2131427470;
+ public const int hdl_widget_pickerview_options = 2131427470;
// aapt resource value: 0x7F0B008F
- public const int item_multi_screen_preview = 2131427471;
+ public const int hdl_widget_pickerview_time = 2131427471;
// aapt resource value: 0x7F0B0090
- public const int lan_device_adapter_item = 2131427472;
+ public const int hms_download_progress = 2131427472;
// aapt resource value: 0x7F0B0091
- public const int lan_device_login_dialog = 2131427473;
+ public const int item_multi_screen_preview = 2131427473;
// aapt resource value: 0x7F0B0092
- public const int layout_camera_view = 2131427474;
+ public const int lan_device_adapter_item = 2131427474;
// aapt resource value: 0x7F0B0093
- public const int layout_camera_view_soft = 2131427475;
+ public const int lan_device_login_dialog = 2131427475;
// aapt resource value: 0x7F0B0094
- public const int layout_change_playback_rate = 2131427476;
+ public const int layout_camera_view = 2131427476;
// aapt resource value: 0x7F0B0095
- public const int layout_child_watch_video_talk_operation = 2131427477;
+ public const int layout_camera_view_soft = 2131427477;
// aapt resource value: 0x7F0B0096
- public const int layout_dialog_tip = 2131427478;
+ public const int layout_change_playback_rate = 2131427478;
// aapt resource value: 0x7F0B0097
- public const int layout_login_anim = 2131427479;
+ public const int layout_child_watch_video_talk_operation = 2131427479;
// aapt resource value: 0x7F0B0098
- public const int line_connecting_introduce_activity = 2131427480;
+ public const int layout_dialog_tip = 2131427480;
// aapt resource value: 0x7F0B0099
- public const int list_section = 2131427481;
+ public const int layout_login_anim = 2131427481;
// aapt resource value: 0x7F0B009A
- public const int loading_text_view = 2131427482;
+ public const int line_connecting_introduce_activity = 2131427482;
// aapt resource value: 0x7F0B009B
- public const int login_page = 2131427483;
+ public const int list_section = 2131427483;
// aapt resource value: 0x7F0B009C
- public const int message_list_item = 2131427484;
+ public const int loading_text_view = 2131427484;
// aapt resource value: 0x7F0B009D
- public const int message_page = 2131427485;
+ public const int login_page = 2131427485;
// aapt resource value: 0x7F0B009E
- public const int modify_device_name_page = 2131427486;
+ public const int message_list_item = 2131427486;
// aapt resource value: 0x7F0B009F
- public const int multi_video_talk_item = 2131427487;
+ public const int message_page = 2131427487;
// aapt resource value: 0x7F0B00A0
- public const int network_error_retry_page = 2131427488;
-
- // aapt resource value: 0x7F0B00A4
- public const int notification_action = 2131427492;
-
- // aapt resource value: 0x7F0B00A5
- public const int notification_action_tombstone = 2131427493;
-
- // aapt resource value: 0x7F0B00A6
- public const int notification_media_action = 2131427494;
-
- // aapt resource value: 0x7F0B00A7
- public const int notification_media_cancel_action = 2131427495;
-
- // aapt resource value: 0x7F0B00A8
- public const int notification_template_big_media = 2131427496;
-
- // aapt resource value: 0x7F0B00A9
- public const int notification_template_big_media_custom = 2131427497;
-
- // aapt resource value: 0x7F0B00AA
- public const int notification_template_big_media_narrow = 2131427498;
-
- // aapt resource value: 0x7F0B00AB
- public const int notification_template_big_media_narrow_custom = 2131427499;
-
- // aapt resource value: 0x7F0B00AC
- public const int notification_template_custom_big = 2131427500;
-
- // aapt resource value: 0x7F0B00AD
- public const int notification_template_icon_group = 2131427501;
-
- // aapt resource value: 0x7F0B00AE
- public const int notification_template_lines_media = 2131427502;
-
- // aapt resource value: 0x7F0B00AF
- public const int notification_template_media = 2131427503;
-
- // aapt resource value: 0x7F0B00B0
- public const int notification_template_media_custom = 2131427504;
-
- // aapt resource value: 0x7F0B00B1
- public const int notification_template_part_chronometer = 2131427505;
-
- // aapt resource value: 0x7F0B00B2
- public const int notification_template_part_time = 2131427506;
-
- // aapt resource value: 0x7F0B00B3
- public const int notifier_alarmloginfo_list_item = 2131427507;
-
- // aapt resource value: 0x7F0B00B4
- public const int notifier_page = 2131427508;
+ public const int modify_device_name_page = 2131427488;
// aapt resource value: 0x7F0B00A1
- public const int no_device_more_footer = 2131427489;
+ public const int multi_video_talk_item = 2131427489;
// aapt resource value: 0x7F0B00A2
- public const int no_more_footer = 2131427490;
+ public const int network_error_retry_page = 2131427490;
- // aapt resource value: 0x7F0B00A3
- public const int no_msg_more_footer = 2131427491;
+ // aapt resource value: 0x7F0B00A6
+ public const int notification_action = 2131427494;
+
+ // aapt resource value: 0x7F0B00A7
+ public const int notification_action_tombstone = 2131427495;
+
+ // aapt resource value: 0x7F0B00A8
+ public const int notification_media_action = 2131427496;
+
+ // aapt resource value: 0x7F0B00A9
+ public const int notification_media_cancel_action = 2131427497;
+
+ // aapt resource value: 0x7F0B00AA
+ public const int notification_template_big_media = 2131427498;
+
+ // aapt resource value: 0x7F0B00AB
+ public const int notification_template_big_media_custom = 2131427499;
+
+ // aapt resource value: 0x7F0B00AC
+ public const int notification_template_big_media_narrow = 2131427500;
+
+ // aapt resource value: 0x7F0B00AD
+ public const int notification_template_big_media_narrow_custom = 2131427501;
+
+ // aapt resource value: 0x7F0B00AE
+ public const int notification_template_custom_big = 2131427502;
+
+ // aapt resource value: 0x7F0B00AF
+ public const int notification_template_icon_group = 2131427503;
+
+ // aapt resource value: 0x7F0B00B0
+ public const int notification_template_lines_media = 2131427504;
+
+ // aapt resource value: 0x7F0B00B1
+ public const int notification_template_media = 2131427505;
+
+ // aapt resource value: 0x7F0B00B2
+ public const int notification_template_media_custom = 2131427506;
+
+ // aapt resource value: 0x7F0B00B3
+ public const int notification_template_part_chronometer = 2131427507;
+
+ // aapt resource value: 0x7F0B00B4
+ public const int notification_template_part_time = 2131427508;
// aapt resource value: 0x7F0B00B5
- public const int open_ysservice_dialog = 2131427509;
+ public const int notifier_alarmloginfo_list_item = 2131427509;
// aapt resource value: 0x7F0B00B6
- public const int password_error_layout = 2131427510;
+ public const int notifier_page = 2131427510;
+
+ // aapt resource value: 0x7F0B00A3
+ public const int no_device_more_footer = 2131427491;
+
+ // aapt resource value: 0x7F0B00A4
+ public const int no_more_footer = 2131427492;
+
+ // aapt resource value: 0x7F0B00A5
+ public const int no_msg_more_footer = 2131427493;
// aapt resource value: 0x7F0B00B7
- public const int playback_list_page = 2131427511;
+ public const int open_ysservice_dialog = 2131427511;
// aapt resource value: 0x7F0B00B8
- public const int pull_to_refresh_footer = 2131427512;
+ public const int password_error_layout = 2131427512;
// aapt resource value: 0x7F0B00B9
- public const int pull_to_refresh_header = 2131427513;
-
- // aapt resource value: 0x7F0B00C5
- public const int realplayer_item = 2131427525;
-
- // aapt resource value: 0x7F0B00C6
- public const int realplayer_page = 2131427526;
+ public const int playback_list_page = 2131427513;
// aapt resource value: 0x7F0B00BA
- public const int realplay_control_layout = 2131427514;
+ public const int pull_to_refresh_footer = 2131427514;
// aapt resource value: 0x7F0B00BB
- public const int realplay_full_operate_layout = 2131427515;
-
- // aapt resource value: 0x7F0B00BC
- public const int realplay_loading_layout = 2131427516;
-
- // aapt resource value: 0x7F0B00BD
- public const int realplay_operate_bar = 2131427517;
-
- // aapt resource value: 0x7F0B00BE
- public const int realplay_operate_bar2 = 2131427518;
-
- // aapt resource value: 0x7F0B00BF
- public const int realplay_page = 2131427519;
-
- // aapt resource value: 0x7F0B00C0
- public const int realplay_prompt_layout = 2131427520;
-
- // aapt resource value: 0x7F0B00C1
- public const int realplay_ptz_wnd = 2131427521;
-
- // aapt resource value: 0x7F0B00C2
- public const int realplay_quality_items = 2131427522;
-
- // aapt resource value: 0x7F0B00C3
- public const int realplay_quality_wnd = 2131427523;
-
- // aapt resource value: 0x7F0B00C4
- public const int realplay_talkback_wnd = 2131427524;
+ public const int pull_to_refresh_header = 2131427515;
// aapt resource value: 0x7F0B00C7
- public const int remote_playback_page = 2131427527;
+ public const int realplayer_item = 2131427527;
// aapt resource value: 0x7F0B00C8
- public const int section_list_item = 2131427528;
+ public const int realplayer_page = 2131427528;
+
+ // aapt resource value: 0x7F0B00BC
+ public const int realplay_control_layout = 2131427516;
+
+ // aapt resource value: 0x7F0B00BD
+ public const int realplay_full_operate_layout = 2131427517;
+
+ // aapt resource value: 0x7F0B00BE
+ public const int realplay_loading_layout = 2131427518;
+
+ // aapt resource value: 0x7F0B00BF
+ public const int realplay_operate_bar = 2131427519;
+
+ // aapt resource value: 0x7F0B00C0
+ public const int realplay_operate_bar2 = 2131427520;
+
+ // aapt resource value: 0x7F0B00C1
+ public const int realplay_page = 2131427521;
+
+ // aapt resource value: 0x7F0B00C2
+ public const int realplay_prompt_layout = 2131427522;
+
+ // aapt resource value: 0x7F0B00C3
+ public const int realplay_ptz_wnd = 2131427523;
+
+ // aapt resource value: 0x7F0B00C4
+ public const int realplay_quality_items = 2131427524;
+
+ // aapt resource value: 0x7F0B00C5
+ public const int realplay_quality_wnd = 2131427525;
+
+ // aapt resource value: 0x7F0B00C6
+ public const int realplay_talkback_wnd = 2131427526;
// aapt resource value: 0x7F0B00C9
- public const int select_camera_no_dialog = 2131427529;
+ public const int remote_playback_page = 2131427529;
// aapt resource value: 0x7F0B00CA
- public const int select_camera_no_dialog_item = 2131427530;
+ public const int section_list_item = 2131427530;
// aapt resource value: 0x7F0B00CB
- public const int select_dialog_item_material = 2131427531;
+ public const int select_camera_no_dialog = 2131427531;
// aapt resource value: 0x7F0B00CC
- public const int select_dialog_multichoice_material = 2131427532;
+ public const int select_camera_no_dialog_item = 2131427532;
// aapt resource value: 0x7F0B00CD
- public const int select_dialog_singlechoice_material = 2131427533;
+ public const int select_dialog_item_material = 2131427533;
// aapt resource value: 0x7F0B00CE
- public const int select_talkback_items = 2131427534;
+ public const int select_dialog_multichoice_material = 2131427534;
// aapt resource value: 0x7F0B00CF
- public const int simple_demo = 2131427535;
+ public const int select_dialog_singlechoice_material = 2131427535;
// aapt resource value: 0x7F0B00D0
- public const int sms_verify_dialog = 2131427536;
+ public const int select_talkback_items = 2131427536;
// aapt resource value: 0x7F0B00D1
- public const int square_column_item = 2131427537;
+ public const int simple_demo = 2131427537;
// aapt resource value: 0x7F0B00D2
- public const int square_video_item = 2131427538;
+ public const int sms_verify_dialog = 2131427538;
// aapt resource value: 0x7F0B00D3
- public const int srl_classics_footer = 2131427539;
+ public const int square_column_item = 2131427539;
// aapt resource value: 0x7F0B00D4
- public const int srl_classics_header = 2131427540;
+ public const int square_video_item = 2131427540;
// aapt resource value: 0x7F0B00D5
- public const int support_simple_spinner_dropdown_item = 2131427541;
+ public const int srl_classics_footer = 2131427541;
// aapt resource value: 0x7F0B00D6
- public const int test_surfaceview = 2131427542;
+ public const int srl_classics_header = 2131427542;
// aapt resource value: 0x7F0B00D7
- public const int tooltip = 2131427543;
+ public const int support_simple_spinner_dropdown_item = 2131427543;
// aapt resource value: 0x7F0B00D8
- public const int topbar = 2131427544;
+ public const int test_surfaceview = 2131427544;
// aapt resource value: 0x7F0B00D9
- public const int upsdk_app_dl_progress_dialog = 2131427545;
+ public const int tooltip = 2131427545;
// aapt resource value: 0x7F0B00DA
- public const int upsdk_ota_update_view = 2131427546;
+ public const int topbar = 2131427546;
// aapt resource value: 0x7F0B00DB
- public const int verifycode_layout = 2131427547;
+ public const int upsdk_app_dl_progress_dialog = 2131427547;
// aapt resource value: 0x7F0B00DC
- public const int video_device = 2131427548;
+ public const int upsdk_ota_update_view = 2131427548;
// aapt resource value: 0x7F0B00DD
- public const int wait_dialog = 2131427549;
+ public const int verifycode_layout = 2131427549;
// aapt resource value: 0x7F0B00DE
- public const int web_page = 2131427550;
-
- // aapt resource value: 0x7F0B00E0
- public const int zxingscanneractivitylayout = 2131427552;
-
- // aapt resource value: 0x7F0B00E1
- public const int zxingscannerfragmentlayout = 2131427553;
+ public const int video_device = 2131427550;
// aapt resource value: 0x7F0B00DF
- public const int zxing_layout = 2131427551;
+ public const int wait_dialog = 2131427551;
+
+ // aapt resource value: 0x7F0B00E0
+ public const int web_page = 2131427552;
+
+ // aapt resource value: 0x7F0B00E2
+ public const int zxingscanneractivitylayout = 2131427554;
+
+ // aapt resource value: 0x7F0B00E3
+ public const int zxingscannerfragmentlayout = 2131427555;
+
+ // aapt resource value: 0x7F0B00E1
+ public const int zxing_layout = 2131427553;
static Layout()
{
@@ -11036,2080 +11078,2098 @@
public const int add_device_success = 2131689518;
// aapt resource value: 0x7F0F0036
- public const int alarm_box = 2131689526;
+ public const int agree = 2131689526;
// aapt resource value: 0x7F0F0037
- public const int alarm_message_check_fail = 2131689527;
+ public const int alarm_box = 2131689527;
// aapt resource value: 0x7F0F0038
- public const int alarm_message_check_fail_network_exception = 2131689528;
+ public const int alarm_message_check_fail = 2131689528;
// aapt resource value: 0x7F0F0039
- public const int alarm_message_del_fail_network_exception = 2131689529;
+ public const int alarm_message_check_fail_network_exception = 2131689529;
// aapt resource value: 0x7F0F003A
- public const int alarm_message_del_fail_txt = 2131689530;
+ public const int alarm_message_del_fail_network_exception = 2131689530;
// aapt resource value: 0x7F0F003B
- public const int alarm_message_del_success_txt = 2131689531;
+ public const int alarm_message_del_fail_txt = 2131689531;
// aapt resource value: 0x7F0F003C
- public const int alarm_setted_close_success = 2131689532;
+ public const int alarm_message_del_success_txt = 2131689532;
// aapt resource value: 0x7F0F003D
- public const int alarm_setted_success = 2131689533;
+ public const int alarm_setted_close_success = 2131689533;
// aapt resource value: 0x7F0F003E
- public const int alarm_sound_mode = 2131689534;
+ public const int alarm_setted_success = 2131689534;
// aapt resource value: 0x7F0F003F
- public const int alarm_type_baby_cry = 2131689535;
+ public const int alarm_sound_mode = 2131689535;
// aapt resource value: 0x7F0F0040
- public const int alarm_type_door = 2131689536;
+ public const int alarm_type_baby_cry = 2131689536;
// aapt resource value: 0x7F0F0041
- public const int alarm_type_gas = 2131689537;
+ public const int alarm_type_door = 2131689537;
// aapt resource value: 0x7F0F0042
- public const int alarm_type_infrared = 2131689538;
+ public const int alarm_type_gas = 2131689538;
// aapt resource value: 0x7F0F0043
- public const int alarm_type_motion_detection = 2131689539;
+ public const int alarm_type_infrared = 2131689539;
// aapt resource value: 0x7F0F0044
- public const int alarm_type_person_alarm = 2131689540;
+ public const int alarm_type_motion_detection = 2131689540;
// aapt resource value: 0x7F0F0045
- public const int alarm_type_remotecontrol = 2131689541;
+ public const int alarm_type_person_alarm = 2131689541;
// aapt resource value: 0x7F0F0046
- public const int alarm_type_smoke = 2131689542;
+ public const int alarm_type_remotecontrol = 2131689542;
// aapt resource value: 0x7F0F0047
- public const int alarm_type_unknown = 2131689543;
+ public const int alarm_type_smoke = 2131689543;
// aapt resource value: 0x7F0F0048
- public const int alarm_type_urgent_button = 2131689544;
+ public const int alarm_type_unknown = 2131689544;
// aapt resource value: 0x7F0F0049
- public const int alarm_type_water = 2131689545;
+ public const int alarm_type_urgent_button = 2131689545;
// aapt resource value: 0x7F0F004A
- public const int already_reset = 2131689546;
+ public const int alarm_type_water = 2131689546;
// aapt resource value: 0x7F0F004B
- public const int already_saved_to_volume = 2131689547;
+ public const int already_reset = 2131689547;
// aapt resource value: 0x7F0F004C
- public const int am = 2131689548;
+ public const int already_saved_to_volume = 2131689548;
// aapt resource value: 0x7F0F004D
- public const int aotu_wifi_add_device_success = 2131689549;
-
- // aapt resource value: 0x7F0F0059
- public const int appbar_scrolling_view_behavior = 2131689561;
-
- // aapt resource value: 0x7F0F0050
- public const int app_add_device_success = 2131689552;
-
- // aapt resource value: 0x7F0F0051
- public const int app_closed = 2131689553;
-
- // aapt resource value: 0x7F0F0052
- public const int app_common_deivce_hotspot_info_can_not_empty = 2131689554;
-
- // aapt resource value: 0x7F0F0053
- public const int app_common_hint_hotspot_name = 2131689555;
-
- // aapt resource value: 0x7F0F0054
- public const int app_common_hint_hotspot_pwd = 2131689556;
-
- // aapt resource value: 0x7F0F0055
- public const int app_common_next_step = 2131689557;
-
- // aapt resource value: 0x7F0F0056
- public const int app_common_stop_config_wifi_while_switched_to_background = 2131689558;
-
- // aapt resource value: 0x7F0F0057
- public const int app_key = 2131689559;
-
- // aapt resource value: 0x7F0F0058
- public const int app_name = 2131689560;
+ public const int am = 2131689549;
// aapt resource value: 0x7F0F004E
- public const int ap_config_connecting_to_device = 2131689550;
-
- // aapt resource value: 0x7F0F004F
- public const int ap_config_device_try_registering_ezviz_platform = 2131689551;
-
- // aapt resource value: 0x7F0F0083
- public const int autowifi_heard_voice = 2131689603;
-
- // aapt resource value: 0x7F0F0084
- public const int autowifi_not_heard_voice = 2131689604;
+ public const int aotu_wifi_add_device_success = 2131689550;
// aapt resource value: 0x7F0F005A
- public const int auto_play_time = 2131689562;
+ public const int appbar_scrolling_view_behavior = 2131689562;
- // aapt resource value: 0x7F0F005B
- public const int auto_wifi_add_device_failed = 2131689563;
+ // aapt resource value: 0x7F0F0051
+ public const int app_add_device_success = 2131689553;
- // aapt resource value: 0x7F0F005C
- public const int auto_wifi_add_device_failed2 = 2131689564;
+ // aapt resource value: 0x7F0F0052
+ public const int app_closed = 2131689554;
- // aapt resource value: 0x7F0F005D
- public const int auto_wifi_cer_config_title = 2131689565;
+ // aapt resource value: 0x7F0F0053
+ public const int app_common_deivce_hotspot_info_can_not_empty = 2131689555;
- // aapt resource value: 0x7F0F005E
- public const int auto_wifi_cer_config_title1 = 2131689566;
+ // aapt resource value: 0x7F0F0054
+ public const int app_common_hint_hotspot_name = 2131689556;
- // aapt resource value: 0x7F0F005F
- public const int auto_wifi_cer_config_title2 = 2131689567;
+ // aapt resource value: 0x7F0F0055
+ public const int app_common_hint_hotspot_pwd = 2131689557;
- // aapt resource value: 0x7F0F0060
- public const int auto_wifi_config_tip = 2131689568;
+ // aapt resource value: 0x7F0F0056
+ public const int app_common_next_step = 2131689558;
- // aapt resource value: 0x7F0F0061
- public const int auto_wifi_connecting_failed = 2131689569;
+ // aapt resource value: 0x7F0F0057
+ public const int app_common_stop_config_wifi_while_switched_to_background = 2131689559;
- // aapt resource value: 0x7F0F0062
- public const int auto_wifi_connecting_msg1 = 2131689570;
+ // aapt resource value: 0x7F0F0058
+ public const int app_key = 2131689560;
- // aapt resource value: 0x7F0F0063
- public const int auto_wifi_connecting_msg2 = 2131689571;
+ // aapt resource value: 0x7F0F0059
+ public const int app_name = 2131689561;
- // aapt resource value: 0x7F0F0064
- public const int auto_wifi_connecting_msg3 = 2131689572;
+ // aapt resource value: 0x7F0F004F
+ public const int ap_config_connecting_to_device = 2131689551;
- // aapt resource value: 0x7F0F0065
- public const int auto_wifi_device_added_already = 2131689573;
+ // aapt resource value: 0x7F0F0050
+ public const int ap_config_device_try_registering_ezviz_platform = 2131689552;
- // aapt resource value: 0x7F0F0066
- public const int auto_wifi_device_added_by_others = 2131689574;
-
- // aapt resource value: 0x7F0F0067
- public const int auto_wifi_device_not_exist = 2131689575;
-
- // aapt resource value: 0x7F0F0068
- public const int auto_wifi_device_you_added_already = 2131689576;
-
- // aapt resource value: 0x7F0F0069
- public const int auto_wifi_dialog_btn_wifi = 2131689577;
-
- // aapt resource value: 0x7F0F006A
- public const int auto_wifi_dialog_connecting_msg = 2131689578;
-
- // aapt resource value: 0x7F0F006B
- public const int auto_wifi_dialog_title_wifi_required = 2131689579;
-
- // aapt resource value: 0x7F0F006C
- public const int auto_wifi_line_connect = 2131689580;
-
- // aapt resource value: 0x7F0F006E
- public const int auto_wifi_line_connected = 2131689582;
-
- // aapt resource value: 0x7F0F006D
- public const int auto_wifi_line_connect_title = 2131689581;
-
- // aapt resource value: 0x7F0F006F
- public const int auto_wifi_line_msg = 2131689583;
-
- // aapt resource value: 0x7F0F0070
- public const int auto_wifi_net = 2131689584;
-
- // aapt resource value: 0x7F0F0071
- public const int auto_wifi_network_add_device = 2131689585;
-
- // aapt resource value: 0x7F0F0072
- public const int auto_wifi_network_add_device1 = 2131689586;
-
- // aapt resource value: 0x7F0F0073
- public const int auto_wifi_network_add_device2 = 2131689587;
-
- // aapt resource value: 0x7F0F0074
- public const int auto_wifi_register_failed = 2131689588;
-
- // aapt resource value: 0x7F0F0075
- public const int auto_wifi_ssid = 2131689589;
-
- // aapt resource value: 0x7F0F0076
- public const int auto_wifi_step_one_title = 2131689590;
-
- // aapt resource value: 0x7F0F0077
- public const int auto_wifi_step_three_title = 2131689591;
-
- // aapt resource value: 0x7F0F0078
- public const int auto_wifi_step_two_title = 2131689592;
-
- // aapt resource value: 0x7F0F0079
- public const int auto_wifi_tip_binding_account = 2131689593;
-
- // aapt resource value: 0x7F0F007A
- public const int auto_wifi_tip_binding_account_ing = 2131689594;
-
- // aapt resource value: 0x7F0F007B
- public const int auto_wifi_tip_connecting_server = 2131689595;
-
- // aapt resource value: 0x7F0F007C
- public const int auto_wifi_tip_connecting_server_ing = 2131689596;
-
- // aapt resource value: 0x7F0F007D
- public const int auto_wifi_tip_connecting_server_ok = 2131689597;
-
- // aapt resource value: 0x7F0F007E
- public const int auto_wifi_tip_connecting_wifi = 2131689598;
-
- // aapt resource value: 0x7F0F007F
- public const int auto_wifi_tip_connecting_wifi_ing = 2131689599;
-
- // aapt resource value: 0x7F0F0080
- public const int auto_wifi_tip_connecting_wifi_ok = 2131689600;
-
- // aapt resource value: 0x7F0F0081
- public const int auto_wifi_title_add_device = 2131689601;
-
- // aapt resource value: 0x7F0F0082
- public const int auto_wifi_title_add_device2 = 2131689602;
+ // aapt resource value: 0x7F0F0084
+ public const int autowifi_heard_voice = 2131689604;
// aapt resource value: 0x7F0F0085
- public const int bind_baidu_account = 2131689605;
+ public const int autowifi_not_heard_voice = 2131689605;
+
+ // aapt resource value: 0x7F0F005B
+ public const int auto_play_time = 2131689563;
+
+ // aapt resource value: 0x7F0F005C
+ public const int auto_wifi_add_device_failed = 2131689564;
+
+ // aapt resource value: 0x7F0F005D
+ public const int auto_wifi_add_device_failed2 = 2131689565;
+
+ // aapt resource value: 0x7F0F005E
+ public const int auto_wifi_cer_config_title = 2131689566;
+
+ // aapt resource value: 0x7F0F005F
+ public const int auto_wifi_cer_config_title1 = 2131689567;
+
+ // aapt resource value: 0x7F0F0060
+ public const int auto_wifi_cer_config_title2 = 2131689568;
+
+ // aapt resource value: 0x7F0F0061
+ public const int auto_wifi_config_tip = 2131689569;
+
+ // aapt resource value: 0x7F0F0062
+ public const int auto_wifi_connecting_failed = 2131689570;
+
+ // aapt resource value: 0x7F0F0063
+ public const int auto_wifi_connecting_msg1 = 2131689571;
+
+ // aapt resource value: 0x7F0F0064
+ public const int auto_wifi_connecting_msg2 = 2131689572;
+
+ // aapt resource value: 0x7F0F0065
+ public const int auto_wifi_connecting_msg3 = 2131689573;
+
+ // aapt resource value: 0x7F0F0066
+ public const int auto_wifi_device_added_already = 2131689574;
+
+ // aapt resource value: 0x7F0F0067
+ public const int auto_wifi_device_added_by_others = 2131689575;
+
+ // aapt resource value: 0x7F0F0068
+ public const int auto_wifi_device_not_exist = 2131689576;
+
+ // aapt resource value: 0x7F0F0069
+ public const int auto_wifi_device_you_added_already = 2131689577;
+
+ // aapt resource value: 0x7F0F006A
+ public const int auto_wifi_dialog_btn_wifi = 2131689578;
+
+ // aapt resource value: 0x7F0F006B
+ public const int auto_wifi_dialog_connecting_msg = 2131689579;
+
+ // aapt resource value: 0x7F0F006C
+ public const int auto_wifi_dialog_title_wifi_required = 2131689580;
+
+ // aapt resource value: 0x7F0F006D
+ public const int auto_wifi_line_connect = 2131689581;
+
+ // aapt resource value: 0x7F0F006F
+ public const int auto_wifi_line_connected = 2131689583;
+
+ // aapt resource value: 0x7F0F006E
+ public const int auto_wifi_line_connect_title = 2131689582;
+
+ // aapt resource value: 0x7F0F0070
+ public const int auto_wifi_line_msg = 2131689584;
+
+ // aapt resource value: 0x7F0F0071
+ public const int auto_wifi_net = 2131689585;
+
+ // aapt resource value: 0x7F0F0072
+ public const int auto_wifi_network_add_device = 2131689586;
+
+ // aapt resource value: 0x7F0F0073
+ public const int auto_wifi_network_add_device1 = 2131689587;
+
+ // aapt resource value: 0x7F0F0074
+ public const int auto_wifi_network_add_device2 = 2131689588;
+
+ // aapt resource value: 0x7F0F0075
+ public const int auto_wifi_register_failed = 2131689589;
+
+ // aapt resource value: 0x7F0F0076
+ public const int auto_wifi_ssid = 2131689590;
+
+ // aapt resource value: 0x7F0F0077
+ public const int auto_wifi_step_one_title = 2131689591;
+
+ // aapt resource value: 0x7F0F0078
+ public const int auto_wifi_step_three_title = 2131689592;
+
+ // aapt resource value: 0x7F0F0079
+ public const int auto_wifi_step_two_title = 2131689593;
+
+ // aapt resource value: 0x7F0F007A
+ public const int auto_wifi_tip_binding_account = 2131689594;
+
+ // aapt resource value: 0x7F0F007B
+ public const int auto_wifi_tip_binding_account_ing = 2131689595;
+
+ // aapt resource value: 0x7F0F007C
+ public const int auto_wifi_tip_connecting_server = 2131689596;
+
+ // aapt resource value: 0x7F0F007D
+ public const int auto_wifi_tip_connecting_server_ing = 2131689597;
+
+ // aapt resource value: 0x7F0F007E
+ public const int auto_wifi_tip_connecting_server_ok = 2131689598;
+
+ // aapt resource value: 0x7F0F007F
+ public const int auto_wifi_tip_connecting_wifi = 2131689599;
+
+ // aapt resource value: 0x7F0F0080
+ public const int auto_wifi_tip_connecting_wifi_ing = 2131689600;
+
+ // aapt resource value: 0x7F0F0081
+ public const int auto_wifi_tip_connecting_wifi_ok = 2131689601;
+
+ // aapt resource value: 0x7F0F0082
+ public const int auto_wifi_title_add_device = 2131689602;
+
+ // aapt resource value: 0x7F0F0083
+ public const int auto_wifi_title_add_device2 = 2131689603;
// aapt resource value: 0x7F0F0086
- public const int bottom_sheet_behavior = 2131689606;
+ public const int bind_baidu_account = 2131689606;
// aapt resource value: 0x7F0F0087
- public const int btn_ensure = 2131689607;
+ public const int bottom_sheet_behavior = 2131689607;
// aapt resource value: 0x7F0F0088
- public const int calendar_setting_error = 2131689608;
+ public const int btn_ensure = 2131689608;
// aapt resource value: 0x7F0F0089
- public const int calling = 2131689609;
-
- // aapt resource value: 0x7F0F0092
- public const int cameradetail_close_success = 2131689618;
-
- // aapt resource value: 0x7F0F0093
- public const int cameradetail_open_fail_not_online = 2131689619;
-
- // aapt resource value: 0x7F0F0094
- public const int cameradetail_open_success = 2131689620;
-
- // aapt resource value: 0x7F0F0095
- public const int cameras_txt = 2131689621;
+ public const int calendar_setting_error = 2131689609;
// aapt resource value: 0x7F0F008A
- public const int camera_detail_verifycode_error_title = 2131689610;
+ public const int calling = 2131689610;
- // aapt resource value: 0x7F0F008B
- public const int camera_lens_closed = 2131689611;
+ // aapt resource value: 0x7F0F0093
+ public const int cameradetail_close_success = 2131689619;
- // aapt resource value: 0x7F0F008C
- public const int camera_lens_closing = 2131689612;
+ // aapt resource value: 0x7F0F0094
+ public const int cameradetail_open_fail_not_online = 2131689620;
- // aapt resource value: 0x7F0F008D
- public const int camera_lens_opening = 2131689613;
-
- // aapt resource value: 0x7F0F008E
- public const int camera_lens_too_busy = 2131689614;
-
- // aapt resource value: 0x7F0F008F
- public const int camera_not_online = 2131689615;
-
- // aapt resource value: 0x7F0F0090
- public const int camera_password_error = 2131689616;
-
- // aapt resource value: 0x7F0F0091
- public const int camera_password_is_null = 2131689617;
+ // aapt resource value: 0x7F0F0095
+ public const int cameradetail_open_success = 2131689621;
// aapt resource value: 0x7F0F0096
- public const int cancel = 2131689622;
+ public const int cameras_txt = 2131689622;
+
+ // aapt resource value: 0x7F0F008B
+ public const int camera_detail_verifycode_error_title = 2131689611;
+
+ // aapt resource value: 0x7F0F008C
+ public const int camera_lens_closed = 2131689612;
+
+ // aapt resource value: 0x7F0F008D
+ public const int camera_lens_closing = 2131689613;
+
+ // aapt resource value: 0x7F0F008E
+ public const int camera_lens_opening = 2131689614;
+
+ // aapt resource value: 0x7F0F008F
+ public const int camera_lens_too_busy = 2131689615;
+
+ // aapt resource value: 0x7F0F0090
+ public const int camera_not_online = 2131689616;
+
+ // aapt resource value: 0x7F0F0091
+ public const int camera_password_error = 2131689617;
+
+ // aapt resource value: 0x7F0F0092
+ public const int camera_password_is_null = 2131689618;
// aapt resource value: 0x7F0F0097
- public const int cancel_collect_fail = 2131689623;
+ public const int cancel = 2131689623;
// aapt resource value: 0x7F0F0098
- public const int cancel_collect_success = 2131689624;
+ public const int cancel_collect_fail = 2131689624;
// aapt resource value: 0x7F0F0099
- public const int cancel_init_sdk = 2131689625;
+ public const int cancel_collect_success = 2131689625;
// aapt resource value: 0x7F0F009A
- public const int capture = 2131689626;
+ public const int cancel_init_sdk = 2131689626;
// aapt resource value: 0x7F0F009B
- public const int cc_back = 2131689627;
+ public const int capture = 2131689627;
// aapt resource value: 0x7F0F009C
- public const int cc_search = 2131689628;
+ public const int cc_back = 2131689628;
// aapt resource value: 0x7F0F009D
- public const int cc_title = 2131689629;
+ public const int cc_search = 2131689629;
// aapt resource value: 0x7F0F009E
- public const int certain = 2131689630;
+ public const int cc_title = 2131689630;
// aapt resource value: 0x7F0F009F
- public const int character_counter_pattern = 2131689631;
+ public const int certain = 2131689631;
// aapt resource value: 0x7F0F00A0
- public const int check_all_message = 2131689632;
+ public const int character_counter_pattern = 2131689632;
// aapt resource value: 0x7F0F00A1
- public const int check_feature_code_fail = 2131689633;
+ public const int check_all_message = 2131689633;
// aapt resource value: 0x7F0F00A2
- public const int choose_config_wifi_way = 2131689634;
+ public const int check_feature_code_fail = 2131689634;
// aapt resource value: 0x7F0F00A3
- public const int cities = 2131689635;
+ public const int choose_config_wifi_way = 2131689635;
// aapt resource value: 0x7F0F00A4
- public const int cityConfig = 2131689636;
+ public const int cities = 2131689636;
// aapt resource value: 0x7F0F00A5
- public const int close_camera_lens = 2131689637;
+ public const int cityConfig = 2131689637;
// aapt resource value: 0x7F0F00A6
- public const int close_source_localization = 2131689638;
+ public const int close_camera_lens = 2131689638;
// aapt resource value: 0x7F0F00A7
- public const int cloud = 2131689639;
+ public const int close_source_localization = 2131689639;
// aapt resource value: 0x7F0F00A8
- public const int cloud_free = 2131689640;
+ public const int cloud = 2131689640;
// aapt resource value: 0x7F0F00A9
- public const int collect_fail = 2131689641;
+ public const int cloud_free = 2131689641;
// aapt resource value: 0x7F0F00AA
- public const int collect_success = 2131689642;
+ public const int collect_fail = 2131689642;
// aapt resource value: 0x7F0F00AB
- public const int common_passwd_error = 2131689643;
+ public const int collect_success = 2131689643;
// aapt resource value: 0x7F0F00AC
- public const int company_addr_is_empty = 2131689644;
+ public const int common_passwd_error = 2131689644;
// aapt resource value: 0x7F0F00AD
- public const int complete_txt = 2131689645;
-
- // aapt resource value: 0x7F0F00B2
- public const int configuring_wifi = 2131689650;
+ public const int company_addr_is_empty = 2131689645;
// aapt resource value: 0x7F0F00AE
- public const int config_wifi_for_another_device = 2131689646;
-
- // aapt resource value: 0x7F0F00AF
- public const int config_wifi_page = 2131689647;
-
- // aapt resource value: 0x7F0F00B0
- public const int config_wifi_succeed = 2131689648;
-
- // aapt resource value: 0x7F0F00B1
- public const int config_wifi_succeeded = 2131689649;
+ public const int complete_txt = 2131689646;
// aapt resource value: 0x7F0F00B3
- public const int confirm = 2131689651;
+ public const int configuring_wifi = 2131689651;
+
+ // aapt resource value: 0x7F0F00AF
+ public const int config_wifi_for_another_device = 2131689647;
+
+ // aapt resource value: 0x7F0F00B0
+ public const int config_wifi_page = 2131689648;
+
+ // aapt resource value: 0x7F0F00B1
+ public const int config_wifi_succeed = 2131689649;
+
+ // aapt resource value: 0x7F0F00B2
+ public const int config_wifi_succeeded = 2131689650;
// aapt resource value: 0x7F0F00B4
- public const int connect_device_to_router = 2131689652;
+ public const int confirm = 2131689652;
// aapt resource value: 0x7F0F00B5
- public const int connect_device_wifi_ap = 2131689653;
+ public const int connect_device_to_router = 2131689653;
// aapt resource value: 0x7F0F00B6
- public const int connect_device_wifi_normal = 2131689654;
+ public const int connect_device_wifi_ap = 2131689654;
// aapt resource value: 0x7F0F00B7
- public const int connect_device_wifi_tip3 = 2131689655;
+ public const int connect_device_wifi_normal = 2131689655;
// aapt resource value: 0x7F0F00B8
- public const int connect_wlan = 2131689656;
+ public const int connect_device_wifi_tip3 = 2131689656;
// aapt resource value: 0x7F0F00B9
- public const int countdown = 2131689657;
+ public const int connect_wlan = 2131689657;
// aapt resource value: 0x7F0F00BA
- public const int day = 2131689658;
+ public const int countdown = 2131689658;
// aapt resource value: 0x7F0F00BB
- public const int ddns_device = 2131689659;
+ public const int day = 2131689659;
// aapt resource value: 0x7F0F00BC
- public const int defence_plan = 2131689660;
+ public const int ddns_device = 2131689660;
// aapt resource value: 0x7F0F00BD
- public const int defence_plan_tip = 2131689661;
+ public const int defence_plan = 2131689661;
// aapt resource value: 0x7F0F00BE
- public const int delete = 2131689662;
+ public const int defence_plan_tip = 2131689662;
// aapt resource value: 0x7F0F00BF
- public const int delete_confirm = 2131689663;
+ public const int delete = 2131689663;
// aapt resource value: 0x7F0F00C0
- public const int describtion = 2131689664;
+ public const int delete_confirm = 2131689664;
// aapt resource value: 0x7F0F00C1
- public const int detail_defend_c1_c2_f1 = 2131689665;
+ public const int describtion = 2131689665;
// aapt resource value: 0x7F0F00C2
- public const int detail_del_device_btn_tip = 2131689666;
+ public const int detail_defend_c1_c2_f1 = 2131689666;
// aapt resource value: 0x7F0F00C3
- public const int detail_del_device_success = 2131689667;
+ public const int detail_del_device_btn_tip = 2131689667;
// aapt resource value: 0x7F0F00C4
- public const int detail_modify_device_name_limit_tip = 2131689668;
+ public const int detail_del_device_success = 2131689668;
// aapt resource value: 0x7F0F00C5
- public const int detail_modify_fail = 2131689669;
+ public const int detail_modify_device_name_limit_tip = 2131689669;
// aapt resource value: 0x7F0F00C6
- public const int detail_modify_success = 2131689670;
+ public const int detail_modify_fail = 2131689670;
// aapt resource value: 0x7F0F00C7
- public const int detail_notify_online = 2131689671;
+ public const int detail_modify_success = 2131689671;
// aapt resource value: 0x7F0F00C8
- public const int detail_notify_online_close_btn_tip = 2131689672;
+ public const int detail_notify_online = 2131689672;
// aapt resource value: 0x7F0F00C9
- public const int detail_safe_btn_tip = 2131689673;
+ public const int detail_notify_online_close_btn_tip = 2131689673;
// aapt resource value: 0x7F0F00CA
- public const int detail_safe_close_btn_tip = 2131689674;
+ public const int detail_safe_btn_tip = 2131689674;
// aapt resource value: 0x7F0F00CB
- public const int detail_safe_mode = 2131689675;
+ public const int detail_safe_close_btn_tip = 2131689675;
// aapt resource value: 0x7F0F00CC
- public const int detail_safe_mode_tip = 2131689676;
+ public const int detail_safe_mode = 2131689676;
// aapt resource value: 0x7F0F00CD
- public const int detail_version = 2131689677;
+ public const int detail_safe_mode_tip = 2131689677;
// aapt resource value: 0x7F0F00CE
- public const int device_bind_account = 2131689678;
+ public const int detail_version = 2131689678;
// aapt resource value: 0x7F0F00CF
- public const int device_defence_close_fail = 2131689679;
+ public const int device_bind_account = 2131689679;
// aapt resource value: 0x7F0F00D0
- public const int device_defence_close_success = 2131689680;
+ public const int device_defence_close_fail = 2131689680;
// aapt resource value: 0x7F0F00D1
- public const int device_defence_open_fail = 2131689681;
+ public const int device_defence_close_success = 2131689681;
// aapt resource value: 0x7F0F00D2
- public const int device_defence_open_success = 2131689682;
+ public const int device_defence_open_fail = 2131689682;
// aapt resource value: 0x7F0F00D3
- public const int device_error = 2131689683;
+ public const int device_defence_open_success = 2131689683;
// aapt resource value: 0x7F0F00D4
- public const int device_have_not_added = 2131689684;
+ public const int device_error = 2131689684;
// aapt resource value: 0x7F0F00D5
- public const int device_hotspot_name = 2131689685;
+ public const int device_have_not_added = 2131689685;
// aapt resource value: 0x7F0F00D6
- public const int device_hotspot_password = 2131689686;
+ public const int device_hotspot_name = 2131689686;
// aapt resource value: 0x7F0F00D7
- public const int device_hotspot_pwd = 2131689687;
+ public const int device_hotspot_password = 2131689687;
// aapt resource value: 0x7F0F00D8
- public const int device_hotspot_ssid = 2131689688;
+ public const int device_hotspot_pwd = 2131689688;
// aapt resource value: 0x7F0F00D9
- public const int device_info_del = 2131689689;
+ public const int device_hotspot_ssid = 2131689689;
// aapt resource value: 0x7F0F00DA
- public const int device_is_added = 2131689690;
-
- // aapt resource value: 0x7F0F00DD
- public const int device_not_exist = 2131689693;
-
- // aapt resource value: 0x7F0F00DE
- public const int device_not_online = 2131689694;
-
- // aapt resource value: 0x7F0F00DF
- public const int device_not_set = 2131689695;
-
- // aapt resource value: 0x7F0F00E0
- public const int device_not_support_view = 2131689696;
+ public const int device_info_del = 2131689690;
// aapt resource value: 0x7F0F00DB
- public const int device_no_out_limit = 2131689691;
+ public const int device_is_added = 2131689691;
- // aapt resource value: 0x7F0F00DC
- public const int device_no_support_talkback = 2131689692;
+ // aapt resource value: 0x7F0F00DE
+ public const int device_not_exist = 2131689694;
+
+ // aapt resource value: 0x7F0F00DF
+ public const int device_not_online = 2131689695;
+
+ // aapt resource value: 0x7F0F00E0
+ public const int device_not_set = 2131689696;
// aapt resource value: 0x7F0F00E1
- public const int device_password_is_null = 2131689697;
+ public const int device_not_support_view = 2131689697;
+
+ // aapt resource value: 0x7F0F00DC
+ public const int device_no_out_limit = 2131689692;
+
+ // aapt resource value: 0x7F0F00DD
+ public const int device_no_support_talkback = 2131689693;
// aapt resource value: 0x7F0F00E2
- public const int device_picture = 2131689698;
+ public const int device_password_is_null = 2131689698;
// aapt resource value: 0x7F0F00E3
- public const int device_ptz_flip = 2131689699;
+ public const int device_picture = 2131689699;
// aapt resource value: 0x7F0F00E4
- public const int device_ptz_flip_desc = 2131689700;
+ public const int device_ptz_flip = 2131689700;
// aapt resource value: 0x7F0F00E5
- public const int device_reset_ok = 2131689701;
+ public const int device_ptz_flip_desc = 2131689701;
// aapt resource value: 0x7F0F00E6
- public const int device_reset_tip = 2131689702;
+ public const int device_reset_ok = 2131689702;
// aapt resource value: 0x7F0F00E7
- public const int device_reset_title = 2131689703;
+ public const int device_reset_tip = 2131689703;
// aapt resource value: 0x7F0F00E8
- public const int device_setting = 2131689704;
+ public const int device_reset_title = 2131689704;
// aapt resource value: 0x7F0F00E9
- public const int device_so_timeout = 2131689705;
+ public const int device_setting = 2131689705;
// aapt resource value: 0x7F0F00EA
- public const int device_status_lamp = 2131689706;
+ public const int device_so_timeout = 2131689706;
// aapt resource value: 0x7F0F00EB
- public const int device_transfter = 2131689707;
+ public const int device_status_lamp = 2131689707;
// aapt resource value: 0x7F0F00EC
- public const int device_transfter_desc = 2131689708;
+ public const int device_transfter = 2131689708;
// aapt resource value: 0x7F0F00ED
- public const int device_unsupport_5g_wifi = 2131689709;
+ public const int device_transfter_desc = 2131689709;
// aapt resource value: 0x7F0F00EE
- public const int device_warning_tone = 2131689710;
-
- // aapt resource value: 0x7F0F00F0
- public const int device_wificonfig_hasline_introduce = 2131689712;
+ public const int device_unsupport_5g_wifi = 2131689710;
// aapt resource value: 0x7F0F00EF
- public const int device_wifi_set_no_in_subnet = 2131689711;
+ public const int device_warning_tone = 2131689711;
// aapt resource value: 0x7F0F00F1
- public const int digital_video_recorder = 2131689713;
+ public const int device_wificonfig_hasline_introduce = 2131689713;
+
+ // aapt resource value: 0x7F0F00F0
+ public const int device_wifi_set_no_in_subnet = 2131689712;
// aapt resource value: 0x7F0F00F2
- public const int disable_fause_exception = 2131689714;
+ public const int digital_video_recorder = 2131689714;
// aapt resource value: 0x7F0F00F3
- public const int disable_fause_network = 2131689715;
-
- // aapt resource value: 0x7F0F00F5
- public const int discovering_device = 2131689717;
+ public const int disable_fause_exception = 2131689715;
// aapt resource value: 0x7F0F00F4
- public const int discover_device_done = 2131689716;
+ public const int disable_fause_network = 2131689716;
- // aapt resource value: 0x7F0F00F6
- public const int doorlock = 2131689718;
+ // aapt resource value: 0x7F0F00F5
+ public const int disagree = 2131689717;
// aapt resource value: 0x7F0F00F7
- public const int download_fail = 2131689719;
+ public const int discovering_device = 2131689719;
+
+ // aapt resource value: 0x7F0F00F6
+ public const int discover_device_done = 2131689718;
// aapt resource value: 0x7F0F00F8
- public const int download_success = 2131689720;
+ public const int doorlock = 2131689720;
// aapt resource value: 0x7F0F00F9
- public const int edit_txt = 2131689721;
+ public const int download_fail = 2131689721;
// aapt resource value: 0x7F0F00FA
- public const int enable_cloud_fause = 2131689722;
+ public const int download_success = 2131689722;
// aapt resource value: 0x7F0F00FB
- public const int enable_cloud_fause_retry = 2131689723;
+ public const int edit_txt = 2131689723;
// aapt resource value: 0x7F0F00FC
- public const int enable_fause_exception = 2131689724;
+ public const int enable_cloud_fause = 2131689724;
// aapt resource value: 0x7F0F00FD
- public const int enable_fause_network = 2131689725;
+ public const int enable_cloud_fause_retry = 2131689725;
// aapt resource value: 0x7F0F00FE
- public const int encrypt_password_open_fail = 2131689726;
+ public const int enable_fause_exception = 2131689726;
// aapt resource value: 0x7F0F00FF
- public const int encrypt_password_open_fail_networkexception = 2131689727;
+ public const int enable_fause_network = 2131689727;
// aapt resource value: 0x7F0F0100
- public const int encrypt_password_open_success = 2131689728;
+ public const int encrypt_password_open_fail = 2131689728;
// aapt resource value: 0x7F0F0101
- public const int end_call = 2131689729;
+ public const int encrypt_password_open_fail_networkexception = 2131689729;
// aapt resource value: 0x7F0F0102
- public const int event_message = 2131689730;
+ public const int encrypt_password_open_success = 2131689730;
// aapt resource value: 0x7F0F0103
- public const int exit = 2131689731;
+ public const int end_call = 2131689731;
// aapt resource value: 0x7F0F0104
- public const int exit_tip = 2131689732;
+ public const int event_message = 2131689732;
// aapt resource value: 0x7F0F0105
- public const int explain_of_access_token = 2131689733;
+ public const int exit = 2131689733;
// aapt resource value: 0x7F0F0106
- public const int explain_of_app_key = 2131689734;
+ public const int exit_tip = 2131689734;
// aapt resource value: 0x7F0F0107
- public const int explain_of_server_area = 2131689735;
-
- // aapt resource value: 0x7F0F0123
- public const int ezviz_device = 2131689763;
+ public const int explain_of_access_token = 2131689735;
// aapt resource value: 0x7F0F0108
- public const int ez_32_api_test = 2131689736;
+ public const int explain_of_app_key = 2131689736;
// aapt resource value: 0x7F0F0109
- public const int ez_add_device_failed_not_online = 2131689737;
-
- // aapt resource value: 0x7F0F010A
- public const int ez_alarm_message_check_success = 2131689738;
-
- // aapt resource value: 0x7F0F010B
- public const int ez_alarm_type_person_alarm = 2131689739;
-
- // aapt resource value: 0x7F0F010C
- public const int ez_auto_wifi_connecting_failed = 2131689740;
-
- // aapt resource value: 0x7F0F010D
- public const int ez_auto_wifi_line_connect = 2131689741;
-
- // aapt resource value: 0x7F0F010E
- public const int ez_check_all_message = 2131689742;
-
- // aapt resource value: 0x7F0F010F
- public const int ez_cloud_video = 2131689743;
-
- // aapt resource value: 0x7F0F0110
- public const int ez_current_version = 2131689744;
-
- // aapt resource value: 0x7F0F0111
- public const int ez_device_name_hint = 2131689745;
-
- // aapt resource value: 0x7F0F0112
- public const int ez_device_upgrade = 2131689746;
-
- // aapt resource value: 0x7F0F0113
- public const int ez_device_video = 2131689747;
-
- // aapt resource value: 0x7F0F0114
- public const int ez_dialog_btn_disable_video_encrypt = 2131689748;
-
- // aapt resource value: 0x7F0F0115
- public const int ez_event_message = 2131689749;
-
- // aapt resource value: 0x7F0F0116
- public const int ez_event_message_detail = 2131689750;
-
- // aapt resource value: 0x7F0F0117
- public const int ez_latest_version = 2131689751;
-
- // aapt resource value: 0x7F0F0118
- public const int ez_modify_name = 2131689752;
-
- // aapt resource value: 0x7F0F0119
- public const int ez_no_message = 2131689753;
-
- // aapt resource value: 0x7F0F011A
- public const int ez_no_remote_data = 2131689754;
-
- // aapt resource value: 0x7F0F011B
- public const int ez_no_remote_data_device = 2131689755;
-
- // aapt resource value: 0x7F0F011C
- public const int ez_please_input_sms_code = 2131689756;
-
- // aapt resource value: 0x7F0F011D
- public const int ez_save = 2131689757;
-
- // aapt resource value: 0x7F0F011E
- public const int ez_scan_cue_txt = 2131689758;
-
- // aapt resource value: 0x7F0F011F
- public const int ez_scan_title_txt = 2131689759;
-
- // aapt resource value: 0x7F0F0120
- public const int ez_serial_add_hint = 2131689760;
-
- // aapt resource value: 0x7F0F0121
- public const int ez_setting = 2131689761;
-
- // aapt resource value: 0x7F0F0122
- public const int ez_settings_device_serial = 2131689762;
-
- // aapt resource value: 0x7F0F0124
- public const int failed_to_config_wifi = 2131689764;
+ public const int explain_of_server_area = 2131689737;
// aapt resource value: 0x7F0F0125
- public const int from = 2131689765;
+ public const int ezviz_device = 2131689765;
+
+ // aapt resource value: 0x7F0F010A
+ public const int ez_32_api_test = 2131689738;
+
+ // aapt resource value: 0x7F0F010B
+ public const int ez_add_device_failed_not_online = 2131689739;
+
+ // aapt resource value: 0x7F0F010C
+ public const int ez_alarm_message_check_success = 2131689740;
+
+ // aapt resource value: 0x7F0F010D
+ public const int ez_alarm_type_person_alarm = 2131689741;
+
+ // aapt resource value: 0x7F0F010E
+ public const int ez_auto_wifi_connecting_failed = 2131689742;
+
+ // aapt resource value: 0x7F0F010F
+ public const int ez_auto_wifi_line_connect = 2131689743;
+
+ // aapt resource value: 0x7F0F0110
+ public const int ez_check_all_message = 2131689744;
+
+ // aapt resource value: 0x7F0F0111
+ public const int ez_cloud_video = 2131689745;
+
+ // aapt resource value: 0x7F0F0112
+ public const int ez_current_version = 2131689746;
+
+ // aapt resource value: 0x7F0F0113
+ public const int ez_device_name_hint = 2131689747;
+
+ // aapt resource value: 0x7F0F0114
+ public const int ez_device_upgrade = 2131689748;
+
+ // aapt resource value: 0x7F0F0115
+ public const int ez_device_video = 2131689749;
+
+ // aapt resource value: 0x7F0F0116
+ public const int ez_dialog_btn_disable_video_encrypt = 2131689750;
+
+ // aapt resource value: 0x7F0F0117
+ public const int ez_event_message = 2131689751;
+
+ // aapt resource value: 0x7F0F0118
+ public const int ez_event_message_detail = 2131689752;
+
+ // aapt resource value: 0x7F0F0119
+ public const int ez_latest_version = 2131689753;
+
+ // aapt resource value: 0x7F0F011A
+ public const int ez_modify_name = 2131689754;
+
+ // aapt resource value: 0x7F0F011B
+ public const int ez_no_message = 2131689755;
+
+ // aapt resource value: 0x7F0F011C
+ public const int ez_no_remote_data = 2131689756;
+
+ // aapt resource value: 0x7F0F011D
+ public const int ez_no_remote_data_device = 2131689757;
+
+ // aapt resource value: 0x7F0F011E
+ public const int ez_please_input_sms_code = 2131689758;
+
+ // aapt resource value: 0x7F0F011F
+ public const int ez_save = 2131689759;
+
+ // aapt resource value: 0x7F0F0120
+ public const int ez_scan_cue_txt = 2131689760;
+
+ // aapt resource value: 0x7F0F0121
+ public const int ez_scan_title_txt = 2131689761;
+
+ // aapt resource value: 0x7F0F0122
+ public const int ez_serial_add_hint = 2131689762;
+
+ // aapt resource value: 0x7F0F0123
+ public const int ez_setting = 2131689763;
+
+ // aapt resource value: 0x7F0F0124
+ public const int ez_settings_device_serial = 2131689764;
// aapt resource value: 0x7F0F0126
- public const int gd_activity_title = 2131689766;
+ public const int failed_to_config_wifi = 2131689766;
// aapt resource value: 0x7F0F0127
- public const int gd_cancel = 2131689767;
+ public const int from = 2131689767;
// aapt resource value: 0x7F0F0128
- public const int gd_myhome = 2131689768;
+ public const int gd_activity_title = 2131689768;
// aapt resource value: 0x7F0F0129
- public const int gd_notifyMsg = 2131689769;
+ public const int gd_cancel = 2131689769;
// aapt resource value: 0x7F0F012A
- public const int gd_notifyTitle = 2131689770;
+ public const int gd_myhome = 2131689770;
// aapt resource value: 0x7F0F012B
- public const int gd_save = 2131689771;
+ public const int gd_notifyMsg = 2131689771;
// aapt resource value: 0x7F0F012C
- public const int gd_search_tip = 2131689772;
+ public const int gd_notifyTitle = 2131689772;
// aapt resource value: 0x7F0F012D
- public const int gd_select_distance = 2131689773;
+ public const int gd_save = 2131689773;
// aapt resource value: 0x7F0F012E
- public const int gd_setting = 2131689774;
+ public const int gd_search_tip = 2131689774;
// aapt resource value: 0x7F0F012F
- public const int get_camera_list_fail = 2131689775;
+ public const int gd_select_distance = 2131689775;
// aapt resource value: 0x7F0F0130
- public const int get_device_picture_fail = 2131689776;
+ public const int gd_setting = 2131689776;
// aapt resource value: 0x7F0F0131
- public const int get_message_fail_service_exception = 2131689777;
+ public const int get_camera_list_fail = 2131689777;
// aapt resource value: 0x7F0F0132
- public const int get_sms_code = 2131689778;
+ public const int get_device_picture_fail = 2131689778;
// aapt resource value: 0x7F0F0133
- public const int get_sms_code_fail = 2131689779;
+ public const int get_message_fail_service_exception = 2131689779;
// aapt resource value: 0x7F0F0134
- public const int give_up_adding = 2131689780;
-
- // aapt resource value: 0x7F0F0137
- public const int goto_ad_close_page = 2131689783;
-
- // aapt resource value: 0x7F0F0138
- public const int goto_cameralist_page_txt = 2131689784;
-
- // aapt resource value: 0x7F0F0139
- public const int goto_help_error_page = 2131689785;
-
- // aapt resource value: 0x7F0F013A
- public const int goto_mall_to_see = 2131689786;
+ public const int get_sms_code = 2131689780;
// aapt resource value: 0x7F0F0135
- public const int go_to_connect_wifi = 2131689781;
+ public const int get_sms_code_fail = 2131689781;
// aapt resource value: 0x7F0F0136
- public const int go_to_see_immediately = 2131689782;
+ public const int give_up_adding = 2131689782;
+
+ // aapt resource value: 0x7F0F0139
+ public const int goto_ad_close_page = 2131689785;
+
+ // aapt resource value: 0x7F0F013A
+ public const int goto_cameralist_page_txt = 2131689786;
// aapt resource value: 0x7F0F013B
- public const int hc_net_account_pwd_error = 2131689787;
+ public const int goto_help_error_page = 2131689787;
// aapt resource value: 0x7F0F013C
- public const int hc_net_error = 2131689788;
+ public const int goto_mall_to_see = 2131689788;
+
+ // aapt resource value: 0x7F0F0137
+ public const int go_to_connect_wifi = 2131689783;
+
+ // aapt resource value: 0x7F0F0138
+ public const int go_to_see_immediately = 2131689784;
// aapt resource value: 0x7F0F013D
- public const int hms_abort = 2131689789;
+ public const int hc_net_account_pwd_error = 2131689789;
// aapt resource value: 0x7F0F013E
- public const int hms_abort_message = 2131689790;
+ public const int hc_net_error = 2131689790;
// aapt resource value: 0x7F0F013F
- public const int hms_bindfaildlg_message = 2131689791;
+ public const int hms_abort = 2131689791;
// aapt resource value: 0x7F0F0140
- public const int hms_bindfaildlg_title = 2131689792;
+ public const int hms_abort_message = 2131689792;
// aapt resource value: 0x7F0F0141
- public const int hms_cancel = 2131689793;
-
- // aapt resource value: 0x7F0F0143
- public const int hms_checking = 2131689795;
+ public const int hms_bindfaildlg_message = 2131689793;
// aapt resource value: 0x7F0F0142
- public const int hms_check_failure = 2131689794;
+ public const int hms_bindfaildlg_title = 2131689794;
- // aapt resource value: 0x7F0F0144
- public const int hms_confirm = 2131689796;
-
- // aapt resource value: 0x7F0F0148
- public const int hms_downloading_loading = 2131689800;
+ // aapt resource value: 0x7F0F0143
+ public const int hms_cancel = 2131689795;
// aapt resource value: 0x7F0F0145
- public const int hms_download_failure = 2131689797;
+ public const int hms_checking = 2131689797;
+
+ // aapt resource value: 0x7F0F0144
+ public const int hms_check_failure = 2131689796;
// aapt resource value: 0x7F0F0146
- public const int hms_download_no_space = 2131689798;
-
- // aapt resource value: 0x7F0F0147
- public const int hms_download_retry = 2131689799;
-
- // aapt resource value: 0x7F0F0149
- public const int hms_install = 2131689801;
+ public const int hms_confirm = 2131689798;
// aapt resource value: 0x7F0F014A
- public const int hms_install_message = 2131689802;
+ public const int hms_downloading_loading = 2131689802;
+
+ // aapt resource value: 0x7F0F0147
+ public const int hms_download_failure = 2131689799;
+
+ // aapt resource value: 0x7F0F0148
+ public const int hms_download_no_space = 2131689800;
+
+ // aapt resource value: 0x7F0F0149
+ public const int hms_download_retry = 2131689801;
// aapt resource value: 0x7F0F014B
- public const int hms_push_channel = 2131689803;
+ public const int hms_install = 2131689803;
// aapt resource value: 0x7F0F014C
- public const int hms_push_google = 2131689804;
+ public const int hms_install_message = 2131689804;
// aapt resource value: 0x7F0F014D
- public const int hms_push_vmall = 2131689805;
+ public const int hms_push_channel = 2131689805;
// aapt resource value: 0x7F0F014E
- public const int hms_retry = 2131689806;
+ public const int hms_push_google = 2131689806;
// aapt resource value: 0x7F0F014F
- public const int hms_update = 2131689807;
+ public const int hms_push_vmall = 2131689807;
// aapt resource value: 0x7F0F0150
- public const int hms_update_continue = 2131689808;
+ public const int hms_retry = 2131689808;
// aapt resource value: 0x7F0F0151
- public const int hms_update_message = 2131689809;
+ public const int hms_update = 2131689809;
// aapt resource value: 0x7F0F0152
- public const int hms_update_message_new = 2131689810;
+ public const int hms_update_continue = 2131689810;
// aapt resource value: 0x7F0F0153
- public const int hms_update_nettype = 2131689811;
+ public const int hms_update_message = 2131689811;
// aapt resource value: 0x7F0F0154
- public const int hms_update_title = 2131689812;
+ public const int hms_update_message_new = 2131689812;
// aapt resource value: 0x7F0F0155
- public const int how_to_reset = 2131689813;
+ public const int hms_update_nettype = 2131689813;
// aapt resource value: 0x7F0F0156
- public const int if_your_device_has_been_used = 2131689814;
+ public const int hms_update_title = 2131689814;
// aapt resource value: 0x7F0F0157
- public const int if_your_device_has_set_time = 2131689815;
+ public const int how_to_reset = 2131689815;
// aapt resource value: 0x7F0F0158
- public const int input_device_picture_size = 2131689816;
+ public const int if_your_device_has_been_used = 2131689816;
// aapt resource value: 0x7F0F0159
- public const int input_device_picture_uuid = 2131689817;
+ public const int if_your_device_has_set_time = 2131689817;
// aapt resource value: 0x7F0F015A
- public const int input_device_verify_code = 2131689818;
+ public const int input_device_picture_size = 2131689818;
// aapt resource value: 0x7F0F015B
- public const int input_device_video_uuid = 2131689819;
+ public const int input_device_picture_uuid = 2131689819;
// aapt resource value: 0x7F0F015C
- public const int interface_call_demo_txt = 2131689820;
+ public const int input_device_verify_code = 2131689820;
// aapt resource value: 0x7F0F015D
- public const int interface_test_api = 2131689821;
+ public const int input_device_video_uuid = 2131689821;
// aapt resource value: 0x7F0F015E
- public const int interface_test_hint_input_serial = 2131689822;
+ public const int interface_call_demo_txt = 2131689822;
// aapt resource value: 0x7F0F015F
- public const int interface_test_openCloudPage = 2131689823;
+ public const int interface_test_api = 2131689823;
// aapt resource value: 0x7F0F0160
- public const int interface_test_show_limit_dialog = 2131689824;
+ public const int interface_test_hint_input_serial = 2131689824;
// aapt resource value: 0x7F0F0161
- public const int interface_test_v33_api = 2131689825;
+ public const int interface_test_openCloudPage = 2131689825;
// aapt resource value: 0x7F0F0162
- public const int invalid_app_key_or_access_token = 2131689826;
+ public const int interface_test_show_limit_dialog = 2131689826;
// aapt resource value: 0x7F0F0163
- public const int ip_camera = 2131689827;
+ public const int interface_test_v33_api = 2131689827;
// aapt resource value: 0x7F0F0164
- public const int keyboard = 2131689828;
+ public const int invalid_app_key_or_access_token = 2131689828;
// aapt resource value: 0x7F0F0165
- public const int lan_camera_name = 2131689829;
+ public const int ip_camera = 2131689829;
// aapt resource value: 0x7F0F0166
- public const int lan_device_login_default_name = 2131689830;
+ public const int keyboard = 2131689830;
// aapt resource value: 0x7F0F0167
- public const int lan_device_login_title = 2131689831;
+ public const int lan_camera_name = 2131689831;
// aapt resource value: 0x7F0F0168
- public const int lan_device_pwd_tip = 2131689832;
+ public const int lan_device_login_default_name = 2131689832;
// aapt resource value: 0x7F0F0169
- public const int later_alarm = 2131689833;
+ public const int lan_device_login_title = 2131689833;
// aapt resource value: 0x7F0F016A
- public const int linphone_sdk_branch = 2131689834;
+ public const int lan_device_pwd_tip = 2131689834;
// aapt resource value: 0x7F0F016B
- public const int linphone_sdk_version = 2131689835;
+ public const int later_alarm = 2131689835;
// aapt resource value: 0x7F0F016C
- public const int loading = 2131689836;
+ public const int linphone_sdk_branch = 2131689836;
// aapt resource value: 0x7F0F016D
- public const int loading_text_default = 2131689837;
-
- // aapt resource value: 0x7F0F0172
- public const int localmgt_video_square_txt = 2131689842;
+ public const int linphone_sdk_version = 2131689837;
// aapt resource value: 0x7F0F016E
- public const int local_network_exception = 2131689838;
+ public const int loading = 2131689838;
// aapt resource value: 0x7F0F016F
- public const int local_play_hour = 2131689839;
-
- // aapt resource value: 0x7F0F0170
- public const int local_realplay = 2131689840;
-
- // aapt resource value: 0x7F0F0171
- public const int local_video_not_delete = 2131689841;
-
- // aapt resource value: 0x7F0F0173
- public const int login_by_ezviz_account = 2131689843;
+ public const int loading_text_default = 2131689839;
// aapt resource value: 0x7F0F0174
- public const int login_expire = 2131689844;
+ public const int localmgt_video_square_txt = 2131689844;
+
+ // aapt resource value: 0x7F0F0170
+ public const int local_network_exception = 2131689840;
+
+ // aapt resource value: 0x7F0F0171
+ public const int local_play_hour = 2131689841;
+
+ // aapt resource value: 0x7F0F0172
+ public const int local_realplay = 2131689842;
+
+ // aapt resource value: 0x7F0F0173
+ public const int local_video_not_delete = 2131689843;
// aapt resource value: 0x7F0F0175
- public const int login_password_tv_txt = 2131689845;
+ public const int login_by_ezviz_account = 2131689845;
// aapt resource value: 0x7F0F0176
- public const int lp_answerStr = 2131689846;
+ public const int login_expire = 2131689846;
// aapt resource value: 0x7F0F0177
- public const int lp_callingStr = 2131689847;
+ public const int login_password_tv_txt = 2131689847;
// aapt resource value: 0x7F0F0178
- public const int lp_endMonitoringStr = 2131689848;
+ public const int login_privacy_policy = 2131689848;
// aapt resource value: 0x7F0F0179
- public const int lp_endOfCallStr = 2131689849;
+ public const int login_user_service_agreement = 2131689849;
// aapt resource value: 0x7F0F017A
- public const int lp_hangupStr = 2131689850;
+ public const int lp_answerStr = 2131689850;
// aapt resource value: 0x7F0F017B
- public const int lp_okStr = 2131689851;
+ public const int lp_callingStr = 2131689851;
// aapt resource value: 0x7F0F017C
- public const int lp_operationFailedStr = 2131689852;
+ public const int lp_endMonitoringStr = 2131689852;
// aapt resource value: 0x7F0F017D
- public const int lp_outdoorUnitStr = 2131689853;
+ public const int lp_endOfCallStr = 2131689853;
// aapt resource value: 0x7F0F017E
- public const int lp_refuseStr = 2131689854;
+ public const int lp_hangupStr = 2131689854;
// aapt resource value: 0x7F0F017F
- public const int lp_saveToTheAlbumsStr = 2131689855;
+ public const int lp_okStr = 2131689855;
// aapt resource value: 0x7F0F0180
- public const int lp_screenshotStr = 2131689856;
+ public const int lp_operationFailedStr = 2131689856;
// aapt resource value: 0x7F0F0181
- public const int lp_tipStr = 2131689857;
-
- // aapt resource value: 0x7F0F0184
- public const int lp_unlockfailureStr = 2131689860;
+ public const int lp_outdoorUnitStr = 2131689857;
// aapt resource value: 0x7F0F0182
- public const int lp_unlockStr = 2131689858;
+ public const int lp_refuseStr = 2131689858;
// aapt resource value: 0x7F0F0183
- public const int lp_unlockSuccessfullyStr = 2131689859;
+ public const int lp_saveToTheAlbumsStr = 2131689859;
+
+ // aapt resource value: 0x7F0F0184
+ public const int lp_screenshotStr = 2131689860;
// aapt resource value: 0x7F0F0185
- public const int main_tab_second_tab = 2131689861;
-
- // aapt resource value: 0x7F0F0186
- public const int message_come_from_tip = 2131689862;
-
- // aapt resource value: 0x7F0F0187
- public const int message_encrypt_inputpsw_tip_title = 2131689863;
+ public const int lp_tipStr = 2131689861;
// aapt resource value: 0x7F0F0188
- public const int message_live = 2131689864;
+ public const int lp_unlockfailureStr = 2131689864;
+
+ // aapt resource value: 0x7F0F0186
+ public const int lp_unlockStr = 2131689862;
+
+ // aapt resource value: 0x7F0F0187
+ public const int lp_unlockSuccessfullyStr = 2131689863;
// aapt resource value: 0x7F0F0189
- public const int message_no_data_text = 2131689865;
+ public const int main_tab_second_tab = 2131689865;
// aapt resource value: 0x7F0F018A
- public const int message_refresh_fail_network_exception = 2131689866;
+ public const int message_come_from_tip = 2131689866;
// aapt resource value: 0x7F0F018B
- public const int message_refresh_fail_server_exception = 2131689867;
+ public const int message_encrypt_inputpsw_tip_title = 2131689867;
// aapt resource value: 0x7F0F018C
- public const int message_video = 2131689868;
+ public const int message_live = 2131689868;
// aapt resource value: 0x7F0F018D
- public const int modify_online_schedule = 2131689869;
+ public const int message_no_data_text = 2131689869;
// aapt resource value: 0x7F0F018E
- public const int month = 2131689870;
+ public const int message_refresh_fail_network_exception = 2131689870;
// aapt resource value: 0x7F0F018F
- public const int more = 2131689871;
+ public const int message_refresh_fail_server_exception = 2131689871;
// aapt resource value: 0x7F0F0190
- public const int more_local_image = 2131689872;
+ public const int message_video = 2131689872;
// aapt resource value: 0x7F0F0191
- public const int more_setting = 2131689873;
+ public const int modify_online_schedule = 2131689873;
// aapt resource value: 0x7F0F0192
- public const int my_collect = 2131689874;
+ public const int month = 2131689874;
// aapt resource value: 0x7F0F0193
- public const int my_devices = 2131689875;
+ public const int more = 2131689875;
// aapt resource value: 0x7F0F0194
- public const int network_error_retry_prompt = 2131689876;
+ public const int more_local_image = 2131689876;
// aapt resource value: 0x7F0F0195
- public const int network_exception = 2131689877;
+ public const int more_setting = 2131689877;
// aapt resource value: 0x7F0F0196
- public const int network_video_recorder = 2131689878;
+ public const int my_collect = 2131689878;
// aapt resource value: 0x7F0F0197
- public const int newest_version = 2131689879;
+ public const int my_devices = 2131689879;
// aapt resource value: 0x7F0F0198
- public const int next_button_txt = 2131689880;
-
- // aapt resource value: 0x7F0F019F
- public const int not_find_any_devices = 2131689887;
-
- // aapt resource value: 0x7F0F01A0
- public const int not_now = 2131689888;
-
- // aapt resource value: 0x7F0F01A1
- public const int not_recognized_fingerprint_hint = 2131689889;
+ public const int network_error_retry_prompt = 2131689880;
// aapt resource value: 0x7F0F0199
- public const int no_event_device_prompt = 2131689881;
+ public const int network_exception = 2131689881;
// aapt resource value: 0x7F0F019A
- public const int no_leave_device_prompt = 2131689882;
+ public const int network_video_recorder = 2131689882;
// aapt resource value: 0x7F0F019B
- public const int no_more_alarm_tip = 2131689883;
+ public const int newest_version = 2131689883;
// aapt resource value: 0x7F0F019C
- public const int no_more_leave_tip = 2131689884;
-
- // aapt resource value: 0x7F0F019D
- public const int no_remote_data = 2131689885;
-
- // aapt resource value: 0x7F0F019E
- public const int no_result_text = 2131689886;
-
- // aapt resource value: 0x7F0F01A2
- public const int offline_warn_text = 2131689890;
-
- // aapt resource value: 0x7F0F01A4
- public const int online_time = 2131689892;
+ public const int next_button_txt = 2131689884;
// aapt resource value: 0x7F0F01A3
- public const int on_the_phone = 2131689891;
+ public const int not_find_any_devices = 2131689891;
+
+ // aapt resource value: 0x7F0F01A4
+ public const int not_now = 2131689892;
// aapt resource value: 0x7F0F01A5
- public const int open_camera_fail = 2131689893;
+ public const int not_recognized_fingerprint_hint = 2131689893;
+
+ // aapt resource value: 0x7F0F019D
+ public const int no_event_device_prompt = 2131689885;
+
+ // aapt resource value: 0x7F0F019E
+ public const int no_leave_device_prompt = 2131689886;
+
+ // aapt resource value: 0x7F0F019F
+ public const int no_more_alarm_tip = 2131689887;
+
+ // aapt resource value: 0x7F0F01A0
+ public const int no_more_leave_tip = 2131689888;
+
+ // aapt resource value: 0x7F0F01A1
+ public const int no_remote_data = 2131689889;
+
+ // aapt resource value: 0x7F0F01A2
+ public const int no_result_text = 2131689890;
// aapt resource value: 0x7F0F01A6
- public const int open_camera_lens = 2131689894;
-
- // aapt resource value: 0x7F0F01A7
- public const int open_source_localization = 2131689895;
+ public const int offline_warn_text = 2131689894;
// aapt resource value: 0x7F0F01A8
- public const int open_ys_service = 2131689896;
+ public const int online_time = 2131689896;
+
+ // aapt resource value: 0x7F0F01A7
+ public const int on_the_phone = 2131689895;
// aapt resource value: 0x7F0F01A9
- public const int open_ys_service_fail = 2131689897;
+ public const int open_camera_fail = 2131689897;
// aapt resource value: 0x7F0F01AA
- public const int open_ys_service_success = 2131689898;
+ public const int open_camera_lens = 2131689898;
// aapt resource value: 0x7F0F01AB
- public const int operational_fail = 2131689899;
+ public const int open_source_localization = 2131689899;
// aapt resource value: 0x7F0F01AC
- public const int option_support_web = 2131689900;
+ public const int open_ys_service = 2131689900;
// aapt resource value: 0x7F0F01AD
- public const int password_et_hint = 2131689901;
+ public const int open_ys_service_fail = 2131689901;
// aapt resource value: 0x7F0F01AE
- public const int password_security_txt = 2131689902;
+ public const int open_ys_service_success = 2131689902;
// aapt resource value: 0x7F0F01AF
- public const int password_toggle_content_description = 2131689903;
+ public const int operational_fail = 2131689903;
// aapt resource value: 0x7F0F01B0
- public const int path_password_eye = 2131689904;
+ public const int option_support_web = 2131689904;
// aapt resource value: 0x7F0F01B1
- public const int path_password_eye_mask_strike_through = 2131689905;
+ public const int password_et_hint = 2131689905;
// aapt resource value: 0x7F0F01B2
- public const int path_password_eye_mask_visible = 2131689906;
+ public const int password_security_txt = 2131689906;
// aapt resource value: 0x7F0F01B3
- public const int path_password_strike_through = 2131689907;
+ public const int password_toggle_content_description = 2131689907;
// aapt resource value: 0x7F0F01B4
- public const int pickerview_cancel = 2131689908;
+ public const int path_password_eye = 2131689908;
// aapt resource value: 0x7F0F01B5
- public const int pickerview_day = 2131689909;
+ public const int path_password_eye_mask_strike_through = 2131689909;
// aapt resource value: 0x7F0F01B6
- public const int pickerview_hours = 2131689910;
+ public const int path_password_eye_mask_visible = 2131689910;
// aapt resource value: 0x7F0F01B7
- public const int pickerview_minutes = 2131689911;
+ public const int path_password_strike_through = 2131689911;
// aapt resource value: 0x7F0F01B8
- public const int pickerview_month = 2131689912;
+ public const int pickerview_cancel = 2131689912;
// aapt resource value: 0x7F0F01B9
- public const int pickerview_seconds = 2131689913;
+ public const int pickerview_day = 2131689913;
// aapt resource value: 0x7F0F01BA
- public const int pickerview_submit = 2131689914;
+ public const int pickerview_hours = 2131689914;
// aapt resource value: 0x7F0F01BB
- public const int pickerview_year = 2131689915;
-
- // aapt resource value: 0x7F0F01BD
- public const int platform_login_button_txt = 2131689917;
+ public const int pickerview_minutes = 2131689915;
// aapt resource value: 0x7F0F01BC
- public const int plat_connected = 2131689916;
+ public const int pickerview_month = 2131689916;
+
+ // aapt resource value: 0x7F0F01BD
+ public const int pickerview_seconds = 2131689917;
// aapt resource value: 0x7F0F01BE
- public const int play_hour = 2131689918;
+ public const int pickerview_submit = 2131689918;
// aapt resource value: 0x7F0F01BF
- public const int please_connect_the_power = 2131689919;
+ public const int pickerview_year = 2131689919;
// aapt resource value: 0x7F0F01C1
- public const int please_input_phonenumber_txt = 2131689921;
+ public const int platform_login_button_txt = 2131689921;
// aapt resource value: 0x7F0F01C0
- public const int please_input_phone_txt = 2131689920;
+ public const int plat_connected = 2131689920;
// aapt resource value: 0x7F0F01C2
- public const int please_input_platform_accesstoken_txt = 2131689922;
+ public const int play_hour = 2131689922;
// aapt resource value: 0x7F0F01C3
- public const int please_input_sign_get_sms_txt = 2131689923;
-
- // aapt resource value: 0x7F0F01C4
- public const int please_input_sign_txt = 2131689924;
+ public const int please_connect_the_power = 2131689923;
// aapt resource value: 0x7F0F01C5
- public const int please_input_userid_txt = 2131689925;
+ public const int please_input_phonenumber_txt = 2131689925;
+
+ // aapt resource value: 0x7F0F01C4
+ public const int please_input_phone_txt = 2131689924;
// aapt resource value: 0x7F0F01C6
- public const int please_open_wifi_network = 2131689926;
+ public const int please_input_platform_accesstoken_txt = 2131689926;
// aapt resource value: 0x7F0F01C7
- public const int please_open_wifi_network_sadp = 2131689927;
+ public const int please_input_sign_get_sms_txt = 2131689927;
// aapt resource value: 0x7F0F01C8
- public const int please_operate_after_select_any_record = 2131689928;
+ public const int please_input_sign_txt = 2131689928;
// aapt resource value: 0x7F0F01C9
- public const int please_try_connect_device_hotspot_manually = 2131689929;
+ public const int please_input_userid_txt = 2131689929;
// aapt resource value: 0x7F0F01CA
- public const int plug = 2131689930;
+ public const int please_open_wifi_network = 2131689930;
// aapt resource value: 0x7F0F01CB
- public const int pm = 2131689931;
+ public const int please_open_wifi_network_sadp = 2131689931;
// aapt resource value: 0x7F0F01CC
- public const int press_again_to_exit = 2131689932;
+ public const int please_operate_after_select_any_record = 2131689932;
// aapt resource value: 0x7F0F01CD
- public const int press_to_talk_release_to_listen = 2131689933;
+ public const int please_try_connect_device_hotspot_manually = 2131689933;
// aapt resource value: 0x7F0F01CE
- public const int probe_not_support_tip = 2131689934;
+ public const int plug = 2131689934;
// aapt resource value: 0x7F0F01CF
- public const int promptUserToActivate = 2131689935;
+ public const int pm = 2131689935;
// aapt resource value: 0x7F0F01D0
- public const int ptz = 2131689936;
+ public const int press_again_to_exit = 2131689936;
// aapt resource value: 0x7F0F01D1
- public const int ptz_control_timeout_cruise_track_failed = 2131689937;
+ public const int press_to_talk_release_to_listen = 2131689937;
// aapt resource value: 0x7F0F01D2
- public const int ptz_control_timeout_sound_lacalization_failed = 2131689938;
+ public const int privacy_policy_and_service_agreement = 2131689938;
// aapt resource value: 0x7F0F01D3
- public const int ptz_is_preseting = 2131689939;
+ public const int probe_not_support_tip = 2131689939;
// aapt resource value: 0x7F0F01D4
- public const int ptz_mirroring_failed = 2131689940;
+ public const int promptUserToActivate = 2131689940;
// aapt resource value: 0x7F0F01D5
- public const int ptz_operation_failed = 2131689941;
+ public const int ptz = 2131689941;
// aapt resource value: 0x7F0F01D6
- public const int ptz_operation_too_frequently = 2131689942;
+ public const int ptz_control_timeout_cruise_track_failed = 2131689942;
// aapt resource value: 0x7F0F01D7
- public const int ptz_preset_current_position_failed = 2131689943;
+ public const int ptz_control_timeout_sound_lacalization_failed = 2131689943;
// aapt resource value: 0x7F0F01D8
- public const int ptz_preset_exceed_maxnum_failed = 2131689944;
+ public const int ptz_is_preseting = 2131689944;
// aapt resource value: 0x7F0F01D9
- public const int ptz_preset_invalid_position_failed = 2131689945;
+ public const int ptz_mirroring_failed = 2131689945;
// aapt resource value: 0x7F0F01DA
- public const int ptz_preset_sound_localization_failed = 2131689946;
+ public const int ptz_operation_failed = 2131689946;
// aapt resource value: 0x7F0F01DB
- public const int ptz_privacying_failed = 2131689947;
+ public const int ptz_operation_too_frequently = 2131689947;
// aapt resource value: 0x7F0F01DC
- public const int push_cat_body = 2131689948;
+ public const int ptz_preset_current_position_failed = 2131689948;
// aapt resource value: 0x7F0F01DD
- public const int push_cat_head = 2131689949;
+ public const int ptz_preset_exceed_maxnum_failed = 2131689949;
// aapt resource value: 0x7F0F01DE
- public const int push_event_alarm_title = 2131689950;
+ public const int ptz_preset_invalid_position_failed = 2131689950;
// aapt resource value: 0x7F0F01DF
- public const int push_event_from = 2131689951;
+ public const int ptz_preset_sound_localization_failed = 2131689951;
// aapt resource value: 0x7F0F01E0
- public const int push_event_get = 2131689952;
+ public const int ptz_privacying_failed = 2131689952;
// aapt resource value: 0x7F0F01E1
- public const int push_event_get_count = 2131689953;
+ public const int push_cat_body = 2131689953;
// aapt resource value: 0x7F0F01E2
- public const int push_out_event_alarm_title = 2131689954;
+ public const int push_cat_head = 2131689954;
// aapt resource value: 0x7F0F01E3
- public const int pwd_not_contain_chinese = 2131689955;
+ public const int push_event_alarm_title = 2131689955;
// aapt resource value: 0x7F0F01E4
- public const int qrcode_card = 2131689956;
+ public const int push_event_from = 2131689956;
// aapt resource value: 0x7F0F01E5
- public const int quality_balanced = 2131689957;
+ public const int push_event_get = 2131689957;
// aapt resource value: 0x7F0F01E6
- public const int quality_flunet = 2131689958;
+ public const int push_event_get_count = 2131689958;
// aapt resource value: 0x7F0F01E7
- public const int quality_hd = 2131689959;
+ public const int push_out_event_alarm_title = 2131689959;
// aapt resource value: 0x7F0F01E8
- public const int quality_super_hd = 2131689960;
-
- // aapt resource value: 0x7F0F01EF
- public const int querying_camera_text = 2131689967;
+ public const int pwd_not_contain_chinese = 2131689960;
// aapt resource value: 0x7F0F01E9
- public const int query_camera_fail = 2131689961;
+ public const int qrcode_card = 2131689961;
// aapt resource value: 0x7F0F01EA
- public const int query_camera_fail_network_exception = 2131689962;
+ public const int quality_balanced = 2131689962;
// aapt resource value: 0x7F0F01EB
- public const int query_camera_fail_network_exception_or_server_exception = 2131689963;
+ public const int quality_flunet = 2131689963;
// aapt resource value: 0x7F0F01EC
- public const int query_camera_fail_not_exit = 2131689964;
+ public const int quality_hd = 2131689964;
// aapt resource value: 0x7F0F01ED
- public const int query_camera_fail_repeat_error = 2131689965;
-
- // aapt resource value: 0x7F0F01EE
- public const int query_camera_fail_server_exception = 2131689966;
-
- // aapt resource value: 0x7F0F01F0
- public const int readed = 2131689968;
-
- // aapt resource value: 0x7F0F01F1
- public const int realplay = 2131689969;
-
- // aapt resource value: 0x7F0F01F2
- public const int realplay_close_sound_localization_fail = 2131689970;
-
- // aapt resource value: 0x7F0F01F3
- public const int realplay_encrypt_password_error_message = 2131689971;
+ public const int quality_super_hd = 2131689965;
// aapt resource value: 0x7F0F01F4
- public const int realplay_encrypt_password_error_title = 2131689972;
+ public const int querying_camera_text = 2131689972;
- // aapt resource value: 0x7F0F01F5
- public const int realplay_fail_connect_device = 2131689973;
+ // aapt resource value: 0x7F0F01EE
+ public const int query_camera_fail = 2131689966;
+
+ // aapt resource value: 0x7F0F01EF
+ public const int query_camera_fail_network_exception = 2131689967;
+
+ // aapt resource value: 0x7F0F01F0
+ public const int query_camera_fail_network_exception_or_server_exception = 2131689968;
+
+ // aapt resource value: 0x7F0F01F1
+ public const int query_camera_fail_not_exit = 2131689969;
+
+ // aapt resource value: 0x7F0F01F2
+ public const int query_camera_fail_repeat_error = 2131689970;
+
+ // aapt resource value: 0x7F0F01F3
+ public const int query_camera_fail_server_exception = 2131689971;
// aapt resource value: 0x7F0F01F6
- public const int realplay_fail_device_not_exist = 2131689974;
+ public const int readed = 2131689974;
+
+ // aapt resource value: 0x7F0F01F5
+ public const int read_privacy_policy_and_service_agreement_tip = 2131689973;
// aapt resource value: 0x7F0F01F7
- public const int realplay_full_talk_start_tip = 2131689975;
+ public const int realplay = 2131689975;
// aapt resource value: 0x7F0F01F8
- public const int realplay_loading = 2131689976;
+ public const int realplay_close_sound_localization_fail = 2131689976;
// aapt resource value: 0x7F0F01F9
- public const int realplay_login_password_error = 2131689977;
+ public const int realplay_encrypt_password_error_message = 2131689977;
// aapt resource value: 0x7F0F01FA
- public const int realplay_login_password_msg = 2131689978;
+ public const int realplay_encrypt_password_error_title = 2131689978;
// aapt resource value: 0x7F0F01FB
- public const int realplay_no_encrypt_password_error = 2131689979;
+ public const int realplay_fail_connect_device = 2131689979;
// aapt resource value: 0x7F0F01FC
- public const int realplay_no_permission = 2131689980;
+ public const int realplay_fail_device_not_exist = 2131689980;
// aapt resource value: 0x7F0F01FD
- public const int realplay_open_sound_localization_fail = 2131689981;
+ public const int realplay_full_talk_start_tip = 2131689981;
// aapt resource value: 0x7F0F01FE
- public const int realplay_password_error_message1 = 2131689982;
+ public const int realplay_loading = 2131689982;
// aapt resource value: 0x7F0F01FF
- public const int realplay_password_error_message3 = 2131689983;
+ public const int realplay_login_password_error = 2131689983;
// aapt resource value: 0x7F0F0200
- public const int realplay_password_error_message4 = 2131689984;
+ public const int realplay_login_password_msg = 2131689984;
// aapt resource value: 0x7F0F0201
- public const int realplay_password_error_title = 2131689985;
+ public const int realplay_no_encrypt_password_error = 2131689985;
// aapt resource value: 0x7F0F0202
- public const int realplay_play_fail = 2131689986;
+ public const int realplay_no_permission = 2131689986;
// aapt resource value: 0x7F0F0203
- public const int realplay_play_fail_becauseof_network = 2131689987;
+ public const int realplay_open_sound_localization_fail = 2131689987;
// aapt resource value: 0x7F0F0204
- public const int realplay_play_no_video_source = 2131689988;
+ public const int realplay_password_error_message1 = 2131689988;
// aapt resource value: 0x7F0F0205
- public const int realplay_play_talkback_fail = 2131689989;
+ public const int realplay_password_error_message3 = 2131689989;
// aapt resource value: 0x7F0F0206
- public const int realplay_play_talkback_fail_ison = 2131689990;
+ public const int realplay_password_error_message4 = 2131689990;
// aapt resource value: 0x7F0F0207
- public const int realplay_play_talkback_fail_privacy = 2131689991;
+ public const int realplay_password_error_title = 2131689991;
// aapt resource value: 0x7F0F0208
- public const int realplay_play_talkback_network_exception = 2131689992;
+ public const int realplay_play_fail = 2131689992;
// aapt resource value: 0x7F0F0209
- public const int realplay_play_talkback_request_timeout = 2131689993;
+ public const int realplay_play_fail_becauseof_network = 2131689993;
// aapt resource value: 0x7F0F020A
- public const int realplay_set_fail_network = 2131689994;
+ public const int realplay_play_no_video_source = 2131689994;
// aapt resource value: 0x7F0F020B
- public const int realplay_set_fail_status = 2131689995;
+ public const int realplay_play_talkback_fail = 2131689995;
// aapt resource value: 0x7F0F020C
- public const int realplay_set_vediomode_fail = 2131689996;
+ public const int realplay_play_talkback_fail_ison = 2131689996;
// aapt resource value: 0x7F0F020D
- public const int realplay_share_no_permission = 2131689997;
+ public const int realplay_play_talkback_fail_privacy = 2131689997;
// aapt resource value: 0x7F0F020E
- public const int realplay_share_time_over = 2131689998;
+ public const int realplay_play_talkback_network_exception = 2131689998;
// aapt resource value: 0x7F0F020F
- public const int realplay_verifycode_error_message0 = 2131689999;
+ public const int realplay_play_talkback_request_timeout = 2131689999;
// aapt resource value: 0x7F0F0210
- public const int realplay_verifycode_error_placehold = 2131690000;
+ public const int realplay_set_fail_network = 2131690000;
// aapt resource value: 0x7F0F0211
- public const int receice_leave_msg_audio = 2131690001;
+ public const int realplay_set_fail_status = 2131690001;
// aapt resource value: 0x7F0F0212
- public const int receice_leave_msg_video = 2131690002;
+ public const int realplay_set_vediomode_fail = 2131690002;
// aapt resource value: 0x7F0F0213
- public const int record = 2131690003;
+ public const int realplay_share_no_permission = 2131690003;
// aapt resource value: 0x7F0F0214
- public const int refresh = 2131690004;
+ public const int realplay_share_time_over = 2131690004;
// aapt resource value: 0x7F0F0215
- public const int refresh_empty_hint = 2131690005;
+ public const int realplay_verifycode_error_message0 = 2131690005;
// aapt resource value: 0x7F0F0216
- public const int refresh_fail_hint = 2131690006;
-
- // aapt resource value: 0x7F0F0218
- public const int remoteplayback_capture_fail = 2131690008;
-
- // aapt resource value: 0x7F0F0219
- public const int remoteplayback_capture_fail_for_memory = 2131690009;
-
- // aapt resource value: 0x7F0F021A
- public const int remoteplayback_connect_device_error = 2131690010;
-
- // aapt resource value: 0x7F0F021B
- public const int remoteplayback_connect_server_error = 2131690011;
-
- // aapt resource value: 0x7F0F021C
- public const int remoteplayback_fail = 2131690012;
-
- // aapt resource value: 0x7F0F021D
- public const int remoteplayback_norecordfile = 2131690013;
-
- // aapt resource value: 0x7F0F021E
- public const int remoteplayback_norecordfile_alarm = 2131690014;
-
- // aapt resource value: 0x7F0F021F
- public const int remoteplayback_over_link = 2131690015;
-
- // aapt resource value: 0x7F0F0220
- public const int remoteplayback_record_fail = 2131690016;
-
- // aapt resource value: 0x7F0F0221
- public const int remoteplayback_record_fail_for_memory = 2131690017;
+ public const int realplay_verifycode_error_placehold = 2131690006;
// aapt resource value: 0x7F0F0217
- public const int remoteplayback_SDCard_disable_use = 2131690007;
+ public const int receice_leave_msg_audio = 2131690007;
+
+ // aapt resource value: 0x7F0F0218
+ public const int receice_leave_msg_video = 2131690008;
+
+ // aapt resource value: 0x7F0F0219
+ public const int record = 2131690009;
+
+ // aapt resource value: 0x7F0F021A
+ public const int refresh = 2131690010;
+
+ // aapt resource value: 0x7F0F021B
+ public const int refresh_empty_hint = 2131690011;
+
+ // aapt resource value: 0x7F0F021C
+ public const int refresh_fail_hint = 2131690012;
+
+ // aapt resource value: 0x7F0F021E
+ public const int remoteplayback_capture_fail = 2131690014;
+
+ // aapt resource value: 0x7F0F021F
+ public const int remoteplayback_capture_fail_for_memory = 2131690015;
+
+ // aapt resource value: 0x7F0F0220
+ public const int remoteplayback_connect_device_error = 2131690016;
+
+ // aapt resource value: 0x7F0F0221
+ public const int remoteplayback_connect_server_error = 2131690017;
// aapt resource value: 0x7F0F0222
- public const int remoteplayback_searchfile_fail_for_device = 2131690018;
+ public const int remoteplayback_fail = 2131690018;
// aapt resource value: 0x7F0F0223
- public const int remoteplayback_searchfile_fail_for_network = 2131690019;
+ public const int remoteplayback_norecordfile = 2131690019;
// aapt resource value: 0x7F0F0224
- public const int reset_10_sec_to_release = 2131690020;
+ public const int remoteplayback_norecordfile_alarm = 2131690020;
// aapt resource value: 0x7F0F0225
- public const int reset_device = 2131690021;
+ public const int remoteplayback_over_link = 2131690021;
// aapt resource value: 0x7F0F0226
- public const int result_txt = 2131690022;
+ public const int remoteplayback_record_fail = 2131690022;
// aapt resource value: 0x7F0F0227
- public const int retry = 2131690023;
+ public const int remoteplayback_record_fail_for_memory = 2131690023;
- // aapt resource value: 0x7F0F0229
- public const int router = 2131690025;
+ // aapt resource value: 0x7F0F021D
+ public const int remoteplayback_SDCard_disable_use = 2131690013;
// aapt resource value: 0x7F0F0228
- public const int route_status_light = 2131690024;
+ public const int remoteplayback_searchfile_fail_for_device = 2131690024;
+
+ // aapt resource value: 0x7F0F0229
+ public const int remoteplayback_searchfile_fail_for_network = 2131690025;
// aapt resource value: 0x7F0F022A
- public const int sadp_activate_state1 = 2131690026;
+ public const int reset_10_sec_to_release = 2131690026;
// aapt resource value: 0x7F0F022B
- public const int sadp_activate_state2 = 2131690027;
+ public const int reset_device = 2131690027;
// aapt resource value: 0x7F0F022C
- public const int sadp_password_input_hint = 2131690028;
+ public const int result_txt = 2131690028;
// aapt resource value: 0x7F0F022D
- public const int sadp_password_toast = 2131690029;
-
- // aapt resource value: 0x7F0F022E
- public const int sadp_password_too_weak = 2131690030;
+ public const int retry = 2131690029;
// aapt resource value: 0x7F0F022F
- public const int sadp_quit_activate = 2131690031;
+ public const int router = 2131690031;
+
+ // aapt resource value: 0x7F0F022E
+ public const int route_status_light = 2131690030;
// aapt resource value: 0x7F0F0230
- public const int save_encrypt_password_fail_network_exception = 2131690032;
+ public const int sadp_activate_state1 = 2131690032;
// aapt resource value: 0x7F0F0231
- public const int scan_add = 2131690033;
+ public const int sadp_activate_state2 = 2131690033;
// aapt resource value: 0x7F0F0232
- public const int scan_connet_network = 2131690034;
+ public const int sadp_password_input_hint = 2131690034;
// aapt resource value: 0x7F0F0233
- public const int scan_cue_txt = 2131690035;
+ public const int sadp_password_toast = 2131690035;
// aapt resource value: 0x7F0F0234
- public const int scan_device_add_by_others = 2131690036;
+ public const int sadp_password_too_weak = 2131690036;
// aapt resource value: 0x7F0F0235
- public const int scan_device_search = 2131690037;
+ public const int sadp_quit_activate = 2131690037;
// aapt resource value: 0x7F0F0236
- public const int scan_device_serial_no = 2131690038;
+ public const int save_encrypt_password_fail_network_exception = 2131690038;
// aapt resource value: 0x7F0F0237
- public const int scan_network_unavailible = 2131690039;
+ public const int scan_add = 2131690039;
// aapt resource value: 0x7F0F0238
- public const int scan_probe_qrcode_error = 2131690040;
+ public const int scan_connet_network = 2131690040;
// aapt resource value: 0x7F0F0239
- public const int scan_search_probe_qrcode = 2131690041;
+ public const int scan_cue_txt = 2131690041;
// aapt resource value: 0x7F0F023A
- public const int scan_title_txt = 2131690042;
+ public const int scan_device_add_by_others = 2131690042;
// aapt resource value: 0x7F0F023B
- public const int screenshot_fail = 2131690043;
+ public const int scan_device_search = 2131690043;
// aapt resource value: 0x7F0F023C
- public const int screenshot_success = 2131690044;
+ public const int scan_device_serial_no = 2131690044;
// aapt resource value: 0x7F0F023D
- public const int sdk_is_init = 2131690045;
+ public const int scan_network_unavailible = 2131690045;
// aapt resource value: 0x7F0F023E
- public const int search = 2131690046;
+ public const int scan_probe_qrcode_error = 2131690046;
// aapt resource value: 0x7F0F023F
- public const int search_menu_title = 2131690047;
+ public const int scan_search_probe_qrcode = 2131690047;
// aapt resource value: 0x7F0F0240
- public const int secure_validate = 2131690048;
-
- // aapt resource value: 0x7F0F0242
- public const int secure_validatee_fail = 2131690050;
+ public const int scan_title_txt = 2131690048;
// aapt resource value: 0x7F0F0241
- public const int secure_validate_success = 2131690049;
+ public const int screenshot_fail = 2131690049;
+
+ // aapt resource value: 0x7F0F0242
+ public const int screenshot_success = 2131690050;
// aapt resource value: 0x7F0F0243
- public const int seek_camera_fail_device_not_support_shipin7 = 2131690051;
+ public const int sdk_is_init = 2131690051;
// aapt resource value: 0x7F0F0244
- public const int select_all = 2131690052;
+ public const int search = 2131690052;
// aapt resource value: 0x7F0F0245
- public const int select_date = 2131690053;
+ public const int search_menu_title = 2131690053;
// aapt resource value: 0x7F0F0246
- public const int serial_add_hint = 2131690054;
-
- // aapt resource value: 0x7F0F0247
- public const int serial_add_password_error_title = 2131690055;
+ public const int secure_validate = 2131690054;
// aapt resource value: 0x7F0F0248
- public const int serial_input_text = 2131690056;
+ public const int secure_validatee_fail = 2131690056;
+
+ // aapt resource value: 0x7F0F0247
+ public const int secure_validate_success = 2131690055;
// aapt resource value: 0x7F0F0249
- public const int serial_number_error = 2131690057;
+ public const int seek_camera_fail_device_not_support_shipin7 = 2131690057;
// aapt resource value: 0x7F0F024A
- public const int serial_number_is_null = 2131690058;
+ public const int select_all = 2131690058;
// aapt resource value: 0x7F0F024B
- public const int serial_number_put_the_right_no = 2131690059;
+ public const int select_date = 2131690059;
// aapt resource value: 0x7F0F024C
- public const int server_area = 2131690060;
-
- // aapt resource value: 0x7F0F0251
- public const int setting = 2131690065;
-
- // aapt resource value: 0x7F0F0252
- public const int setting_video_level = 2131690066;
+ public const int serial_add_hint = 2131690060;
// aapt resource value: 0x7F0F024D
- public const int set_defence_plan = 2131690061;
+ public const int serial_add_password_error_title = 2131690061;
// aapt resource value: 0x7F0F024E
- public const int set_device_wifi_network_need_reset_the_device = 2131690062;
+ public const int serial_input_text = 2131690062;
// aapt resource value: 0x7F0F024F
- public const int set_ptz_flip_fail = 2131690063;
+ public const int serial_number_error = 2131690063;
// aapt resource value: 0x7F0F0250
- public const int set_ptz_flip_success = 2131690064;
+ public const int serial_number_is_null = 2131690064;
- // aapt resource value: 0x7F0F0253
- public const int share_devices = 2131690067;
+ // aapt resource value: 0x7F0F0251
+ public const int serial_number_put_the_right_no = 2131690065;
- // aapt resource value: 0x7F0F0254
- public const int sms_verify_bind_error = 2131690068;
-
- // aapt resource value: 0x7F0F0255
- public const int sms_verify_code_received = 2131690069;
-
- // aapt resource value: 0x7F0F0256
- public const int source_detection_off = 2131690070;
+ // aapt resource value: 0x7F0F0252
+ public const int server_area = 2131690066;
// aapt resource value: 0x7F0F0257
- public const int source_detection_on = 2131690071;
+ public const int setting = 2131690071;
// aapt resource value: 0x7F0F0258
- public const int specified_device = 2131690072;
+ public const int setting_video_level = 2131690072;
+
+ // aapt resource value: 0x7F0F0253
+ public const int set_defence_plan = 2131690067;
+
+ // aapt resource value: 0x7F0F0254
+ public const int set_device_wifi_network_need_reset_the_device = 2131690068;
+
+ // aapt resource value: 0x7F0F0255
+ public const int set_ptz_flip_fail = 2131690069;
+
+ // aapt resource value: 0x7F0F0256
+ public const int set_ptz_flip_success = 2131690070;
// aapt resource value: 0x7F0F0259
- public const int srl_component_falsify = 2131690073;
+ public const int share_devices = 2131690073;
// aapt resource value: 0x7F0F025A
- public const int srl_content_empty = 2131690074;
+ public const int sms_verify_bind_error = 2131690074;
// aapt resource value: 0x7F0F025B
- public const int srl_footer_failed = 2131690075;
+ public const int sms_verify_code_received = 2131690075;
// aapt resource value: 0x7F0F025C
- public const int srl_footer_finish = 2131690076;
+ public const int source_detection_off = 2131690076;
// aapt resource value: 0x7F0F025D
- public const int srl_footer_loading = 2131690077;
+ public const int source_detection_on = 2131690077;
// aapt resource value: 0x7F0F025E
- public const int srl_footer_nothing = 2131690078;
+ public const int specified_device = 2131690078;
// aapt resource value: 0x7F0F025F
- public const int srl_footer_pulling = 2131690079;
+ public const int srl_component_falsify = 2131690079;
// aapt resource value: 0x7F0F0260
- public const int srl_footer_refreshing = 2131690080;
+ public const int srl_content_empty = 2131690080;
// aapt resource value: 0x7F0F0261
- public const int srl_footer_release = 2131690081;
+ public const int srl_footer_failed = 2131690081;
// aapt resource value: 0x7F0F0262
- public const int srl_header_failed = 2131690082;
+ public const int srl_footer_finish = 2131690082;
// aapt resource value: 0x7F0F0263
- public const int srl_header_finish = 2131690083;
+ public const int srl_footer_loading = 2131690083;
// aapt resource value: 0x7F0F0264
- public const int srl_header_loading = 2131690084;
+ public const int srl_footer_nothing = 2131690084;
// aapt resource value: 0x7F0F0265
- public const int srl_header_pulling = 2131690085;
+ public const int srl_footer_pulling = 2131690085;
// aapt resource value: 0x7F0F0266
- public const int srl_header_refreshing = 2131690086;
+ public const int srl_footer_refreshing = 2131690086;
// aapt resource value: 0x7F0F0267
- public const int srl_header_release = 2131690087;
+ public const int srl_footer_release = 2131690087;
// aapt resource value: 0x7F0F0268
- public const int srl_header_secondary = 2131690088;
+ public const int srl_header_failed = 2131690088;
// aapt resource value: 0x7F0F0269
- public const int srl_header_update = 2131690089;
+ public const int srl_header_finish = 2131690089;
// aapt resource value: 0x7F0F026A
- public const int start_cloud = 2131690090;
+ public const int srl_header_loading = 2131690090;
// aapt resource value: 0x7F0F026B
- public const int start_to_experience = 2131690091;
+ public const int srl_header_pulling = 2131690091;
// aapt resource value: 0x7F0F026C
- public const int start_voice_talk = 2131690092;
+ public const int srl_header_refreshing = 2131690092;
// aapt resource value: 0x7F0F026D
- public const int status_bar_notification_info_overflow = 2131690093;
+ public const int srl_header_release = 2131690093;
// aapt resource value: 0x7F0F026E
- public const int step3_adding_device_to_account = 2131690094;
+ public const int srl_header_secondary = 2131690094;
// aapt resource value: 0x7F0F026F
- public const int storage_status = 2131690095;
+ public const int srl_header_update = 2131690095;
// aapt resource value: 0x7F0F0270
- public const int stream_type = 2131690096;
-
- // aapt resource value: 0x7F0F0273
- public const int string_apiurl = 2131690099;
+ public const int start_cloud = 2131690096;
// aapt resource value: 0x7F0F0271
- public const int string_ap_connection = 2131690097;
+ public const int start_to_experience = 2131690097;
// aapt resource value: 0x7F0F0272
- public const int string_ap_connection_normal = 2131690098;
+ public const int start_voice_talk = 2131690098;
+
+ // aapt resource value: 0x7F0F0273
+ public const int status_bar_notification_info_overflow = 2131690099;
// aapt resource value: 0x7F0F0274
- public const int string_authurl = 2131690100;
-
- // aapt resource value: 0x7F0F0276
- public const int string_deviceserial = 2131690102;
+ public const int step3_adding_device_to_account = 2131690100;
// aapt resource value: 0x7F0F0275
- public const int string_device_network_mode = 2131690101;
+ public const int storage_status = 2131690101;
- // aapt resource value: 0x7F0F0277
- public const int string_ezopenurl = 2131690103;
-
- // aapt resource value: 0x7F0F0278
- public const int string_get_device_version_fail = 2131690104;
+ // aapt resource value: 0x7F0F0276
+ public const int stream_type = 2131690102;
// aapt resource value: 0x7F0F0279
- public const int string_smart_and_sound_wave_connection = 2131690105;
+ public const int string_apiurl = 2131690105;
+
+ // aapt resource value: 0x7F0F0277
+ public const int string_ap_connection = 2131690103;
+
+ // aapt resource value: 0x7F0F0278
+ public const int string_ap_connection_normal = 2131690104;
// aapt resource value: 0x7F0F027A
- public const int string_smart_connection = 2131690106;
-
- // aapt resource value: 0x7F0F027B
- public const int string_smart_connection_normal = 2131690107;
+ public const int string_authurl = 2131690106;
// aapt resource value: 0x7F0F027C
- public const int string_sound_wave_connection = 2131690108;
+ public const int string_deviceserial = 2131690108;
+
+ // aapt resource value: 0x7F0F027B
+ public const int string_device_network_mode = 2131690107;
// aapt resource value: 0x7F0F027D
- public const int string_wired_connection = 2131690109;
+ public const int string_ezopenurl = 2131690109;
// aapt resource value: 0x7F0F027E
- public const int submit_secure_validate = 2131690110;
+ public const int string_get_device_version_fail = 2131690110;
// aapt resource value: 0x7F0F027F
- public const int submit_sms_code = 2131690111;
+ public const int string_smart_and_sound_wave_connection = 2131690111;
// aapt resource value: 0x7F0F0280
- public const int switch_to_handset = 2131690112;
+ public const int string_smart_connection = 2131690112;
// aapt resource value: 0x7F0F0281
- public const int switch_to_speaker = 2131690113;
+ public const int string_smart_connection_normal = 2131690113;
// aapt resource value: 0x7F0F0282
- public const int system_default_channel = 2131690114;
+ public const int string_sound_wave_connection = 2131690114;
// aapt resource value: 0x7F0F0283
- public const int tab_more = 2131690115;
+ public const int string_wired_connection = 2131690115;
// aapt resource value: 0x7F0F0284
- public const int talk = 2131690116;
-
- // aapt resource value: 0x7F0F0287
- public const int talking = 2131690119;
+ public const int submit_secure_validate = 2131690116;
// aapt resource value: 0x7F0F0285
- public const int talk_open_failed = 2131690117;
+ public const int submit_sms_code = 2131690117;
// aapt resource value: 0x7F0F0286
- public const int talk_open_success = 2131690118;
+ public const int switch_to_handset = 2131690118;
+
+ // aapt resource value: 0x7F0F0287
+ public const int switch_to_speaker = 2131690119;
// aapt resource value: 0x7F0F0288
- public const int tip_heard_voice = 2131690120;
+ public const int system_default_channel = 2131690120;
// aapt resource value: 0x7F0F0289
- public const int tip_login_out = 2131690121;
+ public const int tab_more = 2131690121;
// aapt resource value: 0x7F0F028A
- public const int tip_of_added_by_yourself_and_online = 2131690122;
-
- // aapt resource value: 0x7F0F028B
- public const int tip_of_bad_net = 2131690123;
-
- // aapt resource value: 0x7F0F028C
- public const int tip_playback_again = 2131690124;
+ public const int talk = 2131690122;
// aapt resource value: 0x7F0F028D
- public const int tip_specified_device = 2131690125;
+ public const int talking = 2131690125;
+
+ // aapt resource value: 0x7F0F028B
+ public const int talk_open_failed = 2131690123;
+
+ // aapt resource value: 0x7F0F028C
+ public const int talk_open_success = 2131690124;
// aapt resource value: 0x7F0F028E
- public const int title_activate_device = 2131690126;
+ public const int tip_heard_voice = 2131690126;
// aapt resource value: 0x7F0F028F
- public const int title_activate_device_fail = 2131690127;
+ public const int tip_login_out = 2131690127;
// aapt resource value: 0x7F0F0290
- public const int title_activity_connect_device_wifi = 2131690128;
+ public const int tip_of_added_by_yourself_and_online = 2131690128;
// aapt resource value: 0x7F0F0291
- public const int title_activity_ezupgrade_device = 2131690129;
+ public const int tip_of_bad_net = 2131690129;
// aapt resource value: 0x7F0F0292
- public const int today = 2131690130;
+ public const int tip_playback_again = 2131690130;
// aapt resource value: 0x7F0F0293
- public const int touch_fingerprint_sensor_hint = 2131690131;
+ public const int tip_specified_device = 2131690131;
// aapt resource value: 0x7F0F0294
- public const int touch_to_load = 2131690132;
+ public const int title_activate_device = 2131690132;
// aapt resource value: 0x7F0F0295
- public const int try_again = 2131690133;
+ public const int title_activate_device_fail = 2131690133;
// aapt resource value: 0x7F0F0296
- public const int ui_call_demo_txt = 2131690134;
+ public const int title_activity_connect_device_wifi = 2131690134;
// aapt resource value: 0x7F0F0297
- public const int unable_identify_two_dimensional_code_tip = 2131690135;
+ public const int title_activity_ezupgrade_device = 2131690135;
// aapt resource value: 0x7F0F0298
- public const int unbind_to_bind = 2131690136;
+ public const int today = 2131690136;
// aapt resource value: 0x7F0F0299
- public const int unknow_ssid = 2131690137;
+ public const int touch_fingerprint_sensor_hint = 2131690137;
// aapt resource value: 0x7F0F029A
- public const int unlock_fail = 2131690138;
+ public const int touch_to_load = 2131690138;
// aapt resource value: 0x7F0F029B
- public const int unlock_success = 2131690139;
+ public const int try_again = 2131690139;
// aapt resource value: 0x7F0F029C
- public const int unnamed = 2131690140;
+ public const int ui_call_demo_txt = 2131690140;
// aapt resource value: 0x7F0F029D
- public const int update_exit = 2131690141;
+ public const int unable_identify_two_dimensional_code_tip = 2131690141;
// aapt resource value: 0x7F0F029E
- public const int upgrade = 2131690142;
+ public const int unbind_to_bind = 2131690142;
// aapt resource value: 0x7F0F029F
- public const int upgrade_fail = 2131690143;
+ public const int unknow_ssid = 2131690143;
// aapt resource value: 0x7F0F02A0
- public const int upgrade_progress = 2131690144;
+ public const int unlock_fail = 2131690144;
// aapt resource value: 0x7F0F02A1
- public const int upgrade_success = 2131690145;
+ public const int unlock_success = 2131690145;
// aapt resource value: 0x7F0F02A2
- public const int upgrade_success_progress = 2131690146;
-
- // aapt resource value: 0x7F0F02A7
- public const int upsdk_appstore_install = 2131690151;
-
- // aapt resource value: 0x7F0F02A8
- public const int upsdk_apptouch_store_url = 2131690152;
+ public const int unnamed = 2131690146;
// aapt resource value: 0x7F0F02A3
- public const int upsdk_app_download_info_new = 2131690147;
+ public const int update_exit = 2131690147;
// aapt resource value: 0x7F0F02A4
- public const int upsdk_app_download_installing = 2131690148;
+ public const int upgrade = 2131690148;
// aapt resource value: 0x7F0F02A5
- public const int upsdk_app_size = 2131690149;
+ public const int upgrade_fail = 2131690149;
// aapt resource value: 0x7F0F02A6
- public const int upsdk_app_version = 2131690150;
+ public const int upgrade_progress = 2131690150;
- // aapt resource value: 0x7F0F02A9
- public const int upsdk_cancel = 2131690153;
+ // aapt resource value: 0x7F0F02A7
+ public const int upgrade_success = 2131690151;
- // aapt resource value: 0x7F0F02AA
- public const int upsdk_checking_update_prompt = 2131690154;
-
- // aapt resource value: 0x7F0F02AB
- public const int upsdk_choice_update = 2131690155;
-
- // aapt resource value: 0x7F0F02AC
- public const int upsdk_detail = 2131690156;
+ // aapt resource value: 0x7F0F02A8
+ public const int upgrade_success_progress = 2131690152;
// aapt resource value: 0x7F0F02AD
- public const int upsdk_getting_message_fail_prompt_toast = 2131690157;
+ public const int upsdk_appstore_install = 2131690157;
// aapt resource value: 0x7F0F02AE
- public const int upsdk_mobile_dld_warn = 2131690158;
+ public const int upsdk_apptouch_store_url = 2131690158;
+
+ // aapt resource value: 0x7F0F02A9
+ public const int upsdk_app_download_info_new = 2131690153;
+
+ // aapt resource value: 0x7F0F02AA
+ public const int upsdk_app_download_installing = 2131690154;
+
+ // aapt resource value: 0x7F0F02AB
+ public const int upsdk_app_size = 2131690155;
+
+ // aapt resource value: 0x7F0F02AC
+ public const int upsdk_app_version = 2131690156;
// aapt resource value: 0x7F0F02AF
- public const int upsdk_no_available_network_prompt_toast = 2131690159;
+ public const int upsdk_cancel = 2131690159;
// aapt resource value: 0x7F0F02B0
- public const int upsdk_ota_app_name = 2131690160;
+ public const int upsdk_checking_update_prompt = 2131690160;
// aapt resource value: 0x7F0F02B1
- public const int upsdk_ota_cancel = 2131690161;
+ public const int upsdk_choice_update = 2131690161;
// aapt resource value: 0x7F0F02B2
- public const int upsdk_ota_force_cancel_new = 2131690162;
+ public const int upsdk_detail = 2131690162;
// aapt resource value: 0x7F0F02B3
- public const int upsdk_ota_notify_updatebtn = 2131690163;
+ public const int upsdk_getting_message_fail_prompt_toast = 2131690163;
// aapt resource value: 0x7F0F02B4
- public const int upsdk_ota_title = 2131690164;
+ public const int upsdk_mobile_dld_warn = 2131690164;
// aapt resource value: 0x7F0F02B5
- public const int upsdk_storage_utils = 2131690165;
+ public const int upsdk_no_available_network_prompt_toast = 2131690165;
// aapt resource value: 0x7F0F02B6
- public const int upsdk_store_url = 2131690166;
+ public const int upsdk_ota_app_name = 2131690166;
// aapt resource value: 0x7F0F02B7
- public const int upsdk_third_app_dl_cancel_download_prompt_ex = 2131690167;
+ public const int upsdk_ota_cancel = 2131690167;
// aapt resource value: 0x7F0F02B8
- public const int upsdk_third_app_dl_install_failed = 2131690168;
+ public const int upsdk_ota_force_cancel_new = 2131690168;
// aapt resource value: 0x7F0F02B9
- public const int upsdk_third_app_dl_sure_cancel_download = 2131690169;
+ public const int upsdk_ota_notify_updatebtn = 2131690169;
// aapt resource value: 0x7F0F02BA
- public const int upsdk_update_check_no_new_version = 2131690170;
+ public const int upsdk_ota_title = 2131690170;
// aapt resource value: 0x7F0F02BB
- public const int user_name_txt = 2131690171;
+ public const int upsdk_storage_utils = 2131690171;
// aapt resource value: 0x7F0F02BC
- public const int verify_code_error = 2131690172;
+ public const int upsdk_store_url = 2131690172;
// aapt resource value: 0x7F0F02BD
- public const int verify_sms_code_fail = 2131690173;
+ public const int upsdk_third_app_dl_cancel_download_prompt_ex = 2131690173;
// aapt resource value: 0x7F0F02BE
- public const int verify_sms_code_success = 2131690174;
+ public const int upsdk_third_app_dl_install_failed = 2131690174;
// aapt resource value: 0x7F0F02BF
- public const int version_newest = 2131690175;
+ public const int upsdk_third_app_dl_sure_cancel_download = 2131690175;
// aapt resource value: 0x7F0F02C0
- public const int video_answer = 2131690176;
+ public const int upsdk_update_check_no_new_version = 2131690176;
// aapt resource value: 0x7F0F02C1
- public const int video_box = 2131690177;
+ public const int user_name_txt = 2131690177;
// aapt resource value: 0x7F0F02C2
- public const int video_confirm = 2131690178;
+ public const int verify_code_error = 2131690178;
// aapt resource value: 0x7F0F02C3
- public const int video_device = 2131690179;
+ public const int verify_sms_code_fail = 2131690179;
// aapt resource value: 0x7F0F02C4
- public const int video_fail = 2131690180;
+ public const int verify_sms_code_success = 2131690180;
// aapt resource value: 0x7F0F02C5
- public const int video_hang_up = 2131690181;
+ public const int version_newest = 2131690181;
// aapt resource value: 0x7F0F02C6
- public const int video_icon = 2131690182;
+ public const int video_answer = 2131690182;
// aapt resource value: 0x7F0F02C7
- public const int video_not_answer = 2131690183;
+ public const int video_box = 2131690183;
// aapt resource value: 0x7F0F02C8
- public const int video_screenshot = 2131690184;
+ public const int video_confirm = 2131690184;
// aapt resource value: 0x7F0F02C9
- public const int video_square = 2131690185;
+ public const int video_device = 2131690185;
// aapt resource value: 0x7F0F02CA
- public const int video_success = 2131690186;
+ public const int video_fail = 2131690186;
// aapt resource value: 0x7F0F02CB
- public const int video_talk_call_cancel = 2131690187;
+ public const int video_hang_up = 2131690187;
// aapt resource value: 0x7F0F02CC
- public const int video_talk_call_is_accepted = 2131690188;
+ public const int video_icon = 2131690188;
// aapt resource value: 0x7F0F02CD
- public const int video_talk_is_playing = 2131690189;
+ public const int video_not_answer = 2131690189;
// aapt resource value: 0x7F0F02CE
- public const int video_talk_sdk_toast_hang_up = 2131690190;
+ public const int video_screenshot = 2131690190;
// aapt resource value: 0x7F0F02CF
- public const int video_talk_sdk_toast_nobody = 2131690191;
+ public const int video_square = 2131690191;
// aapt resource value: 0x7F0F02D0
- public const int video_talk_signal_weak = 2131690192;
+ public const int video_success = 2131690192;
// aapt resource value: 0x7F0F02D1
- public const int video_talk_watch_is_busy = 2131690193;
+ public const int video_talk_call_cancel = 2131690193;
// aapt resource value: 0x7F0F02D2
- public const int video_talk_watch_temperature_high_hang = 2131690194;
+ public const int video_talk_call_is_accepted = 2131690194;
// aapt resource value: 0x7F0F02D3
- public const int video_talk_watch_temperature_high_hint = 2131690195;
+ public const int video_talk_is_playing = 2131690195;
// aapt resource value: 0x7F0F02D4
- public const int video_talk_watch_temperature_high_reject = 2131690196;
+ public const int video_talk_sdk_toast_hang_up = 2131690196;
// aapt resource value: 0x7F0F02D5
- public const int video_talk_watch_temperature_high_warn = 2131690197;
+ public const int video_talk_sdk_toast_nobody = 2131690197;
// aapt resource value: 0x7F0F02D6
- public const int video_tip = 2131690198;
+ public const int video_talk_signal_weak = 2131690198;
// aapt resource value: 0x7F0F02D7
- public const int video_unlock = 2131690199;
+ public const int video_talk_watch_is_busy = 2131690199;
// aapt resource value: 0x7F0F02D8
- public const int wait = 2131690200;
+ public const int video_talk_watch_temperature_high_hang = 2131690200;
// aapt resource value: 0x7F0F02D9
- public const int web_login_button_txt = 2131690201;
+ public const int video_talk_watch_temperature_high_hint = 2131690201;
// aapt resource value: 0x7F0F02DA
- public const int wechat_interconnect = 2131690202;
+ public const int video_talk_watch_temperature_high_reject = 2131690202;
// aapt resource value: 0x7F0F02DB
- public const int wifi_connected = 2131690203;
+ public const int video_talk_watch_temperature_high_warn = 2131690203;
// aapt resource value: 0x7F0F02DC
- public const int wifi_connection_finish_need_refresh = 2131690204;
+ public const int video_tip = 2131690204;
// aapt resource value: 0x7F0F02DD
- public const int wifi_set = 2131690205;
+ public const int video_unlock = 2131690205;
// aapt resource value: 0x7F0F02DE
- public const int wifi_setting = 2131690206;
+ public const int wait = 2131690206;
// aapt resource value: 0x7F0F02DF
- public const int wired_connection = 2131690207;
-
- // aapt resource value: 0x7F0F02E1
- public const int xlistview_footer_hint_normal = 2131690209;
+ public const int web_login_button_txt = 2131690207;
// aapt resource value: 0x7F0F02E0
- public const int xlistview_footer_hint_no_more_device = 2131690208;
+ public const int wechat_interconnect = 2131690208;
+
+ // aapt resource value: 0x7F0F02E1
+ public const int wifi_connected = 2131690209;
// aapt resource value: 0x7F0F02E2
- public const int xlistview_footer_hint_ready = 2131690210;
+ public const int wifi_connection_finish_need_refresh = 2131690210;
// aapt resource value: 0x7F0F02E3
- public const int xlistview_footer_no_more = 2131690211;
+ public const int wifi_set = 2131690211;
// aapt resource value: 0x7F0F02E4
- public const int xlistview_footer_no_more_msg = 2131690212;
+ public const int wifi_setting = 2131690212;
// aapt resource value: 0x7F0F02E5
- public const int xlistview_header_hint_loading = 2131690213;
-
- // aapt resource value: 0x7F0F02E6
- public const int xlistview_header_hint_more = 2131690214;
+ public const int wired_connection = 2131690213;
// aapt resource value: 0x7F0F02E7
- public const int xlistview_header_hint_normal = 2131690215;
+ public const int xlistview_footer_hint_normal = 2131690215;
+
+ // aapt resource value: 0x7F0F02E6
+ public const int xlistview_footer_hint_no_more_device = 2131690214;
// aapt resource value: 0x7F0F02E8
- public const int xlistview_header_hint_ready = 2131690216;
+ public const int xlistview_footer_hint_ready = 2131690216;
// aapt resource value: 0x7F0F02E9
- public const int xlistview_header_last_time = 2131690217;
+ public const int xlistview_footer_no_more = 2131690217;
+
+ // aapt resource value: 0x7F0F02EA
+ public const int xlistview_footer_no_more_msg = 2131690218;
+
+ // aapt resource value: 0x7F0F02EB
+ public const int xlistview_header_hint_loading = 2131690219;
+
+ // aapt resource value: 0x7F0F02EC
+ public const int xlistview_header_hint_more = 2131690220;
+
+ // aapt resource value: 0x7F0F02ED
+ public const int xlistview_header_hint_normal = 2131690221;
+
+ // aapt resource value: 0x7F0F02EE
+ public const int xlistview_header_hint_ready = 2131690222;
+
+ // aapt resource value: 0x7F0F02EF
+ public const int xlistview_header_last_time = 2131690223;
static String()
{
diff --git a/HDL-ON_Android/Resources/drawable/btn_agree.xml b/HDL-ON_Android/Resources/drawable/btn_agree.xml
new file mode 100644
index 0000000..1f8947f
--- /dev/null
+++ b/HDL-ON_Android/Resources/drawable/btn_agree.xml
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="utf-8"?>
+<shape
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:shape="rectangle">
+
+ <!-- 鍦嗚鐨勫崐寰� -->
+ <corners android:radius="4dp"/>
+
+ <!-- 濉厖棰滆壊 -->
+ <solid
+ android:color="#245ec3" />
+
+ <!-- 杈规棰滆壊-->
+ <stroke
+ android:width="0.01dp"
+ android:color="#245ec3"/>
+
+</shape>
diff --git a/HDL-ON_Android/Resources/drawable/btn_disagree.xml b/HDL-ON_Android/Resources/drawable/btn_disagree.xml
new file mode 100644
index 0000000..c129eee
--- /dev/null
+++ b/HDL-ON_Android/Resources/drawable/btn_disagree.xml
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="utf-8"?>
+<shape
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:shape="rectangle">
+
+ <!-- 鍦嗚鐨勫崐寰� -->
+ <corners android:radius="4dp"/>
+
+ <!-- 濉厖棰滆壊 -->
+ <solid
+ android:color="@color/white" />
+
+ <!-- 杈规棰滆壊-->
+ <stroke
+ android:width="0.01dp"
+ android:color="#245ec3"/>
+
+<!-- <corners-->
+<!-- android:topLeftRadius="4dp"-->
+<!-- android:topRightRadius="4dp"-->
+<!-- android:bottomLeftRadius="4dp"-->
+<!-- android:bottomRightRadius="114dp" />-->
+
+</shape>
diff --git a/HDL-ON_Android/Resources/drawable/dialog_background2.xml b/HDL-ON_Android/Resources/drawable/dialog_background2.xml
new file mode 100644
index 0000000..47caf57
--- /dev/null
+++ b/HDL-ON_Android/Resources/drawable/dialog_background2.xml
@@ -0,0 +1,13 @@
+锘�<?xml version="1.0" encoding="utf-8"?>
+<shape
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:shape="rectangle">
+
+ <!-- 鍦嗚鐨勫崐寰� -->
+ <corners android:radius="4dp"/>
+
+ <!-- 濉厖棰滆壊 -->
+ <solid
+ android:color="@color/white" />
+
+</shape>
\ No newline at end of file
diff --git a/HDL-ON_Android/Resources/layout/activity_splash.xml b/HDL-ON_Android/Resources/layout/activity_splash.xml
new file mode 100644
index 0000000..ccf3aff
--- /dev/null
+++ b/HDL-ON_Android/Resources/layout/activity_splash.xml
@@ -0,0 +1,93 @@
+锘�<?xml version="1.0" encoding="UTF-8" ?>
+<LinearLayout
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:background="@drawable/loading"
+ android:orientation="vertical">
+
+ <FrameLayout
+ android:id="@+id/live_window"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:orientation="vertical"
+ android:background="#55000000">
+
+ <RelativeLayout
+ android:layout_width="280dp"
+ android:layout_height="417dp"
+ android:layout_gravity="center"
+ android:background="@drawable/dialog_background2">
+
+ <TextView
+ android:layout_width="match_parent"
+ android:layout_height="25dp"
+ android:id="@+id/title_tv"
+ android:text="@string/privacy_policy_and_service_agreement"
+ android:textColor="#bb000000"
+ android:layout_marginTop="15dp"
+ android:layout_marginLeft="0dp"
+ android:layout_marginRight="0dp"
+ android:textSize="18sp"
+ android:gravity="center"/>
+
+
+ <TextView
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:id="@+id/msg_content_tv"
+ android:layout_marginTop="49dp"
+ android:layout_marginLeft="16dp"
+ android:layout_marginRight="16dp"
+ android:text="@string/read_privacy_policy_and_service_agreement_tip"
+ android:textColor="#66000000"
+ />
+
+ <TextView
+ android:layout_width="wrap_content"
+ android:layout_height="30dp"
+ android:id="@+id/privacy_policy_btn"
+ android:gravity="center"
+ android:text="@string/login_privacy_policy"
+ android:textColor="#E6000000"
+ android:layout_marginTop="105dp"
+ android:layout_marginLeft="16dp"/>
+
+ <TextView
+ android:layout_width="wrap_content"
+ android:layout_height="30dp"
+ android:text="@string/login_user_service_agreement"
+ android:textColor="#E6000000"
+ android:id="@+id/service_agreement_btn"
+ android:layout_marginTop="140dp"
+ android:layout_marginLeft="16dp"
+ android:gravity="center"/>
+
+ <Button
+ android:layout_width="120dp"
+ android:layout_height="52dp"
+ android:id="@+id/disagree_btn"
+ android:text="@string/disagree"
+ android:textColor="#245ec3"
+ android:layout_marginLeft="16dp"
+ android:layout_marginBottom="20dp"
+ android:layout_alignParentBottom="true"
+ android:background="@drawable/btn_disagree"/>
+
+ <Button
+ android:layout_width="120dp"
+ android:layout_height="52dp"
+ android:id="@+id/agree_btn"
+ android:text="@string/agree"
+ android:textColor="@color/color_white"
+ android:layout_alignParentRight="true"
+ android:layout_alignParentBottom="true"
+ android:layout_marginRight="16dp"
+ android:layout_marginBottom="20dp"
+ android:background="@drawable/btn_agree"/>
+
+
+ </RelativeLayout>
+ </FrameLayout>
+
+</LinearLayout>
\ No newline at end of file
diff --git a/HDL-ON_Android/Resources/layout/activity_webview.xml b/HDL-ON_Android/Resources/layout/activity_webview.xml
new file mode 100644
index 0000000..1450b46
--- /dev/null
+++ b/HDL-ON_Android/Resources/layout/activity_webview.xml
@@ -0,0 +1,32 @@
+锘�<?xml version="1.0" encoding="UTF-8" ?>
+<LinearLayout
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:background="#FFFFFF"
+ android:orientation="vertical">
+
+ <LinearLayout
+ android:layout_width="80dp"
+ android:id="@+id/webview_back_ll"
+ android:background="#FFFFFF"
+ android:orientation="vertical"
+ android:layout_height="44dp">
+
+ <ImageView
+ android:layout_width="12dp"
+ android:layout_height="20dp"
+ android:layout_marginLeft="20dp"
+ android:layout_marginTop="11dp"
+ android:id="@+id/webview_back_img"
+ android:background="@drawable/back_icon"/>
+
+
+ </LinearLayout>
+ <android.webkit.WebView
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:id="@+id/webView1"
+ android:background="#ffffff"/>
+
+</LinearLayout>
\ No newline at end of file
diff --git a/HDL-ON_Android/Resources/values/strings.xml b/HDL-ON_Android/Resources/values/strings.xml
index 6f41ee5..e637aed 100644
--- a/HDL-ON_Android/Resources/values/strings.xml
+++ b/HDL-ON_Android/Resources/values/strings.xml
@@ -21,4 +21,12 @@
<string name="talk_open_failed">Intercom failed to open</string>
<string name="unlock_fail">Fail to unlock</string>
<string name="screenshot_fail">Fail to screenshot</string>
+
+
+ <string name="login_user_service_agreement">銆婄敤鎴锋湇鍔″崗璁��</string>
+ <string name="login_privacy_policy">銆婇殣绉佹潈鏀跨瓥銆�</string>
+ <string name="privacy_policy_and_service_agreement">闅愮鏉冩斂绛栧強鏈嶅姟鏉℃</string>
+ <string name="read_privacy_policy_and_service_agreement_tip">涓轰簡鏇村ソ鐨勪繚闅滄偍鐨勫悎娉曟潈鐩婏紝璇锋偍闃呰骞跺悓鎰忎互涓嬪崗璁�</string>
+ <string name="disagree">涓嶅悓鎰�</string>
+ <string name="agree">鍚屾剰</string>
</resources>
\ No newline at end of file
diff --git a/HDL-ON_Android/SplashActivity.cs b/HDL-ON_Android/SplashActivity.cs
index 1611515..5c1b1c3 100644
--- a/HDL-ON_Android/SplashActivity.cs
+++ b/HDL-ON_Android/SplashActivity.cs
@@ -1,7 +1,16 @@
-锘縰sing Android.App;
+锘縰sing System;
+using Android.App;
using Android.Content;
+using Android.Net;
using Android.OS;
+using CN.Jpush.Android.Api;
+//using Android.Widget;
using Com.Hdl.ON.Jpush.Androidjpush;
+using HDL_ON;
+using Java.Util;
+using Microsoft.AppCenter;
+using Microsoft.AppCenter.Analytics;
+using Microsoft.AppCenter.Crashes;
using Shared;
namespace HDL_ON_Android
@@ -10,18 +19,299 @@
[IntentFilter(new string[] { "com.hdl.onpro.SplashActivity", Intent.ActionView })]
public class SplashActivity : Activity
{
+ protected override void OnActivityResult(int requestCode, Result resultVal, Intent data)
+ {
+ if (requestCode == 99)
+ {
+ if (resultVal == Result.Ok)
+ {
+ if (!OnAppConfig.Instance.FirstRunApp)
+ {
+ ////鎵撳紑baseActivity
+ Intent i = new Intent(this, typeof(BaseActivity));//Intent intent=new Intent( 璧峰缁勪欢瀵硅薄 , 鐩爣 Service.class);
+ StartActivityForResult(i, 1);
+ OverridePendingTransition(0, 0);
+ initAll();
+ initOhterSdk();
+ Finish();//鍏抽棴鑷繁
+ }
+ }
+ }
+ base.OnActivityResult(requestCode, resultVal, data);
+ }
+
protected override void OnCreate(Bundle savedInstanceState)
{
base.OnCreate(savedInstanceState);
+ //Intent i = new Intent(this, typeof(BaseActivity));//Intent intent=new Intent( 璧峰缁勪欢瀵硅薄 , 鐩爣 Service.class);
+ //StartActivityForResult(i, 1);
+ //OverridePendingTransition(0, 0);
+ //initAll();
- //鎵撳紑baseActivity
- Intent i = new Intent(this, typeof(BaseActivity));//Intent intent=new Intent( 璧峰缁勪欢瀵硅薄 , 鐩爣 Service.class);
- StartActivity(i);
+ if (HDL_ON.OnAppConfig.Instance.FirstRunApp)
+ {
+
+ Intent intent = new Intent(this, typeof(AgreementActivity));
+ StartActivityForResult(intent,99);
+ }
+ else
+ {
+ ////鎵撳紑baseActivity
+ Intent i = new Intent(this, typeof(BaseActivity));//Intent intent=new Intent( 璧峰缁勪欢瀵硅薄 , 鐩爣 Service.class);
+ StartActivityForResult(i, 1);
+ OverridePendingTransition(0, 0);
+ initAll();
+ initOhterSdk();
+ Finish();//鍏抽棴鑷繁
+ }
- OverridePendingTransition(0, 0);
- Finish();
}
+
+ void initOhterSdk()
+ {
+ //娉ㄥ唽鏈鐞嗗紓甯镐簨浠�
+ AppCenter.Start("64ac5859-2cd7-4ef8-a5da-5455e29679ec", typeof(Analytics), typeof(Crashes));
+ //鎵嬫満鍚嶇О Android.OS.Build.Manufacturer;
+ //OnAppConfig.Instance.PhoneName = Android.OS.Build.Manufacturer;
+ //#if DEBUG
+ //CN.Jpush.Android.Api.JPushInterface.SetDebugMode(true);
+ //#endif
+ JPushInterface.Init(this);
+
+
+ BaseActivity.OnCreateActoin += (activity, application) =>
+ {
+ //鑾峰彇鏋佸厜鎺ㄩ�両D
+ GetJPushRegistrationID(activity);
+
+ };
+
+
+ }
+
+ /// <summary>
+ /// 鎵�鏈夊垵濮嬪寲鍏ㄩ儴鍦ㄨ繖涓柟娉曞疄鐜�
+ /// </summary>
+ void initAll()
+ {
+ //绂佹灞忓箷闀夸寒
+ BaseActivity.KeepScreenON = false;
+ //闅愯棌铏氭嫙鎸夐敭
+ BaseActivity.IsHideVirualButtons = true;
+ //瀹炵幇瀹夊崜杩斿洖鎸夐敭
+ BaseActivity.BackKeyAction = () =>
+ {
+ try
+ {
+ var result = MainPage.LoadEvent_BackAction();
+ switch (result)
+ {
+ case 0:
+ break;
+ case 1:
+ case 2:
+ BaseActivity.VerifyDateTime = DateTime.MaxValue;
+ break;
+ default:
+ BaseActivity.VerifyDateTime = DateTime.MaxValue;
+ break;
+ }
+ }
+ catch (Exception ex)
+ {
+ MainPage.Log(ex.Message);
+ BaseActivity.VerifyDateTime = DateTime.MaxValue;
+ }
+ };
+
+ BaseActivity.OnCreateActoin += (activity, application) =>
+ {
+ Language.CurrentLanguage = "Chinese";
+ Locale locale1 = Locale.Default;
+ var localeList = Resources.Configuration.Locale;
+ if (localeList.Language == "zh")
+ {
+ Language.CurrentLanguage = "Chinese";
+ }
+ else
+ {
+ Language.CurrentLanguage = "English";
+ }
+
+ BaseActivity.NetworkStateChanged += (int internetStatus) =>
+ {
+ //if (!IsEnterBackground)
+ //{
+ // ////BusSocket.Stop();
+ // //new System.Threading.Thread(() =>
+ // //{
+ // // System.Threading.Thread.Sleep(1000);
+ // // //BusSocket.Start();
+ // //})
+ // //{ IsBackground = true }.Start();
+
+ //}
+ //else
+ //{
+ // Console.WriteLine("HHH 缃戠粶鍙樺寲浣嗗浜庡悗鍙�");
+ //}
+
+ //缃戠粶鍙樺寲澶勭悊
+ HDLCommon.Current.UpdateInternetStatus((int)internetStatus, MainPage.IsEnterBackground);
+ };
+ };
+ BaseActivity.RefreshUIAction += (activity) =>
+ {
+ MainPage.Show();
+ checkSomeInfo();
+ };
+ BaseActivity.OnResumeAction += (activity) =>
+ {
+ checkSomeInfo();
+ };
+ BaseActivity.OnDestroyAction += (activity) =>
+ {
+ Console.WriteLine("OnDestroyAction");
+ //BusSocket.Stop();
+ //UserInfo.Current.unlockTime = DateTime.Now;
+ };
+
+
+ HDLUtils.SetAuthoritiesName("com.hdl.onpro.fileProvider");
+
+ //Shared.Application.IsGpsEnable = true;
+ bool isfirst = true;
+ //鑾峰彇缁忕含搴�
+ Shared.Application.LocationAction = (lon, lat) =>
+ {
+ try
+ {
+ if (isfirst)
+ {
+ //鍙Е鍙戜竴娆�
+ //Shared.Application.LocationAction = null;
+ new HDL_ON.DAL.Server.HttpServerRequest().GetCityWeatherInfo(lon.ToString(), lat.ToString());
+ }
+ isfirst = false;
+ ///鐩戝惉缁忕含搴�
+ HDL_ON.UI.UI2.Intelligence.Automation.LogicMethod.CurrLogicMethod.AppLatAndLonEvent(lon, lat);
+ //鍏抽棴瀹氫綅鏈嶅姟
+ //Shared.Application.StopGPSLocationService();
+ }
+ catch (Exception ex)
+ {
+ Utlis.WriteLine("GetCityInfo catch" + ex.Message);
+ }
+ MainPage.Log($"缁忕含搴�:::{lon}:{lat}");
+ };
+ }
+
+ /// <summary>
+ ///
+ /// </summary>
+ /// <param name="activity"></param>
+ void GetJPushRegistrationID(BaseActivity activity)
+ {
+ try
+ {
+ //淇濆瓨鑾峰彇鐨勬瀬鍏夋湇鍔″櫒涓婄殑娉ㄥ唽ID鍒版湰鍦版枃浠�
+ var tokenID = JPushInterface.GetRegistrationID(activity);
+ Console.WriteLine("RegistrationID: " + tokenID);
+ if (!string.IsNullOrEmpty(tokenID) && OnAppConfig.Instance.PushDeviceToken != tokenID)
+ {
+ OnAppConfig.Instance.PushDeviceToken = tokenID;
+ OnAppConfig.Instance.PhoneName = Android.OS.Build.Manufacturer;
+ OnAppConfig.Instance.SaveConfig();
+ }
+ int loadTokenCount = 0;
+ System.Threading.Tasks.Task.Run(() =>
+ {
+ while (string.IsNullOrEmpty(tokenID))
+ {
+ System.Threading.Thread.Sleep(1000);
+ tokenID = JPushInterface.GetRegistrationID(activity);
+ Console.WriteLine("Sleep.tokenID + " + JPushInterface.GetRegistrationID(activity));
+ loadTokenCount++;
+ if (loadTokenCount > 30)
+ {
+ break;
+ }
+ }
+ Console.WriteLine("RegistrationID: " + tokenID);
+ if (!string.IsNullOrEmpty(tokenID) && OnAppConfig.Instance.PushDeviceToken != tokenID)
+ {
+ OnAppConfig.Instance.PushDeviceToken = tokenID;
+ OnAppConfig.Instance.PhoneName = Android.OS.Build.Manufacturer;
+ OnAppConfig.Instance.SaveConfig();
+ }
+ });
+
+ }
+ catch
+ {
+
+ }
+ }
+
+ public static bool IsShowTip = true;
+
+ void checkSomeInfo()
+ {
+ try
+ {
+ IsShowTip = true;
+ var status = isNetworkAvailable(this);
+ int internetStatus = 0;
+ if (!status)
+ {
+ internetStatus = 0;
+ }
+
+ var isWifi = isWifiConnected(this);
+ if (isWifi)
+ {
+ internetStatus = 2;
+ }
+ else
+ {
+ internetStatus = 1;
+ }
+ }
+ catch (Exception ex)
+ {
+ Console.WriteLine($"android check some info erorr : {ex.Message}");
+ }
+ }
+
+ bool isNetworkAvailable(Context context)
+ {
+ var cm = (ConnectivityManager)context.GetSystemService(ConnectivityService);
+ if (cm == null || cm.ActiveNetworkInfo == null)
+ {
+ return false;
+ }
+ else
+ {
+ return cm.ActiveNetworkInfo.IsAvailable;
+ }
+ }
+
+ bool isWifiConnected(Context context)
+ {
+ if (context != null)
+ {
+ var mConnectivityManager = (ConnectivityManager)context.GetSystemService
+ (ConnectivityService);
+ var mWiFiNetworkInfo = mConnectivityManager.GetNetworkInfo(ConnectivityType.Wifi);
+ if (mWiFiNetworkInfo != null)
+ {
+ return mWiFiNetworkInfo.IsAvailable;
+ }
+ }
+ return false;
+ }
+
}
diff --git a/HDL-ON_Android/WebviewActivity.cs b/HDL-ON_Android/WebviewActivity.cs
new file mode 100644
index 0000000..b6592c8
--- /dev/null
+++ b/HDL-ON_Android/WebviewActivity.cs
@@ -0,0 +1,40 @@
+锘�
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+
+using Android.App;
+using Android.Content;
+using Android.OS;
+using Android.Runtime;
+using Android.Views;
+using Android.Webkit;
+using Android.Widget;
+
+namespace HDL_ON_Android
+{
+ [Activity(Label = "WebviewActivity",Theme = "@style/MyTheme1")]
+ public class WebviewActivity : Activity
+ {
+ protected override void OnCreate(Bundle savedInstanceState)
+ {
+ base.OnCreate(savedInstanceState);
+
+ // Create your application here
+ SetContentView(Resource.Layout.activity_webview);
+ string url = Intent.GetStringExtra("url");
+
+ WebView view = FindViewById<WebView>(Resource.Id.webView1);
+
+ view.LoadUrl(url);
+
+ LinearLayout btnBack = FindViewById<LinearLayout>(Resource.Id.webview_back_ll);
+ btnBack.Click += (sender, e) => {
+ Finish();
+ };
+
+
+ }
+ }
+}
diff --git a/HDL-ON_iOS/Info.plist b/HDL-ON_iOS/Info.plist
index 409a303..ac88548 100644
--- a/HDL-ON_iOS/Info.plist
+++ b/HDL-ON_iOS/Info.plist
@@ -100,9 +100,9 @@
<key>UIStatusBarStyle</key>
<string>UIStatusBarStyleLightContent</string>
<key>CFBundleShortVersionString</key>
- <string>1.4.302112152</string>
+ <string>1.4.302112201</string>
<key>CFBundleVersion</key>
- <string>1.4.12151</string>
+ <string>1.4.12201</string>
<key>NSLocationWhenInUseUsageDescription</key>
<string>Use geographic location to provide services such as weather</string>
<key>NSAppleMusicUsageDescription</key>
diff --git a/HDL-ON_iOS/Resources/Language.ini b/HDL-ON_iOS/Resources/Language.ini
index 8b816ae..f0a5536 100644
--- a/HDL-ON_iOS/Resources/Language.ini
+++ b/HDL-ON_iOS/Resources/Language.ini
@@ -502,6 +502,12 @@
514=Gateway location information is not configured
515=Add Security
516=Withdrawal
+517=Instantaneous value
+518=Cumulative power consumption
+519=Voltage (V)
+520=Electric Current (A)
+521=Power (W)
+522=Refresh
1000=Room Humidity
1001=V-chip
@@ -1627,6 +1633,12 @@
514=鏈厤缃綉鍏充綅缃俊鎭�
515=娣诲姞瀹夐槻
516=鎾ら攢鍚屾剰
+517=鐬椂鍊�
+518=绱鐢ㄧ數
+519=鐢靛帇(V)
+520=鐢垫祦(A)
+521=鍔熺巼(W)
+522=鍒锋柊
1000=瀹ゅ唴婀垮害
1001=绔ラ攣
diff --git a/HDL_ON/Common/OnAppConfig.cs b/HDL_ON/Common/OnAppConfig.cs
index dd65de5..2bc3220 100644
--- a/HDL_ON/Common/OnAppConfig.cs
+++ b/HDL_ON/Common/OnAppConfig.cs
@@ -90,6 +90,10 @@
/// 鏄惁鍚屾剰鍗忚
/// </summary>
public bool isAgreePrivacyPolicy;
+ /// <summary>
+ /// 绗竴娆″惎鍔╝pp
+ /// </summary>
+ public bool FirstRunApp = true;
/// <summary>
/// 蹇界暐鏇存柊鐨勭増鏈彿
diff --git a/HDL_ON/Common/R.cs b/HDL_ON/Common/R.cs
index 5ffb8da..2178858 100644
--- a/HDL_ON/Common/R.cs
+++ b/HDL_ON/Common/R.cs
@@ -4,6 +4,31 @@
{
public static class StringId
{
+
+ /// <summary>
+ /// 鍒锋柊
+ /// </summary>
+ public const int Refresh = 522;
+ /// <summary>
+ /// 鍔熺巼(W)
+ /// </summary>
+ public const int ActivePowerAndUnit = 521;
+ /// <summary>
+ /// 鐢垫祦(A)
+ /// </summary>
+ public const int CurrentAndUnit = 520;
+ /// <summary>
+ /// 鐢靛帇(V)
+ /// </summary>
+ public const int VoltageAndUnit = 519;
+ /// <summary>
+ /// 绱鐢ㄧ數
+ /// </summary>
+ public const int CumulativePowerConsumption = 518;
+ /// <summary>
+ /// 鐬椂鍊�
+ /// </summary>
+ public const int InstantaneousValue = 517;
/// <summary>
/// 鎾ら攢鍚屾剰
/// </summary>
diff --git a/HDL_ON/DAL/DriverLayer/Control.cs b/HDL_ON/DAL/DriverLayer/Control.cs
index 4a6ad64..28ef74e 100644
--- a/HDL_ON/DAL/DriverLayer/Control.cs
+++ b/HDL_ON/DAL/DriverLayer/Control.cs
@@ -835,7 +835,7 @@
var revString = Encoding.UTF8.GetString(receiveBytes);
receiveObj.BodyDataString = revString;
MainPage.Log($"灞�鍩熺綉淇℃伅: 瑙e瘑鍚庯細" + receiveObj.BodyDataString);
- //if(receiveObj.Topic.EndsWith("/thing/property/up"))
+ //if (receiveObj.Topic.EndsWith("/thing/property/up"))
//{
// MsgInfoList.Add(revString + "\r\n");
//}
@@ -1142,6 +1142,7 @@
case SPK.ElectricSocket:
case SPK.PanelSocket:
SocketPage.UpdataState(localFunction);
+ SocketPage_InstantaneousValue.UpdataView(localFunction);
break;
case SPK.ElectricTV:
break;
diff --git a/HDL_ON/DAL/Mqtt/MqttClient.cs b/HDL_ON/DAL/Mqtt/MqttClient.cs
index b638339..c16fd6f 100644
--- a/HDL_ON/DAL/Mqtt/MqttClient.cs
+++ b/HDL_ON/DAL/Mqtt/MqttClient.cs
@@ -454,6 +454,7 @@
var securityString = Encoding.UTF8.GetString(securityBytes);
var temp = Newtonsoft.Json.JsonConvert.DeserializeObject<SecurityStatusObj>(securityString);
MainPage.Log($"瀹夐槻鐘舵�佸彉鍖栵細{securityString}");
+ //Control.Ins.MsgInfoList.Add($"杩滅▼瀹夐槻鐘舵�佸彉鍖栵細{securityString}" + "\r\n");
if (temp != null)
{
@@ -484,6 +485,7 @@
var revString = Encoding.UTF8.GetString(bytes);
MainPage.Log($"mqtt 鐘舵�佹洿鏂�:{revString}");
Control.Ins.UpdataFunctionStatus(revString, null, true);
+ //Control.Ins.MsgInfoList.Add(revString + "\r\n");
}
//涓�绔彛鏁版嵁瑙f瀽
else
diff --git a/HDL_ON/DAL/Server/HttpUtil.cs b/HDL_ON/DAL/Server/HttpUtil.cs
index 315e9a2..6c692b6 100644
--- a/HDL_ON/DAL/Server/HttpUtil.cs
+++ b/HDL_ON/DAL/Server/HttpUtil.cs
@@ -17,8 +17,8 @@
/// 鍥哄畾鍩熷悕,姝e紡鐜
/// 鍏叡鍩熷悕灏辫繎瑙f瀽
/// </summary>
- public const string GlobalRequestHttpsHost = "https://nearest.hdlcontrol.com";
- //public const string GlobalRequestHttpsHost = "https://test-gz.hdlcontrol.com";//mmmm
+ //public const string GlobalRequestHttpsHost = "https://nearest.hdlcontrol.com";
+ public const string GlobalRequestHttpsHost = "https://test-gz.hdlcontrol.com";//mmmm
/// <summary>
/// RegionMark
/// </summary>
diff --git a/HDL_ON/HDL_ON.projitems b/HDL_ON/HDL_ON.projitems
index c4771f5..b8c7d1c 100644
--- a/HDL_ON/HDL_ON.projitems
+++ b/HDL_ON/HDL_ON.projitems
@@ -488,6 +488,8 @@
<Compile Include="$(MSBuildThisFileDirectory)UI\UI2\2-Classification\SceneControlZone.cs" />
<Compile Include="$(MSBuildThisFileDirectory)UI\UI2\3-Intelligence\Automation\CalculatedDistance.cs" />
<Compile Include="$(MSBuildThisFileDirectory)UI\UI2\FuntionControlView\ArmCenter\PushConfigPage.cs" />
+ <Compile Include="$(MSBuildThisFileDirectory)UI\UI2\FuntionControlView\Electrical\SocketPage_InstantaneousValue.cs" />
+ <Compile Include="$(MSBuildThisFileDirectory)UI\UI2\FuntionControlView\Electrical\SocketPage_CumulativePowerConsumption.cs" />
</ItemGroup>
<ItemGroup>
<Folder Include="$(MSBuildThisFileDirectory)Entity\Device\" />
diff --git a/HDL_ON/UI/MainPage.cs b/HDL_ON/UI/MainPage.cs
index b17177f..1c9492c 100644
--- a/HDL_ON/UI/MainPage.cs
+++ b/HDL_ON/UI/MainPage.cs
@@ -26,7 +26,7 @@
/// <summary>
/// 鐗堟湰鍙�
/// </summary>
- public static string VersionString = "1.4.3";
+ public static string VersionString = "1.4.4";
///// <summary>
///// 瀹㈡埛绔被鍨�
///// </summary>
@@ -146,6 +146,7 @@
BaseView = Application.MainPage;
Application.MainPage.BackgroundColor = CSS_Color.MainBackgroundColor;
+ Language.UpdateLanguage();
//#region 娴嬭瘯
//var ddd = new UI.test.TestDialog();
//ddd.InitView();
diff --git a/HDL_ON/UI/UI2/1-HomePage/HomePage.cs b/HDL_ON/UI/UI2/1-HomePage/HomePage.cs
index 4d75015..3804598 100644
--- a/HDL_ON/UI/UI2/1-HomePage/HomePage.cs
+++ b/HDL_ON/UI/UI2/1-HomePage/HomePage.cs
@@ -390,7 +390,7 @@
SelectedImagePath = "Collection/DefenseStatusIcon.png",
UnSelectedImagePath = "Collection/DisarmStatusIcon.png"
};
- if (false && DB_ResidenceData.Instance.GatewayType == 1)
+ if (DB_ResidenceData.Instance.GatewayType == 1)
{
topView.AddChidren(btnSecurityStatus);
@@ -553,6 +553,20 @@
#if DEBUG
+ FunctionList.List.Functions.Add(new Function()
+ {
+ spk = SPK.PanelSocket,
+ name = "闈㈡澘鎻掑骇",
+ attributes = new List<FunctionAttributes>
+ {
+ new FunctionAttributes(){ key = "on_off",curValue= "on",state = "on" },
+ new FunctionAttributes(){ key = "on_off_usb",curValue= "on",state = "on" },
+ new FunctionAttributes(){ key = "active_power",curValue= "220",state = "220" },
+ new FunctionAttributes(){ key = "voltage",curValue= "5",state = "5" },
+ new FunctionAttributes(){ key = "current",curValue= "110",state = "110" },
+ new FunctionAttributes(){ key = "total_electricity",curValue= "123.33",state = "123.33" },
+ }
+ });
//FunctionList.List.Functions.Add(new Function()
//{
diff --git a/HDL_ON/UI/UI2/3-Intelligence/IntelligencePage.cs b/HDL_ON/UI/UI2/3-Intelligence/IntelligencePage.cs
index 230d2f6..cc585e6 100644
--- a/HDL_ON/UI/UI2/3-Intelligence/IntelligencePage.cs
+++ b/HDL_ON/UI/UI2/3-Intelligence/IntelligencePage.cs
@@ -86,7 +86,7 @@
//鍒ゆ柇鏄惁闇�瑕侀殣钘忚嚜鍔ㄥ寲
if (HideAutoPage)
{
- if (false && DB_ResidenceData.Instance.GatewayType == 1)//缃戝叧闇�瑕佸姞杞藉畨闃�--2021-11-28 19:56:53 鍒樻檽杈夊皢瀹夐槻鏀惧叆鏀圭晫闈�
+ if (DB_ResidenceData.Instance.GatewayType == 1)//缃戝叧闇�瑕佸姞杞藉畨闃�--2021-11-28 19:56:53 鍒樻檽杈夊皢瀹夐槻鏀惧叆璇ョ晫闈�
{
btnSceneTilte = new Button()
{
@@ -139,7 +139,7 @@
}
else
{
- if (false && DB_ResidenceData.Instance.GatewayType == 1)//缃戝叧闇�瑕佸姞杞藉畨闃�--2021-11-28 19:56:53 鍒樻檽杈夊皢瀹夐槻鏀惧叆鏀圭晫闈�
+ if (DB_ResidenceData.Instance.GatewayType == 1)
{
btnAutomationTitle = new Button()
{
diff --git a/HDL_ON/UI/UI2/4-PersonalCenter/PersonalCenterPage.cs b/HDL_ON/UI/UI2/4-PersonalCenter/PersonalCenterPage.cs
index 2e19364..3887a17 100644
--- a/HDL_ON/UI/UI2/4-PersonalCenter/PersonalCenterPage.cs
+++ b/HDL_ON/UI/UI2/4-PersonalCenter/PersonalCenterPage.cs
@@ -142,7 +142,7 @@
///// <summary>
///// 鑾峰彇鏀寔鏂囨湰
///// </summary>
- //Button btnSupportText;
+ Button btnSupportText;
/// <summary>
/// 鍏充簬On鏂囨湰
@@ -935,7 +935,8 @@
// BackgroundColor = 0xFFFF0000,
//};
//supportView.AddChidren(supView);
- //supView.MouseUpEventHandler = (sender, e) => {
+ //supView.MouseUpEventHandler = (sender, e) =>
+ //{
// Dialog dialog = new Dialog();
// var bodyView = new FrameLayout();
@@ -957,7 +958,8 @@
// TextAlignment = TextAlignment.CenterLeft,
// TextSize = CSS_FontSize.SubheadingFontSize,
// };
- // btnClose.MouseUpEventHandler = (sender, e) => {
+ // btnClose.MouseUpEventHandler = (sender9, e0) =>
+ // {
// dialog.Close();
// };
// bodyView.AddChidren(btnClose);
diff --git a/HDL_ON/UI/UI2/FuntionControlView/ArmCenter/ArmCenterPage.cs b/HDL_ON/UI/UI2/FuntionControlView/ArmCenter/ArmCenterPage.cs
index 4fb69dd..254fdba 100644
--- a/HDL_ON/UI/UI2/FuntionControlView/ArmCenter/ArmCenterPage.cs
+++ b/HDL_ON/UI/UI2/FuntionControlView/ArmCenter/ArmCenterPage.cs
@@ -198,7 +198,6 @@
#region 鍥哄畾甯冮槻鍖哄煙
- /*
var fixedDeploymentView = new FrameLayout()
{
Height = Application.GetRealHeight(133),
@@ -288,7 +287,6 @@
};
disasterAlarmView.SetClick(disasterAlarmViewClick);
fixedDeploymentTypeView.AddChidren(burglarAlarmView);
- */
#endregion
diff --git a/HDL_ON/UI/UI2/FuntionControlView/Electrical/SocketPage.cs b/HDL_ON/UI/UI2/FuntionControlView/Electrical/SocketPage.cs
index 24734bf..72ba698 100644
--- a/HDL_ON/UI/UI2/FuntionControlView/Electrical/SocketPage.cs
+++ b/HDL_ON/UI/UI2/FuntionControlView/Electrical/SocketPage.cs
@@ -2,6 +2,7 @@
using Shared;
using HDL_ON.UI.CSS;
using HDL_ON.Entity;
+using HDL_ON.DriverLayer;
namespace HDL_ON.UI
{
@@ -132,6 +133,92 @@
};
controlView.AddChidren(btnSwitch);
+ if (function.attributes.Find((obj) => obj.key == "active_power" || obj.key == "voltage" || obj.key == "current") != null)
+ {
+ //鍔犺浇鐬椂鍊�
+ var btnInstantaneousValue = new Button()
+ {
+ X = Application.GetRealWidth(67),
+ Y = Application.GetRealHeight(377),
+ Width = Application.GetMinRealAverage(32),
+ Height = Application.GetMinRealAverage(32),
+ UnSelectedImagePath = "FunctionIcon/EnvironmentalScience/DiagramIconOn.png",
+ };
+ controlView.AddChidren(btnInstantaneousValue);
+ var btnInstantaneousValueText = new Button()
+ {
+ X = Application.GetRealWidth(35),
+ Y = btnInstantaneousValue.Bottom,
+ Width = Application.GetRealWidth(96),
+ Height = Application.GetRealHeight(29),
+ TextAlignment = TextAlignment.Center,
+ TextSize = CSS_FontSize.PromptFontSize_FirstLevel,
+ TextColor = CSS_Color.TextualColor,
+ TextID = StringId.InstantaneousValue
+ };
+ controlView.AddChidren(btnInstantaneousValueText);
+ EventHandler<MouseEventArgs> eventHandler = (sender, e) => {
+ var page = new SocketPage_InstantaneousValue(function);
+ MainPage.BasePageView.AddChidren(page);
+ page.LoadPage();
+ MainPage.BasePageView.PageIndex = MainPage.BasePageView.ChildrenCount - 1;
+ };
+ btnInstantaneousValue.MouseUpEventHandler = eventHandler;
+ btnInstantaneousValueText.MouseUpEventHandler = eventHandler;
+ }
+ if(function.attributes.Find((obj)=>obj.key == "total_electricity") != null)
+ {
+ //鍔犺浇绱鐢ㄧ數
+ var btnTotalElectricity = new Button()
+ {
+ X = Application.GetRealWidth(200),
+ Y = Application.GetRealHeight(377),
+ Height = Application.GetMinRealAverage(32),
+ TextColor = CSS_Color.MainColor,
+ TextSize = CSS_FontSize.EmphasisFontSize_Secondary,
+ Text = function.GetAttrState("total_electricity"),
+ TextAlignment = TextAlignment.BottomLeft,
+ };
+ btnTotalElectricity.Width = btnTotalElectricity.GetTextWidth();
+ controlView.AddChidren(btnTotalElectricity);
+ var btnTotalElectricityUnit = new Button()
+ {
+ X = btnTotalElectricity.Right,
+ Y = Application.GetRealHeight(377),
+ Width = Application.GetRealWidth(100),
+ Height = Application.GetMinRealAverage(32),
+ TextColor = CSS_Color.TextualColor,
+ TextSize = CSS_FontSize.PromptFontSize_SecondaryLevel,
+ Text = "kW路h",
+ TextAlignment = TextAlignment.BottomLeft,
+ };
+ controlView.AddChidren(btnTotalElectricityUnit);
+
+ var btnTotalElectricityText = new Button()
+ {
+ X = Application.GetRealWidth(200),
+ Y = btnTotalElectricity.Bottom,
+ Width = Application.GetRealWidth(235),
+ Height = Application.GetRealHeight(29),
+ TextAlignment = TextAlignment.CenterLeft,
+ TextSize = CSS_FontSize.PromptFontSize_FirstLevel,
+ TextColor = CSS_Color.TextualColor,
+ TextID = StringId.CumulativePowerConsumption
+ };
+ controlView.AddChidren(btnTotalElectricityText);
+ EventHandler<MouseEventArgs> eventHandler = (sender, e) => {
+ var page = new SocketPage_CumulativePowerConsumption(function);
+ MainPage.BasePageView.AddChidren(page);
+ page.LoadPage();
+ MainPage.BasePageView.PageIndex = MainPage.BasePageView.ChildrenCount - 1;
+ };
+ btnTotalElectricity.MouseUpEventHandler = eventHandler;
+ btnTotalElectricityUnit.MouseUpEventHandler = eventHandler;
+ btnTotalElectricityText.MouseUpEventHandler = eventHandler;
+
+ }
+
+
LoadEventList();
new TopViewDiv(bodyView, Language.StringByID(StringId.Socket)).LoadTopView_FunctionTop(function, actionRefresh);
@@ -143,4 +230,93 @@
}
}
+
+
+
+ public partial class SocketPage
+ {
+ /// <summary>
+ /// 鏇存柊鐏厜鐘舵��
+ /// </summary>
+ public static void UpdataState(Function uFan)
+ {
+ Application.RunOnMainThread(() =>
+ {
+ try
+ {
+ if (bodyView == null)
+ return;
+ bodyView.btnSwitch.IsSelected = bodyView.btnSwitchIcon.IsSelected = uFan.trait_on_off.curValue.ToString() == "on";
+ }
+ catch (Exception ex)
+ {
+ MainPage.Log($"RelayPage error {ex.Message}");
+ }
+ });
+ }
+ /// <summary>
+ /// 鍔犺浇浜嬩欢鍒楄〃
+ /// </summary>
+ void LoadEventList()
+ {
+ LoadSwitchEvent();
+ LoadCollectionEvent();
+
+ //鍥為��鍒锋柊淇℃伅浜嬩欢
+ actionRefresh = () => {
+ btnFunctionName.Text = btnFunctionName_Out.Text = function.name;
+ btnFromFloor_Out.Text = btnFromFoorAndRoom.Text = function.GetRoomListName();
+ function.UpdataFuncitonInfo();
+ };
+ }
+
+ /// <summary>
+ /// 鏀惰棌鍔熻兘鎸夐挳浜嬩欢
+ /// </summary>
+ void LoadCollectionEvent()
+ {
+ btnCollection.MouseUpEventHandler += (sender, e) => {
+ btnCollection.IsSelected = function.collect = btnCollection_Out.IsSelected = !btnCollection.IsSelected;
+ function.CollectFunction();
+ };
+ }
+
+ /// <summary>
+ /// 鍔犺浇寮�鍏充簨浠�
+ /// </summary>
+ void LoadSwitchEvent()
+ {
+ btnSwitchIcon.MouseUpEventHandler += (sender, e) =>
+ {
+ btnSwitchIcon.IsSelected = btnSwitch.IsSelected = !btnSwitchIcon.IsSelected;
+
+ new System.Threading.Thread(() =>
+ {
+ function.trait_on_off.curValue = btnSwitch.IsSelected ? "on" : "off";
+ //Control.Send(CommandType_A.write, this.function);
+ System.Collections.Generic.Dictionary<string, string> d = new System.Collections.Generic.Dictionary<string, string>();
+ d.Add("on_off", function.trait_on_off.curValue.ToString());
+ Control.Ins.SendWriteCommand(function, d);
+ })
+ { IsBackground = true }.Start();
+ };
+ btnSwitch.MouseUpEventHandler += (sender, e) =>
+ {
+ btnSwitch.IsSelected = btnSwitchIcon.IsSelected = !btnSwitch.IsSelected;
+
+ new System.Threading.Thread(() =>
+ {
+ function.trait_on_off.curValue = btnSwitch.IsSelected ? "on" : "off";
+ //Control.Send(CommandType_A.write, this.function);
+ System.Collections.Generic.Dictionary<string, string> d = new System.Collections.Generic.Dictionary<string, string>();
+ d.Add("on_off", function.trait_on_off.curValue.ToString());
+ Control.Ins.SendWriteCommand(function, d);
+ })
+ { IsBackground = true }.Start();
+ };
+
+ }
+
+ }
+
}
diff --git a/HDL_ON/UI/UI2/FuntionControlView/Electrical/SocketPageBLL.cs b/HDL_ON/UI/UI2/FuntionControlView/Electrical/SocketPageBLL.cs
index 300b194..1e434f4 100644
--- a/HDL_ON/UI/UI2/FuntionControlView/Electrical/SocketPageBLL.cs
+++ b/HDL_ON/UI/UI2/FuntionControlView/Electrical/SocketPageBLL.cs
@@ -5,89 +5,4 @@
namespace HDL_ON.UI
{
- public partial class SocketPage
- {
- /// <summary>
- /// 鏇存柊鐏厜鐘舵��
- /// </summary>
- public static void UpdataState(Function uFan)
- {
- Application.RunOnMainThread(() =>
- {
- try
- {
- if (bodyView == null)
- return;
- bodyView.btnSwitch.IsSelected = bodyView.btnSwitchIcon.IsSelected = uFan.trait_on_off.curValue.ToString() == "on";
- }
- catch (Exception ex)
- {
- MainPage.Log($"RelayPage error {ex.Message}");
- }
- });
- }
- /// <summary>
- /// 鍔犺浇浜嬩欢鍒楄〃
- /// </summary>
- void LoadEventList()
- {
- LoadSwitchEvent();
- LoadCollectionEvent();
-
- //鍥為��鍒锋柊淇℃伅浜嬩欢
- actionRefresh = () => {
- btnFunctionName.Text = btnFunctionName_Out.Text = function.name;
- btnFromFloor_Out.Text = btnFromFoorAndRoom.Text = function.GetRoomListName();
- function.UpdataFuncitonInfo();
- };
- }
-
- /// <summary>
- /// 鏀惰棌鍔熻兘鎸夐挳浜嬩欢
- /// </summary>
- void LoadCollectionEvent()
- {
- btnCollection.MouseUpEventHandler += (sender, e) => {
- btnCollection.IsSelected = function.collect = btnCollection_Out.IsSelected = !btnCollection.IsSelected;
- function.CollectFunction();
- };
- }
-
- /// <summary>
- /// 鍔犺浇寮�鍏充簨浠�
- /// </summary>
- void LoadSwitchEvent()
- {
- btnSwitchIcon.MouseUpEventHandler += (sender, e) =>
- {
- btnSwitchIcon.IsSelected = btnSwitch.IsSelected = !btnSwitchIcon.IsSelected;
-
- new System.Threading.Thread(() =>
- {
- function.trait_on_off.curValue = btnSwitch.IsSelected ? "on" : "off";
- //Control.Send(CommandType_A.write, this.function);
- System.Collections.Generic.Dictionary<string, string> d = new System.Collections.Generic.Dictionary<string, string>();
- d.Add("on_off", function.trait_on_off.curValue.ToString());
- Control.Ins.SendWriteCommand(function, d);
- })
- { IsBackground = true }.Start();
- };
- btnSwitch.MouseUpEventHandler += (sender, e) =>
- {
- btnSwitch.IsSelected = btnSwitchIcon.IsSelected = !btnSwitch.IsSelected;
-
- new System.Threading.Thread(() =>
- {
- function.trait_on_off.curValue = btnSwitch.IsSelected ? "on" : "off";
- //Control.Send(CommandType_A.write, this.function);
- System.Collections.Generic.Dictionary<string, string> d = new System.Collections.Generic.Dictionary<string, string>();
- d.Add("on_off", function.trait_on_off.curValue.ToString());
- Control.Ins.SendWriteCommand(function, d);
- })
- { IsBackground = true }.Start();
- };
-
- }
-
}
-}
diff --git a/HDL_ON/UI/UI2/FuntionControlView/Electrical/SocketPage_CumulativePowerConsumption.cs b/HDL_ON/UI/UI2/FuntionControlView/Electrical/SocketPage_CumulativePowerConsumption.cs
new file mode 100644
index 0000000..1c5dc5c
--- /dev/null
+++ b/HDL_ON/UI/UI2/FuntionControlView/Electrical/SocketPage_CumulativePowerConsumption.cs
@@ -0,0 +1,374 @@
+锘縰sing System;
+using System.Collections.Generic;
+using HDL_ON.DAL.Server;
+using HDL_ON.DriverLayer;
+using HDL_ON.Entity;
+using HDL_ON.UI.CSS;
+using Shared;
+namespace HDL_ON.UI
+{
+ public class SocketPage_CumulativePowerConsumption : FrameLayout
+ {
+ static SocketPage_CumulativePowerConsumption bodyView;
+
+ /// <summary>
+ /// 椤堕儴鍖哄煙
+ /// </summary>
+ FrameLayout generalTableView;
+
+ /// <summary>
+ /// 瀹炴椂鍔熻��
+ /// </summary>
+ Button btnRealTimeData;
+ /// <summary>
+ /// 瀹炴椂鍔熻�楀崟浣�
+ /// </summary>
+ Button btnTotalValueUint;
+ /// <summary>
+ /// 鎬诲姛鑰�
+ /// </summary>
+ TextButton btnTotalValue;
+ /// <summary>
+ /// 鍘嗗彶鏁版嵁鍖哄煙
+ /// </summary>
+ FrameLayout diagramView;
+ /// <summary>
+ /// 鏇茬嚎鍥炬暟鎹畇tring
+ /// </summary>
+ EchartsOption_BrokenLine brokenLine;
+
+
+ /// <summary>
+ /// 鎻掓煡璇㈢殑鑳芥簮鍒楄〃
+ /// </summary>
+ List<Function> queryList = new List<Function>();
+ /// <summary>
+ /// 鏌ヨ鏉′欢
+ /// hour銆亀eek銆乵onth
+ /// </summary>
+ string curQueryType = "hour";
+
+
+ /// <summary>
+ /// 鑳芥簮鍒楄〃鍖哄煙
+ /// </summary>
+ FrameLayout energyListView;
+ /// <summary>
+ /// 鍘嗗彶鏁版嵁鍥捐〃
+ /// </summary>
+ MyEchartsViewOn myEchartsView_Line;
+
+
+ Function function;
+ /// <summary>
+ /// 涓婚〉
+ /// </summary>
+ public SocketPage_CumulativePowerConsumption(Function function)
+ {
+ this.function = function;
+ bodyView = this;
+ }
+
+ /// <summary>
+ ///
+ /// </summary>
+ public void LoadPage()
+ {
+ new TopViewDiv(bodyView, Language.StringByID(StringId.CumulativePowerConsumption)).LoadTopView();
+ bodyView.BackgroundColor = CSS_Color.BackgroundColor;
+
+ var contentView = new FrameLayout()
+ {
+ Y = Application.GetRealHeight(64),
+ Height = Application.GetRealHeight(603),
+ };
+ bodyView.AddChidren(contentView);
+
+ #region 椤堕儴view
+ generalTableView = new FrameLayout()
+ {
+ Gravity = Gravity.CenterHorizontal,
+ Y = Application.GetRealWidth(16),
+ Width = Application.GetRealWidth(343),
+ Height = Application.GetRealWidth(148),//419//148
+ Radius = (uint)Application.GetRealWidth(5),
+ BackgroundColor = CSS_Color.MainBackgroundColor,
+ };
+ contentView.AddChidren(generalTableView);
+
+ btnTotalValue = new TextButton()
+ {
+ X = Application.GetRealWidth(18),
+ Y = Application.GetRealWidth(24),
+ Width = Application.GetRealWidth(18),
+ Height = Application.GetRealWidth(52),
+ TextColor = CSS_Color.FirstLevelTitleColor,
+ IsBold = true,
+ TextAlignment = TextAlignment.CenterLeft,
+ TextSize = 40,
+ Text = function.GetAttrState("total_electricity")
+ };
+ btnTotalValue.Width = btnTotalValue.GetTextWidth();
+ generalTableView.AddChidren(btnTotalValue);
+
+ btnTotalValueUint = new Button()
+ {
+ X = btnTotalValue.Right,
+ Y = Application.GetRealWidth(24),
+ Width = Application.GetRealWidth(60),
+ Height = Application.GetRealWidth(28),
+ TextColor = CSS_Color.FirstLevelTitleColor,
+ TextSize = CSS_FontSize.SubheadingFontSize,
+ IsBold = true,
+ Text = "kW鈥",
+ TextAlignment = TextAlignment.CenterLeft,
+ };
+ generalTableView.AddChidren(btnTotalValueUint);
+
+ btnRealTimeData = new Button()
+ {
+ X = Application.GetRealWidth(18),
+ Y = btnTotalValue.Bottom,
+ Width = Application.GetRealWidth(209),
+ Height = Application.GetRealWidth(28),
+ TextColor = CSS_Color.TextualColor,
+ TextSize = CSS_FontSize.SubheadingFontSize,
+ TextAlignment = TextAlignment.CenterLeft,
+ TextID = StringId.RealTimePowerConsumption,
+ };
+ btnRealTimeData.Text = Language.StringByID(StringId.RealTimePowerConsumption).Replace("{0}", function.GetAttrState("active_power"));
+ generalTableView.AddChidren(btnRealTimeData);
+
+
+
+ generalTableView.Height = Application.GetRealWidth(459);
+
+ #endregion
+
+ initDiagramView();
+
+ }
+
+ /// <summary>
+ /// 鍔犺浇鏇茬嚎鍥�
+ /// </summary>
+ /// <param name="contentView"></param>
+ void initDiagramView()
+ {
+ brokenLine = new EchartsOption_BrokenLine();
+
+
+ diagramView = new FrameLayout()
+ {
+ Y = Application.GetRealWidth(136),
+ Gravity = Gravity.CenterHorizontal,
+ Width = Application.GetRealWidth(343),
+ Height = Application.GetRealWidth(281),
+ BackgroundColor = CSS_Color.MainBackgroundColor,
+ Radius = (uint)Application.GetRealWidth(12),
+ BorderColor = 0x00000000,
+ BorderWidth = 0,
+ };
+ generalTableView.AddChidren(diagramView);
+
+ #region 閫夋嫨鏁版嵁鏃ユ湡鑼冨洿
+ var showDataTypeView = new FrameLayout()
+ {
+ X = Application.GetRealWidth(183),
+ Y = Application.GetRealHeight(12),
+ Width = Application.GetRealWidth(144),
+ Height = Application.GetRealHeight(24),
+ BackgroundImagePath = "FunctionIcon/EnvironmentalScience/SensorHistoryBg1.png",
+ };
+ diagramView.AddChidren(showDataTypeView);
+
+ var btnShowHistroyData_Day = new Button()
+ {
+ Width = Application.GetRealWidth(48),
+ TextAlignment = TextAlignment.Center,
+ TextColor = CSS_Color.PromptingColor2,
+ SelectedTextColor = CSS_Color.MainColor,
+ TextSize = CSS_FontSize.PromptFontSize_FirstLevel,
+ IsSelected = true,
+ TextID = StringId.day,
+ };
+ showDataTypeView.AddChidren(btnShowHistroyData_Day);
+
+ var btnShowHistroyData_Week = new Button()
+ {
+ X = Application.GetRealWidth(48),
+ Width = Application.GetRealWidth(48),
+ TextAlignment = TextAlignment.Center,
+ TextColor = CSS_Color.PromptingColor2,
+ SelectedTextColor = CSS_Color.MainColor,
+ TextSize = CSS_FontSize.PromptFontSize_FirstLevel,
+ TextID = StringId.week,
+ };
+ showDataTypeView.AddChidren(btnShowHistroyData_Week);
+
+ var btnShowHistroyData_Month = new Button()
+ {
+ X = Application.GetRealWidth(48 * 2),
+ Width = Application.GetRealWidth(48),
+ TextAlignment = TextAlignment.Center,
+ TextColor = CSS_Color.PromptingColor2,
+ SelectedTextColor = CSS_Color.MainColor,
+ TextSize = CSS_FontSize.PromptFontSize_FirstLevel,
+ Text = Language.StringByID(StringId.month),//DateTime.Now.Month.ToString() +
+ };
+ showDataTypeView.AddChidren(btnShowHistroyData_Month);
+
+
+ btnShowHistroyData_Day.MouseUpEventHandler = (sender, e) =>
+ {
+ showDataTypeView.BackgroundImagePath = "FunctionIcon/EnvironmentalScience/SensorHistoryBg1.png";
+ btnShowHistroyData_Day.IsSelected = true;
+ btnShowHistroyData_Month.IsSelected = false;
+ btnShowHistroyData_Week.IsSelected = false;
+ curQueryType = "hour";
+ brokenLine.YvalueText = "";
+ LoadMothed_GetHistoryData();
+ };
+
+ btnShowHistroyData_Week.MouseUpEventHandler = (sender, e) =>
+ {
+ showDataTypeView.BackgroundImagePath = "FunctionIcon/EnvironmentalScience/SensorHistoryBg2.png";
+ btnShowHistroyData_Day.IsSelected = false;
+ btnShowHistroyData_Month.IsSelected = false;
+ btnShowHistroyData_Week.IsSelected = true;
+ curQueryType = "week";
+ brokenLine.YvalueText = "";
+ LoadMothed_GetHistoryData();
+ };
+ btnShowHistroyData_Month.MouseUpEventHandler = (sender, e) =>
+ {
+ showDataTypeView.BackgroundImagePath = "FunctionIcon/EnvironmentalScience/SensorHistoryBg3.png";
+ btnShowHistroyData_Day.IsSelected = false;
+ btnShowHistroyData_Month.IsSelected = true;
+ btnShowHistroyData_Week.IsSelected = false;
+ curQueryType = "month";
+ brokenLine.YvalueText = "";
+ LoadMothed_GetHistoryData();
+ };
+
+ #endregion
+
+ var historyDataView = new FrameLayout()
+ {
+ Gravity = Gravity.CenterHorizontal,
+ Y = Application.GetRealWidth(52),
+ Height = Application.GetRealWidth(240),
+ };
+ diagramView.AddChidren(historyDataView);
+
+ myEchartsView_Line = new MyEchartsViewOn()
+ {
+ Y = Application.GetRealWidth(10),
+ Height = Application.GetRealWidth(220),
+ };
+ historyDataView.AddChidren(myEchartsView_Line);
+
+ LoadMothed_GetHistoryData();
+
+ }
+
+ /// <summary>
+ /// 璇诲彇鍘嗗彶鏁版嵁
+ /// </summary>
+ void LoadMothed_GetHistoryData()
+ {
+ var loadPage = new Loading()
+ {
+ LodingBackgroundColor = 0x88888888,
+ };
+ diagramView.AddChidren(loadPage);
+
+ //var d = new List<string> ();
+ //var dd = new List<EnvironmentalSensorHistor>();
+ //Random random = new Random() ;
+ //for (int ii = 0; ii < 13; ii++)
+ //{
+ // var i = random.Next(10000);
+
+ // d.Add(i.ToString());
+ // dd.Add(new EnvironmentalSensorHistor
+ // {
+ // fieldName = i.ToString(),
+ // fieldValue = i.ToString()
+ // });
+ //}
+ //brokenLine.InitXdataText(d);
+
+ //brokenLine.InitYdataText(function.name, dd, "#80AEFF");
+ //brokenLine.yTitle = "鑳借��(kW)";
+ //brokenLine.xTitle = "灏忔椂";
+ //var opString = brokenLine.InitOption();
+ //myEchartsView_Line.ShowWithOption(opString);
+ //return;
+
+
+ new System.Threading.Thread(() =>
+ {
+ try
+ {
+ Application.RunOnMainThread(() =>
+ {
+ loadPage.Start(Language.StringByID(StringId.PleaseWait));
+ });
+
+ var sensorType = function.spk.Split(".")[1];
+ var revertObj = new HttpServerRequest().GetSensorHistory(curQueryType, function.deviceId, "total_electricity");
+ if (revertObj != null)
+ {
+ if (revertObj.Code == StateCode.SUCCESS)
+ {
+ var revertData = Newtonsoft.Json.JsonConvert.DeserializeObject<List<EnvironmentalSensorHistor>>(revertObj.Data.ToString());
+
+ List<string> vs = new List<string>();
+ if (brokenLine.YvalueText == "")
+ {
+ foreach (var data in revertData)
+ {
+ vs.Add(data.fieldName);
+ }
+ brokenLine.InitXdataText(vs);
+ }
+ if (function.GetAttribute("ydata") == null)
+ {
+ function.attributes.Add(new FunctionAttributes() { key = "ydata" });
+ }
+ function.SetAttrState("ydata", brokenLine.InitYdataText(function.name, revertData, "#80AEFF") + ",");
+ }
+ }
+ brokenLine.yTitle = Language.StringByID(StringId.EnergyConsumption) + "(kW)";
+ brokenLine.xTitle = Language.StringByID(StringId.timeMode);
+ if (curQueryType != "hour")
+ {
+ brokenLine.xTitle = Language.StringByID(StringId.Date);
+ }
+ var opString = brokenLine.InitOption();
+
+ Application.RunOnMainThread(() =>
+ {
+ myEchartsView_Line.ShowWithOption(opString);
+ });
+ }
+ catch (Exception ex)
+ {
+ MainPage.Log($"sensor history error : {ex.Message}");
+ }
+ finally
+ {
+ Application.RunOnMainThread(() =>
+ {
+ loadPage.Hide();
+ });
+ }
+ })
+ { IsBackground = true }.Start();
+ }
+
+ }
+
+
+}
\ No newline at end of file
diff --git a/HDL_ON/UI/UI2/FuntionControlView/Electrical/SocketPage_InstantaneousValue.cs b/HDL_ON/UI/UI2/FuntionControlView/Electrical/SocketPage_InstantaneousValue.cs
new file mode 100644
index 0000000..4abdef4
--- /dev/null
+++ b/HDL_ON/UI/UI2/FuntionControlView/Electrical/SocketPage_InstantaneousValue.cs
@@ -0,0 +1,196 @@
+锘縰sing System;
+using HDL_ON.Entity;
+using HDL_ON.UI.CSS;
+using Shared;
+
+namespace HDL_ON.UI
+{
+ public class SocketPage_InstantaneousValue : FrameLayout
+ {
+ static SocketPage_InstantaneousValue bodyView;
+ HorizontalScrolViewLayout instantaneousValueView;
+
+ Function function;
+ public SocketPage_InstantaneousValue(Function function)
+ {
+ this.function = function;
+ bodyView = this;
+ }
+
+ public void LoadPage()
+ {
+ bodyView.BackgroundColor = CSS.CSS_Color.BackgroundColor;
+ FrameLayout contentView = new FrameLayout()
+ {
+ Y= Application .GetRealHeight(64),
+ Height = Application.GetRealHeight(603),
+ };
+ bodyView.AddChidren(contentView);
+
+ instantaneousValueView = new HorizontalScrolViewLayout()
+ {
+ Y = Application.GetRealHeight(16),
+ Width = Application.GetRealWidth(343),
+ Height = Application.GetRealHeight(110),
+ Gravity = Gravity.CenterHorizontal,
+ Radius = (uint)Application.GetRealWidth(12),
+ BackgroundColor = CSS.CSS_Color.MainBackgroundColor,
+ ScrollEnabled = false,
+ };
+ contentView.AddChidren(instantaneousValueView);
+
+ var voltageAttr = function.GetAttribute("voltage");//鐢靛帇
+ if (voltageAttr != null)
+ {
+ var view = new InstantaneousValueView();
+ view.Init(voltageAttr.curValue.ToString(), Language.StringByID(StringId.VoltageAndUnit));
+ view.Tag = "voltage";
+ instantaneousValueView.AddChidren(view);
+ }
+ var currentAttr = function.GetAttribute("current");//鐢垫祦
+ if (currentAttr != null)
+ {
+ var view = new InstantaneousValueView();
+ view.Init(currentAttr.curValue.ToString(), Language.StringByID(StringId.CurrentAndUnit));
+ view.Tag = "current";
+ instantaneousValueView.AddChidren(view);
+ }
+ var active_powerAttr = function.GetAttribute("active_power");//鏈夊姛鍔熺巼
+ if (active_powerAttr != null)
+ {
+ var view = new InstantaneousValueView();
+ view.Init(active_powerAttr.curValue.ToString(), Language.StringByID(StringId.ActivePowerAndUnit));
+ view.Tag = "active_power";
+ instantaneousValueView.AddChidren(view);
+ }
+
+ var btnRefresh = new Button()
+ {
+ Gravity = Gravity.CenterHorizontal,
+ Y = Application.GetRealHeight(539),
+ Width = Application.GetRealWidth(220),
+ Height = Application.GetRealWidth(44),
+ Radius = (uint)Application.GetRealWidth(22),
+ BackgroundColor = CSS_Color.MainColor,
+ TextColor = CSS_Color.MainBackgroundColor,
+ TextSize = CSS_FontSize.SubheadingFontSize,
+ TextAlignment = TextAlignment.Center,
+ IsBold = true,
+ TextID = StringId.Refresh,
+ };
+ contentView.AddChidren(btnRefresh);
+ btnRefresh.MouseUpEventHandler = (sender, e) => {
+ new System.Threading.Thread(() =>
+ {
+ DriverLayer.Control.Ins.SendReadCommand(function);
+ })
+ { IsBackground = true }.Start();
+ };
+
+ new TopViewDiv(bodyView, Language.StringByID(StringId.InstantaneousValue)).LoadTopView();
+ new System.Threading.Thread(() =>
+ {
+ DriverLayer.Control.Ins.SendReadCommand(function);
+ })
+ { IsBackground = true }.Start();
+ }
+
+ public static void UpdataView(Function updata)
+ {
+ if(bodyView!=null)
+ {
+ for (int i = 0; i < bodyView.instantaneousValueView.ChildrenCount; i++)
+ {
+ var view = bodyView.instantaneousValueView.GetChildren(i);
+ if(null != view.Tag )
+ {
+ if (view.GetType() == typeof(InstantaneousValueView))
+ {
+ var view2 = view as InstantaneousValueView;
+ switch (view.Tag.ToString())
+ {
+ case "active_power":
+ var attr = updata.GetAttribute("active_power");
+ if (attr != null)
+ {
+ view2.btnValue.Text = attr.curValue.ToString();
+ }
+ break;
+ case "voltage":
+ var attr1 = updata.GetAttribute("voltage");
+ if (attr1 != null)
+ {
+ view2.btnValue.Text = attr1.curValue.ToString();
+ }
+ break;
+ case "current":
+ var attr2 = updata.GetAttribute("current");
+ if (attr2 != null)
+ {
+ view2.btnValue.Text = attr2.curValue.ToString();
+ }
+ break;
+ }
+ }
+ }
+ }
+ }
+
+ }
+ }
+
+
+ public class InstantaneousValueView :FrameLayout
+ {
+ public FrameLayout View;
+ public Button btnValue;
+ public Button btnLine;
+ public Button btnUnit;
+
+ public InstantaneousValueView()
+ {
+ View = this;
+ View.Width = Application.GetRealWidth(115);
+ View.Height = Application.GetRealHeight(110);
+ }
+
+ public void Init(string value, string unit)
+ {
+
+ btnValue = new Button()
+ {
+ Height = Application.GetRealHeight(59),
+ Y = Application.GetRealWidth(12),
+ TextAlignment = TextAlignment.Center,
+ TextColor = CSS.CSS_Color.FirstLevelTitleColor,
+ TextSize = CSS.CSS_FontSize.EmphasisFontSize_FirstLevel,
+ Text = value,
+ };
+ View.AddChidren(btnValue);
+
+ btnLine = new Button()
+ {
+ Height = Application.GetRealHeight(2),
+ Width = Application.GetRealWidth(60),
+ Gravity = Gravity.CenterHorizontal,
+ BackgroundColor = CSS.CSS_Color.MainColor,
+ Y = Application.GetRealHeight(59),
+ };
+ View.AddChidren(btnLine);
+
+ btnUnit = new Button()
+ {
+ Y = Application.GetRealHeight(59),
+ Height = Application.GetRealHeight(33),
+ TextAlignment = TextAlignment.Center,
+ TextColor = CSS.CSS_Color.PromptingColor1,
+ TextSize = CSS.CSS_FontSize.PromptFontSize_FirstLevel,
+ Text = unit
+ };
+ View.AddChidren(btnUnit);
+
+
+ }
+ }
+
+}
diff --git a/HDL_ON/UI/UI2/FuntionControlView/EnvironmentalScience/EchartsOption_BrokenLine.cs b/HDL_ON/UI/UI2/FuntionControlView/EnvironmentalScience/EchartsOption_BrokenLine.cs
index e7a11a1..c022001 100644
--- a/HDL_ON/UI/UI2/FuntionControlView/EnvironmentalScience/EchartsOption_BrokenLine.cs
+++ b/HDL_ON/UI/UI2/FuntionControlView/EnvironmentalScience/EchartsOption_BrokenLine.cs
@@ -124,23 +124,25 @@
]
}";
#else
- public string optionString = @"{
+ public string optionString = @"{
tooltip: {
trigger: 'axis'
},
grid: {
- top: '10%',
+ top: '15%',
left: '13%',
- right: '10%',
- bottom: '15%',
+ right: '12%',
+ bottom: '10%',
},
xAxis: {
type: 'category',
boundaryGap: false,
data: [{0}],
+ name: '{10}'
},
yAxis: {
type: 'value',
+ name: '{20}'
},
series: [
{1}
diff --git a/HDL_ON/UI/UI2/FuntionControlView/EnvironmentalScience/EnvironmentalSensorPage.cs b/HDL_ON/UI/UI2/FuntionControlView/EnvironmentalScience/EnvironmentalSensorPage.cs
index 5ef800e..2d25afd 100644
--- a/HDL_ON/UI/UI2/FuntionControlView/EnvironmentalScience/EnvironmentalSensorPage.cs
+++ b/HDL_ON/UI/UI2/FuntionControlView/EnvironmentalScience/EnvironmentalSensorPage.cs
@@ -73,7 +73,7 @@
};
bodyView.AddChidren(contentView);
- contentView.AddChidren(new Button() { Height = Application.GetRealHeight(12) });
+ contentView.AddChidren(new Button() { Height = Application.GetRealHeight(16) });
FrameLayout diagramView = new FrameLayout()
{
--
Gitblit v1.8.0