diff --git a/OCH/mogo-och-bus-passenger/src/main/java/com/mogo/och/bus/passenger/MogoOCHBusPassenger.java b/OCH/mogo-och-bus-passenger/src/main/java/com/mogo/och/bus/passenger/MogoOCHBusPassenger.java index 5c76b6d22f..2dc69f3322 100644 --- a/OCH/mogo-och-bus-passenger/src/main/java/com/mogo/och/bus/passenger/MogoOCHBusPassenger.java +++ b/OCH/mogo-och-bus-passenger/src/main/java/com/mogo/och/bus/passenger/MogoOCHBusPassenger.java @@ -65,8 +65,6 @@ public class MogoOCHBusPassenger implements IMogoOCH, IMogoStatusChangedListener public void init(Context context) { MogoApisHandler.getInstance().getApis().getStatusManagerApi().registerStatusChangedListener("OchBus" , StatusDescriptor.VR_MODE, this); - MogoApisHandler.getInstance().getApis().getStatusManagerApi().registerStatusChangedListener("OchBus" - , StatusDescriptor.TOP_VIEW, this); } @Override diff --git a/OCH/mogo-och-bus/src/main/java/com/mogo/och/bus/OchBusProvider.java b/OCH/mogo-och-bus/src/main/java/com/mogo/och/bus/OchBusProvider.java index a70b54a1e6..3491e3fbac 100644 --- a/OCH/mogo-och-bus/src/main/java/com/mogo/och/bus/OchBusProvider.java +++ b/OCH/mogo-och-bus/src/main/java/com/mogo/och/bus/OchBusProvider.java @@ -47,8 +47,6 @@ public class OchBusProvider implements IMogoOCH { public void init(Context context) { MogoApisHandler.getInstance().getApis().getStatusManagerApi().registerStatusChangedListener("OchBus" , StatusDescriptor.VR_MODE, statusChangedListener); - MogoApisHandler.getInstance().getApis().getStatusManagerApi().registerStatusChangedListener("OchBus" - , StatusDescriptor.TOP_VIEW, statusChangedListener); } private void showFragment() { @@ -78,8 +76,7 @@ public class OchBusProvider implements IMogoOCH { } else { hideFragment(); } - } else if (MogoApisHandler.getInstance().getApis().getStatusManagerApi().isVrMode() - && descriptor == StatusDescriptor.TOP_VIEW) { + } else if (MogoApisHandler.getInstance().getApis().getStatusManagerApi().isVrMode()) { // topView进行展示时推出网约车界面,但是不隐藏整个fragment if (busFragment != null && isTrue) { busFragment.hideOchBus(); diff --git a/OCH/mogo-och-taxi-passenger/src/main/java/com/mogo/och/taxi/passenger/MogoOCHTaxiPassenger.java b/OCH/mogo-och-taxi-passenger/src/main/java/com/mogo/och/taxi/passenger/MogoOCHTaxiPassenger.java index 5675c85b9c..8778a3763e 100644 --- a/OCH/mogo-och-taxi-passenger/src/main/java/com/mogo/och/taxi/passenger/MogoOCHTaxiPassenger.java +++ b/OCH/mogo-och-taxi-passenger/src/main/java/com/mogo/och/taxi/passenger/MogoOCHTaxiPassenger.java @@ -38,7 +38,6 @@ class MogoOCHTaxiPassenger implements IMogoOCH, IMogoStatusChangedListener { public void init( Context context ) { CallerLogger.INSTANCE.d( M_TAXI_P + TAG, "init" ); MogoApisHandler.getInstance().getApis().getStatusManagerApi().registerStatusChangedListener("ochTaxi", StatusDescriptor.VR_MODE,this); - MogoApisHandler.getInstance().getApis().getStatusManagerApi().registerStatusChangedListener("ochTaxi", StatusDescriptor.TOP_VIEW,this); } /** diff --git a/OCH/mogo-och-taxi/src/main/java/com/mogo/och/taxi/MogoOCHTaxi.java b/OCH/mogo-och-taxi/src/main/java/com/mogo/och/taxi/MogoOCHTaxi.java index f11bd5c1c2..52359ab13e 100644 --- a/OCH/mogo-och-taxi/src/main/java/com/mogo/och/taxi/MogoOCHTaxi.java +++ b/OCH/mogo-och-taxi/src/main/java/com/mogo/och/taxi/MogoOCHTaxi.java @@ -38,7 +38,6 @@ class MogoOCHTaxi implements IMogoOCH , IMogoStatusChangedListener { public void init( Context context ) { CallerLogger.INSTANCE.d( M_TAXI + TAG, "init" ); MogoApisHandler.getInstance().getApis().getStatusManagerApi().registerStatusChangedListener("ochTaxi", StatusDescriptor.VR_MODE,this); - MogoApisHandler.getInstance().getApis().getStatusManagerApi().registerStatusChangedListener("ochTaxi", StatusDescriptor.TOP_VIEW,this); } /** diff --git a/core/function-impl/mogo-core-function-check/src/main/java/com/mogo/eagle/core/function/check/VehicleMonitoringManager.kt b/core/function-impl/mogo-core-function-check/src/main/java/com/mogo/eagle/core/function/check/VehicleMonitoringManager.kt index 6f037d4a46..5179e29883 100644 --- a/core/function-impl/mogo-core-function-check/src/main/java/com/mogo/eagle/core/function/check/VehicleMonitoringManager.kt +++ b/core/function-impl/mogo-core-function-check/src/main/java/com/mogo/eagle/core/function/check/VehicleMonitoringManager.kt @@ -13,7 +13,6 @@ import com.mogo.eagle.core.function.check.view.CheckActivity import com.mogo.eagle.core.function.check.view.CheckDialog import com.mogo.eagle.core.utilcode.util.* import com.mogo.module.common.MogoApisHandler -import com.mogo.module.service.receiver.MogoReceiver import com.mogo.service.statusmanager.IMogoStatusChangedListener import com.mogo.service.statusmanager.StatusDescriptor import java.util.concurrent.ConcurrentHashMap @@ -62,7 +61,7 @@ class VehicleMonitoringManager : ICheckProvider, IMogoStatusChangedListener { override fun checkMonitor(context: Context) { checkNetWork( context, object : ICheckResultCallBack { override fun callBackWithCheckData(data: CheckResultData) { - updateMonitoringStatus(MogoReceiver.ACTION_CHECK_VEHICLE_MONITORING, data.data.vehicle.state) + updateMonitoringStatus(TAG, data.data.vehicle.state) if (data.data.vehicle.state == 1) { hasTipShow = false } else { diff --git a/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/main/EventDispatchCenter.java b/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/main/EventDispatchCenter.java index b1a07c2242..a8ddb0eafe 100644 --- a/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/main/EventDispatchCenter.java +++ b/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/main/EventDispatchCenter.java @@ -16,8 +16,6 @@ import com.mogo.map.marker.IMogoMarkerClickListener; import com.mogo.map.model.MogoPoi; import com.mogo.map.navi.IMogoCarLocationChangedListener; import com.mogo.map.navi.IMogoCarLocationChangedListener2; -import com.mogo.map.navi.IMogoNaviListener; -import com.mogo.map.navi.MogoNaviInfo; import com.mogo.map.uicontroller.EnumMapUI; import com.mogo.map.uicontroller.VisualAngleMode; @@ -31,7 +29,6 @@ import java.util.Iterator; * 事件回调分发中心 */ public class EventDispatchCenter implements - IMogoNaviListener, IMogoMarkerClickListener, IMogoCarLocationChangedListener2, IMogoMapListener, @@ -248,8 +245,6 @@ public class EventDispatchCenter implements @Override public void onMapChanged(MogoLatLng location, float zoom, float tilt, float bearing) { - - final long start = System.currentTimeMillis(); Iterator iterator = MogoRegisterCenterHandler.getInstance().getMapListeners(); if (iterator == null) { return; @@ -266,135 +261,6 @@ public class EventDispatchCenter implements } } - @Override - public void onInitNaviFailure() { - Iterator iterator = MogoRegisterCenterHandler.getInstance().getNaviListeners(); - if (iterator == null) { - return; - } - while (iterator.hasNext()) { - IMogoNaviListener listener = iterator.next(); - if (listener != null) { - try { - listener.onInitNaviFailure(); - } catch (Exception e) { - CallerLogger.INSTANCE.e(M_MAIN + TAG, "onInitNaviFailure error : " + e); - } - } - } - } - - @Override - public void onInitNaviSuccess() { - Iterator iterator = MogoRegisterCenterHandler.getInstance().getNaviListeners(); - if (iterator == null) { - return; - } - while (iterator.hasNext()) { - IMogoNaviListener listener = iterator.next(); - if (listener != null) { - try { - listener.onInitNaviSuccess(); - } catch (Exception e) { - CallerLogger.INSTANCE.e(M_MAIN + TAG, "onInitNaviSuccess error : " + e); - } - } - } - } - - @Override - public void onNaviInfoUpdate(MogoNaviInfo naviinfo) { - Iterator iterator = MogoRegisterCenterHandler.getInstance().getNaviListeners(); - - if (iterator == null) { - return; - } - while (iterator.hasNext()) { - IMogoNaviListener listener = iterator.next(); - if (listener != null) { - try { - listener.onNaviInfoUpdate(naviinfo); - } catch (Exception e) { - CallerLogger.INSTANCE.e(M_MAIN + TAG, "onNaviInfoUpdate error : " + e); - } - } - } - } - - @Override - public void onStartNavi() { - Iterator iterator = MogoRegisterCenterHandler.getInstance().getNaviListeners(); - - if (iterator == null) { - return; - } - while (iterator.hasNext()) { - IMogoNaviListener listener = iterator.next(); - if (listener != null) { - try { - listener.onStartNavi(); - } catch (Exception e) { - CallerLogger.INSTANCE.e(M_MAIN + TAG, "onStartNavi error : " + e); - } - } - } - } - - @Override - public void onStopNavi() { - Iterator iterator = MogoRegisterCenterHandler.getInstance().getNaviListeners(); - if (iterator == null) { - return; - } - while (iterator.hasNext()) { - IMogoNaviListener listener = iterator.next(); - if (listener != null) { - try { - listener.onStopNavi(); - } catch (Exception e) { - CallerLogger.INSTANCE.e(M_MAIN + TAG, "onStopNavi error : " + e); - } - } - } - } - - @Override - public void onCalculateSuccess() { - Iterator iterator = MogoRegisterCenterHandler.getInstance().getNaviListeners(); - if (iterator == null) { - return; - } - while (iterator.hasNext()) { - IMogoNaviListener listener = iterator.next(); - if (listener != null) { - try { - listener.onCalculateSuccess(); - } catch (Exception e) { - CallerLogger.INSTANCE.e(M_MAIN + TAG, "onCalculateSuccess error : " + e); - } - } - } - } - - @Override - public void onoCalculateFailed() { - Iterator iterator = MogoRegisterCenterHandler.getInstance().getNaviListeners(); - if (iterator == null) { - return; - } - while (iterator.hasNext()) { - IMogoNaviListener listener = iterator.next(); - if (listener != null) { - try { - listener.onoCalculateFailed(); - } catch (Exception e) { - CallerLogger.INSTANCE.e(M_MAIN + TAG, "onoCalculateFailed error : " + e); - } - } - } - } - - @Override public void onLocationChanged(MogoLocation location) { diff --git a/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/main/MainActivity.java b/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/main/MainActivity.java index 487e3ebff9..63f7109cc4 100644 --- a/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/main/MainActivity.java +++ b/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/main/MainActivity.java @@ -292,7 +292,6 @@ public class MainActivity extends MvpActivity implement EventDispatchCenter.getInstance().onLocationChanged(location); } - @Override protected void onResume() { super.onResume(); @@ -422,16 +421,6 @@ public class MainActivity extends MvpActivity implement } } - @Override - protected void onActivityResult(int requestCode, int resultCode, @Nullable Intent data) { - super.onActivityResult(requestCode, resultCode, data); - CallerLogger.INSTANCE.d(M_MAIN + TAG, "requestCode: " + requestCode + " resultCode: " + resultCode); - if (requestCode == REQUEST_CODE_DIALOG) { - //申请悬浮窗权限 - - } - } - /** * 由于应用是单页面的,所以采用Fragment将各模块的UI进行分割解耦合 * diff --git a/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/main/MainLauncherActivity.java b/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/main/MainLauncherActivity.java index 26207841ee..870cb2d0e2 100644 --- a/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/main/MainLauncherActivity.java +++ b/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/main/MainLauncherActivity.java @@ -15,9 +15,7 @@ import com.mogo.commons.debug.DebugConfig; import com.mogo.eagle.core.function.api.base.IMoGoFunctionProvider; import com.mogo.eagle.core.function.hmi.R; import com.mogo.eagle.core.utilcode.mogo.logger.CallerLogger; -import com.mogo.map.uicontroller.EnumMapUI; import com.mogo.service.intent.IMogoIntentListener; -import com.mogo.service.statusmanager.StatusDescriptor; /** * 针对作为Launcher的情况,做个性化操作 @@ -34,7 +32,7 @@ public class MainLauncherActivity extends MainActivity implements IMogoIntentLis protected void onCreate(@Nullable Bundle savedInstanceState) { super.onCreate(savedInstanceState); DebugConfig.setNeedRequestUserInfo(true); - CallerLogger.INSTANCE.i(M_MAIN +TAG, "onCreate"); + CallerLogger.INSTANCE.i(M_MAIN + TAG, "onCreate"); } @Override @@ -88,12 +86,9 @@ public class MainLauncherActivity extends MainActivity implements IMogoIntentLis } } - @Override protected void onDestroy() { super.onDestroy(); - mServiceApis.getStatusManagerApi().unregisterStatusChangedListener(TAG, - StatusDescriptor.VR_MODE, this); stopCountDown(); try { // acc off 之后会出现进程还在,但是页面被杀的情况,这个直接杀掉进程,然后让整个进程重启 @@ -103,7 +98,6 @@ public class MainLauncherActivity extends MainActivity implements IMogoIntentLis } } - private void stopCountDown() { if (runnableV2XEvent != null) { handlerV2XEvent.removeCallbacks(runnableV2XEvent); diff --git a/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/main/registercenter/MogoRegisterCenter.java b/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/main/registercenter/MogoRegisterCenter.java index aaa358cd14..81031ac66e 100644 --- a/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/main/registercenter/MogoRegisterCenter.java +++ b/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/main/registercenter/MogoRegisterCenter.java @@ -8,8 +8,6 @@ import com.mogo.map.listener.IMogoMapListener; import com.mogo.map.location.IMogoLocationListener; import com.mogo.map.marker.IMogoMarkerClickListener; import com.mogo.map.navi.IMogoCarLocationChangedListener; -import com.mogo.map.navi.IMogoNaviListener; -import com.mogo.service.module.IMogoModuleLifecycle; import com.mogo.service.module.IMogoRegisterCenter; import java.util.Iterator; @@ -23,16 +21,6 @@ import java.util.Iterator; @Route(path = MogoServicePaths.PATH_REGISTER_CENTER) public class MogoRegisterCenter implements IMogoRegisterCenter { - @Override - public void registerMogoModuleLifecycle(String moduleName, IMogoModuleLifecycle lifecycle) { - MogoRegisterCenterHandler.getInstance().registerMogoModuleLifecycle(moduleName, lifecycle); - } - - @Override - public void unregisterMogoModuleLifecycle(String moduleName) { - MogoRegisterCenterHandler.getInstance().unregisterMogoModuleLifecycle(moduleName); - } - @Override public void registerMogoMapListener(String moduleName, IMogoMapListener listener) { MogoRegisterCenterHandler.getInstance().registerMogoMapListener(moduleName, listener); @@ -43,16 +31,6 @@ public class MogoRegisterCenter implements IMogoRegisterCenter { MogoRegisterCenterHandler.getInstance().unregisterMogoMapListener(moduleName); } - @Override - public void registerMogoNaviListener(String moduleName, IMogoNaviListener listener) { - MogoRegisterCenterHandler.getInstance().registerMogoNaviListener(moduleName, listener); - } - - @Override - public void unregisterMogoNaviListener(String moduleName) { - MogoRegisterCenterHandler.getInstance().unregisterMogoNaviListener(moduleName); - } - @Override public void registerMogoLocationListener(String moduleName, IMogoLocationListener listener) { MogoRegisterCenterHandler.getInstance().registerMogoLocationListener(moduleName, listener); @@ -84,7 +62,7 @@ public class MogoRegisterCenter implements IMogoRegisterCenter { } @Override - public void unregisterMogoStaticMarkerClickListener(String tag, IMogoMarkerClickListener listener) { + public void unregisterMogoStaticMarkerClickListener(String tag, IMogoMarkerClickListener listener ) { MogoRegisterCenterHandler.getInstance().unregisterMogoStaticMarkerClickListener(tag, listener); } diff --git a/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/main/registercenter/MogoRegisterCenterHandler.java b/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/main/registercenter/MogoRegisterCenterHandler.java index f87b9edca7..8d4e2f3975 100644 --- a/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/main/registercenter/MogoRegisterCenterHandler.java +++ b/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/main/registercenter/MogoRegisterCenterHandler.java @@ -6,8 +6,6 @@ import com.mogo.map.listener.IMogoMapListener; import com.mogo.map.location.IMogoLocationListener; import com.mogo.map.marker.IMogoMarkerClickListener; import com.mogo.map.navi.IMogoCarLocationChangedListener; -import com.mogo.map.navi.IMogoNaviListener; -import com.mogo.service.module.IMogoModuleLifecycle; import com.mogo.service.module.IMogoRegisterCenter; import java.util.ArrayList; @@ -26,9 +24,7 @@ public class MogoRegisterCenterHandler implements IMogoRegisterCenter { private static volatile MogoRegisterCenterHandler sInstance; - private final Map mLifecycle = new HashMap<>(); private final Map mMap = new HashMap<>(); - private final Map mNavi = new ConcurrentHashMap<>(); private final Map mLocation = new HashMap<>(); private final Map mMarker = new HashMap<>(); private final Map> mStaticMarker = new HashMap<>(); @@ -52,17 +48,6 @@ public class MogoRegisterCenterHandler implements IMogoRegisterCenter { sInstance = null; } - - @Override - public void registerMogoModuleLifecycle(String tag, IMogoModuleLifecycle lifecycle) { - mLifecycle.put(tag, lifecycle); - } - - @Override - public void unregisterMogoModuleLifecycle(String tag) { - mLifecycle.remove(tag); - } - @Override public void registerMogoMapListener(String tag, IMogoMapListener listener) { mMap.put(tag, listener); @@ -73,16 +58,6 @@ public class MogoRegisterCenterHandler implements IMogoRegisterCenter { mMap.remove(tag); } - @Override - public void registerMogoNaviListener(String tag, IMogoNaviListener listener) { - mNavi.put(tag, listener); - } - - @Override - public void unregisterMogoNaviListener(String tag) { - mNavi.remove(tag); - } - @Override public void registerMogoLocationListener(String tag, IMogoLocationListener listener) { mLocation.put(tag, listener); @@ -142,7 +117,7 @@ public class MogoRegisterCenterHandler implements IMogoRegisterCenter { return mMarker.get(tag); } - public ArrayList getStaticMarkerListener(String tag) { + public ArrayList getStaticMarkerListener(String tag){ return mStaticMarker.get(tag); } @@ -150,10 +125,6 @@ public class MogoRegisterCenterHandler implements IMogoRegisterCenter { return mMap.values().iterator(); } - public Iterator getNaviListeners() { - return mNavi.values().iterator(); - } - @Override public Iterator getLocationListeners() { return mLocation.values().iterator(); diff --git a/core/function-impl/mogo-core-function-main/build/generated/source/buildConfig/debug/com/mogo/eagle/core/function/main/BuildConfig.java b/core/function-impl/mogo-core-function-main/build/generated/source/buildConfig/debug/com/mogo/eagle/core/function/main/BuildConfig.java new file mode 100644 index 0000000000..9c9939140d --- /dev/null +++ b/core/function-impl/mogo-core-function-main/build/generated/source/buildConfig/debug/com/mogo/eagle/core/function/main/BuildConfig.java @@ -0,0 +1,18 @@ +/** + * Automatically generated file. DO NOT MODIFY + */ +package com.mogo.eagle.core.function.main; + +public final class BuildConfig { + public static final boolean DEBUG = Boolean.parseBoolean("true"); + public static final String LIBRARY_PACKAGE_NAME = "com.mogo.eagle.core.function.main"; + /** + * @deprecated APPLICATION_ID is misleading in libraries. For the library package name use LIBRARY_PACKAGE_NAME + */ + @Deprecated + public static final String APPLICATION_ID = "com.mogo.eagle.core.function.main"; + public static final String BUILD_TYPE = "debug"; + public static final String FLAVOR = ""; + public static final int VERSION_CODE = 1; + public static final String VERSION_NAME = "0.0.58.10"; +} diff --git a/core/function-impl/mogo-core-function-main/build/generated/source/kapt/debug/com/alibaba/android/arouter/routes/ARouter$$Group$$displayeffects.java b/core/function-impl/mogo-core-function-main/build/generated/source/kapt/debug/com/alibaba/android/arouter/routes/ARouter$$Group$$displayeffects.java new file mode 100644 index 0000000000..0b7d28dbba --- /dev/null +++ b/core/function-impl/mogo-core-function-main/build/generated/source/kapt/debug/com/alibaba/android/arouter/routes/ARouter$$Group$$displayeffects.java @@ -0,0 +1,18 @@ +package com.alibaba.android.arouter.routes; + +import com.alibaba.android.arouter.facade.enums.RouteType; +import com.alibaba.android.arouter.facade.model.RouteMeta; +import com.alibaba.android.arouter.facade.template.IRouteGroup; +import com.mogo.eagle.core.function.main.utils.DisplayEffectsManager; +import java.lang.Override; +import java.lang.String; +import java.util.Map; + +/** + * DO NOT EDIT THIS FILE!!! IT WAS GENERATED BY AROUTER. */ +public class ARouter$$Group$$displayeffects implements IRouteGroup { + @Override + public void loadInto(Map atlas) { + atlas.put("/displayeffects/api", RouteMeta.build(RouteType.PROVIDER, DisplayEffectsManager.class, "/displayeffects/api", "displayeffects", null, -1, -2147483648)); + } +} diff --git a/core/function-impl/mogo-core-function-main/build/generated/source/kapt/debug/com/alibaba/android/arouter/routes/ARouter$$Group$$registercenter.java b/core/function-impl/mogo-core-function-main/build/generated/source/kapt/debug/com/alibaba/android/arouter/routes/ARouter$$Group$$registercenter.java new file mode 100644 index 0000000000..6697e2f31a --- /dev/null +++ b/core/function-impl/mogo-core-function-main/build/generated/source/kapt/debug/com/alibaba/android/arouter/routes/ARouter$$Group$$registercenter.java @@ -0,0 +1,18 @@ +package com.alibaba.android.arouter.routes; + +import com.alibaba.android.arouter.facade.enums.RouteType; +import com.alibaba.android.arouter.facade.model.RouteMeta; +import com.alibaba.android.arouter.facade.template.IRouteGroup; +import com.mogo.eagle.core.function.main.registercenter.MogoRegisterCenter; +import java.lang.Override; +import java.lang.String; +import java.util.Map; + +/** + * DO NOT EDIT THIS FILE!!! IT WAS GENERATED BY AROUTER. */ +public class ARouter$$Group$$registercenter implements IRouteGroup { + @Override + public void loadInto(Map atlas) { + atlas.put("/registercenter/api", RouteMeta.build(RouteType.PROVIDER, MogoRegisterCenter.class, "/registercenter/api", "registercenter", null, -1, -2147483648)); + } +} diff --git a/core/function-impl/mogo-core-function-main/build/generated/source/kapt/debug/com/alibaba/android/arouter/routes/ARouter$$Group$$service.java b/core/function-impl/mogo-core-function-main/build/generated/source/kapt/debug/com/alibaba/android/arouter/routes/ARouter$$Group$$service.java new file mode 100644 index 0000000000..4deda7a2ad --- /dev/null +++ b/core/function-impl/mogo-core-function-main/build/generated/source/kapt/debug/com/alibaba/android/arouter/routes/ARouter$$Group$$service.java @@ -0,0 +1,18 @@ +package com.alibaba.android.arouter.routes; + +import com.alibaba.android.arouter.facade.enums.RouteType; +import com.alibaba.android.arouter.facade.model.RouteMeta; +import com.alibaba.android.arouter.facade.template.IRouteGroup; +import com.mogo.eagle.core.function.main.service.MogoMainService; +import java.lang.Override; +import java.lang.String; +import java.util.Map; + +/** + * DO NOT EDIT THIS FILE!!! IT WAS GENERATED BY AROUTER. */ +public class ARouter$$Group$$service implements IRouteGroup { + @Override + public void loadInto(Map atlas) { + atlas.put("/service/base/info", RouteMeta.build(RouteType.SERVICE, MogoMainService.class, "/service/base/info", "service", null, -1, -2147483648)); + } +} diff --git a/core/function-impl/mogo-core-function-main/build/generated/source/kapt/debug/com/alibaba/android/arouter/routes/ARouter$$Group$$windowmanger.java b/core/function-impl/mogo-core-function-main/build/generated/source/kapt/debug/com/alibaba/android/arouter/routes/ARouter$$Group$$windowmanger.java new file mode 100644 index 0000000000..d58d8cdc8b --- /dev/null +++ b/core/function-impl/mogo-core-function-main/build/generated/source/kapt/debug/com/alibaba/android/arouter/routes/ARouter$$Group$$windowmanger.java @@ -0,0 +1,18 @@ +package com.alibaba.android.arouter.routes; + +import com.alibaba.android.arouter.facade.enums.RouteType; +import com.alibaba.android.arouter.facade.model.RouteMeta; +import com.alibaba.android.arouter.facade.template.IRouteGroup; +import com.mogo.eagle.core.function.main.windowview.MogoWindowManager; +import java.lang.Override; +import java.lang.String; +import java.util.Map; + +/** + * DO NOT EDIT THIS FILE!!! IT WAS GENERATED BY AROUTER. */ +public class ARouter$$Group$$windowmanger implements IRouteGroup { + @Override + public void loadInto(Map atlas) { + atlas.put("/windowmanger/api", RouteMeta.build(RouteType.PROVIDER, MogoWindowManager.class, "/windowmanger/api", "windowmanger", null, -1, -2147483648)); + } +} diff --git a/core/function-impl/mogo-core-function-main/build/generated/source/kapt/debug/com/alibaba/android/arouter/routes/ARouter$$Providers$$mogocorefunctionmain.java b/core/function-impl/mogo-core-function-main/build/generated/source/kapt/debug/com/alibaba/android/arouter/routes/ARouter$$Providers$$mogocorefunctionmain.java new file mode 100644 index 0000000000..e2f0d5206c --- /dev/null +++ b/core/function-impl/mogo-core-function-main/build/generated/source/kapt/debug/com/alibaba/android/arouter/routes/ARouter$$Providers$$mogocorefunctionmain.java @@ -0,0 +1,22 @@ +package com.alibaba.android.arouter.routes; + +import com.alibaba.android.arouter.facade.enums.RouteType; +import com.alibaba.android.arouter.facade.model.RouteMeta; +import com.alibaba.android.arouter.facade.template.IProviderGroup; +import com.mogo.eagle.core.function.main.registercenter.MogoRegisterCenter; +import com.mogo.eagle.core.function.main.utils.DisplayEffectsManager; +import com.mogo.eagle.core.function.main.windowview.MogoWindowManager; +import java.lang.Override; +import java.lang.String; +import java.util.Map; + +/** + * DO NOT EDIT THIS FILE!!! IT WAS GENERATED BY AROUTER. */ +public class ARouter$$Providers$$mogocorefunctionmain implements IProviderGroup { + @Override + public void loadInto(Map providers) { + providers.put("com.mogo.service.module.IMogoRegisterCenter", RouteMeta.build(RouteType.PROVIDER, MogoRegisterCenter.class, "/registercenter/api", "registercenter", null, -1, -2147483648)); + providers.put("com.mogo.service.v2x.DisplayEffectsInterface", RouteMeta.build(RouteType.PROVIDER, DisplayEffectsManager.class, "/displayeffects/api", "displayeffects", null, -1, -2147483648)); + providers.put("com.mogo.service.windowview.IMogoWindowManager", RouteMeta.build(RouteType.PROVIDER, MogoWindowManager.class, "/windowmanger/api", "windowmanger", null, -1, -2147483648)); + } +} diff --git a/core/function-impl/mogo-core-function-main/build/generated/source/kapt/debug/com/alibaba/android/arouter/routes/ARouter$$Root$$mogocorefunctionmain.java b/core/function-impl/mogo-core-function-main/build/generated/source/kapt/debug/com/alibaba/android/arouter/routes/ARouter$$Root$$mogocorefunctionmain.java new file mode 100644 index 0000000000..52e0c9604c --- /dev/null +++ b/core/function-impl/mogo-core-function-main/build/generated/source/kapt/debug/com/alibaba/android/arouter/routes/ARouter$$Root$$mogocorefunctionmain.java @@ -0,0 +1,20 @@ +package com.alibaba.android.arouter.routes; + +import com.alibaba.android.arouter.facade.template.IRouteGroup; +import com.alibaba.android.arouter.facade.template.IRouteRoot; +import java.lang.Class; +import java.lang.Override; +import java.lang.String; +import java.util.Map; + +/** + * DO NOT EDIT THIS FILE!!! IT WAS GENERATED BY AROUTER. */ +public class ARouter$$Root$$mogocorefunctionmain implements IRouteRoot { + @Override + public void loadInto(Map> routes) { + routes.put("displayeffects", ARouter$$Group$$displayeffects.class); + routes.put("registercenter", ARouter$$Group$$registercenter.class); + routes.put("service", ARouter$$Group$$service.class); + routes.put("windowmanger", ARouter$$Group$$windowmanger.class); + } +} diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml b/core/function-impl/mogo-core-function-main/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml new file mode 100644 index 0000000000..670fedc185 --- /dev/null +++ b/core/function-impl/mogo-core-function-main/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output.json b/core/function-impl/mogo-core-function-main/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output.json new file mode 100644 index 0000000000..b50109c6ea --- /dev/null +++ b/core/function-impl/mogo-core-function-main/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output.json @@ -0,0 +1 @@ +[{"outputType":{"type":"AAPT_FRIENDLY_MERGED_MANIFESTS"},"apkData":{"type":"MAIN","splits":[],"versionCode":1,"versionName":"0.0.58.10","enabled":true,"outputFile":"mogo-core-function-main-debug.aar","fullName":"debug","baseName":"debug"},"path":"AndroidManifest.xml","properties":{"packageId":"com.mogo.eagle.core.function.main","split":""}}] \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/annotation_processor_list/debug/annotationProcessors.json b/core/function-impl/mogo-core-function-main/build/intermediates/annotation_processor_list/debug/annotationProcessors.json new file mode 100644 index 0000000000..9e26dfeeb6 --- /dev/null +++ b/core/function-impl/mogo-core-function-main/build/intermediates/annotation_processor_list/debug/annotationProcessors.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/compile_library_classes/debug/classes.jar b/core/function-impl/mogo-core-function-main/build/intermediates/compile_library_classes/debug/classes.jar new file mode 100644 index 0000000000..400ed0161f Binary files /dev/null and b/core/function-impl/mogo-core-function-main/build/intermediates/compile_library_classes/debug/classes.jar differ diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/compile_only_not_namespaced_r_class_jar/debug/R.jar b/core/function-impl/mogo-core-function-main/build/intermediates/compile_only_not_namespaced_r_class_jar/debug/R.jar new file mode 100644 index 0000000000..9bc2354a66 Binary files /dev/null and b/core/function-impl/mogo-core-function-main/build/intermediates/compile_only_not_namespaced_r_class_jar/debug/R.jar differ diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml b/core/function-impl/mogo-core-function-main/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml new file mode 100644 index 0000000000..b7b2d00806 --- /dev/null +++ b/core/function-impl/mogo-core-function-main/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/incremental/mergeDebugShaders/merger.xml b/core/function-impl/mogo-core-function-main/build/intermediates/incremental/mergeDebugShaders/merger.xml new file mode 100644 index 0000000000..aa124666a0 --- /dev/null +++ b/core/function-impl/mogo-core-function-main/build/intermediates/incremental/mergeDebugShaders/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/incremental/packageDebugAssets/merger.xml b/core/function-impl/mogo-core-function-main/build/intermediates/incremental/packageDebugAssets/merger.xml new file mode 100644 index 0000000000..1a185fd7db --- /dev/null +++ b/core/function-impl/mogo-core-function-main/build/intermediates/incremental/packageDebugAssets/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/incremental/packageDebugResources/compile-file-map.properties b/core/function-impl/mogo-core-function-main/build/intermediates/incremental/packageDebugResources/compile-file-map.properties new file mode 100644 index 0000000000..abe18e4cdd --- /dev/null +++ b/core/function-impl/mogo-core-function-main/build/intermediates/incremental/packageDebugResources/compile-file-map.properties @@ -0,0 +1,22 @@ +#Sun Mar 27 14:04:29 CST 2022 +/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/res/drawable-xhdpi/module_main_launcher_bg.png=/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_main_launcher_bg.png +/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/res/drawable-xhdpi/wu2.png=/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/wu2.png +/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/res/layout/module_main_activity_main.xml=/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/layout/module_main_activity_main.xml +/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/res/drawable-xhdpi/module_main_warning_bkg_bottom.xml=/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_main_warning_bkg_bottom.xml +/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/res/drawable-mdpi/module_main_launcher_bg.png=/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_main_launcher_bg.png +/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/res/drawable-xhdpi/mogo_slogan.png=/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/mogo_slogan.png +/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/res/drawable-xhdpi/module_main_warning_bkg_top.xml=/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_main_warning_bkg_top.xml +/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/res/drawable-xhdpi/wu1.png=/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/wu1.png +/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/res/drawable-mdpi/mogo_slogan.png=/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable-mdpi-v4/mogo_slogan.png +/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/res/drawable-xhdpi-2560x1440/wu2.png=/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable-xhdpi-2560x1440-v4/wu2.png +/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/res/drawable-xhdpi/module_main_warning_bkg_left.xml=/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_main_warning_bkg_left.xml +/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/res/drawable-xhdpi/module_main_warning_bkg_right.xml=/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_main_warning_bkg_right.xml +/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/res/drawable/main_bitmap_splash_icon.xml=/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable/main_bitmap_splash_icon.xml +/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/res/drawable/main_splash_bg.xml=/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable/main_splash_bg.xml +/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/res/drawable/module_main_dw_top_frame_bkg.xml=/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable/module_main_dw_top_frame_bkg.xml +/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/res/drawable-ldpi/mogo_slogan.png=/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable-ldpi-v4/mogo_slogan.png +/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/res/drawable/main_bitmap_splash_bg.xml=/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable/main_bitmap_splash_bg.xml +/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/res/drawable-ldpi/module_main_launcher_bg.png=/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_main_launcher_bg.png +/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/res/drawable/module_main_dw_left_frame_bkg.xml=/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable/module_main_dw_left_frame_bkg.xml +/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/res/layout/module_main_fragement_placeholder.xml=/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/layout/module_main_fragement_placeholder.xml +/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/res/drawable-xhdpi-2560x1440/wu1.png=/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable-xhdpi-2560x1440-v4/wu1.png diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/incremental/packageDebugResources/merged.dir/values-mdpi-v4/values-mdpi-v4.xml b/core/function-impl/mogo-core-function-main/build/intermediates/incremental/packageDebugResources/merged.dir/values-mdpi-v4/values-mdpi-v4.xml new file mode 100644 index 0000000000..36ac417328 --- /dev/null +++ b/core/function-impl/mogo-core-function-main/build/intermediates/incremental/packageDebugResources/merged.dir/values-mdpi-v4/values-mdpi-v4.xml @@ -0,0 +1,36 @@ + + + 320px + 319px + 8px + 1920px + 6px + 2px + 2px + 110px + 10px + 20px + 370px + 140.5px + 32px + 8px + 18px + 352px + 352px + 0px + 444px + 10px + 16px + 658px + 0px + 6px + 6px + 0px + 460px + 15px + 444px + 350px + 350px + 0px + 144px + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/incremental/packageDebugResources/merged.dir/values-xhdpi-1920x1000-v4/values-xhdpi-1920x1000-v4.xml b/core/function-impl/mogo-core-function-main/build/intermediates/incremental/packageDebugResources/merged.dir/values-xhdpi-1920x1000-v4/values-xhdpi-1920x1000-v4.xml new file mode 100644 index 0000000000..e999c629f4 --- /dev/null +++ b/core/function-impl/mogo-core-function-main/build/intermediates/incremental/packageDebugResources/merged.dir/values-xhdpi-1920x1000-v4/values-xhdpi-1920x1000-v4.xml @@ -0,0 +1,32 @@ + + + 600px + 599px + 20px + 1920px + 20px + 20px + 20px + 200px + 15px + 30px + 690px + 211px + 60px + 10px + 30px + 660px + 660px + 0px + 800px + 30px + 70px + 1263px + 830px + 30px + 590px + 635px + 350px + 0px + 270px + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/incremental/packageDebugResources/merged.dir/values-xhdpi-v4/values-xhdpi-v4.xml b/core/function-impl/mogo-core-function-main/build/intermediates/incremental/packageDebugResources/merged.dir/values-xhdpi-v4/values-xhdpi-v4.xml new file mode 100644 index 0000000000..8c3e4653e9 --- /dev/null +++ b/core/function-impl/mogo-core-function-main/build/intermediates/incremental/packageDebugResources/merged.dir/values-xhdpi-v4/values-xhdpi-v4.xml @@ -0,0 +1,33 @@ + + + 600px + 599px + 20px + 20px + 20px + 200px + 15px + 30px + 690px + 211px + 60px + 10px + 30px + 660px + 660px + 0px + 800px + 20px + 30px + 1313px + 18px + 18px + 18px + 20px + 830px + 30px + 800px + 340px + 350px + 270px + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/incremental/packageDebugResources/merged.dir/values/values.xml b/core/function-impl/mogo-core-function-main/build/intermediates/incremental/packageDebugResources/merged.dir/values/values.xml new file mode 100644 index 0000000000..45a08da706 --- /dev/null +++ b/core/function-impl/mogo-core-function-main/build/intermediates/incremental/packageDebugResources/merged.dir/values/values.xml @@ -0,0 +1,73 @@ + + + #212831 + 320px + 319px + 8px + 1920px + 6px + 2px + 8px + 110px + 10px + 20px + 370px + 140.5px + 32px + 8px + 18px + 352px + 352px + 0px + 800px + 10px + 16px + 658px + 2px + 2px + 4px + 2px + 460px + 15px + 444px + 350px + 350px + 0px + 144px + mogo-module-main + + + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/incremental/packageDebugResources/merger.xml b/core/function-impl/mogo-core-function-main/build/intermediates/incremental/packageDebugResources/merger.xml new file mode 100644 index 0000000000..bd78569f89 --- /dev/null +++ b/core/function-impl/mogo-core-function-main/build/intermediates/incremental/packageDebugResources/merger.xml @@ -0,0 +1,33 @@ + +800px350px10px660px690px60px211px30px30px15px270px660px600px599px200px20px30px830px800px0px20px30px340px1313px20px20px20px18px18px18px#2128310px800px350px8px352px370px32px140.5px18px20px10px144px352px320px319px110px6px15px460px444px350px10px16px658px8px2px1920px0px2px2px2px4px8pxmogo-module-main444px350px8px352px370px32px140.5px18px20px10px144px352px320px319px110px6px15px460px444px0px350px10px16px658px8px2px2px1920px0px0px0px6px6px800px350px10px660px690px60px211px30px30px15px270px660px600px599px200px20px30px830px590px0px30px70px635px1263px20px20px20px1920px0px \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/alibaba/android/arouter/routes/ARouter$$Group$$displayeffects.class b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/alibaba/android/arouter/routes/ARouter$$Group$$displayeffects.class new file mode 100644 index 0000000000..b41fbb5e33 Binary files /dev/null and b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/alibaba/android/arouter/routes/ARouter$$Group$$displayeffects.class differ diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/alibaba/android/arouter/routes/ARouter$$Group$$registercenter.class b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/alibaba/android/arouter/routes/ARouter$$Group$$registercenter.class new file mode 100644 index 0000000000..446f9a9990 Binary files /dev/null and b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/alibaba/android/arouter/routes/ARouter$$Group$$registercenter.class differ diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/alibaba/android/arouter/routes/ARouter$$Group$$service.class b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/alibaba/android/arouter/routes/ARouter$$Group$$service.class new file mode 100644 index 0000000000..67be43c466 Binary files /dev/null and b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/alibaba/android/arouter/routes/ARouter$$Group$$service.class differ diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/alibaba/android/arouter/routes/ARouter$$Group$$windowmanger.class b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/alibaba/android/arouter/routes/ARouter$$Group$$windowmanger.class new file mode 100644 index 0000000000..f4368a6eec Binary files /dev/null and b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/alibaba/android/arouter/routes/ARouter$$Group$$windowmanger.class differ diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/alibaba/android/arouter/routes/ARouter$$Providers$$mogocorefunctionmain.class b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/alibaba/android/arouter/routes/ARouter$$Providers$$mogocorefunctionmain.class new file mode 100644 index 0000000000..9710840671 Binary files /dev/null and b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/alibaba/android/arouter/routes/ARouter$$Providers$$mogocorefunctionmain.class differ diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/alibaba/android/arouter/routes/ARouter$$Root$$mogocorefunctionmain.class b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/alibaba/android/arouter/routes/ARouter$$Root$$mogocorefunctionmain.class new file mode 100644 index 0000000000..2143199f66 Binary files /dev/null and b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/alibaba/android/arouter/routes/ARouter$$Root$$mogocorefunctionmain.class differ diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/BuildConfig.class b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/BuildConfig.class new file mode 100644 index 0000000000..1acd0b0d04 Binary files /dev/null and b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/BuildConfig.class differ diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/EventDispatchCenter.class b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/EventDispatchCenter.class new file mode 100644 index 0000000000..c861d94bcf Binary files /dev/null and b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/EventDispatchCenter.class differ diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/MainActivity$1.class b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/MainActivity$1.class new file mode 100644 index 0000000000..c0a3246317 Binary files /dev/null and b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/MainActivity$1.class differ diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/MainActivity.class b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/MainActivity.class new file mode 100644 index 0000000000..bd3bc77afc Binary files /dev/null and b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/MainActivity.class differ diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/MainLauncherActivity.class b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/MainLauncherActivity.class new file mode 100644 index 0000000000..c6e1598c00 Binary files /dev/null and b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/MainLauncherActivity.class differ diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/MainMoGoApplication$1.class b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/MainMoGoApplication$1.class new file mode 100644 index 0000000000..ca49f45ca3 Binary files /dev/null and b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/MainMoGoApplication$1.class differ diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/MainMoGoApplication$2.class b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/MainMoGoApplication$2.class new file mode 100644 index 0000000000..bc43d29e0f Binary files /dev/null and b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/MainMoGoApplication$2.class differ diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/MainMoGoApplication.class b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/MainMoGoApplication.class new file mode 100644 index 0000000000..2be9860b5e Binary files /dev/null and b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/MainMoGoApplication.class differ diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/MainPresenter$1.class b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/MainPresenter$1.class new file mode 100644 index 0000000000..6140f9ae3f Binary files /dev/null and b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/MainPresenter$1.class differ diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/MainPresenter.class b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/MainPresenter.class new file mode 100644 index 0000000000..2e414dfc79 Binary files /dev/null and b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/MainPresenter.class differ diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/MainView.class b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/MainView.class new file mode 100644 index 0000000000..44139aa9bd Binary files /dev/null and b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/MainView.class differ diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/SchemeIntent$IntentWrapper.class b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/SchemeIntent$IntentWrapper.class new file mode 100644 index 0000000000..61778fd778 Binary files /dev/null and b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/SchemeIntent$IntentWrapper.class differ diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/SchemeIntent.class b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/SchemeIntent.class new file mode 100644 index 0000000000..bac1b08b61 Binary files /dev/null and b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/SchemeIntent.class differ diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/cards/MogoModulesHandler.class b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/cards/MogoModulesHandler.class new file mode 100644 index 0000000000..317362cf62 Binary files /dev/null and b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/cards/MogoModulesHandler.class differ diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/cards/MogoModulesManager.class b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/cards/MogoModulesManager.class new file mode 100644 index 0000000000..fc771af38b Binary files /dev/null and b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/cards/MogoModulesManager.class differ diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/constants/MainConstants.class b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/constants/MainConstants.class new file mode 100644 index 0000000000..89b14bc1a7 Binary files /dev/null and b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/constants/MainConstants.class differ diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/delaycheck/DelayCheckApiServices.class b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/delaycheck/DelayCheckApiServices.class new file mode 100644 index 0000000000..df221f4b3a Binary files /dev/null and b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/delaycheck/DelayCheckApiServices.class differ diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/delaycheck/DelayCheckHttpConstant.class b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/delaycheck/DelayCheckHttpConstant.class new file mode 100644 index 0000000000..5a15241448 Binary files /dev/null and b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/delaycheck/DelayCheckHttpConstant.class differ diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/delaycheck/DelayCheckResponse.class b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/delaycheck/DelayCheckResponse.class new file mode 100644 index 0000000000..a65fd173ca Binary files /dev/null and b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/delaycheck/DelayCheckResponse.class differ diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/delaycheck/DelayCheckResult.class b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/delaycheck/DelayCheckResult.class new file mode 100644 index 0000000000..0d89292a53 Binary files /dev/null and b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/delaycheck/DelayCheckResult.class differ diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/delaycheck/DelayCheckUploadRequest.class b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/delaycheck/DelayCheckUploadRequest.class new file mode 100644 index 0000000000..69db935f9b Binary files /dev/null and b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/delaycheck/DelayCheckUploadRequest.class differ diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/delaycheck/DelayCheckUtil$1.class b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/delaycheck/DelayCheckUtil$1.class new file mode 100644 index 0000000000..1a556d2ef2 Binary files /dev/null and b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/delaycheck/DelayCheckUtil$1.class differ diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/delaycheck/DelayCheckUtil$2.class b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/delaycheck/DelayCheckUtil$2.class new file mode 100644 index 0000000000..16e77cf2b3 Binary files /dev/null and b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/delaycheck/DelayCheckUtil$2.class differ diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/delaycheck/DelayCheckUtil.class b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/delaycheck/DelayCheckUtil.class new file mode 100644 index 0000000000..23a1b0261e Binary files /dev/null and b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/delaycheck/DelayCheckUtil.class differ diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/monitoring/VehicleMonitoring.class b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/monitoring/VehicleMonitoring.class new file mode 100644 index 0000000000..d6435b8377 Binary files /dev/null and b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/monitoring/VehicleMonitoring.class differ diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/registercenter/MogoRegisterCenter.class b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/registercenter/MogoRegisterCenter.class new file mode 100644 index 0000000000..52d4ca0498 Binary files /dev/null and b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/registercenter/MogoRegisterCenter.class differ diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/registercenter/MogoRegisterCenterHandler.class b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/registercenter/MogoRegisterCenterHandler.class new file mode 100644 index 0000000000..6a1b6e26a0 Binary files /dev/null and b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/registercenter/MogoRegisterCenterHandler.class differ diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/service/MogoMainService.class b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/service/MogoMainService.class new file mode 100644 index 0000000000..414a4fb938 Binary files /dev/null and b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/service/MogoMainService.class differ diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/utils/DisplayEffectsHelper.class b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/utils/DisplayEffectsHelper.class new file mode 100644 index 0000000000..adad434839 Binary files /dev/null and b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/utils/DisplayEffectsHelper.class differ diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/utils/DisplayEffectsManager.class b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/utils/DisplayEffectsManager.class new file mode 100644 index 0000000000..25ee1fe27a Binary files /dev/null and b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/utils/DisplayEffectsManager.class differ diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/windowview/DispatchTouchEventWrapper.class b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/windowview/DispatchTouchEventWrapper.class new file mode 100644 index 0000000000..562be4cd97 Binary files /dev/null and b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/windowview/DispatchTouchEventWrapper.class differ diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/windowview/FloatingViewHandler.class b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/windowview/FloatingViewHandler.class new file mode 100644 index 0000000000..1a311b40d0 Binary files /dev/null and b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/windowview/FloatingViewHandler.class differ diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/windowview/IWindowViewHandler$DefaultHandler.class b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/windowview/IWindowViewHandler$DefaultHandler.class new file mode 100644 index 0000000000..a78406f5e2 Binary files /dev/null and b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/windowview/IWindowViewHandler$DefaultHandler.class differ diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/windowview/IWindowViewHandler.class b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/windowview/IWindowViewHandler.class new file mode 100644 index 0000000000..9bd7d25724 Binary files /dev/null and b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/windowview/IWindowViewHandler.class differ diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/windowview/MogoWindowManager.class b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/windowview/MogoWindowManager.class new file mode 100644 index 0000000000..90ed98d6a2 Binary files /dev/null and b/core/function-impl/mogo-core-function-main/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/main/windowview/MogoWindowManager.class differ diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/library_java_res/debug/res.jar b/core/function-impl/mogo-core-function-main/build/intermediates/library_java_res/debug/res.jar new file mode 100644 index 0000000000..15cb0ecb3e Binary files /dev/null and b/core/function-impl/mogo-core-function-main/build/intermediates/library_java_res/debug/res.jar differ diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/library_manifest/debug/AndroidManifest.xml b/core/function-impl/mogo-core-function-main/build/intermediates/library_manifest/debug/AndroidManifest.xml new file mode 100644 index 0000000000..670fedc185 --- /dev/null +++ b/core/function-impl/mogo-core-function-main/build/intermediates/library_manifest/debug/AndroidManifest.xml @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/local_only_symbol_list/debug/parseDebugLibraryResources/R-def.txt b/core/function-impl/mogo-core-function-main/build/intermediates/local_only_symbol_list/debug/parseDebugLibraryResources/R-def.txt new file mode 100644 index 0000000000..31ff661d33 --- /dev/null +++ b/core/function-impl/mogo-core-function-main/build/intermediates/local_only_symbol_list/debug/parseDebugLibraryResources/R-def.txt @@ -0,0 +1,68 @@ +R_DEF: Internal format may change without notice +local +color module_main_window_background_color +dimen cards_container_dp_600 +dimen cards_container_shadow_dp_margin_top +dimen module_event_fragment_container_padding +dimen module_ext_top_view_max_width +dimen module_main_apps_fragment_container_padding +dimen module_main_apps_fragment_container_paddingBottom +dimen module_main_apps_fragment_container_paddingTop +dimen module_main_apps_fragment_container_width +dimen module_main_card_card_shadow_height_div +dimen module_main_card_card_shadow_width_div +dimen module_main_card_container_height +dimen module_main_card_container_marginBottom +dimen module_main_card_container_marginLeft +dimen module_main_card_container_marginTop +dimen module_main_card_container_paddingBottom +dimen module_main_card_container_width +dimen module_main_card_cover_up_margin +dimen module_main_entrance_fragment_container_marginLeft_in_vr_mode +dimen module_main_entrance_fragment_container_marginLeft_out_vr_mode +dimen module_main_entrance_fragment_container_padding +dimen module_main_entrance_fragment_container_padding_top +dimen module_main_entrance_fragment_container_width +dimen module_main_event_panel_fragment_paddingBottom +dimen module_main_event_panel_fragment_paddingLeft +dimen module_main_event_panel_fragment_paddingRight +dimen module_main_event_panel_fragment_paddingTop +dimen module_main_header_fragment_container_marginLeft +dimen module_main_header_fragment_container_marginTop +dimen module_main_id_entrance_fragment_container_marginLeft +dimen module_main_id_left_panel_fragment_container_width +dimen module_main_map_left_shadow_frame_width +dimen module_main_panel_margin_right +dimen module_main_top_shadow_height +drawable main_bitmap_splash_bg +drawable main_bitmap_splash_icon +drawable main_splash_bg +drawable module_main_dw_left_frame_bkg +drawable module_main_dw_top_frame_bkg +drawable module_main_launcher_bg +drawable module_main_warning_bkg_bottom +drawable module_main_warning_bkg_left +drawable module_main_warning_bkg_right +drawable module_main_warning_bkg_top +drawable mogo_slogan +drawable wu1 +drawable wu2 +id cl_special_effect +id iv_wu1 +id iv_wu2 +id module_main_id_cover_up +id module_main_id_entrance_fragment_container +id module_main_id_floating_view +id module_main_id_map_fragment_container +id module_main_id_message_history_fragment_container +id module_main_id_och_fragment +id module_main_id_search_fragment +id module_main_id_smp_fragment +id module_main_id_waring_fragment +layout module_main_activity_main +layout module_main_fragement_placeholder +string app_name +style Main +style MainAnimation +style noCheckboxStyle +style noRadioButtonStyle diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt b/core/function-impl/mogo-core-function-main/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt new file mode 100644 index 0000000000..8a2e38bbcb --- /dev/null +++ b/core/function-impl/mogo-core-function-main/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt @@ -0,0 +1,143 @@ +1 +2 +6 +7 /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml +9 android:targetSdkVersion="19" /> +9-->/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml +10 +11 +11-->/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:5:5-76 +11-->/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:5:22-73 +12 +12-->/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:6:5-76 +12-->/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:6:22-73 +13 +13-->/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:7:5-80 +13-->/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:7:22-77 +14 +14-->/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:8:5-81 +14-->/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:8:22-78 +15 +15-->/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:9:5-89 +15-->/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:9:22-86 +16 +16-->/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:10:5-79 +16-->/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:10:22-76 +17 +17-->/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:11:5-84 +17-->/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:11:22-81 +18 +18-->/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:12:5-78 +18-->/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:12:22-75 +19 +20 +20-->/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:14:5-70:19 +21 +22 +39 /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:31:9-60:20 +40 android:name="com.mogo.eagle.core.function.main.MainLauncherActivity" +40-->/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:32:13-49 +41 android:clearTaskOnLaunch="true" +41-->/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:33:13-45 +42 android:configChanges="mcc|mnc|locale|touchscreen|keyboard|keyboardHidden|navigation|screenLayout|fontScale|uiMode|orientation|screenSize|smallestScreenSize" +42-->/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:34:13-170 +43 android:enabled="true" +43-->/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:35:13-35 +44 android:launchMode="singleTop" +44-->/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:36:13-43 +45 android:resizeableActivity="false" +45-->/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:37:13-47 +46 android:resumeWhilePausing="true" +46-->/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:38:13-46 +47 android:screenOrientation="landscape" +47-->/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:39:13-50 +48 android:stateNotNeeded="true" +48-->/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:40:13-42 +49 android:theme="@style/Main" +49-->/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:41:13-40 +50 android:windowSoftInputMode="adjustPan|stateHidden" > +50-->/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:42:13-64 +51 +51-->/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:43:13-50:29 +52 +52-->/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:44:17-69 +52-->/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:44:25-66 +53 +54 +54-->/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:46:17-77 +54-->/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:46:27-74 +55 +55-->/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:47:17-81 +55-->/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:47:27-78 +56 +56-->/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:48:17-73 +56-->/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:48:27-70 +57 +57-->/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:49:17-76 +57-->/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:49:27-73 +58 +59 +59-->/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:51:13-59:29 +60 /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:52:17-55:45 +61 android:host="launcher" +61-->/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:53:21-44 +62 android:path="/main/switch2" +62-->/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:54:21-49 +63 android:scheme="mogo" /> +63-->/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:55:21-42 +64 +65 +65-->/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:49:17-76 +65-->/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:49:27-73 +66 +67 +67-->/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:57:17-69 +67-->/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:57:25-66 +68 +69 +69-->/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:58:17-78 +69-->/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:58:27-75 +70 +71 +72 +73 /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:62:9-69:19 +74 android:name="com.mogo.eagle.core.function.main.service.MogoMainService" +74-->/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:63:13-85 +75 android:enabled="true" +75-->/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:64:13-35 +76 android:exported="true" > +76-->/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:65:13-36 +77 +77-->/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:66:13-68:29 +78 +78-->/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:67:17-80 +78-->/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:67:25-77 +79 +80 +81 +82 +83 diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/merged_manifests/debug/output.json b/core/function-impl/mogo-core-function-main/build/intermediates/merged_manifests/debug/output.json new file mode 100644 index 0000000000..68904c735a --- /dev/null +++ b/core/function-impl/mogo-core-function-main/build/intermediates/merged_manifests/debug/output.json @@ -0,0 +1 @@ +[{"outputType":{"type":"MERGED_MANIFESTS"},"apkData":{"type":"MAIN","splits":[],"versionCode":1,"versionName":"0.0.58.10","enabled":true,"outputFile":"mogo-core-function-main-debug.aar","fullName":"debug","baseName":"debug"},"path":"../../library_manifest/debug/AndroidManifest.xml","properties":{"packageId":"com.mogo.eagle.core.function.main","split":""}}] \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_main_launcher_bg.png b/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_main_launcher_bg.png new file mode 100644 index 0000000000..418cb0a2bb Binary files /dev/null and b/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_main_launcher_bg.png differ diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable-ldpi-v4/mogo_slogan.png b/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable-ldpi-v4/mogo_slogan.png new file mode 100644 index 0000000000..d577900772 Binary files /dev/null and b/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable-ldpi-v4/mogo_slogan.png differ diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_main_launcher_bg.png b/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_main_launcher_bg.png new file mode 100644 index 0000000000..418cb0a2bb Binary files /dev/null and b/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_main_launcher_bg.png differ diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable-mdpi-v4/mogo_slogan.png b/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable-mdpi-v4/mogo_slogan.png new file mode 100644 index 0000000000..d577900772 Binary files /dev/null and b/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable-mdpi-v4/mogo_slogan.png differ diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable-xhdpi-2560x1440-v4/wu1.png b/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable-xhdpi-2560x1440-v4/wu1.png new file mode 100644 index 0000000000..0ab8e44e21 Binary files /dev/null and b/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable-xhdpi-2560x1440-v4/wu1.png differ diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable-xhdpi-2560x1440-v4/wu2.png b/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable-xhdpi-2560x1440-v4/wu2.png new file mode 100644 index 0000000000..aff4543048 Binary files /dev/null and b/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable-xhdpi-2560x1440-v4/wu2.png differ diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_main_launcher_bg.png b/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_main_launcher_bg.png new file mode 100644 index 0000000000..6d9cfaf591 Binary files /dev/null and b/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_main_launcher_bg.png differ diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_main_warning_bkg_bottom.xml b/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_main_warning_bkg_bottom.xml new file mode 100644 index 0000000000..74097c2465 --- /dev/null +++ b/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_main_warning_bkg_bottom.xml @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_main_warning_bkg_left.xml b/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_main_warning_bkg_left.xml new file mode 100644 index 0000000000..a9b438c963 --- /dev/null +++ b/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_main_warning_bkg_left.xml @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_main_warning_bkg_right.xml b/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_main_warning_bkg_right.xml new file mode 100644 index 0000000000..1a6e8c89b3 --- /dev/null +++ b/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_main_warning_bkg_right.xml @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_main_warning_bkg_top.xml b/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_main_warning_bkg_top.xml new file mode 100644 index 0000000000..1188f9c6d0 --- /dev/null +++ b/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_main_warning_bkg_top.xml @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/mogo_slogan.png b/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/mogo_slogan.png new file mode 100644 index 0000000000..00d5cd14a3 Binary files /dev/null and b/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/mogo_slogan.png differ diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/wu1.png b/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/wu1.png new file mode 100644 index 0000000000..e18fa37404 Binary files /dev/null and b/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/wu1.png differ diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/wu2.png b/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/wu2.png new file mode 100644 index 0000000000..db251b5c86 Binary files /dev/null and b/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/wu2.png differ diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable/main_bitmap_splash_bg.xml b/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable/main_bitmap_splash_bg.xml new file mode 100644 index 0000000000..d78157cb0e --- /dev/null +++ b/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable/main_bitmap_splash_bg.xml @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable/main_bitmap_splash_icon.xml b/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable/main_bitmap_splash_icon.xml new file mode 100644 index 0000000000..b92cdb3d10 --- /dev/null +++ b/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable/main_bitmap_splash_icon.xml @@ -0,0 +1,12 @@ + + + + + + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable/main_splash_bg.xml b/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable/main_splash_bg.xml new file mode 100644 index 0000000000..2bb9c98c45 --- /dev/null +++ b/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable/main_splash_bg.xml @@ -0,0 +1,9 @@ + + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable/module_main_dw_left_frame_bkg.xml b/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable/module_main_dw_left_frame_bkg.xml new file mode 100644 index 0000000000..719837b740 --- /dev/null +++ b/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable/module_main_dw_left_frame_bkg.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable/module_main_dw_top_frame_bkg.xml b/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable/module_main_dw_top_frame_bkg.xml new file mode 100644 index 0000000000..96231332f1 --- /dev/null +++ b/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/drawable/module_main_dw_top_frame_bkg.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/layout/module_main_activity_main.xml b/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/layout/module_main_activity_main.xml new file mode 100644 index 0000000000..38566ba5c3 --- /dev/null +++ b/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/layout/module_main_activity_main.xml @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/layout/module_main_fragement_placeholder.xml b/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/layout/module_main_fragement_placeholder.xml new file mode 100644 index 0000000000..1b6457df1f --- /dev/null +++ b/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/layout/module_main_fragement_placeholder.xml @@ -0,0 +1,7 @@ + + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/values-mdpi-v4/values-mdpi-v4.xml b/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/values-mdpi-v4/values-mdpi-v4.xml new file mode 100644 index 0000000000..36ac417328 --- /dev/null +++ b/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/values-mdpi-v4/values-mdpi-v4.xml @@ -0,0 +1,36 @@ + + + 320px + 319px + 8px + 1920px + 6px + 2px + 2px + 110px + 10px + 20px + 370px + 140.5px + 32px + 8px + 18px + 352px + 352px + 0px + 444px + 10px + 16px + 658px + 0px + 6px + 6px + 0px + 460px + 15px + 444px + 350px + 350px + 0px + 144px + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/values-xhdpi-1920x1000-v4/values-xhdpi-1920x1000-v4.xml b/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/values-xhdpi-1920x1000-v4/values-xhdpi-1920x1000-v4.xml new file mode 100644 index 0000000000..e999c629f4 --- /dev/null +++ b/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/values-xhdpi-1920x1000-v4/values-xhdpi-1920x1000-v4.xml @@ -0,0 +1,32 @@ + + + 600px + 599px + 20px + 1920px + 20px + 20px + 20px + 200px + 15px + 30px + 690px + 211px + 60px + 10px + 30px + 660px + 660px + 0px + 800px + 30px + 70px + 1263px + 830px + 30px + 590px + 635px + 350px + 0px + 270px + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/values-xhdpi-v4/values-xhdpi-v4.xml b/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/values-xhdpi-v4/values-xhdpi-v4.xml new file mode 100644 index 0000000000..8c3e4653e9 --- /dev/null +++ b/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/values-xhdpi-v4/values-xhdpi-v4.xml @@ -0,0 +1,33 @@ + + + 600px + 599px + 20px + 20px + 20px + 200px + 15px + 30px + 690px + 211px + 60px + 10px + 30px + 660px + 660px + 0px + 800px + 20px + 30px + 1313px + 18px + 18px + 18px + 20px + 830px + 30px + 800px + 340px + 350px + 270px + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/values/values.xml b/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/values/values.xml new file mode 100644 index 0000000000..45a08da706 --- /dev/null +++ b/core/function-impl/mogo-core-function-main/build/intermediates/packaged_res/debug/values/values.xml @@ -0,0 +1,73 @@ + + + #212831 + 320px + 319px + 8px + 1920px + 6px + 2px + 8px + 110px + 10px + 20px + 370px + 140.5px + 32px + 8px + 18px + 352px + 352px + 0px + 800px + 10px + 16px + 658px + 2px + 2px + 4px + 2px + 460px + 15px + 444px + 350px + 350px + 0px + 144px + mogo-module-main + + + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/res/symbol-table-with-package/debug/package-aware-r.txt b/core/function-impl/mogo-core-function-main/build/intermediates/res/symbol-table-with-package/debug/package-aware-r.txt new file mode 100644 index 0000000000..4a160a5460 --- /dev/null +++ b/core/function-impl/mogo-core-function-main/build/intermediates/res/symbol-table-with-package/debug/package-aware-r.txt @@ -0,0 +1,8277 @@ +com.mogo.eagle.core.function.main +anim abc_fade_in +anim abc_fade_out +anim abc_grow_fade_in_from_bottom +anim abc_popup_enter +anim abc_popup_exit +anim abc_shrink_fade_out_from_bottom +anim abc_slide_in_bottom +anim abc_slide_in_top +anim abc_slide_out_bottom +anim abc_slide_out_top +anim abc_tooltip_enter +anim abc_tooltip_exit +anim bottom_in +anim bottom_out +anim btn_checkbox_to_checked_box_inner_merged_animation +anim btn_checkbox_to_checked_box_outer_merged_animation +anim btn_checkbox_to_checked_icon_null_animation +anim btn_checkbox_to_unchecked_box_inner_merged_animation +anim btn_checkbox_to_unchecked_check_path_merged_animation +anim btn_checkbox_to_unchecked_icon_null_animation +anim btn_radio_to_off_mtrl_dot_group_animation +anim btn_radio_to_off_mtrl_ring_outer_animation +anim btn_radio_to_off_mtrl_ring_outer_path_animation +anim btn_radio_to_on_mtrl_dot_group_animation +anim btn_radio_to_on_mtrl_ring_outer_animation +anim btn_radio_to_on_mtrl_ring_outer_path_animation +anim cycle_7_1 +anim design_bottom_sheet_slide_in +anim design_bottom_sheet_slide_out +anim design_snackbar_in +anim design_snackbar_out +anim fragment_fast_out_extra_slow_in +anim leak_canary_enter_alpha +anim leak_canary_enter_backward +anim leak_canary_enter_forward +anim leak_canary_exit_alpha +anim leak_canary_exit_backward +anim leak_canary_exit_forward +anim left_in +anim left_out +anim mtrl_bottom_sheet_slide_in +anim mtrl_bottom_sheet_slide_out +anim mtrl_card_lowers_interpolator +anim push_left_in +anim right_in +anim right_out +anim shake +anim slide_top_to_bottom +anim tooltip_enter +anim tooltip_exit +anim top_in +anim top_out +anim v2x_unlike_heart_scale_ani_vr +animator design_appbar_state_list_animator +animator design_fab_hide_motion_spec +animator design_fab_show_motion_spec +animator fragment_close_enter +animator fragment_close_exit +animator fragment_fade_enter +animator fragment_fade_exit +animator fragment_open_enter +animator fragment_open_exit +animator linear_indeterminate_line1_head_interpolator +animator linear_indeterminate_line1_tail_interpolator +animator linear_indeterminate_line2_head_interpolator +animator linear_indeterminate_line2_tail_interpolator +animator mtrl_btn_state_list_anim +animator mtrl_btn_unelevated_state_list_anim +animator mtrl_card_state_list_anim +animator mtrl_chip_state_list_anim +animator mtrl_extended_fab_change_size_collapse_motion_spec +animator mtrl_extended_fab_change_size_expand_motion_spec +animator mtrl_extended_fab_change_size_motion_spec +animator mtrl_extended_fab_hide_motion_spec +animator mtrl_extended_fab_show_motion_spec +animator mtrl_extended_fab_state_list_animator +animator mtrl_fab_hide_motion_spec +animator mtrl_fab_show_motion_spec +animator mtrl_fab_transformation_sheet_collapse_spec +animator mtrl_fab_transformation_sheet_expand_spec +animator v2x_like_heart_animation +animator v2x_like_heart_animation_vr +animator v2x_unlike_heart_animation +animator v2x_unlike_heart_animation_vr +array ages +array gender +array list_preference +array map_style +array map_style_value +array mapdist +array mapscale +array values_list_preference +attr Back +attr ConstraintRotate +attr Icon +attr OtherHeartImg +attr SharedValue +attr SharedValueId +attr Title +attr actionBarDivider +attr actionBarItemBackground +attr actionBarPopupTheme +attr actionBarSize +attr actionBarSplitStyle +attr actionBarStyle +attr actionBarTabBarStyle +attr actionBarTabStyle +attr actionBarTabTextStyle +attr actionBarTheme +attr actionBarWidgetTheme +attr actionButtonStyle +attr actionDropDownStyle +attr actionLayout +attr actionMenuTextAppearance +attr actionMenuTextColor +attr actionModeBackground +attr actionModeCloseButtonStyle +attr actionModeCloseContentDescription +attr actionModeCloseDrawable +attr actionModeCopyDrawable +attr actionModeCutDrawable +attr actionModeFindDrawable +attr actionModePasteDrawable +attr actionModePopupWindowStyle +attr actionModeSelectAllDrawable +attr actionModeShareDrawable +attr actionModeSplitBackground +attr actionModeStyle +attr actionModeTheme +attr actionModeWebSearchDrawable +attr actionOverflowButtonStyle +attr actionOverflowMenuStyle +attr actionProviderClass +attr actionTextColorAlpha +attr actionViewClass +attr activityChooserViewStyle +attr actualImageResource +attr actualImageScaleType +attr actualImageUri +attr ad_marker_color +attr ad_marker_width +attr alertDialogButtonGroupStyle +attr alertDialogCenterButtons +attr alertDialogStyle +attr alertDialogTheme +attr alignContent +attr alignItems +attr allowStacking +attr alpha +attr alphabeticModifiers +attr altSrc +attr animateCircleAngleTo +attr animateRelativeTo +attr animate_relativeTo +attr animationMode +attr appBarLayoutStyle +attr applyMotionScene +attr arcMode +attr arrowHeadLength +attr arrowShaftLength +attr attributeName +attr autoCompleteMode +attr autoCompleteTextViewStyle +attr autoSizeMaxTextSize +attr autoSizeMinTextSize +attr autoSizePresetSizes +attr autoSizeStepGranularity +attr autoSizeTextType +attr autoTransition +attr backColor +attr backWidth +attr background +attr backgroundColor +attr backgroundImage +attr backgroundInsetBottom +attr backgroundInsetEnd +attr backgroundInsetStart +attr backgroundInsetTop +attr backgroundOverlayColorAlpha +attr backgroundSplit +attr backgroundStacked +attr backgroundTint +attr backgroundTintMode +attr badgeGravity +attr badgeStyle +attr badgeTextColor +attr barLength +attr bar_height +attr barrierAllowsGoneWidgets +attr barrierDirection +attr barrierMargin +attr behavior_autoHide +attr behavior_autoShrink +attr behavior_draggable +attr behavior_expandedOffset +attr behavior_fitToContents +attr behavior_halfExpandedRatio +attr behavior_hideable +attr behavior_overlapTop +attr behavior_peekHeight +attr behavior_saveFlags +attr behavior_skipCollapsed +attr blendSrc +attr borderRound +attr borderRoundPercent +attr borderWidth +attr borderlessButtonStyle +attr bottomAppBarStyle +attr bottomNavigationStyle +attr bottomSheetDialogTheme +attr bottomSheetStyle +attr boxBackgroundColor +attr boxBackgroundMode +attr boxCollapsedPaddingTop +attr boxCornerRadiusBottomEnd +attr boxCornerRadiusBottomStart +attr boxCornerRadiusTopEnd +attr boxCornerRadiusTopStart +attr boxStrokeColor +attr boxStrokeErrorColor +attr boxStrokeWidth +attr boxStrokeWidthFocused +attr brightness +attr btmText +attr btmTextSize +attr buffered_color +attr buttonBarButtonStyle +attr buttonBarNegativeButtonStyle +attr buttonBarNeutralButtonStyle +attr buttonBarPositiveButtonStyle +attr buttonBarStyle +attr buttonCompat +attr buttonGravity +attr buttonIconDimen +attr buttonPanelSideLayout +attr buttonStyle +attr buttonStyleSmall +attr buttonTint +attr buttonTintMode +attr camera_id +attr cardBackgroundColor +attr cardCornerRadius +attr cardElevation +attr cardForegroundColor +attr cardMaxElevation +attr cardPreventCornerOverlap +attr cardUseCompatPadding +attr cardViewStyle +attr carousel_backwardTransition +attr carousel_emptyViewsBehavior +attr carousel_firstView +attr carousel_forwardTransition +attr carousel_infinite +attr carousel_nextState +attr carousel_previousState +attr carousel_touchUpMode +attr carousel_touchUp_dampeningFactor +attr carousel_touchUp_velocityThreshold +attr chainUseRtl +attr checkboxStyle +attr checkedButton +attr checkedChip +attr checkedIcon +attr checkedIconEnabled +attr checkedIconMargin +attr checkedIconSize +attr checkedIconTint +attr checkedIconVisible +attr checkedTextViewStyle +attr chipBackgroundColor +attr chipCornerRadius +attr chipEndPadding +attr chipGroupStyle +attr chipIcon +attr chipIconEnabled +attr chipIconSize +attr chipIconTint +attr chipIconVisible +attr chipMinHeight +attr chipMinTouchTargetSize +attr chipSpacing +attr chipSpacingHorizontal +attr chipSpacingVertical +attr chipStandaloneStyle +attr chipStartPadding +attr chipStrokeColor +attr chipStrokeWidth +attr chipStyle +attr chipSurfaceColor +attr circleRadius +attr circularProgressIndicatorStyle +attr circularflow_angles +attr circularflow_defaultAngle +attr circularflow_defaultRadius +attr circularflow_radiusInDP +attr circularflow_viewCenter +attr civ_border_color +attr civ_border_overlay +attr civ_border_width +attr civ_circle_background_color +attr civ_fill_color +attr clearsTag +attr clickAction +attr clickable +attr clockFaceBackgroundColor +attr clockHandColor +attr clockIcon +attr clockNumberTextColor +attr closeIcon +attr closeIconEnabled +attr closeIconEndPadding +attr closeIconSize +attr closeIconStartPadding +attr closeIconTint +attr closeIconVisible +attr closeItemLayout +attr collapseContentDescription +attr collapseIcon +attr collapsedSize +attr collapsedTitleGravity +attr collapsedTitleTextAppearance +attr collapsingToolbarLayoutStyle +attr color +attr colorAccent +attr colorBackgroundFloating +attr colorButtonNormal +attr colorControlActivated +attr colorControlHighlight +attr colorControlNormal +attr colorError +attr colorOnBackground +attr colorOnError +attr colorOnPrimary +attr colorOnPrimarySurface +attr colorOnSecondary +attr colorOnSurface +attr colorPrimary +attr colorPrimaryDark +attr colorPrimarySurface +attr colorPrimaryVariant +attr colorSecondary +attr colorSecondaryVariant +attr colorSurface +attr colorSwitchThumbNormal +attr commitIcon +attr constraintSet +attr constraintSetEnd +attr constraintSetStart +attr constraint_referenced_ids +attr constraint_referenced_tags +attr constraints +attr content +attr contentDescription +attr contentInsetEnd +attr contentInsetEndWithActions +attr contentInsetLeft +attr contentInsetRight +attr contentInsetStart +attr contentInsetStartWithNavigation +attr contentPadding +attr contentPaddingBottom +attr contentPaddingEnd +attr contentPaddingLeft +attr contentPaddingRight +attr contentPaddingStart +attr contentPaddingTop +attr contentScrim +attr contrast +attr controlBackground +attr controller_layout_id +attr coordinatorLayoutStyle +attr cornerFamily +attr cornerFamilyBottomLeft +attr cornerFamilyBottomRight +attr cornerFamilyTopLeft +attr cornerFamilyTopRight +attr cornerRadius +attr cornerSize +attr cornerSizeBottomLeft +attr cornerSizeBottomRight +attr cornerSizeTopLeft +attr cornerSizeTopRight +attr counterEnabled +attr counterMaxLength +attr counterOverflowTextAppearance +attr counterOverflowTextColor +attr counterTextAppearance +attr counterTextColor +attr cpd_inAnimDuration +attr cpd_inStepColors +attr cpd_inStepPercent +attr cpd_initialAngle +attr cpd_keepDuration +attr cpd_maxSweepAngle +attr cpd_minSweepAngle +attr cpd_outAnimDuration +attr cpd_padding +attr cpd_reverse +attr cpd_rotateDuration +attr cpd_strokeColor +attr cpd_strokeColors +attr cpd_strokeSecondaryColor +attr cpd_strokeSize +attr cpd_transformDuration +attr cpd_transformInterpolator +attr crossfade +attr currentState +attr curveFit +attr customBoolean +attr customColorDrawableValue +attr customColorValue +attr customDimension +attr customFloatValue +attr customIntegerValue +attr customNavigationLayout +attr customPixelDimension +attr customReference +attr customStringValue +attr dayInvalidStyle +attr daySelectedStyle +attr dayStyle +attr dayTodayStyle +attr defaultDuration +attr defaultQueryHint +attr defaultState +attr default_artwork +attr deltaPolarAngle +attr deltaPolarRadius +attr deriveConstraintsFrom +attr dialogCornerRadius +attr dialogPreferredPadding +attr dialogTheme +attr disappearedScale +attr displayOptions +attr divider +attr dividerDrawable +attr dividerDrawableHorizontal +attr dividerDrawableVertical +attr dividerHorizontal +attr dividerPadding +attr dividerVertical +attr download_bg_line_color +attr download_bg_line_width +attr download_line_color +attr download_line_width +attr download_text_color +attr download_text_size +attr dragDirection +attr dragScale +attr dragThreshold +attr drawPath +attr drawableBottomCompat +attr drawableEndCompat +attr drawableLeftCompat +attr drawableRightCompat +attr drawableSize +attr drawableStartCompat +attr drawableTint +attr drawableTintMode +attr drawableTopCompat +attr drawerArrowStyle +attr dropDownListViewStyle +attr dropdownListPreferredItemHeight +attr dsv_orientation +attr duration +attr editTextBackground +attr editTextColor +attr editTextStyle +attr elenmentCount +attr elenmentEmpty +attr elenmentFill +attr elenmentHarf +attr elenmentHeight +attr elenmentPadding +attr elenmentStep +attr elenmentWidth +attr elevation +attr elevationOverlayColor +attr elevationOverlayEnabled +attr enableEdgeToEdge +attr endIconCheckable +attr endIconContentDescription +attr endIconDrawable +attr endIconMode +attr endIconTint +attr endIconTintMode +attr enforceMaterialTheme +attr enforceTextAppearance +attr ensureMinTouchTargetSize +attr errorContentDescription +attr errorEnabled +attr errorIconDrawable +attr errorIconTint +attr errorIconTintMode +attr errorTextAppearance +attr errorTextColor +attr expandActivityOverflowButtonDrawable +attr expanded +attr expandedHintEnabled +attr expandedTitleGravity +attr expandedTitleMargin +attr expandedTitleMarginBottom +attr expandedTitleMarginEnd +attr expandedTitleMarginStart +attr expandedTitleMarginTop +attr expandedTitleTextAppearance +attr extendMotionSpec +attr extendedFloatingActionButtonStyle +attr extraMultilineHeightEnabled +attr fabAlignmentMode +attr fabAnimationMode +attr fabCradleMargin +attr fabCradleRoundedCornerRadius +attr fabCradleVerticalOffset +attr fabCustomSize +attr fabSize +attr fadeDuration +attr failureImage +attr failureImageScaleType +attr fastScrollEnabled +attr fastScrollHorizontalThumbDrawable +attr fastScrollHorizontalTrackDrawable +attr fastScrollVerticalThumbDrawable +attr fastScrollVerticalTrackDrawable +attr fastforward_increment +attr firstBaselineToTopHeight +attr flexDirection +attr flexWrap +attr floatingActionButtonStyle +attr flow_firstHorizontalBias +attr flow_firstHorizontalStyle +attr flow_firstVerticalBias +attr flow_firstVerticalStyle +attr flow_horizontalAlign +attr flow_horizontalBias +attr flow_horizontalGap +attr flow_horizontalStyle +attr flow_lastHorizontalBias +attr flow_lastHorizontalStyle +attr flow_lastVerticalBias +attr flow_lastVerticalStyle +attr flow_maxElementsWrap +attr flow_padding +attr flow_verticalAlign +attr flow_verticalBias +attr flow_verticalGap +attr flow_verticalStyle +attr flow_wrapMode +attr font +attr fontFamily +attr fontProviderAuthority +attr fontProviderCerts +attr fontProviderFetchStrategy +attr fontProviderFetchTimeout +attr fontProviderPackage +attr fontProviderQuery +attr fontProviderSystemFontFamily +attr fontStyle +attr fontVariationSettings +attr fontWeight +attr forceApplySystemWindowInsetTop +attr foregroundInsidePadding +attr framePosition +attr gapBetweenBars +attr gestureInsetBottomIgnored +attr goIcon +attr haloColor +attr haloRadius +attr headerLayout +attr height +attr helperText +attr helperTextEnabled +attr helperTextTextAppearance +attr helperTextTextColor +attr hideAnimationBehavior +attr hideMotionSpec +attr hideOnContentScroll +attr hideOnScroll +attr hide_on_touch +attr hintAnimationEnabled +attr hintEnabled +attr hintTextAppearance +attr hintTextColor +attr homeAsUpIndicator +attr homeLayout +attr horizontalOffset +attr hoveredFocusedTranslationZ +attr icon +attr iconEndPadding +attr iconGravity +attr iconPadding +attr iconSize +attr iconStartPadding +attr iconTint +attr iconTintMode +attr iconifiedByDefault +attr ifTagNotSet +attr ifTagSet +attr imageButtonStyle +attr imagePanX +attr imagePanY +attr imageRotate +attr imageZoom +attr indeterminateAnimationType +attr indeterminateProgressStyle +attr indicatorColor +attr indicatorDirectionCircular +attr indicatorDirectionLinear +attr indicatorInset +attr indicatorSize +attr initialActivityCount +attr insetForeground +attr isLightTheme +attr isMaterialTheme +attr itemBackground +attr itemFillColor +attr itemHorizontalPadding +attr itemHorizontalTranslationEnabled +attr itemIconPadding +attr itemIconSize +attr itemIconTint +attr itemMaxLines +attr itemPadding +attr itemRippleColor +attr itemShapeAppearance +attr itemShapeAppearanceOverlay +attr itemShapeFillColor +attr itemShapeInsetBottom +attr itemShapeInsetEnd +attr itemShapeInsetStart +attr itemShapeInsetTop +attr itemSpacing +attr itemStrokeColor +attr itemStrokeWidth +attr itemTextAppearance +attr itemTextAppearanceActive +attr itemTextAppearanceInactive +attr itemTextColor +attr justifyContent +attr keyBackground +attr keyPositionType +attr keyTextSize +attr keyTextStyle +attr keyboardIcon +attr keylines +attr labelBehavior +attr labelStyle +attr labelVisibilityMode +attr lastBaselineToBottomHeight +attr layout +attr layoutDescription +attr layoutDuringTransition +attr layoutManager +attr layout_alignSelf +attr layout_anchor +attr layout_anchorGravity +attr layout_behavior +attr layout_collapseMode +attr layout_collapseParallaxMultiplier +attr layout_constrainedHeight +attr layout_constrainedWidth +attr layout_constraintBaseline_creator +attr layout_constraintBaseline_toBaselineOf +attr layout_constraintBaseline_toBottomOf +attr layout_constraintBaseline_toTopOf +attr layout_constraintBottom_creator +attr layout_constraintBottom_toBottomOf +attr layout_constraintBottom_toTopOf +attr layout_constraintCircle +attr layout_constraintCircleAngle +attr layout_constraintCircleRadius +attr layout_constraintDimensionRatio +attr layout_constraintEnd_toEndOf +attr layout_constraintEnd_toStartOf +attr layout_constraintGuide_begin +attr layout_constraintGuide_end +attr layout_constraintGuide_percent +attr layout_constraintHeight +attr layout_constraintHeight_default +attr layout_constraintHeight_max +attr layout_constraintHeight_min +attr layout_constraintHeight_percent +attr layout_constraintHorizontal_bias +attr layout_constraintHorizontal_chainStyle +attr layout_constraintHorizontal_weight +attr layout_constraintLeft_creator +attr layout_constraintLeft_toLeftOf +attr layout_constraintLeft_toRightOf +attr layout_constraintRight_creator +attr layout_constraintRight_toLeftOf +attr layout_constraintRight_toRightOf +attr layout_constraintStart_toEndOf +attr layout_constraintStart_toStartOf +attr layout_constraintTag +attr layout_constraintTop_creator +attr layout_constraintTop_toBottomOf +attr layout_constraintTop_toTopOf +attr layout_constraintVertical_bias +attr layout_constraintVertical_chainStyle +attr layout_constraintVertical_weight +attr layout_constraintWidth +attr layout_constraintWidth_default +attr layout_constraintWidth_max +attr layout_constraintWidth_min +attr layout_constraintWidth_percent +attr layout_dodgeInsetEdges +attr layout_editor_absoluteX +attr layout_editor_absoluteY +attr layout_flexBasisPercent +attr layout_flexGrow +attr layout_flexShrink +attr layout_goneMarginBaseline +attr layout_goneMarginBottom +attr layout_goneMarginEnd +attr layout_goneMarginLeft +attr layout_goneMarginRight +attr layout_goneMarginStart +attr layout_goneMarginTop +attr layout_insetEdge +attr layout_keyline +attr layout_marginBaseline +attr layout_maxHeight +attr layout_maxWidth +attr layout_minHeight +attr layout_minWidth +attr layout_optimizationLevel +attr layout_order +attr layout_scrollFlags +attr layout_scrollInterpolator +attr layout_wrapBefore +attr layout_wrapBehaviorInParent +attr leak_canary_plus_color +attr liftOnScroll +attr liftOnScrollTargetViewId +attr limitBoundsTo +attr lineHeight +attr lineSpacing +attr linearProgressIndicatorStyle +attr listChoiceBackgroundIndicator +attr listChoiceIndicatorMultipleAnimated +attr listChoiceIndicatorSingleAnimated +attr listDividerAlertDialog +attr listItemLayout +attr listLayout +attr listMenuViewStyle +attr listPopupWindowStyle +attr listPreferredItemHeight +attr listPreferredItemHeightLarge +attr listPreferredItemHeightSmall +attr listPreferredItemPaddingEnd +attr listPreferredItemPaddingLeft +attr listPreferredItemPaddingRight +attr listPreferredItemPaddingStart +attr logo +attr logoDescription +attr maskColor +attr materialAlertDialogBodyTextStyle +attr materialAlertDialogTheme +attr materialAlertDialogTitleIconStyle +attr materialAlertDialogTitlePanelStyle +attr materialAlertDialogTitleTextStyle +attr materialButtonOutlinedStyle +attr materialButtonStyle +attr materialButtonToggleGroupStyle +attr materialCalendarDay +attr materialCalendarFullscreenTheme +attr materialCalendarHeaderCancelButton +attr materialCalendarHeaderConfirmButton +attr materialCalendarHeaderDivider +attr materialCalendarHeaderLayout +attr materialCalendarHeaderSelection +attr materialCalendarHeaderTitle +attr materialCalendarHeaderToggleButton +attr materialCalendarMonth +attr materialCalendarMonthNavigationButton +attr materialCalendarStyle +attr materialCalendarTheme +attr materialCalendarYearNavigationButton +attr materialCardViewStyle +attr materialCircleRadius +attr materialClockStyle +attr materialThemeOverlay +attr materialTimePickerStyle +attr materialTimePickerTheme +attr maxAcceleration +attr maxActionInlineWidth +attr maxButtonHeight +attr maxCharacterCount +attr maxHeight +attr maxImageSize +attr maxLine +attr maxLines +attr maxVelocity +attr maxWidth +attr measureWithLargestChild +attr menu +attr menuGravity +attr methodName +attr minHeight +attr minHideDelay +attr minSeparation +attr minTouchTargetSize +attr minWidth +attr miv_blurRadius +attr miv_borderColor +attr miv_bottomLeftRadius +attr miv_bottomRightRadius +attr miv_failureHolder +attr miv_isBlur +attr miv_overlayImageId +attr miv_placeHolder +attr miv_radius +attr miv_shape +attr miv_shapeBorderWidth +attr miv_topLeftRadius +attr miv_topRightRadius +attr mock_diagonalsColor +attr mock_label +attr mock_labelBackgroundColor +attr mock_labelColor +attr mock_showDiagonals +attr mock_showLabel +attr motionDebug +attr motionDurationLong1 +attr motionDurationLong2 +attr motionDurationMedium1 +attr motionDurationMedium2 +attr motionDurationShort1 +attr motionDurationShort2 +attr motionEasingAccelerated +attr motionEasingDecelerated +attr motionEasingEmphasized +attr motionEasingLinear +attr motionEasingStandard +attr motionEffect_alpha +attr motionEffect_end +attr motionEffect_move +attr motionEffect_start +attr motionEffect_strict +attr motionEffect_translationX +attr motionEffect_translationY +attr motionEffect_viewTransition +attr motionInterpolator +attr motionPath +attr motionPathRotate +attr motionProgress +attr motionStagger +attr motionTarget +attr motion_postLayoutCollision +attr motion_triggerOnCollision +attr moveWhenScrollAtTop +attr multiChoiceItemLayout +attr navigationContentDescription +attr navigationIcon +attr navigationIconTint +attr navigationMode +attr navigationRailStyle +attr navigationViewStyle +attr nestedScrollFlags +attr nestedScrollable +attr number +attr numericModifiers +attr onCross +attr onHide +attr onNegativeCross +attr onPositiveCross +attr onShow +attr onStateTransition +attr onTouchUp +attr overlapAnchor +attr overlay +attr overlayImage +attr paddingBottomNoButtons +attr paddingBottomSystemWindowInsets +attr paddingEnd +attr paddingLeftSystemWindowInsets +attr paddingRightSystemWindowInsets +attr paddingStart +attr paddingTopNoTitle +attr paddingTopSystemWindowInsets +attr panelBackground +attr panelMenuListTheme +attr panelMenuListWidth +attr passwordToggleContentDescription +attr passwordToggleDrawable +attr passwordToggleEnabled +attr passwordToggleTint +attr passwordToggleTintMode +attr pathMotionArc +attr path_percent +attr percentHeight +attr percentWidth +attr percentX +attr percentY +attr perpendicularPath_percent +attr pivotAnchor +attr placeholderImage +attr placeholderImageScaleType +attr placeholderText +attr placeholderTextAppearance +attr placeholderTextColor +attr placeholder_emptyVisibility +attr play_bg_line_color +attr play_bg_line_width +attr play_line_color +attr play_line_width +attr played_color +attr player_layout_id +attr polarRelativeTo +attr popupMenuBackground +attr popupMenuStyle +attr popupTheme +attr popupWindowStyle +attr prefixText +attr prefixTextAppearance +attr prefixTextColor +attr preserveIconSpacing +attr pressedStateOverlayImage +attr pressedTranslationZ +attr progColor +attr progFirstColor +attr progStartColor +attr progWidth +attr progress +attr progressBarAutoRotateInterval +attr progressBarImage +attr progressBarImageScaleType +attr progressBarPadding +attr progressBarStyle +attr pv_progressMode +attr quantizeMotionInterpolator +attr quantizeMotionPhase +attr quantizeMotionSteps +attr queryBackground +attr queryHint +attr radioButtonStyle +attr rangeFillColor +attr ratingBarStyle +attr ratingBarStyleIndicator +attr ratingBarStyleSmall +attr reactiveGuide_animateChange +attr reactiveGuide_applyToAllConstraintSets +attr reactiveGuide_applyToConstraintSet +attr reactiveGuide_valueId +attr realtimeBlurRadius +attr realtimeDownsampleFactor +attr realtimeOverlayColor +attr recyclerViewStyle +attr region_heightLessThan +attr region_heightMoreThan +attr region_widthLessThan +attr region_widthMoreThan +attr resize_mode +attr retryImage +attr retryImageScaleType +attr reverseLayout +attr rewind_increment +attr rippleColor +attr riv_border_color +attr riv_border_width +attr riv_corner_radius +attr riv_corner_radius_bottom_left +attr riv_corner_radius_bottom_right +attr riv_corner_radius_top_left +attr riv_corner_radius_top_right +attr riv_mutate_background +attr riv_oval +attr riv_tile_Mode +attr riv_tile_Mode_x +attr riv_tile_Mode_y +attr rotationCenterId +attr round +attr roundAsCircle +attr roundBottomEnd +attr roundBottomLeft +attr roundBottomRight +attr roundBottomStart +attr roundLayoutRadius +attr roundPercent +attr roundTopEnd +attr roundTopLeft +attr roundTopRight +attr roundTopStart +attr roundWithOverlayColor +attr roundedCornerRadius +attr roundingBorderColor +attr roundingBorderPadding +attr roundingBorderWidth +attr saturation +attr scaleFromTextSize +attr scanline +attr scrimAnimationDuration +attr scrimBackground +attr scrimVisibleHeightTrigger +attr scrubber_color +attr scrubber_disabled_size +attr scrubber_dragged_size +attr scrubber_enabled_size +attr searchHintIcon +attr searchIcon +attr searchViewStyle +attr seekBarStyle +attr selectableItemBackground +attr selectableItemBackgroundBorderless +attr selectionRequired +attr selectorSize +attr setsTag +attr shapeAppearance +attr shapeAppearanceLargeComponent +attr shapeAppearanceMediumComponent +attr shapeAppearanceOverlay +attr shapeAppearanceSmallComponent +attr showAnimationBehavior +attr showAsAction +attr showDelay +attr showDivider +attr showDividerHorizontal +attr showDividerVertical +attr showDividers +attr showGrayBack +attr showMotionSpec +attr showPaths +attr showRectLine +attr showText +attr showTitle +attr show_fps +attr show_timeout +attr shrinkMotionSpec +attr singleChoiceItemLayout +attr singleLine +attr singleSelection +attr sizePercent +attr sliderStyle +attr snackbarButtonStyle +attr snackbarStyle +attr snackbarTextViewStyle +attr spanCount +attr spinBars +attr spinnerDropDownItemStyle +attr spinnerStyle +attr splitTrack +attr springBoundary +attr springDamping +attr springMass +attr springStiffness +attr springStopThreshold +attr srcCompat +attr stackFromEnd +attr staggered +attr startIconCheckable +attr startIconContentDescription +attr startIconDrawable +attr startIconTint +attr startIconTintMode +attr state_above_anchor +attr state_collapsed +attr state_collapsible +attr state_dragged +attr state_liftable +attr state_lifted +attr statusBarBackground +attr statusBarForeground +attr statusBarScrim +attr stepSize +attr strokeColor +attr strokeWidth +attr subMenuArrow +attr submitBackground +attr subtitle +attr subtitleCentered +attr subtitleTextAppearance +attr subtitleTextColor +attr subtitleTextStyle +attr suffixText +attr suffixTextAppearance +attr suffixTextColor +attr suggestionRowLayout +attr surface_type +attr switchMinWidth +attr switchPadding +attr switchStyle +attr switchTextAppearance +attr tabBackground +attr tabContentStart +attr tabGravity +attr tabIconTint +attr tabIconTintMode +attr tabIndicator +attr tabIndicatorAnimationDuration +attr tabIndicatorAnimationMode +attr tabIndicatorColor +attr tabIndicatorFullWidth +attr tabIndicatorGravity +attr tabIndicatorHeight +attr tabInlineLabel +attr tabMaxWidth +attr tabMinWidth +attr tabMode +attr tabPadding +attr tabPaddingBottom +attr tabPaddingEnd +attr tabPaddingStart +attr tabPaddingTop +attr tabRippleColor +attr tabSelectedTextColor +attr tabStyle +attr tabTextAppearance +attr tabTextColor +attr tabUnboundedRipple +attr targetId +attr telltales_tailColor +attr telltales_tailScale +attr telltales_velocityMode +attr textAllCaps +attr textAppearanceBody1 +attr textAppearanceBody2 +attr textAppearanceButton +attr textAppearanceCaption +attr textAppearanceHeadline1 +attr textAppearanceHeadline2 +attr textAppearanceHeadline3 +attr textAppearanceHeadline4 +attr textAppearanceHeadline5 +attr textAppearanceHeadline6 +attr textAppearanceLargePopupMenu +attr textAppearanceLineHeightEnabled +attr textAppearanceListItem +attr textAppearanceListItemSecondary +attr textAppearanceListItemSmall +attr textAppearanceOverline +attr textAppearancePopupMenuHeader +attr textAppearanceSearchResultSubtitle +attr textAppearanceSearchResultTitle +attr textAppearanceSmallPopupMenu +attr textAppearanceSubtitle1 +attr textAppearanceSubtitle2 +attr textBackground +attr textBackgroundPanX +attr textBackgroundPanY +attr textBackgroundRotate +attr textBackgroundZoom +attr textColorAlertDialogListItem +attr textColorSearchUrl +attr textEndPadding +attr textFillColor +attr textInputLayoutFocusedRectEnabled +attr textInputStyle +attr textLocale +attr textOutlineColor +attr textOutlineThickness +attr textPanX +attr textPanY +attr textStartPadding +attr textureBlurFactor +attr textureEffect +attr textureHeight +attr textureWidth +attr theme +attr themeLineHeight +attr thickness +attr thumbColor +attr thumbElevation +attr thumbRadius +attr thumbStrokeColor +attr thumbStrokeWidth +attr thumbTextPadding +attr thumbTint +attr thumbTintMode +attr tickColor +attr tickColorActive +attr tickColorInactive +attr tickMark +attr tickMarkTint +attr tickMarkTintMode +attr tickVisible +attr tint +attr tintMode +attr title +attr titleCentered +attr titleCollapseMode +attr titleEnabled +attr titleMargin +attr titleMarginBottom +attr titleMarginEnd +attr titleMarginStart +attr titleMarginTop +attr titleMargins +attr titleTextAppearance +attr titleTextColor +attr titleTextStyle +attr toolbarId +attr toolbarNavigationButtonStyle +attr toolbarStyle +attr tooltipForegroundColor +attr tooltipFrameBackground +attr tooltipStyle +attr tooltipText +attr topText +attr topTextSize +attr touchAnchorId +attr touchAnchorSide +attr touchRegionId +attr touch_target_height +attr track +attr trackColor +attr trackColorActive +attr trackColorInactive +attr trackCornerRadius +attr trackHeight +attr trackThickness +attr trackTint +attr trackTintMode +attr transformPivotTarget +attr transitionDisable +attr transitionEasing +attr transitionFlags +attr transitionPathRotate +attr transitionShapeAppearance +attr triAngleColor +attr triAngleLength +attr triAngleWidth +attr triggerId +attr triggerReceiver +attr triggerSlack +attr ttcIndex +attr unplayed_color +attr upDuration +attr useCompatPadding +attr useMaterialThemeColors +attr use_artwork +attr use_controller +attr values +attr verticalOffset +attr viewAspectRatio +attr viewInflaterClass +attr viewTransitionMode +attr viewTransitionOnCross +attr viewTransitionOnNegativeCross +attr viewTransitionOnPositiveCross +attr visibilityMode +attr voiceIcon +attr warmth +attr waveDecay +attr waveOffset +attr wavePeriod +attr wavePhase +attr waveShape +attr waveVariesBy +attr windowActionBar +attr windowActionBarOverlay +attr windowActionModeOverlay +attr windowFixedHeightMajor +attr windowFixedHeightMinor +attr windowFixedWidthMajor +attr windowFixedWidthMinor +attr windowMinWidthMajor +attr windowMinWidthMinor +attr windowNoTitle +attr xRadius +attr yRadius +attr yearSelectedStyle +attr yearStyle +attr yearTodayStyle +bool abc_action_bar_embed_tabs +bool abc_allow_stacked_button_bar +bool abc_config_actionMenuItemAllCaps +bool abc_config_closeDialogWhenTouchOutside +bool abc_config_showMenuShortcutsWhenKeyboardPresent +bool leak_canary_add_dynamic_shortcut +bool leak_canary_add_launcher_icon +bool leak_canary_allow_in_non_debuggable_build +bool leak_canary_plumber_auto_install +bool leak_canary_watcher_auto_install +bool leak_canary_watcher_watch_dismissed_dialogs +bool mtrl_btn_textappearance_all_caps +color abc_background_cache_hint_selector_material_dark +color abc_background_cache_hint_selector_material_light +color abc_btn_colored_borderless_text_material +color abc_btn_colored_text_material +color abc_color_highlight_material +color abc_decor_view_status_guard +color abc_decor_view_status_guard_light +color abc_hint_foreground_material_dark +color abc_hint_foreground_material_light +color abc_input_method_navigation_guard +color abc_primary_text_disable_only_material_dark +color abc_primary_text_disable_only_material_light +color abc_primary_text_material_dark +color abc_primary_text_material_light +color abc_search_url_text +color abc_search_url_text_normal +color abc_search_url_text_pressed +color abc_search_url_text_selected +color abc_secondary_text_material_dark +color abc_secondary_text_material_light +color abc_tint_btn_checkable +color abc_tint_default +color abc_tint_edittext +color abc_tint_seek_thumb +color abc_tint_spinner +color abc_tint_switch_track +color accent_material_dark +color accent_material_light +color androidx_core_ripple_material_light +color androidx_core_secondary_text_default_material_light +color arrow_color +color background_color +color background_debug +color background_error +color background_floating_material_dark +color background_floating_material_light +color background_info +color background_light_dark +color background_material_dark +color background_material_light +color background_verbose +color background_warn +color background_wtf +color bgSearchList +color bg_gray_common_page +color black +color black_overlay +color blue +color blue_back_color +color blue_check_color +color bottom_container_bg +color bright_foreground_disabled_material_dark +color bright_foreground_disabled_material_light +color bright_foreground_inverse_material_dark +color bright_foreground_inverse_material_light +color bright_foreground_material_dark +color bright_foreground_material_light +color burlywood +color button_material_dark +color button_material_light +color cardview_dark_background +color cardview_light_background +color cardview_shadow_end_color +color cardview_shadow_start_color +color check_icon_error_color +color check_info_position_line_color +color check_info_shape_color +color check_info_title_back +color check_list_item_back +color check_little_btn +color check_little_btn_green +color check_little_btn_solid +color check_little_btn_solid_green +color check_tip_error_color +color checkbox_themeable_attribute_color +color colorAccent +color colorControlActivated +color colorPrimary +color colorPrimaryDark +color colorSplashBackground +color colorToolbarText +color colorTransparent +color color_000000 +color color_0099dd +color color_8F0005 +color color_B3FFFFFF +color color_FF0006 +color color_FF2966EC +color color_FFA7B6F0 +color color_FFFFFF +color defaultDivisionLine +color defaultHintText +color defaultLinkText +color defaultMainText +color defaulttextcolor +color design_bottom_navigation_shadow_color +color design_box_stroke_color +color design_dark_default_color_background +color design_dark_default_color_error +color design_dark_default_color_on_background +color design_dark_default_color_on_error +color design_dark_default_color_on_primary +color design_dark_default_color_on_secondary +color design_dark_default_color_on_surface +color design_dark_default_color_primary +color design_dark_default_color_primary_dark +color design_dark_default_color_primary_variant +color design_dark_default_color_secondary +color design_dark_default_color_secondary_variant +color design_dark_default_color_surface +color design_default_color_background +color design_default_color_error +color design_default_color_on_background +color design_default_color_on_error +color design_default_color_on_primary +color design_default_color_on_secondary +color design_default_color_on_surface +color design_default_color_primary +color design_default_color_primary_dark +color design_default_color_primary_variant +color design_default_color_secondary +color design_default_color_secondary_variant +color design_default_color_surface +color design_error +color design_fab_shadow_end_color +color design_fab_shadow_mid_color +color design_fab_shadow_start_color +color design_fab_stroke_end_inner_color +color design_fab_stroke_end_outer_color +color design_fab_stroke_top_inner_color +color design_fab_stroke_top_outer_color +color design_icon_tint +color design_snackbar_background_color +color dialog_bg_color +color dim_foreground_disabled_material_dark +color dim_foreground_disabled_material_light +color dim_foreground_material_dark +color dim_foreground_material_light +color error_color_material +color error_color_material_dark +color error_color_material_light +color exo_edit_mode_background_color +color focused +color foreground_debug +color foreground_error +color foreground_info +color foreground_material_dark +color foreground_material_light +color foreground_verbose +color foreground_warn +color foreground_wtf +color gray_light +color gray_light_d +color green +color highlighted_text_material_dark +color highlighted_text_material_light +color leak_canary_background_color +color leak_canary_bottom_menu +color leak_canary_class_name +color leak_canary_count_default +color leak_canary_count_new +color leak_canary_count_new_border +color leak_canary_count_text +color leak_canary_extra +color leak_canary_gray +color leak_canary_gray_3f +color leak_canary_gray_6f +color leak_canary_gray_darkest +color leak_canary_gray_darkest_25p +color leak_canary_gray_darkest_40p +color leak_canary_gray_light +color leak_canary_gray_lightest +color leak_canary_heap_app +color leak_canary_heap_boolean_array +color leak_canary_heap_byte_array +color leak_canary_heap_char_array +color leak_canary_heap_class_dump +color leak_canary_heap_double_array +color leak_canary_heap_float_array +color leak_canary_heap_hprof_string +color leak_canary_heap_image +color leak_canary_heap_instance +color leak_canary_heap_instance_string +color leak_canary_heap_int_array +color leak_canary_heap_load_class +color leak_canary_heap_long_array +color leak_canary_heap_object_array +color leak_canary_heap_other +color leak_canary_heap_short_array +color leak_canary_heap_stack_trace +color leak_canary_heap_zygote +color leak_canary_help +color leak_canary_leak +color leak_canary_reference +color leak_canary_white +color leak_canary_yellow +color leak_canary_yellow_button +color leak_canary_yellow_button_pressed +color light_g +color live_video_background_color +color live_video_progress_bar_loading_color +color material_blue_grey_800 +color material_blue_grey_900 +color material_blue_grey_950 +color material_cursor_color +color material_deep_teal_200 +color material_deep_teal_500 +color material_grey_100 +color material_grey_300 +color material_grey_50 +color material_grey_600 +color material_grey_800 +color material_grey_850 +color material_grey_900 +color material_on_background_disabled +color material_on_background_emphasis_high_type +color material_on_background_emphasis_medium +color material_on_primary_disabled +color material_on_primary_emphasis_high_type +color material_on_primary_emphasis_medium +color material_on_surface_disabled +color material_on_surface_emphasis_high_type +color material_on_surface_emphasis_medium +color material_on_surface_stroke +color material_slider_active_tick_marks_color +color material_slider_active_track_color +color material_slider_halo_color +color material_slider_inactive_tick_marks_color +color material_slider_inactive_track_color +color material_slider_thumb_color +color material_timepicker_button_background +color material_timepicker_button_stroke +color material_timepicker_clock_text_color +color material_timepicker_clockface +color material_timepicker_modebutton_tint +color module_carchatting_hawk_eye_status_color +color module_commons_FFF_333 +color module_commons_dlg_bkg +color module_commons_wm_dialog_text_textColor +color module_ext_color_voice_text +color module_main_window_background_color +color module_mogo_autopilot_status_disable +color module_mogo_autopilot_status_enable +color module_push_check_color +color module_push_check_dialog_bg_color +color module_push_item_content_textColor +color module_push_item_line_color +color module_push_item_time_textColor +color module_push_item_title_textColor +color module_push_panel_title_textColor +color module_services_dispatch_affirm_bg +color module_services_dispatch_bg +color module_services_dispatch_cars_background +color module_services_dispatch_cars_cancel +color module_services_dispatch_cars_count_down_bg +color module_services_dispatch_cars_count_down_txt +color module_services_dispatch_cars_line +color module_services_dispatch_cars_text_loc +color module_services_remind_background +color module_switch_map_bg +color modules_commons_toast_text_color +color mtrl_bottom_nav_colored_item_tint +color mtrl_bottom_nav_colored_ripple_color +color mtrl_bottom_nav_item_tint +color mtrl_bottom_nav_ripple_color +color mtrl_btn_bg_color_selector +color mtrl_btn_ripple_color +color mtrl_btn_stroke_color_selector +color mtrl_btn_text_btn_bg_color_selector +color mtrl_btn_text_btn_ripple_color +color mtrl_btn_text_color_disabled +color mtrl_btn_text_color_selector +color mtrl_btn_transparent_bg_color +color mtrl_calendar_item_stroke_color +color mtrl_calendar_selected_range +color mtrl_card_view_foreground +color mtrl_card_view_ripple +color mtrl_chip_background_color +color mtrl_chip_close_icon_tint +color mtrl_chip_ripple_color +color mtrl_chip_surface_color +color mtrl_chip_text_color +color mtrl_choice_chip_background_color +color mtrl_choice_chip_ripple_color +color mtrl_choice_chip_text_color +color mtrl_error +color mtrl_fab_bg_color_selector +color mtrl_fab_icon_text_color_selector +color mtrl_fab_ripple_color +color mtrl_filled_background_color +color mtrl_filled_icon_tint +color mtrl_filled_stroke_color +color mtrl_indicator_text_color +color mtrl_navigation_bar_colored_item_tint +color mtrl_navigation_bar_colored_ripple_color +color mtrl_navigation_bar_item_tint +color mtrl_navigation_bar_ripple_color +color mtrl_navigation_item_background_color +color mtrl_navigation_item_icon_tint +color mtrl_navigation_item_text_color +color mtrl_on_primary_text_btn_text_color_selector +color mtrl_on_surface_ripple_color +color mtrl_outlined_icon_tint +color mtrl_outlined_stroke_color +color mtrl_popupmenu_overlay_color +color mtrl_scrim_color +color mtrl_tabs_colored_ripple_color +color mtrl_tabs_icon_color_selector +color mtrl_tabs_icon_color_selector_colored +color mtrl_tabs_legacy_text_color_selector +color mtrl_tabs_ripple_color +color mtrl_text_btn_text_color_selector +color mtrl_textinput_default_box_stroke_color +color mtrl_textinput_disabled_color +color mtrl_textinput_filled_box_default_background_color +color mtrl_textinput_focused_box_stroke_color +color mtrl_textinput_hovered_box_stroke_color +color notice_banner_blue +color notice_blue +color notice_check_dialog_bg_color +color notice_dialog_back +color notice_text_blue +color notice_traffic_line +color notice_video_progressbar_loading_color +color notification_action_color_filter +color notification_icon_bg_color +color notification_material_background_media_default_color +color panel_shadow_shape_color +color possible_result_points +color pressed +color primary_dark_material_dark +color primary_dark_material_light +color primary_material_dark +color primary_material_light +color primary_text_default_material_dark +color primary_text_default_material_light +color primary_text_disabled_material_dark +color primary_text_disabled_material_light +color radiobutton_textcolor +color radiobutton_themeable_attribute_color +color result_points +color result_view +color retangle_color +color ripple_material_dark +color ripple_material_light +color secondary_text_default_material_dark +color secondary_text_default_material_light +color secondary_text_disabled_material_dark +color secondary_text_disabled_material_light +color selected +color selected_list +color selector_white_gray +color share_btn +color share_event_no_more_color +color style_color +color surrounding_card_background +color surrounding_item_bottom_color +color switch_blue +color switch_thumb_disabled_material_dark +color switch_thumb_disabled_material_light +color switch_thumb_material_dark +color switch_thumb_material_light +color switch_thumb_normal_material_dark +color switch_thumb_normal_material_light +color test_mtrl_calendar_day +color test_mtrl_calendar_day_selected +color text_bg_color +color text_btn_color +color text_color +color text_color_bg +color text_list_color +color tooltip_background_dark +color tooltip_background_light +color traf_list_s +color translucent_background +color transparent +color transparent_white_30 +color turnlight_bg_color +color unfocused +color unselected +color unselected_list +color v2x_000_FFF +color v2x_555A_F5F5 +color v2x_FF3036 +color v2x_FFF_2896FF +color v2x_FFF_333 +color v2x_FFF_666 +color v2x_FFF_999 +color v2x_car_for_help_cancel +color v2x_event_play_text +color v2x_ff6163_333 +color v2x_item_white +color v2x_line_color +color v2x_share_des_title_color +color v2x_white +color v2x_white_color +color v2x_white_refresh +color version_latest_end_color +color version_latest_start_color +color version_upgradeable_end_color +color version_upgradeable_start_color +color version_upgrading_color +color viewfinder_laser +color viewfinder_mask +color w1 +color w2 +color w3 +color w4 +color w5 +color white +color white_30 +color white_50 +color white_argb_0 +color widgettext +dimen abc_action_bar_content_inset_material +dimen abc_action_bar_content_inset_with_nav +dimen abc_action_bar_default_height_material +dimen abc_action_bar_default_padding_end_material +dimen abc_action_bar_default_padding_start_material +dimen abc_action_bar_elevation_material +dimen abc_action_bar_icon_vertical_padding_material +dimen abc_action_bar_overflow_padding_end_material +dimen abc_action_bar_overflow_padding_start_material +dimen abc_action_bar_progress_bar_size +dimen abc_action_bar_stacked_max_height +dimen abc_action_bar_stacked_tab_max_width +dimen abc_action_bar_subtitle_bottom_margin_material +dimen abc_action_bar_subtitle_top_margin_material +dimen abc_action_button_min_height_material +dimen abc_action_button_min_width_material +dimen abc_action_button_min_width_overflow_material +dimen abc_alert_dialog_button_bar_height +dimen abc_alert_dialog_button_dimen +dimen abc_button_inset_horizontal_material +dimen abc_button_inset_vertical_material +dimen abc_button_padding_horizontal_material +dimen abc_button_padding_vertical_material +dimen abc_cascading_menus_min_smallest_width +dimen abc_config_prefDialogWidth +dimen abc_control_corner_material +dimen abc_control_inset_material +dimen abc_control_padding_material +dimen abc_dialog_corner_radius_material +dimen abc_dialog_fixed_height_major +dimen abc_dialog_fixed_height_minor +dimen abc_dialog_fixed_width_major +dimen abc_dialog_fixed_width_minor +dimen abc_dialog_list_padding_bottom_no_buttons +dimen abc_dialog_list_padding_top_no_title +dimen abc_dialog_min_width_major +dimen abc_dialog_min_width_minor +dimen abc_dialog_padding_material +dimen abc_dialog_padding_top_material +dimen abc_dialog_title_divider_material +dimen abc_disabled_alpha_material_dark +dimen abc_disabled_alpha_material_light +dimen abc_dropdownitem_icon_width +dimen abc_dropdownitem_text_padding_left +dimen abc_dropdownitem_text_padding_right +dimen abc_edit_text_inset_bottom_material +dimen abc_edit_text_inset_horizontal_material +dimen abc_edit_text_inset_top_material +dimen abc_floating_window_z +dimen abc_list_item_height_large_material +dimen abc_list_item_height_material +dimen abc_list_item_height_small_material +dimen abc_list_item_padding_horizontal_material +dimen abc_panel_menu_list_width +dimen abc_progress_bar_height_material +dimen abc_search_view_preferred_height +dimen abc_search_view_preferred_width +dimen abc_seekbar_track_background_height_material +dimen abc_seekbar_track_progress_height_material +dimen abc_select_dialog_padding_start_material +dimen abc_star_big +dimen abc_star_medium +dimen abc_star_small +dimen abc_switch_padding +dimen abc_text_size_body_1_material +dimen abc_text_size_body_2_material +dimen abc_text_size_button_material +dimen abc_text_size_caption_material +dimen abc_text_size_display_1_material +dimen abc_text_size_display_2_material +dimen abc_text_size_display_3_material +dimen abc_text_size_display_4_material +dimen abc_text_size_headline_material +dimen abc_text_size_large_material +dimen abc_text_size_medium_material +dimen abc_text_size_menu_header_material +dimen abc_text_size_menu_material +dimen abc_text_size_small_material +dimen abc_text_size_subhead_material +dimen abc_text_size_subtitle_material_toolbar +dimen abc_text_size_title_material +dimen abc_text_size_title_material_toolbar +dimen action_bar_size +dimen activity_horizontal_margin +dimen activity_vertical_margin +dimen appcompat_dialog_background_inset +dimen brakelight_height +dimen brakelight_width +dimen brightness_icon +dimen btn_size +dimen button_size +dimen candidate_font_height +dimen candidate_vertical_padding +dimen cards_container_dp_600 +dimen cards_container_shadow_dp_margin_top +dimen cardview_compat_inset_shadow +dimen cardview_default_elevation +dimen cardview_default_radius +dimen check_button_left +dimen check_button_text_size +dimen check_hard_ware_image_height +dimen check_hard_ware_image_width +dimen check_height +dimen check_image_bottom +dimen check_image_right +dimen check_item_space_vr +dimen check_little_btn_width +dimen check_luyouqi_start +dimen check_obu_start +dimen check_scan_height +dimen check_scan_width +dimen check_width +dimen clock_face_margin_start +dimen compat_button_inset_horizontal_material +dimen compat_button_inset_vertical_material +dimen compat_button_padding_horizontal_material +dimen compat_button_padding_vertical_material +dimen compat_control_corner_material +dimen compat_notification_large_icon_max_height +dimen compat_notification_large_icon_max_width +dimen def_height +dimen default_dimension +dimen des_text_margin_bottom +dimen design_appbar_elevation +dimen design_bottom_navigation_active_item_max_width +dimen design_bottom_navigation_active_item_min_width +dimen design_bottom_navigation_active_text_size +dimen design_bottom_navigation_elevation +dimen design_bottom_navigation_height +dimen design_bottom_navigation_icon_size +dimen design_bottom_navigation_item_max_width +dimen design_bottom_navigation_item_min_width +dimen design_bottom_navigation_label_padding +dimen design_bottom_navigation_margin +dimen design_bottom_navigation_shadow_height +dimen design_bottom_navigation_text_size +dimen design_bottom_sheet_elevation +dimen design_bottom_sheet_modal_elevation +dimen design_bottom_sheet_peek_height_min +dimen design_fab_border_width +dimen design_fab_elevation +dimen design_fab_image_size +dimen design_fab_size_mini +dimen design_fab_size_normal +dimen design_fab_translation_z_hovered_focused +dimen design_fab_translation_z_pressed +dimen design_navigation_elevation +dimen design_navigation_icon_padding +dimen design_navigation_icon_size +dimen design_navigation_item_horizontal_padding +dimen design_navigation_item_icon_padding +dimen design_navigation_max_width +dimen design_navigation_padding_bottom +dimen design_navigation_separator_vertical_padding +dimen design_snackbar_action_inline_max_width +dimen design_snackbar_action_text_color_alpha +dimen design_snackbar_background_corner_radius +dimen design_snackbar_elevation +dimen design_snackbar_extra_spacing_horizontal +dimen design_snackbar_max_width +dimen design_snackbar_min_width +dimen design_snackbar_padding_horizontal +dimen design_snackbar_padding_vertical +dimen design_snackbar_padding_vertical_2lines +dimen design_snackbar_text_size +dimen design_tab_max_width +dimen design_tab_scrollable_min_width +dimen design_tab_text_size +dimen design_tab_text_size_2line +dimen design_textinput_caption_translate_y +dimen disabled_alpha_material_dark +dimen disabled_alpha_material_light +dimen dp_0 +dimen dp_0_1 +dimen dp_0_5 +dimen dp_1 +dimen dp_10 +dimen dp_100 +dimen dp_1000 +dimen dp_101 +dimen dp_102 +dimen dp_103 +dimen dp_104 +dimen dp_104_5 +dimen dp_105 +dimen dp_106 +dimen dp_1066 +dimen dp_107 +dimen dp_108 +dimen dp_109 +dimen dp_11 +dimen dp_110 +dimen dp_111 +dimen dp_112 +dimen dp_113 +dimen dp_114 +dimen dp_115 +dimen dp_116 +dimen dp_117 +dimen dp_118 +dimen dp_119 +dimen dp_12 +dimen dp_120 +dimen dp_121 +dimen dp_122 +dimen dp_123 +dimen dp_124 +dimen dp_125 +dimen dp_126 +dimen dp_127 +dimen dp_128 +dimen dp_129 +dimen dp_13 +dimen dp_130 +dimen dp_1300 +dimen dp_131 +dimen dp_132 +dimen dp_133 +dimen dp_134 +dimen dp_134_5 +dimen dp_135 +dimen dp_136 +dimen dp_137 +dimen dp_138 +dimen dp_139 +dimen dp_14 +dimen dp_140 +dimen dp_141 +dimen dp_142 +dimen dp_143 +dimen dp_144 +dimen dp_145 +dimen dp_146 +dimen dp_147 +dimen dp_148 +dimen dp_149 +dimen dp_15 +dimen dp_150 +dimen dp_151 +dimen dp_152 +dimen dp_153 +dimen dp_154 +dimen dp_155 +dimen dp_156 +dimen dp_157 +dimen dp_158 +dimen dp_159 +dimen dp_16 +dimen dp_160 +dimen dp_161 +dimen dp_162 +dimen dp_163 +dimen dp_164 +dimen dp_165 +dimen dp_166 +dimen dp_167 +dimen dp_168 +dimen dp_169 +dimen dp_17 +dimen dp_170 +dimen dp_171 +dimen dp_172 +dimen dp_173 +dimen dp_174 +dimen dp_175 +dimen dp_176 +dimen dp_177 +dimen dp_178 +dimen dp_179 +dimen dp_18 +dimen dp_180 +dimen dp_181 +dimen dp_182 +dimen dp_183 +dimen dp_184 +dimen dp_185 +dimen dp_186 +dimen dp_187 +dimen dp_188 +dimen dp_189 +dimen dp_19 +dimen dp_190 +dimen dp_191 +dimen dp_191_25 +dimen dp_192 +dimen dp_1920 +dimen dp_193 +dimen dp_194 +dimen dp_195 +dimen dp_196 +dimen dp_197 +dimen dp_198 +dimen dp_199 +dimen dp_1_5 +dimen dp_2 +dimen dp_20 +dimen dp_200 +dimen dp_201 +dimen dp_202 +dimen dp_203 +dimen dp_204 +dimen dp_205 +dimen dp_206 +dimen dp_207 +dimen dp_208 +dimen dp_209 +dimen dp_21 +dimen dp_210 +dimen dp_211 +dimen dp_212 +dimen dp_213 +dimen dp_214 +dimen dp_215 +dimen dp_216 +dimen dp_217 +dimen dp_218 +dimen dp_219 +dimen dp_22 +dimen dp_220 +dimen dp_221 +dimen dp_222 +dimen dp_223 +dimen dp_224 +dimen dp_225 +dimen dp_226 +dimen dp_227 +dimen dp_228 +dimen dp_229 +dimen dp_23 +dimen dp_230 +dimen dp_231 +dimen dp_232 +dimen dp_233 +dimen dp_234 +dimen dp_235 +dimen dp_236 +dimen dp_237 +dimen dp_238 +dimen dp_239 +dimen dp_24 +dimen dp_240 +dimen dp_241 +dimen dp_242 +dimen dp_243 +dimen dp_244 +dimen dp_245 +dimen dp_246 +dimen dp_247 +dimen dp_248 +dimen dp_249 +dimen dp_25 +dimen dp_250 +dimen dp_251 +dimen dp_252 +dimen dp_253 +dimen dp_254 +dimen dp_255 +dimen dp_256 +dimen dp_257 +dimen dp_258 +dimen dp_259 +dimen dp_26 +dimen dp_260 +dimen dp_261 +dimen dp_262 +dimen dp_263 +dimen dp_264 +dimen dp_265 +dimen dp_266 +dimen dp_267 +dimen dp_268 +dimen dp_269 +dimen dp_27 +dimen dp_270 +dimen dp_271 +dimen dp_272 +dimen dp_273 +dimen dp_274 +dimen dp_275 +dimen dp_276 +dimen dp_277 +dimen dp_278 +dimen dp_279 +dimen dp_28 +dimen dp_280 +dimen dp_281 +dimen dp_282 +dimen dp_283 +dimen dp_284 +dimen dp_285 +dimen dp_286 +dimen dp_287 +dimen dp_288 +dimen dp_289 +dimen dp_29 +dimen dp_290 +dimen dp_291 +dimen dp_292 +dimen dp_293 +dimen dp_294 +dimen dp_295 +dimen dp_296 +dimen dp_297 +dimen dp_298 +dimen dp_299 +dimen dp_2_5 +dimen dp_3 +dimen dp_30 +dimen dp_300 +dimen dp_301 +dimen dp_302 +dimen dp_303 +dimen dp_304 +dimen dp_305 +dimen dp_306 +dimen dp_307 +dimen dp_308 +dimen dp_309 +dimen dp_31 +dimen dp_310 +dimen dp_311 +dimen dp_312 +dimen dp_313 +dimen dp_314 +dimen dp_315 +dimen dp_316 +dimen dp_317 +dimen dp_318 +dimen dp_319 +dimen dp_32 +dimen dp_320 +dimen dp_321 +dimen dp_322 +dimen dp_323 +dimen dp_324 +dimen dp_325 +dimen dp_326 +dimen dp_327 +dimen dp_328 +dimen dp_329 +dimen dp_33 +dimen dp_330 +dimen dp_331 +dimen dp_332 +dimen dp_333 +dimen dp_334 +dimen dp_335 +dimen dp_336 +dimen dp_337 +dimen dp_338 +dimen dp_339 +dimen dp_34 +dimen dp_340 +dimen dp_341 +dimen dp_342 +dimen dp_343 +dimen dp_344 +dimen dp_345 +dimen dp_346 +dimen dp_347 +dimen dp_348 +dimen dp_349 +dimen dp_35 +dimen dp_350 +dimen dp_351 +dimen dp_352 +dimen dp_353 +dimen dp_354 +dimen dp_355 +dimen dp_356 +dimen dp_357 +dimen dp_358 +dimen dp_359 +dimen dp_36 +dimen dp_366 +dimen dp_367 +dimen dp_368 +dimen dp_369 +dimen dp_37 +dimen dp_370 +dimen dp_371 +dimen dp_372 +dimen dp_373 +dimen dp_374 +dimen dp_375 +dimen dp_376 +dimen dp_377 +dimen dp_378 +dimen dp_379 +dimen dp_38 +dimen dp_380 +dimen dp_381 +dimen dp_382 +dimen dp_383 +dimen dp_384 +dimen dp_385 +dimen dp_386 +dimen dp_387 +dimen dp_388 +dimen dp_389 +dimen dp_39 +dimen dp_390 +dimen dp_391 +dimen dp_392 +dimen dp_393 +dimen dp_394 +dimen dp_395 +dimen dp_396 +dimen dp_397 +dimen dp_398 +dimen dp_399 +dimen dp_3_5 +dimen dp_4 +dimen dp_40 +dimen dp_400 +dimen dp_401 +dimen dp_402 +dimen dp_403 +dimen dp_404 +dimen dp_405 +dimen dp_406 +dimen dp_407 +dimen dp_408 +dimen dp_409 +dimen dp_41 +dimen dp_410 +dimen dp_411 +dimen dp_412 +dimen dp_413 +dimen dp_414 +dimen dp_415 +dimen dp_416 +dimen dp_417 +dimen dp_418 +dimen dp_419 +dimen dp_42 +dimen dp_420 +dimen dp_421 +dimen dp_422 +dimen dp_423 +dimen dp_424 +dimen dp_425 +dimen dp_426 +dimen dp_427 +dimen dp_428 +dimen dp_429 +dimen dp_43 +dimen dp_430 +dimen dp_431 +dimen dp_432 +dimen dp_433 +dimen dp_434 +dimen dp_435 +dimen dp_436 +dimen dp_437 +dimen dp_438 +dimen dp_439 +dimen dp_44 +dimen dp_440 +dimen dp_441 +dimen dp_442 +dimen dp_443 +dimen dp_444 +dimen dp_445 +dimen dp_446 +dimen dp_447 +dimen dp_448 +dimen dp_449 +dimen dp_45 +dimen dp_450 +dimen dp_451 +dimen dp_452 +dimen dp_453 +dimen dp_454 +dimen dp_455 +dimen dp_456 +dimen dp_457 +dimen dp_458 +dimen dp_459 +dimen dp_46 +dimen dp_460 +dimen dp_461 +dimen dp_462 +dimen dp_463 +dimen dp_464 +dimen dp_465 +dimen dp_466 +dimen dp_467 +dimen dp_468 +dimen dp_469 +dimen dp_47 +dimen dp_470 +dimen dp_471 +dimen dp_472 +dimen dp_473 +dimen dp_474 +dimen dp_475 +dimen dp_476 +dimen dp_477 +dimen dp_478 +dimen dp_479 +dimen dp_48 +dimen dp_480 +dimen dp_481 +dimen dp_482 +dimen dp_483 +dimen dp_484 +dimen dp_485 +dimen dp_486 +dimen dp_487 +dimen dp_488 +dimen dp_489 +dimen dp_49 +dimen dp_490 +dimen dp_491 +dimen dp_492 +dimen dp_493 +dimen dp_494 +dimen dp_495 +dimen dp_496 +dimen dp_497 +dimen dp_498 +dimen dp_499 +dimen dp_4_5 +dimen dp_5 +dimen dp_50 +dimen dp_500 +dimen dp_501 +dimen dp_502 +dimen dp_503 +dimen dp_504 +dimen dp_505 +dimen dp_506 +dimen dp_507 +dimen dp_508 +dimen dp_509 +dimen dp_51 +dimen dp_510 +dimen dp_511 +dimen dp_512 +dimen dp_513 +dimen dp_514 +dimen dp_515 +dimen dp_516 +dimen dp_517 +dimen dp_518 +dimen dp_519 +dimen dp_52 +dimen dp_520 +dimen dp_521 +dimen dp_522 +dimen dp_523 +dimen dp_524 +dimen dp_525 +dimen dp_526 +dimen dp_527 +dimen dp_528 +dimen dp_529 +dimen dp_53 +dimen dp_530 +dimen dp_531 +dimen dp_532 +dimen dp_533 +dimen dp_534 +dimen dp_535 +dimen dp_536 +dimen dp_537 +dimen dp_538 +dimen dp_539 +dimen dp_54 +dimen dp_540 +dimen dp_541 +dimen dp_542 +dimen dp_543 +dimen dp_544 +dimen dp_545 +dimen dp_546 +dimen dp_547 +dimen dp_548 +dimen dp_549 +dimen dp_55 +dimen dp_550 +dimen dp_551 +dimen dp_552 +dimen dp_553 +dimen dp_554 +dimen dp_555 +dimen dp_556 +dimen dp_557 +dimen dp_558 +dimen dp_559 +dimen dp_56 +dimen dp_560 +dimen dp_561 +dimen dp_562 +dimen dp_563 +dimen dp_564 +dimen dp_565 +dimen dp_566 +dimen dp_567 +dimen dp_568 +dimen dp_569 +dimen dp_57 +dimen dp_570 +dimen dp_571 +dimen dp_572 +dimen dp_573 +dimen dp_574 +dimen dp_575 +dimen dp_576 +dimen dp_577 +dimen dp_578 +dimen dp_579 +dimen dp_58 +dimen dp_580 +dimen dp_581 +dimen dp_582 +dimen dp_583 +dimen dp_584 +dimen dp_585 +dimen dp_586 +dimen dp_587 +dimen dp_588 +dimen dp_589 +dimen dp_59 +dimen dp_590 +dimen dp_591 +dimen dp_592 +dimen dp_593 +dimen dp_594 +dimen dp_595 +dimen dp_596 +dimen dp_597 +dimen dp_598 +dimen dp_599 +dimen dp_6 +dimen dp_60 +dimen dp_600 +dimen dp_601 +dimen dp_602 +dimen dp_603 +dimen dp_604 +dimen dp_605 +dimen dp_606 +dimen dp_607 +dimen dp_608 +dimen dp_609 +dimen dp_61 +dimen dp_610 +dimen dp_611 +dimen dp_612 +dimen dp_613 +dimen dp_614 +dimen dp_615 +dimen dp_616 +dimen dp_617 +dimen dp_618 +dimen dp_619 +dimen dp_62 +dimen dp_620 +dimen dp_621 +dimen dp_622 +dimen dp_623 +dimen dp_624 +dimen dp_625 +dimen dp_626 +dimen dp_627 +dimen dp_628 +dimen dp_629 +dimen dp_63 +dimen dp_630 +dimen dp_631 +dimen dp_632 +dimen dp_633 +dimen dp_634 +dimen dp_635 +dimen dp_636 +dimen dp_637 +dimen dp_638 +dimen dp_639 +dimen dp_64 +dimen dp_640 +dimen dp_641 +dimen dp_642 +dimen dp_643 +dimen dp_644 +dimen dp_645 +dimen dp_646 +dimen dp_647 +dimen dp_648 +dimen dp_649 +dimen dp_65 +dimen dp_650 +dimen dp_651 +dimen dp_652 +dimen dp_653 +dimen dp_654 +dimen dp_655 +dimen dp_656 +dimen dp_657 +dimen dp_658 +dimen dp_659 +dimen dp_66 +dimen dp_660 +dimen dp_661 +dimen dp_662 +dimen dp_663 +dimen dp_664 +dimen dp_665 +dimen dp_666 +dimen dp_667 +dimen dp_668 +dimen dp_669 +dimen dp_67 +dimen dp_670 +dimen dp_671 +dimen dp_672 +dimen dp_673 +dimen dp_674 +dimen dp_675 +dimen dp_676 +dimen dp_677 +dimen dp_678 +dimen dp_679 +dimen dp_68 +dimen dp_680 +dimen dp_681 +dimen dp_682 +dimen dp_683 +dimen dp_684 +dimen dp_685 +dimen dp_686 +dimen dp_687 +dimen dp_688 +dimen dp_689 +dimen dp_69 +dimen dp_690 +dimen dp_691 +dimen dp_692 +dimen dp_693 +dimen dp_694 +dimen dp_695 +dimen dp_696 +dimen dp_697 +dimen dp_698 +dimen dp_699 +dimen dp_7 +dimen dp_70 +dimen dp_700 +dimen dp_701 +dimen dp_702 +dimen dp_703 +dimen dp_704 +dimen dp_705 +dimen dp_706 +dimen dp_707 +dimen dp_708 +dimen dp_709 +dimen dp_71 +dimen dp_710 +dimen dp_711 +dimen dp_712 +dimen dp_713 +dimen dp_714 +dimen dp_715 +dimen dp_716 +dimen dp_717 +dimen dp_718 +dimen dp_719 +dimen dp_72 +dimen dp_720 +dimen dp_721 +dimen dp_722 +dimen dp_723 +dimen dp_724 +dimen dp_725 +dimen dp_726 +dimen dp_727 +dimen dp_728 +dimen dp_729 +dimen dp_73 +dimen dp_730 +dimen dp_731 +dimen dp_732 +dimen dp_733 +dimen dp_734 +dimen dp_735 +dimen dp_736 +dimen dp_737 +dimen dp_738 +dimen dp_739 +dimen dp_74 +dimen dp_740 +dimen dp_741 +dimen dp_742 +dimen dp_743 +dimen dp_744 +dimen dp_745 +dimen dp_746 +dimen dp_747 +dimen dp_748 +dimen dp_749 +dimen dp_75 +dimen dp_750 +dimen dp_751 +dimen dp_752 +dimen dp_753 +dimen dp_754 +dimen dp_755 +dimen dp_756 +dimen dp_757 +dimen dp_758 +dimen dp_759 +dimen dp_76 +dimen dp_760 +dimen dp_761 +dimen dp_762 +dimen dp_763 +dimen dp_764 +dimen dp_765 +dimen dp_766 +dimen dp_767 +dimen dp_768 +dimen dp_769 +dimen dp_77 +dimen dp_770 +dimen dp_771 +dimen dp_772 +dimen dp_773 +dimen dp_774 +dimen dp_775 +dimen dp_776 +dimen dp_777 +dimen dp_778 +dimen dp_779 +dimen dp_78 +dimen dp_780 +dimen dp_781 +dimen dp_782 +dimen dp_783 +dimen dp_784 +dimen dp_785 +dimen dp_786 +dimen dp_787 +dimen dp_788 +dimen dp_789 +dimen dp_79 +dimen dp_790 +dimen dp_791 +dimen dp_792 +dimen dp_793 +dimen dp_794 +dimen dp_795 +dimen dp_796 +dimen dp_797 +dimen dp_798 +dimen dp_799 +dimen dp_7_5 +dimen dp_8 +dimen dp_80 +dimen dp_800 +dimen dp_801 +dimen dp_802 +dimen dp_803 +dimen dp_804 +dimen dp_805 +dimen dp_806 +dimen dp_807 +dimen dp_808 +dimen dp_809 +dimen dp_81 +dimen dp_810 +dimen dp_811 +dimen dp_812 +dimen dp_813 +dimen dp_814 +dimen dp_815 +dimen dp_816 +dimen dp_817 +dimen dp_818 +dimen dp_819 +dimen dp_82 +dimen dp_820 +dimen dp_821 +dimen dp_822 +dimen dp_823 +dimen dp_824 +dimen dp_825 +dimen dp_826 +dimen dp_827 +dimen dp_828 +dimen dp_829 +dimen dp_83 +dimen dp_830 +dimen dp_831 +dimen dp_832 +dimen dp_833 +dimen dp_834 +dimen dp_835 +dimen dp_836 +dimen dp_837 +dimen dp_838 +dimen dp_839 +dimen dp_84 +dimen dp_840 +dimen dp_841 +dimen dp_842 +dimen dp_843 +dimen dp_844 +dimen dp_845 +dimen dp_846 +dimen dp_847 +dimen dp_848 +dimen dp_849 +dimen dp_85 +dimen dp_850 +dimen dp_851 +dimen dp_852 +dimen dp_853 +dimen dp_854 +dimen dp_855 +dimen dp_856 +dimen dp_857 +dimen dp_858 +dimen dp_859 +dimen dp_86 +dimen dp_860 +dimen dp_861 +dimen dp_862 +dimen dp_863 +dimen dp_864 +dimen dp_865 +dimen dp_866 +dimen dp_867 +dimen dp_868 +dimen dp_869 +dimen dp_87 +dimen dp_870 +dimen dp_871 +dimen dp_872 +dimen dp_873 +dimen dp_874 +dimen dp_875 +dimen dp_876 +dimen dp_877 +dimen dp_878 +dimen dp_879 +dimen dp_88 +dimen dp_880 +dimen dp_881 +dimen dp_882 +dimen dp_883 +dimen dp_884 +dimen dp_885 +dimen dp_886 +dimen dp_887 +dimen dp_888 +dimen dp_889 +dimen dp_89 +dimen dp_890 +dimen dp_891 +dimen dp_892 +dimen dp_893 +dimen dp_894 +dimen dp_895 +dimen dp_896 +dimen dp_897 +dimen dp_898 +dimen dp_899 +dimen dp_9 +dimen dp_90 +dimen dp_900 +dimen dp_901 +dimen dp_902 +dimen dp_903 +dimen dp_904 +dimen dp_905 +dimen dp_906 +dimen dp_907 +dimen dp_908 +dimen dp_909 +dimen dp_91 +dimen dp_910 +dimen dp_911 +dimen dp_912 +dimen dp_913 +dimen dp_914 +dimen dp_915 +dimen dp_916 +dimen dp_917 +dimen dp_918 +dimen dp_919 +dimen dp_92 +dimen dp_920 +dimen dp_921 +dimen dp_922 +dimen dp_923 +dimen dp_924 +dimen dp_925 +dimen dp_926 +dimen dp_927 +dimen dp_928 +dimen dp_929 +dimen dp_93 +dimen dp_930 +dimen dp_931 +dimen dp_932 +dimen dp_933 +dimen dp_934 +dimen dp_935 +dimen dp_936 +dimen dp_937 +dimen dp_938 +dimen dp_939 +dimen dp_94 +dimen dp_940 +dimen dp_941 +dimen dp_942 +dimen dp_943 +dimen dp_944 +dimen dp_945 +dimen dp_946 +dimen dp_947 +dimen dp_948 +dimen dp_949 +dimen dp_95 +dimen dp_950 +dimen dp_951 +dimen dp_952 +dimen dp_953 +dimen dp_954 +dimen dp_955 +dimen dp_956 +dimen dp_957 +dimen dp_958 +dimen dp_959 +dimen dp_96 +dimen dp_960 +dimen dp_961 +dimen dp_962 +dimen dp_963 +dimen dp_964 +dimen dp_965 +dimen dp_966 +dimen dp_967 +dimen dp_968 +dimen dp_969 +dimen dp_97 +dimen dp_970 +dimen dp_971 +dimen dp_972 +dimen dp_973 +dimen dp_974 +dimen dp_975 +dimen dp_976 +dimen dp_977 +dimen dp_978 +dimen dp_979 +dimen dp_98 +dimen dp_980 +dimen dp_981 +dimen dp_982 +dimen dp_983 +dimen dp_984 +dimen dp_985 +dimen dp_986 +dimen dp_987 +dimen dp_988 +dimen dp_989 +dimen dp_99 +dimen dp_990 +dimen dp_991 +dimen dp_992 +dimen dp_993 +dimen dp_994 +dimen dp_995 +dimen dp_996 +dimen dp_997 +dimen dp_998 +dimen dp_999 +dimen dp_m_1 +dimen dp_m_10 +dimen dp_m_12 +dimen dp_m_2 +dimen dp_m_20 +dimen dp_m_30 +dimen dp_m_5 +dimen dp_m_60 +dimen dp_m_8 +dimen exo_media_button_height +dimen exo_media_button_width +dimen fastscroll_default_thickness +dimen fastscroll_margin +dimen fastscroll_minimum_range +dimen heart_ratingbar_height +dimen heart_ratingbar_width +dimen highlight_alpha_material_colored +dimen highlight_alpha_material_dark +dimen highlight_alpha_material_light +dimen hint_alpha_material_dark +dimen hint_alpha_material_light +dimen hint_pressed_alpha_material_dark +dimen hint_pressed_alpha_material_light +dimen horizontal_margin +dimen item_touch_helper_max_drag_scroll_per_frame +dimen item_touch_helper_swipe_escape_max_velocity +dimen item_touch_helper_swipe_escape_velocity +dimen key_height +dimen layout_margin_bottom +dimen leak_canary_connector_center_y +dimen leak_canary_connector_leak_dash_gap +dimen leak_canary_connector_leak_dash_line +dimen leak_canary_connector_stroke_size +dimen leak_canary_connector_width +dimen leak_canary_more_margin_top +dimen leak_canary_more_size +dimen leak_canary_more_stroke_width +dimen leak_canary_row_margins +dimen leak_canary_row_min +dimen leak_canary_row_title_margin_top +dimen leak_canary_squiggly_span_amplitude +dimen leak_canary_squiggly_span_period_degrees +dimen leak_canary_squiggly_span_stroke_width +dimen leak_canary_toast_icon_size +dimen leak_canary_toast_icon_tv_padding +dimen list_font_size +dimen list_height_min +dimen material_bottom_sheet_max_width +dimen material_clock_display_padding +dimen material_clock_face_margin_top +dimen material_clock_hand_center_dot_radius +dimen material_clock_hand_padding +dimen material_clock_hand_stroke_width +dimen material_clock_number_text_size +dimen material_clock_period_toggle_height +dimen material_clock_period_toggle_margin_left +dimen material_clock_period_toggle_width +dimen material_clock_size +dimen material_cursor_inset_bottom +dimen material_cursor_inset_top +dimen material_cursor_width +dimen material_emphasis_disabled +dimen material_emphasis_high_type +dimen material_emphasis_medium +dimen material_filled_edittext_font_1_3_padding_bottom +dimen material_filled_edittext_font_1_3_padding_top +dimen material_filled_edittext_font_2_0_padding_bottom +dimen material_filled_edittext_font_2_0_padding_top +dimen material_font_1_3_box_collapsed_padding_top +dimen material_font_2_0_box_collapsed_padding_top +dimen material_helper_text_default_padding_top +dimen material_helper_text_font_1_3_padding_horizontal +dimen material_helper_text_font_1_3_padding_top +dimen material_input_text_to_prefix_suffix_padding +dimen material_text_view_test_line_height +dimen material_text_view_test_line_height_override +dimen material_textinput_default_width +dimen material_textinput_max_width +dimen material_textinput_min_width +dimen material_time_picker_minimum_screen_height +dimen material_time_picker_minimum_screen_width +dimen material_timepicker_dialog_buttons_margin_top +dimen module_call_chat_calling_bg_radius +dimen module_call_chat_calling_iv_hawk_eye_margin_left_right +dimen module_call_chat_calling_iv_hawk_eye_width_height +dimen module_call_chat_calling_text_hawk_eye_margin_top_bottom +dimen module_call_chat_calling_text_hawk_eye_name_size +dimen module_call_chat_calling_text_hawk_eye_time_size +dimen module_call_chat_hawk_eye_circle_btn_size +dimen module_call_chat_hawk_eye_incoming_circle_btn_size +dimen module_call_chat_incoming_aisdk_tag_width +dimen module_call_chat_state_hawk_eye_height +dimen module_call_chat_state_hawk_eye_width +dimen module_call_chat_state_incoming_hawk_eye_call_margin_right +dimen module_call_chat_state_incoming_hawk_eye_height +dimen module_call_chat_state_incoming_hawk_eye_margin_left +dimen module_call_chat_state_incoming_hawk_eye_width +dimen module_common_shadow_width +dimen module_common_shadow_width_pos +dimen module_commons_toast_icon_width +dimen module_commons_toast_marginBottom +dimen module_commons_toast_marginLeft +dimen module_commons_toast_marginRight +dimen module_commons_toast_marginTop +dimen module_commons_toast_maxWidth +dimen module_commons_toast_minWidth +dimen module_commons_toast_space_between_icon_and_msg +dimen module_commons_toast_textSize +dimen module_commons_toast_with_left_drawable_marginBottom +dimen module_commons_toast_with_left_drawable_marginLeft +dimen module_commons_toast_with_left_drawable_marginTop +dimen module_commons_toast_y_offset +dimen module_event_fragment_container_padding +dimen module_ext_arcView_center_text_size +dimen module_ext_arcView_des_text_size +dimen module_ext_arcView_height +dimen module_ext_arcView_stroke_with +dimen module_ext_arcView_top +dimen module_ext_arcView_width +dimen module_ext_speed_height +dimen module_ext_speed_padding +dimen module_ext_speed_width +dimen module_ext_speed_width_big_radius +dimen module_ext_speed_width_sm_radius +dimen module_ext_top_view_max_width +dimen module_ext_top_view_no_link_width_in_vr_mode +dimen module_hmi_autopilot_status_bg_big_radius +dimen module_hmi_autopilot_status_bg_sm_radius +dimen module_hmi_btn_size +dimen module_hmi_btn_text_size +dimen module_hmi_check_left +dimen module_hmi_check_size +dimen module_main_apps_fragment_container_padding +dimen module_main_apps_fragment_container_paddingBottom +dimen module_main_apps_fragment_container_paddingTop +dimen module_main_apps_fragment_container_width +dimen module_main_card_card_shadow_height_div +dimen module_main_card_card_shadow_width_div +dimen module_main_card_container_height +dimen module_main_card_container_marginBottom +dimen module_main_card_container_marginLeft +dimen module_main_card_container_marginTop +dimen module_main_card_container_paddingBottom +dimen module_main_card_container_width +dimen module_main_card_cover_up_margin +dimen module_main_entrance_fragment_container_marginLeft_in_vr_mode +dimen module_main_entrance_fragment_container_marginLeft_out_vr_mode +dimen module_main_entrance_fragment_container_padding +dimen module_main_entrance_fragment_container_padding_top +dimen module_main_entrance_fragment_container_width +dimen module_main_event_panel_fragment_paddingBottom +dimen module_main_event_panel_fragment_paddingLeft +dimen module_main_event_panel_fragment_paddingRight +dimen module_main_event_panel_fragment_paddingTop +dimen module_main_header_fragment_container_marginLeft +dimen module_main_header_fragment_container_marginTop +dimen module_main_id_entrance_fragment_container_marginLeft +dimen module_main_id_left_panel_fragment_container_width +dimen module_main_map_left_shadow_frame_width +dimen module_main_panel_margin_right +dimen module_main_top_shadow_height +dimen module_main_v2x_animation_width +dimen module_map_amap_my_location_bg_size +dimen module_map_amap_my_location_icon_height +dimen module_map_amap_my_location_icon_width +dimen module_map_calculate_path_display_overview_bottom_margin +dimen module_map_calculate_path_display_overview_left_margin +dimen module_map_calculate_path_display_overview_right_margin +dimen module_map_calculate_path_display_overview_top_margin +dimen module_map_display_overview_bottom_margin +dimen module_map_display_overview_left_margin +dimen module_map_display_overview_right_margin +dimen module_map_display_overview_top_margin +dimen module_mogo_autopilot_status_bg_height +dimen module_mogo_autopilot_status_bg_width +dimen module_mogo_autopilot_status_icon_margin +dimen module_mogo_autopilot_status_icon_width +dimen module_mogo_autopilot_status_margin_left +dimen module_mogo_autopilot_status_margin_top +dimen module_mogo_autopilot_status_padding +dimen module_mogo_autopilot_status_text_margin_start +dimen module_mogo_autopilot_status_text_size +dimen module_push_activity_clear_margin_bottom +dimen module_push_activity_close_margin_end +dimen module_push_activity_close_margin_top +dimen module_push_activity_close_padding +dimen module_push_activity_not_data_text_size +dimen module_push_activity_recycler_view_margin_top +dimen module_push_activity_title_margin_top +dimen module_push_activity_title_text_size +dimen module_push_app_icon_margin_start +dimen module_push_app_icon_size +dimen module_push_button_height +dimen module_push_button_margin_bottom +dimen module_push_button_margin_top +dimen module_push_button_maxWidth +dimen module_push_button_radius +dimen module_push_button_right_marLeft +dimen module_push_button_width +dimen module_push_check_margin +dimen module_push_check_text_size +dimen module_push_check_width +dimen module_push_clear_bg_radius +dimen module_push_content_only_height +dimen module_push_content_only_line_space +dimen module_push_content_only_padding +dimen module_push_content_only_width +dimen module_push_content_paddingBottom_vertical +dimen module_push_dialog_check_acc_image__height +dimen module_push_dialog_check_acc_image_width +dimen module_push_dialog_check_accessory_height +dimen module_push_dialog_check_accessory_width +dimen module_push_dialog_check_bg_corner +dimen module_push_dialog_check_height +dimen module_push_dialog_check_width +dimen module_push_dialog_close_height +dimen module_push_dialog_close_margin +dimen module_push_dialog_close_width +dimen module_push_dialog_content_margin_top +dimen module_push_dialog_content_size +dimen module_push_dialog_content_width +dimen module_push_dialog_title_margin +dimen module_push_dialog_title_size +dimen module_push_image_height +dimen module_push_image_marginTop_vertical +dimen module_push_image_margin_bottom +dimen module_push_image_margin_top +dimen module_push_image_qr_size_vertical +dimen module_push_image_radius +dimen module_push_image_width +dimen module_push_item_content_margin_bottom +dimen module_push_item_content_margin_end +dimen module_push_item_content_text_size +dimen module_push_item_content_width +dimen module_push_item_image_height +dimen module_push_item_image_radius +dimen module_push_item_image_width +dimen module_push_item_maxHeight_vertical +dimen module_push_item_minHeight_vertical +dimen module_push_item_time_textSize +dimen module_push_item_title_gone_margin_bottom +dimen module_push_item_title_margin_bottom +dimen module_push_item_title_margin_top +dimen module_push_line_height +dimen module_push_line_margin_left +dimen module_push_line_width +dimen module_push_margin_start +dimen module_push_margin_top +dimen module_push_massage_time_text_size +dimen module_push_message_app_icon_size +dimen module_push_message_item_height +dimen module_push_message_item_image_margin_end +dimen module_push_message_item_image_size +dimen module_push_message_margin_start +dimen module_push_panel_bkg_padding +dimen module_push_panel_corner +dimen module_push_panel_item_corner +dimen module_push_panel_marginBottom +dimen module_push_panel_marginRight +dimen module_push_panel_marginTop +dimen module_push_panel_paddingBottom +dimen module_push_panel_paddingLeft +dimen module_push_progress_bar_frame_marginEnd +dimen module_push_progress_bar_frame_marginTop +dimen module_push_progress_bar_frame_padding +dimen module_push_size +dimen module_push_timer_inner_radius +dimen module_push_timer_margin_end +dimen module_push_timer_margin_top +dimen module_push_timer_text_size +dimen module_push_timer_thickness +dimen module_push_title_margin_start +dimen module_push_title_margin_top +dimen module_push_title_mix_width +dimen module_push_title_text_size +dimen module_push_ui_app_icon_goneTopMargin +dimen module_push_ui_app_icon_leftMargin +dimen module_push_ui_app_icon_leftMargin_vertical +dimen module_push_ui_app_icon_size +dimen module_push_ui_app_icon_topMargin +dimen module_push_ui_app_icon_topMargin_vertical +dimen module_push_ui_bkg_corner +dimen module_push_ui_button_radius +dimen module_push_ui_content_height +dimen module_push_ui_content_marginBottom +dimen module_push_ui_content_marginTop +dimen module_push_ui_content_marginTop_vertical +dimen module_push_ui_content_width +dimen module_push_ui_decrease_timer_corner +dimen module_push_ui_height +dimen module_push_ui_height_vertical +dimen module_push_ui_image_corner +dimen module_push_ui_image_height +dimen module_push_ui_image_height_vertical +dimen module_push_ui_image_marLeft +dimen module_push_ui_image_width +dimen module_push_ui_image_width_vertical +dimen module_push_ui_margin_top +dimen module_push_ui_timer_textSize +dimen module_push_ui_title_textSize +dimen module_push_ui_title_text_size +dimen module_push_ui_width_vertical +dimen module_push_window_x +dimen module_push_window_y +dimen module_service_content_minWidth +dimen module_service_content_textSize +dimen module_service_id_marker_content_paddingRight +dimen module_service_id_marker_content_paddingRight_widthoutCall +dimen module_service_marker_anchor_size +dimen module_service_marker_bounds_bottomMargin +dimen module_service_marker_bounds_leftMargin +dimen module_service_marker_bounds_rightMargin +dimen module_service_marker_bounds_topMargin +dimen module_service_marker_bubble_height +dimen module_service_marker_bubble_icon_height +dimen module_service_marker_bubble_icon_marginBottom +dimen module_service_marker_bubble_icon_vr_height +dimen module_service_marker_bubble_icon_vr_width +dimen module_service_marker_bubble_icon_width +dimen module_service_marker_bubble_vr_height +dimen module_service_marker_bubble_vr_width +dimen module_service_marker_bubble_width +dimen module_service_marker_dot_marginTop +dimen module_service_tag_textSize +dimen module_service_user_header_height +dimen module_service_user_header_width +dimen module_services_dispatch_airport_dialog_affirm_corner +dimen module_services_dispatch_airport_dialog_affirm_height +dimen module_services_dispatch_airport_dialog_affirm_width +dimen module_services_dispatch_airport_dialog_corner +dimen module_services_dispatch_airport_dialog_endloc_content_margin_top +dimen module_services_dispatch_airport_dialog_endloc_margin_top +dimen module_services_dispatch_airport_dialog_first_column_margin_left +dimen module_services_dispatch_airport_dialog_height +dimen module_services_dispatch_airport_dialog_last_column_margin_left +dimen module_services_dispatch_airport_dialog_margin_bottom +dimen module_services_dispatch_airport_dialog_margin_top +dimen module_services_dispatch_airport_dialog_next_level_title_size +dimen module_services_dispatch_airport_dialog_startloc_content_margin_top +dimen module_services_dispatch_airport_dialog_startloc_margin_top +dimen module_services_dispatch_airport_dialog_task_content_margin_top +dimen module_services_dispatch_airport_dialog_task_content_size +dimen module_services_dispatch_airport_dialog_task_margin_top +dimen module_services_dispatch_airport_dialog_title_margin_top +dimen module_services_dispatch_airport_dialog_title_size +dimen module_services_dispatch_airport_dialog_width +dimen module_services_dispatch_cars_dialog_btn_width +dimen module_services_dispatch_cars_dialog_content_margin_top +dimen module_services_dispatch_cars_dialog_content_size +dimen module_services_dispatch_cars_dialog_corner +dimen module_services_dispatch_cars_dialog_height +dimen module_services_dispatch_cars_dialog_line_margin_bottom +dimen module_services_dispatch_cars_dialog_loc_margin_top +dimen module_services_dispatch_cars_dialog_loc_size +dimen module_services_dispatch_cars_dialog_timer_margin +dimen module_services_dispatch_cars_dialog_timer_size +dimen module_services_dispatch_cars_dialog_timer_txt_size +dimen module_services_dispatch_cars_dialog_title_margin_top +dimen module_services_dispatch_cars_dialog_title_size +dimen module_services_dispatch_cars_dialog_width +dimen module_services_empty_tip_marginTop +dimen module_services_empty_tip_textSize +dimen module_services_id_panel_item_avatar_border_width +dimen module_services_id_panel_item_distance_marginLeft +dimen module_services_info_window_height +dimen module_services_info_window_paddingEnd +dimen module_services_info_window_paddingStart +dimen module_services_load_strategy_marginRight +dimen module_services_load_strategy_paddingLeft +dimen module_services_load_strategy_paddingTop +dimen module_services_load_strategy_textSize +dimen module_services_online_car_panel_close_margin_top +dimen module_services_online_car_panel_marginBottom +dimen module_services_online_car_panel_marginRight +dimen module_services_online_car_panel_marginTop +dimen module_services_online_car_panel_paddingBottom +dimen module_services_online_car_panel_paddingLeft +dimen module_services_online_car_panel_recycler_view_margin_top +dimen module_services_online_car_panel_title_margin_top +dimen module_services_online_car_panel_title_text_size +dimen module_services_panel_item_avatar_size +dimen module_services_panel_item_corner +dimen module_services_panel_item_detail_bkg_corner +dimen module_services_panel_item_detail_padding +dimen module_services_panel_item_detail_textSize +dimen module_services_panel_item_distance_textSize +dimen module_services_panel_item_marginBottom +dimen module_services_panel_item_nickname_marginLeft +dimen module_services_panel_item_nickname_textSize +dimen module_services_panel_item_padding +dimen module_services_panel_strategy_button_bkg_corner +dimen module_services_panel_strategy_button_marginTop +dimen module_small_map_border_view_width +dimen module_small_map_padding +dimen module_small_map_view_border_width +dimen module_small_map_view_width +dimen module_switch_image +dimen module_switch_image_circle +dimen module_switch_map +dimen module_switch_map_height +dimen module_switch_margin_left +dimen module_switch_text_size +dimen module_v2n_image_margin_left +dimen module_v2n_tip_height +dimen module_v2n_tip_text_margin_right +dimen module_v2n_tip_text_width +dimen module_v2n_tip_width +dimen module_v2x_brake_image_margin_left +dimen module_v2x_brake_image_margin_right +dimen module_v2x_brake_image_width +dimen module_v2x_brake_tip_height +dimen module_v2x_brake_tip_width +dimen module_v2x_car_for_help_cancel_text_size +dimen module_v2x_car_for_help_event_maxwidth +dimen module_v2x_car_for_help_event_text_size +dimen module_v2x_car_for_help_height +dimen module_v2x_car_for_help_icon_height +dimen module_v2x_car_for_help_icon_width +dimen module_v2x_car_for_help_width +dimen module_v2x_car_for_help_window_height +dimen module_v2x_event_button_size +dimen module_v2x_event_button_size_detail +dimen module_v2x_event_button_size_detail_vr +dimen module_v2x_event_button_size_vr +dimen module_v2x_event_distance_text +dimen module_v2x_event_distance_title +dimen module_v2x_event_distance_title_vr +dimen module_v2x_event_head_size +dimen module_v2x_event_help_distance_text_size +dimen module_v2x_event_help_head_size +dimen module_v2x_event_help_sub_title_text_size +dimen module_v2x_event_help_title_text_size +dimen module_v2x_event_icon_size +dimen module_v2x_event_icon_size_vr +dimen module_v2x_event_image_height +dimen module_v2x_event_image_width +dimen module_v2x_event_live_error_text_size +dimen module_v2x_event_panel_btn_x +dimen module_v2x_event_panel_btn_y +dimen module_v2x_event_panel_in_launcher_btn_x +dimen module_v2x_event_parking_text_size +dimen module_v2x_event_see_live_window_height +dimen module_v2x_event_see_live_window_height_vr +dimen module_v2x_event_sub_title_text_size +dimen module_v2x_event_title_text_size +dimen module_v2x_event_type_title_text_size +dimen module_v2x_event_warning_type_image_size +dimen module_v2x_event_warning_type_text_size +dimen module_v2x_event_window_close_distance +dimen module_v2x_event_window_height +dimen module_v2x_event_window_height_ground +dimen module_v2x_event_window_height_vr_for_item +dimen module_v2x_event_window_right_margin +dimen module_v2x_event_window_right_margin_vr +dimen module_v2x_event_window_top_margin +dimen module_v2x_event_window_top_margin_vr +dimen module_v2x_event_window_width +dimen module_v2x_event_window_width_vr +dimen module_v2x_fatigue_driving_window_height_ground +dimen module_v2x_fault_help_distance_text_size +dimen module_v2x_fault_help_event_call_width +dimen module_v2x_fault_help_event_navi_margin_right +dimen module_v2x_fault_help_height +dimen module_v2x_fault_help_img_content_height +dimen module_v2x_fault_help_img_content_text_size +dimen module_v2x_fault_help_img_content_width +dimen module_v2x_fault_help_name_margin_top +dimen module_v2x_fault_help_name_text_size +dimen module_v2x_fault_help_time_margin_bottom +dimen module_v2x_fault_help_time_text_size +dimen module_v2x_fault_help_width +dimen module_v2x_history_event_icon_size +dimen module_v2x_live_window_height +dimen module_v2x_map_bottom +dimen module_v2x_map_left +dimen module_v2x_map_right +dimen module_v2x_map_top +dimen module_v2x_operation_panel_share_goneMarginRight +dimen module_v2x_panel_icon_cor +dimen module_v2x_panel_surrounding_marginbottom +dimen module_v2x_panel_surrounding_stance +dimen module_v2x_panel_tab_height +dimen module_v2x_panel_width +dimen module_v2x_push_img_container_height +dimen module_v2x_push_img_height +dimen module_v2x_road_event_bg_radius +dimen module_v2x_road_event_height +dimen module_v2x_road_event_icon_height +dimen module_v2x_road_event_icon_margin_left +dimen module_v2x_road_event_icon_play_margin_top +dimen module_v2x_road_event_icon_width +dimen module_v2x_road_event_text_play_text_size +dimen module_v2x_road_event_text_size +dimen module_v2x_road_event_window_height_vr +dimen module_v2x_road_event_window_width_vr +dimen module_v2x_search_marginLeft +dimen module_v2x_surrounding_empty_bt_height +dimen module_v2x_surrounding_empty_bt_margin_top +dimen module_v2x_surrounding_empty_bt_width +dimen module_v2x_surrounding_empty_image_height +dimen module_v2x_surrounding_empty_iv_margin_top +dimen module_v2x_surrounding_empty_tv_margin_top +dimen module_v2x_surrounding_item_bottom +dimen module_v2x_surrounding_item_bottom_image_height +dimen module_v2x_surrounding_item_bottom_left_textsize +dimen module_v2x_surrounding_item_bottom_right_textsize +dimen module_v2x_surrounding_item_bottom_size +dimen module_v2x_surrounding_item_height +dimen module_v2x_surrounding_item_maigin_left +dimen module_v2x_surrounding_item_margin_left +dimen module_v2x_surrounding_item_marigin_bottom_left +dimen module_v2x_surrounding_item_marigin_left +dimen module_v2x_surrounding_item_width +dimen module_v2x_surrounding_list_margin_left +dimen module_v2x_surrounding_margin_left +dimen module_v2x_surrounding_refresh_bt_radius +dimen module_v2x_surrounding_root_margin_left +dimen module_v2x_surrounding_top +dimen module_v2x_surrounding_top_bt_height +dimen module_v2x_surrounding_top_bt_width +dimen module_v2x_surrounding_top_height +dimen module_v2x_surrounding_top_textsize +dimen module_v2x_widow_top_gaps +dimen module_vip_height +dimen module_vip_margin_left +dimen module_vip_margin_top +dimen module_vip_width +dimen mohist_utility_large_pad_min_height +dimen mohist_utility_large_pad_min_width +dimen mtrl_alert_dialog_background_inset_bottom +dimen mtrl_alert_dialog_background_inset_end +dimen mtrl_alert_dialog_background_inset_start +dimen mtrl_alert_dialog_background_inset_top +dimen mtrl_alert_dialog_picker_background_inset +dimen mtrl_badge_horizontal_edge_offset +dimen mtrl_badge_long_text_horizontal_padding +dimen mtrl_badge_radius +dimen mtrl_badge_text_horizontal_edge_offset +dimen mtrl_badge_text_size +dimen mtrl_badge_toolbar_action_menu_item_horizontal_offset +dimen mtrl_badge_toolbar_action_menu_item_vertical_offset +dimen mtrl_badge_with_text_radius +dimen mtrl_bottomappbar_fabOffsetEndMode +dimen mtrl_bottomappbar_fab_bottom_margin +dimen mtrl_bottomappbar_fab_cradle_margin +dimen mtrl_bottomappbar_fab_cradle_rounded_corner_radius +dimen mtrl_bottomappbar_fab_cradle_vertical_offset +dimen mtrl_bottomappbar_height +dimen mtrl_btn_corner_radius +dimen mtrl_btn_dialog_btn_min_width +dimen mtrl_btn_disabled_elevation +dimen mtrl_btn_disabled_z +dimen mtrl_btn_elevation +dimen mtrl_btn_focused_z +dimen mtrl_btn_hovered_z +dimen mtrl_btn_icon_btn_padding_left +dimen mtrl_btn_icon_padding +dimen mtrl_btn_inset +dimen mtrl_btn_letter_spacing +dimen mtrl_btn_max_width +dimen mtrl_btn_padding_bottom +dimen mtrl_btn_padding_left +dimen mtrl_btn_padding_right +dimen mtrl_btn_padding_top +dimen mtrl_btn_pressed_z +dimen mtrl_btn_snackbar_margin_horizontal +dimen mtrl_btn_stroke_size +dimen mtrl_btn_text_btn_icon_padding +dimen mtrl_btn_text_btn_padding_left +dimen mtrl_btn_text_btn_padding_right +dimen mtrl_btn_text_size +dimen mtrl_btn_z +dimen mtrl_calendar_action_confirm_button_min_width +dimen mtrl_calendar_action_height +dimen mtrl_calendar_action_padding +dimen mtrl_calendar_bottom_padding +dimen mtrl_calendar_content_padding +dimen mtrl_calendar_day_corner +dimen mtrl_calendar_day_height +dimen mtrl_calendar_day_horizontal_padding +dimen mtrl_calendar_day_today_stroke +dimen mtrl_calendar_day_vertical_padding +dimen mtrl_calendar_day_width +dimen mtrl_calendar_days_of_week_height +dimen mtrl_calendar_dialog_background_inset +dimen mtrl_calendar_header_content_padding +dimen mtrl_calendar_header_content_padding_fullscreen +dimen mtrl_calendar_header_divider_thickness +dimen mtrl_calendar_header_height +dimen mtrl_calendar_header_height_fullscreen +dimen mtrl_calendar_header_selection_line_height +dimen mtrl_calendar_header_text_padding +dimen mtrl_calendar_header_toggle_margin_bottom +dimen mtrl_calendar_header_toggle_margin_top +dimen mtrl_calendar_landscape_header_width +dimen mtrl_calendar_maximum_default_fullscreen_minor_axis +dimen mtrl_calendar_month_horizontal_padding +dimen mtrl_calendar_month_vertical_padding +dimen mtrl_calendar_navigation_bottom_padding +dimen mtrl_calendar_navigation_height +dimen mtrl_calendar_navigation_top_padding +dimen mtrl_calendar_pre_l_text_clip_padding +dimen mtrl_calendar_selection_baseline_to_top_fullscreen +dimen mtrl_calendar_selection_text_baseline_to_bottom +dimen mtrl_calendar_selection_text_baseline_to_bottom_fullscreen +dimen mtrl_calendar_selection_text_baseline_to_top +dimen mtrl_calendar_text_input_padding_top +dimen mtrl_calendar_title_baseline_to_top +dimen mtrl_calendar_title_baseline_to_top_fullscreen +dimen mtrl_calendar_year_corner +dimen mtrl_calendar_year_height +dimen mtrl_calendar_year_horizontal_padding +dimen mtrl_calendar_year_vertical_padding +dimen mtrl_calendar_year_width +dimen mtrl_card_checked_icon_margin +dimen mtrl_card_checked_icon_size +dimen mtrl_card_corner_radius +dimen mtrl_card_dragged_z +dimen mtrl_card_elevation +dimen mtrl_card_spacing +dimen mtrl_chip_pressed_translation_z +dimen mtrl_chip_text_size +dimen mtrl_edittext_rectangle_top_offset +dimen mtrl_exposed_dropdown_menu_popup_elevation +dimen mtrl_exposed_dropdown_menu_popup_vertical_offset +dimen mtrl_exposed_dropdown_menu_popup_vertical_padding +dimen mtrl_extended_fab_bottom_padding +dimen mtrl_extended_fab_corner_radius +dimen mtrl_extended_fab_disabled_elevation +dimen mtrl_extended_fab_disabled_translation_z +dimen mtrl_extended_fab_elevation +dimen mtrl_extended_fab_end_padding +dimen mtrl_extended_fab_end_padding_icon +dimen mtrl_extended_fab_icon_size +dimen mtrl_extended_fab_icon_text_spacing +dimen mtrl_extended_fab_min_height +dimen mtrl_extended_fab_min_width +dimen mtrl_extended_fab_start_padding +dimen mtrl_extended_fab_start_padding_icon +dimen mtrl_extended_fab_top_padding +dimen mtrl_extended_fab_translation_z_base +dimen mtrl_extended_fab_translation_z_hovered_focused +dimen mtrl_extended_fab_translation_z_pressed +dimen mtrl_fab_elevation +dimen mtrl_fab_min_touch_target +dimen mtrl_fab_translation_z_hovered_focused +dimen mtrl_fab_translation_z_pressed +dimen mtrl_high_ripple_default_alpha +dimen mtrl_high_ripple_focused_alpha +dimen mtrl_high_ripple_hovered_alpha +dimen mtrl_high_ripple_pressed_alpha +dimen mtrl_large_touch_target +dimen mtrl_low_ripple_default_alpha +dimen mtrl_low_ripple_focused_alpha +dimen mtrl_low_ripple_hovered_alpha +dimen mtrl_low_ripple_pressed_alpha +dimen mtrl_min_touch_target_size +dimen mtrl_navigation_bar_item_default_icon_size +dimen mtrl_navigation_bar_item_default_margin +dimen mtrl_navigation_elevation +dimen mtrl_navigation_item_horizontal_padding +dimen mtrl_navigation_item_icon_padding +dimen mtrl_navigation_item_icon_size +dimen mtrl_navigation_item_shape_horizontal_margin +dimen mtrl_navigation_item_shape_vertical_margin +dimen mtrl_navigation_rail_active_text_size +dimen mtrl_navigation_rail_compact_width +dimen mtrl_navigation_rail_default_width +dimen mtrl_navigation_rail_elevation +dimen mtrl_navigation_rail_icon_margin +dimen mtrl_navigation_rail_icon_size +dimen mtrl_navigation_rail_margin +dimen mtrl_navigation_rail_text_bottom_margin +dimen mtrl_navigation_rail_text_size +dimen mtrl_progress_circular_inset +dimen mtrl_progress_circular_inset_extra_small +dimen mtrl_progress_circular_inset_medium +dimen mtrl_progress_circular_inset_small +dimen mtrl_progress_circular_radius +dimen mtrl_progress_circular_size +dimen mtrl_progress_circular_size_extra_small +dimen mtrl_progress_circular_size_medium +dimen mtrl_progress_circular_size_small +dimen mtrl_progress_circular_track_thickness_extra_small +dimen mtrl_progress_circular_track_thickness_medium +dimen mtrl_progress_circular_track_thickness_small +dimen mtrl_progress_indicator_full_rounded_corner_radius +dimen mtrl_progress_track_thickness +dimen mtrl_shape_corner_size_large_component +dimen mtrl_shape_corner_size_medium_component +dimen mtrl_shape_corner_size_small_component +dimen mtrl_slider_halo_radius +dimen mtrl_slider_label_padding +dimen mtrl_slider_label_radius +dimen mtrl_slider_label_square_side +dimen mtrl_slider_thumb_elevation +dimen mtrl_slider_thumb_radius +dimen mtrl_slider_track_height +dimen mtrl_slider_track_side_padding +dimen mtrl_slider_track_top +dimen mtrl_slider_widget_height +dimen mtrl_snackbar_action_text_color_alpha +dimen mtrl_snackbar_background_corner_radius +dimen mtrl_snackbar_background_overlay_color_alpha +dimen mtrl_snackbar_margin +dimen mtrl_snackbar_message_margin_horizontal +dimen mtrl_snackbar_padding_horizontal +dimen mtrl_switch_thumb_elevation +dimen mtrl_textinput_box_corner_radius_medium +dimen mtrl_textinput_box_corner_radius_small +dimen mtrl_textinput_box_label_cutout_padding +dimen mtrl_textinput_box_stroke_width_default +dimen mtrl_textinput_box_stroke_width_focused +dimen mtrl_textinput_counter_margin_start +dimen mtrl_textinput_end_icon_margin_start +dimen mtrl_textinput_outline_box_expanded_padding +dimen mtrl_textinput_start_icon_margin_end +dimen mtrl_toolbar_default_height +dimen mtrl_tooltip_arrowSize +dimen mtrl_tooltip_cornerSize +dimen mtrl_tooltip_minHeight +dimen mtrl_tooltip_minWidth +dimen mtrl_tooltip_padding +dimen mtrl_transition_shared_axis_slide_distance +dimen notice_current_time_margin +dimen notice_dialog_check_bg_corner +dimen notice_fullscreen_bt +dimen notice_loading_bt +dimen notice_play_bottom +dimen notice_play_height +dimen notice_play_marginleft +dimen notice_play_marginleft_small +dimen notice_play_marginright +dimen notice_play_marginright_small +dimen notice_seekbar_bottom +dimen notice_seekbar_width +dimen notice_seekbar_width_small +dimen notice_time_bottom +dimen notice_traffic_acc_image_height +dimen notice_traffic_acc_image_width +dimen notice_traffic_back__height +dimen notice_traffic_back__width +dimen notice_traffic_info_height +dimen notice_traffic_info_width +dimen notification_action_icon_size +dimen notification_action_text_size +dimen notification_big_circle_margin +dimen notification_content_margin_start +dimen notification_large_icon_height +dimen notification_large_icon_width +dimen notification_main_column_padding_top +dimen notification_media_narrow_margin +dimen notification_right_icon_size +dimen notification_right_side_padding_top +dimen notification_small_icon_background_padding +dimen notification_small_icon_size_as_large +dimen notification_subtext_size +dimen notification_top_pad +dimen notification_top_pad_large_text +dimen num_padding_left +dimen padding_large +dimen padding_medium +dimen padding_small +dimen panel_list_item_title_size +dimen ratingbar_padding +dimen road_sign_right +dimen road_sign_top +dimen scale +dimen seek_bar_image +dimen share_btn_middle_padding +dimen share_des_num_size +dimen share_empty_btn_padding +dimen share_empty_icon_width +dimen share_empty_margin_top +dimen share_index_bottom_padding +dimen share_index_des_size +dimen share_item_address +dimen share_item_padding +dimen share_item_text_size +dimen share_refresh_padding +dimen share_top_text_size +dimen sp_10 +dimen sp_11 +dimen sp_12 +dimen sp_13 +dimen sp_14 +dimen sp_15 +dimen sp_16 +dimen sp_17 +dimen sp_18 +dimen sp_19 +dimen sp_20 +dimen sp_21 +dimen sp_22 +dimen sp_23 +dimen sp_24 +dimen sp_25 +dimen sp_28 +dimen sp_30 +dimen sp_32 +dimen sp_34 +dimen sp_36 +dimen sp_38 +dimen sp_40 +dimen sp_42 +dimen sp_48 +dimen sp_6 +dimen sp_7 +dimen sp_8 +dimen sp_9 +dimen subtitle_corner_radius +dimen subtitle_outline_width +dimen subtitle_shadow_offset +dimen subtitle_shadow_radius +dimen test_mtrl_calendar_day_cornerSize +dimen test_navigation_bar_active_item_max_width +dimen test_navigation_bar_active_item_min_width +dimen test_navigation_bar_active_text_size +dimen test_navigation_bar_elevation +dimen test_navigation_bar_height +dimen test_navigation_bar_icon_size +dimen test_navigation_bar_item_max_width +dimen test_navigation_bar_item_min_width +dimen test_navigation_bar_label_padding +dimen test_navigation_bar_shadow_height +dimen test_navigation_bar_text_size +dimen text_size_btn +dimen text_size_btn2 +dimen text_size_middle +dimen text_size_nav +dimen time_textsize +dimen tooltip_corner_radius +dimen tooltip_horizontal_padding +dimen tooltip_margin +dimen tooltip_precise_anchor_extra_offset +dimen tooltip_precise_anchor_threshold +dimen tooltip_vertical_padding +dimen tooltip_y_offset_non_touch +dimen tooltip_y_offset_touch +dimen turnlight_bg_corner +dimen turnlight_height +dimen turnlight_width +dimen useful_image_padding_right +dimen useless_padding_right +dimen v2x_driving_heigt +dimen v2x_driving_width +dimen v2x_index_rating_top +dimen v2x_loading_ani_width +dimen v2x_panel_btn_image_width +dimen v2x_panel_btn_translationY +dimen v2x_panel_loading_top +dimen v2x_recommond_route_size +dimen v2x_right_context_margin +dimen v2x_share_btn_height +dimen v2x_share_btn_width +dimen v2x_video_window_height +dimen v2x_video_window_height_content +dimen vertical_margin +dimen video_progress_dialog_margin_top +dimen video_volume_dialog_margin_left +dimen warning_distance_right +drawable abc_ab_share_pack_mtrl_alpha +drawable abc_action_bar_item_background_material +drawable abc_btn_borderless_material +drawable abc_btn_check_material +drawable abc_btn_check_material_anim +drawable abc_btn_check_to_on_mtrl_000 +drawable abc_btn_check_to_on_mtrl_015 +drawable abc_btn_colored_material +drawable abc_btn_default_mtrl_shape +drawable abc_btn_radio_material +drawable abc_btn_radio_material_anim +drawable abc_btn_radio_to_on_mtrl_000 +drawable abc_btn_radio_to_on_mtrl_015 +drawable abc_btn_switch_to_on_mtrl_00001 +drawable abc_btn_switch_to_on_mtrl_00012 +drawable abc_cab_background_internal_bg +drawable abc_cab_background_top_material +drawable abc_cab_background_top_mtrl_alpha +drawable abc_control_background_material +drawable abc_dialog_material_background +drawable abc_edit_text_material +drawable abc_ic_ab_back_material +drawable abc_ic_arrow_drop_right_black_24dp +drawable abc_ic_clear_material +drawable abc_ic_commit_search_api_mtrl_alpha +drawable abc_ic_go_search_api_material +drawable abc_ic_menu_copy_mtrl_am_alpha +drawable abc_ic_menu_cut_mtrl_alpha +drawable abc_ic_menu_overflow_material +drawable abc_ic_menu_paste_mtrl_am_alpha +drawable abc_ic_menu_selectall_mtrl_alpha +drawable abc_ic_menu_share_mtrl_alpha +drawable abc_ic_search_api_material +drawable abc_ic_star_black_16dp +drawable abc_ic_star_black_36dp +drawable abc_ic_star_black_48dp +drawable abc_ic_star_half_black_16dp +drawable abc_ic_star_half_black_36dp +drawable abc_ic_star_half_black_48dp +drawable abc_ic_voice_search_api_material +drawable abc_item_background_holo_dark +drawable abc_item_background_holo_light +drawable abc_list_divider_material +drawable abc_list_divider_mtrl_alpha +drawable abc_list_focused_holo +drawable abc_list_longpressed_holo +drawable abc_list_pressed_holo_dark +drawable abc_list_pressed_holo_light +drawable abc_list_selector_background_transition_holo_dark +drawable abc_list_selector_background_transition_holo_light +drawable abc_list_selector_disabled_holo_dark +drawable abc_list_selector_disabled_holo_light +drawable abc_list_selector_holo_dark +drawable abc_list_selector_holo_light +drawable abc_menu_hardkey_panel_mtrl_mult +drawable abc_popup_background_mtrl_mult +drawable abc_ratingbar_indicator_material +drawable abc_ratingbar_material +drawable abc_ratingbar_small_material +drawable abc_scrubber_control_off_mtrl_alpha +drawable abc_scrubber_control_to_pressed_mtrl_000 +drawable abc_scrubber_control_to_pressed_mtrl_005 +drawable abc_scrubber_primary_mtrl_alpha +drawable abc_scrubber_track_mtrl_alpha +drawable abc_seekbar_thumb_material +drawable abc_seekbar_tick_mark_material +drawable abc_seekbar_track_material +drawable abc_spinner_mtrl_am_alpha +drawable abc_spinner_textfield_background_material +drawable abc_star_black_48dp +drawable abc_star_half_black_48dp +drawable abc_switch_thumb_material +drawable abc_switch_track_mtrl_alpha +drawable abc_tab_indicator_material +drawable abc_tab_indicator_mtrl_alpha +drawable abc_text_cursor_material +drawable abc_text_select_handle_left_mtrl +drawable abc_text_select_handle_left_mtrl_dark +drawable abc_text_select_handle_left_mtrl_light +drawable abc_text_select_handle_middle_mtrl +drawable abc_text_select_handle_middle_mtrl_dark +drawable abc_text_select_handle_middle_mtrl_light +drawable abc_text_select_handle_right_mtrl +drawable abc_text_select_handle_right_mtrl_dark +drawable abc_text_select_handle_right_mtrl_light +drawable abc_textfield_activated_mtrl_alpha +drawable abc_textfield_default_mtrl_alpha +drawable abc_textfield_search_activated_mtrl_alpha +drawable abc_textfield_search_default_mtrl_alpha +drawable abc_textfield_search_material +drawable abc_vector_test +drawable auto +drawable avd_hide_password +drawable avd_show_password +drawable bg +drawable bg_adas_dispatch +drawable bg_adas_dispatch_affirm +drawable bg_count_down +drawable bg_fatigue_driving +drawable bg_jj_pressed +drawable bg_map_marker_blue +drawable bg_map_marker_blue_dark +drawable bg_map_marker_blue_info +drawable bg_map_marker_dark_blue_info +drawable bg_map_marker_dark_green_info +drawable bg_map_marker_green +drawable bg_map_marker_green_dark +drawable bg_map_marker_green_info +drawable bg_map_marker_grey_info +drawable bg_map_marker_oragne +drawable bg_map_marker_orange_info +drawable bg_map_marker_purple +drawable bg_map_marker_purple_info +drawable bg_map_marker_red +drawable bg_map_marker_red_info +drawable bg_map_marker_yellow_info +drawable bg_menu_n +drawable bg_menu_p +drawable bg_module_small_map_view_border +drawable bg_pressed +drawable bg_search_edit +drawable bg_shape_reverse_triangle_blue +drawable bg_shape_reverse_triangle_dark_blue +drawable bg_shape_reverse_triangle_dark_green +drawable bg_shape_reverse_triangle_green +drawable bg_shape_reverse_triangle_orange +drawable bg_shape_reverse_triangle_purple +drawable bg_shape_reverse_triangle_red +drawable bg_shape_reverse_yellow +drawable bg_v2x_cancel_help +drawable bg_v2x_event_bg +drawable bg_v2x_event_description +drawable bg_v2x_event_list_item +drawable bg_v2x_event_live_show +drawable bg_v2x_event_type_blue +drawable bg_v2x_event_type_gray +drawable bg_v2x_event_type_green +drawable bg_v2x_event_type_orange +drawable bg_v2x_event_type_orange_vr +drawable bg_v2x_event_type_read +drawable bg_v2x_event_type_red_vr +drawable bg_v2x_go_to_share +drawable bg_v2x_red_two_round_vr +drawable bg_v2x_refresh +drawable bg_v2x_surrounding_event_list_item +drawable bg_waring_limiting_velocity +drawable bg_waring_traffic_light_vr +drawable bg_warning_bg +drawable black +drawable brvah_sample_footer_loading +drawable brvah_sample_footer_loading_progress +drawable btn +drawable btn_bg +drawable btn_checkbox_checked_mtrl +drawable btn_checkbox_checked_to_unchecked_mtrl_animation +drawable btn_checkbox_unchecked_mtrl +drawable btn_checkbox_unchecked_to_checked_mtrl_animation +drawable btn_day +drawable btn_day_press +drawable btn_guidance_selecter +drawable btn_keyboard_key_ics +drawable btn_night +drawable btn_night_press +drawable btn_p +drawable btn_radio_off_mtrl +drawable btn_radio_off_to_on_mtrl_animation +drawable btn_radio_on_mtrl +drawable btn_radio_on_to_off_mtrl_animation +drawable btn_selecter +drawable btn_selecter_day +drawable btn_selecter_night +drawable btn_selecter_s +drawable btn_show_bg +drawable btn_text_color +drawable button_selectordialog_gray +drawable camera_gradient_shadow_bg +drawable camera_unusual +drawable camera_usual +drawable check_button +drawable check_car_nor +drawable check_chage_color +drawable check_detail +drawable check_dialog_back +drawable check_error_image +drawable check_item_left_shape +drawable check_list_item_back +drawable check_little_btn +drawable check_little_btn_green +drawable check_progress +drawable check_reboot +drawable check_recycler_shape +drawable check_right +drawable check_scan_first +drawable check_scan_second +drawable check_scan_tips +drawable check_shut_down +drawable check_tip_image +drawable check_top_item_left_shape +drawable check_top_item_no_line_shape +drawable check_top_item_shape +drawable check_wrong +drawable close_icon +drawable common_marker_bottom_floor +drawable custom_info_bubble +drawable dark_clore_close +drawable dark_color_close +drawable debug_icon_feedback +drawable debug_icon_nor +drawable debug_setting_edit_bg +drawable design_bottom_navigation_item_background +drawable design_fab_background +drawable design_ic_visibility +drawable design_ic_visibility_off +drawable design_password_eye +drawable design_snackbar_background +drawable divider_line +drawable editbox_bkg +drawable empty_drawable +drawable exo_controls_fastforward +drawable exo_controls_next +drawable exo_controls_pause +drawable exo_controls_play +drawable exo_controls_previous +drawable exo_controls_rewind +drawable exo_edit_mode_logo +drawable flex_divider +drawable gray +drawable gray2 +drawable gray3 +drawable gray4 +drawable green +drawable guidance_speed_bg +drawable guidance_speed_p_bg +drawable ic_amap_navi_cursor +drawable ic_back +drawable ic_back_true +drawable ic_can_config +drawable ic_can_config_true +drawable ic_clock_black_24dp +drawable ic_data_preview +drawable ic_data_preview_true +drawable ic_keyboard_arrow_left_white_36dp +drawable ic_keyboard_black_24dp +drawable ic_launcher_background +drawable ic_map_textview_bg +drawable ic_mic +drawable ic_mic_no_enabled +drawable ic_mic_true +drawable ic_minimality +drawable ic_minimality_true +drawable ic_mtrl_checked_circle +drawable ic_mtrl_chip_checked_black +drawable ic_mtrl_chip_checked_circle +drawable ic_mtrl_chip_close_circle +drawable ic_navi_start +drawable ic_navi_target +drawable ic_panel_route_select +drawable ic_panel_route_select_down +drawable ic_reverse_triangle +drawable ic_search_input +drawable ic_settings +drawable ic_settings_true +drawable ic_share_black_24dp +drawable ic_start +drawable ic_start_true +drawable ic_stop +drawable ic_stop_true +drawable icon_ad +drawable icon_ap_badcase_check +drawable icon_ap_badcase_default +drawable icon_autopilot_status +drawable icon_autopilot_status_disabled +drawable icon_back +drawable icon_camera_nor +drawable icon_camera_selected +drawable icon_car_ambulance +drawable icon_car_ap_badcase_entrance +drawable icon_car_for_help +drawable icon_car_gray +drawable icon_car_police +drawable icon_car_red +drawable icon_close_nor +drawable icon_default_user_head +drawable icon_down +drawable icon_downloading +drawable icon_event_panel_more +drawable icon_gray_back_heart +drawable icon_heart_choose +drawable icon_heart_like +drawable icon_heart_like_bg +drawable icon_heart_like_for_gray_back +drawable icon_heart_second +drawable icon_heart_second_other +drawable icon_heart_unchoose +drawable icon_heart_unchoose_other +drawable icon_heart_unlike +drawable icon_illegal_parking +drawable icon_illegal_parking_vr +drawable icon_latest_version +drawable icon_live_load_error +drawable icon_map_marker_4s +drawable icon_map_marker_book +drawable icon_map_marker_car_gray +drawable icon_map_marker_car_gray_selected +drawable icon_map_marker_car_type2 +drawable icon_map_marker_car_type_110 +drawable icon_map_marker_car_type_119 +drawable icon_map_marker_car_type_120 +drawable icon_map_marker_car_type_bus +drawable icon_map_marker_car_type_taxi +drawable icon_map_marker_living +drawable icon_map_marker_living_white +drawable icon_map_marker_location_blue +drawable icon_map_marker_location_yellow +drawable icon_map_marker_location_yellow_vr +drawable icon_map_marker_misic +drawable icon_map_marker_news +drawable icon_map_marker_pondingl +drawable icon_map_marker_pondingl2 +drawable icon_map_marker_pondingl2_white +drawable icon_map_marker_refuel +drawable icon_map_marker_road_block_off +drawable icon_map_marker_road_block_off2 +drawable icon_map_marker_road_block_off2_white +drawable icon_map_marker_road_block_up +drawable icon_map_marker_road_block_up2 +drawable icon_map_marker_road_block_up2_white +drawable icon_map_marker_road_check +drawable icon_map_marker_road_check2 +drawable icon_map_marker_road_check2_white +drawable icon_map_marker_road_work +drawable icon_map_marker_road_work2 +drawable icon_map_marker_road_work2_white +drawable icon_map_marker_shear_news +drawable icon_map_marker_shop +drawable icon_map_marker_shop_discount +drawable icon_module_small_map_four_corners +drawable icon_pad +drawable icon_parking_p +drawable icon_play +drawable icon_report_err +drawable icon_report_err_press +drawable icon_report_true +drawable icon_report_true_press +drawable icon_rideo_nor +drawable icon_right +drawable icon_route_ending +drawable icon_share_empty +drawable icon_signal +drawable icon_space +drawable icon_talk +drawable icon_tools_nor +drawable icon_upgrade_failed +drawable icon_upgradeable +drawable icon_upgrading +drawable icon_waring_traffic_light_green_vr +drawable icon_waring_traffic_light_red_vr +drawable icon_waring_traffic_light_yellow_vr +drawable icon_warning_v2x_abnormal_vehicle +drawable icon_warning_v2x_blind_area_collision +drawable icon_warning_v2x_collision_warning +drawable icon_warning_v2x_congestion +drawable icon_warning_v2x_emergency_brake +drawable icon_warning_v2x_give_way +drawable icon_warning_v2x_hump_bridge +drawable icon_warning_v2x_motorcycle_collision +drawable icon_warning_v2x_no_parking +drawable icon_warning_v2x_optimal_route +drawable icon_warning_v2x_over_speed +drawable icon_warning_v2x_pedestrian_crossing +drawable icon_warning_v2x_reverse_overtaking +drawable icon_warning_v2x_road_construction +drawable icon_warning_v2x_road_dangerous +drawable icon_warning_v2x_roundaboutpng +drawable icon_warning_v2x_school +drawable icon_warning_v2x_special_vehicle_access +drawable icon_warning_v2x_test_section +drawable icon_warning_v2x_traffic_light_gray +drawable icon_warning_v2x_traffic_light_green +drawable icon_warning_v2x_traffic_light_red +drawable icon_warning_v2x_traffic_light_yellow +drawable icon_warning_v2x_traffic_lights_green +drawable icon_warning_v2x_traffic_lights_red +drawable icon_warning_v2x_tramcar +drawable icon_warning_v2x_turn_left_sharp +drawable icon_warning_v2x_turn_right_sharp +drawable icon_warning_v2x_vehicle_control +drawable icon_warning_v2x_vip_turn_light +drawable input_cursor +drawable jiaojiguang_usual +drawable keyboard_background_holo +drawable keyboard_blue +drawable keyboard_white +drawable leak_canary_count_background +drawable leak_canary_dump +drawable leak_canary_gray_fill +drawable leak_canary_icon +drawable leak_canary_icon_foreground +drawable leak_canary_info +drawable leak_canary_info_rectangle +drawable leak_canary_leak +drawable leak_canary_primary_button +drawable leak_canary_secondary_button +drawable leak_canary_tab_background +drawable leak_canary_tab_selector_ripple +drawable leak_canary_toast_background +drawable leak_canary_tv_icon +drawable line_v +drawable list_line +drawable listview_bg_dark +drawable lock +drawable log_debug_dialog_bg +drawable log_debug_retry_btn_bg +drawable log_debug_start_btn_bg +drawable log_debug_stop_btn_bg +drawable log_filter_background +drawable luyouqi_unusual +drawable luyouqi_usual +drawable main_bitmap_splash_bg +drawable main_bitmap_splash_icon +drawable main_splash_bg +drawable map_api_ic_current_location2 +drawable map_api_ic_current_location2_cursor +drawable mapcolor +drawable mapscale +drawable marker_blue +drawable material_cursor_drawable +drawable material_ic_calendar_black_24dp +drawable material_ic_clear_black_24dp +drawable material_ic_edit_black_24dp +drawable material_ic_keyboard_arrow_left_black_24dp +drawable material_ic_keyboard_arrow_next_black_24dp +drawable material_ic_keyboard_arrow_previous_black_24dp +drawable material_ic_keyboard_arrow_right_black_24dp +drawable material_ic_menu_arrow_down_black_24dp +drawable material_ic_menu_arrow_up_black_24dp +drawable menu_left_btn_p +drawable module_arrow_left_nor +drawable module_arrow_left_select_nor +drawable module_arrow_right_nor +drawable module_arrow_right_select_nor +drawable module_blank_nor +drawable module_camera_normal_traffic +drawable module_camera_real_time_traffic +drawable module_carchatting_aicloud_incoming +drawable module_carchatting_vr_calling_bg +drawable module_common_close_selector +drawable module_common_close_selector_vr +drawable module_common_default_user_head +drawable module_common_ic_rc_accident3 +drawable module_common_ic_rc_accident3_white +drawable module_common_ic_rc_dark_frog2 +drawable module_common_ic_rc_dark_frog2_white +drawable module_common_ic_rc_freeze2 +drawable module_common_ic_rc_freeze2_white +drawable module_common_ic_rc_illegal_park +drawable module_common_ic_rc_illegal_park_white +drawable module_common_ic_rc_parking2 +drawable module_common_icon_close +drawable module_common_icon_close_press +drawable module_common_icon_close_vr +drawable module_common_icon_like_selected_vr +drawable module_common_icon_like_vr +drawable module_common_icon_map_marker_4s +drawable module_common_icon_map_marker_living +drawable module_common_icon_map_marker_living_white +drawable module_common_icon_map_marker_pondingl2 +drawable module_common_icon_map_marker_pondingl2_white +drawable module_common_icon_map_marker_refuel +drawable module_common_icon_map_marker_road_block_off2 +drawable module_common_icon_map_marker_road_block_off2_white +drawable module_common_icon_map_marker_road_block_up2 +drawable module_common_icon_map_marker_road_block_up2_white +drawable module_common_icon_map_marker_road_check2 +drawable module_common_icon_map_marker_road_check2_white +drawable module_common_icon_map_marker_road_work2 +drawable module_common_icon_map_marker_road_work2_white +drawable module_common_icon_map_marker_shear_news +drawable module_common_icon_map_marker_shop +drawable module_common_icon_map_marker_shop_discount +drawable module_common_icon_seek_help +drawable module_common_icon_unlike_selected_vr +drawable module_common_icon_unlike_vr +drawable module_common_like_vr +drawable module_common_my_location_bg +drawable module_common_selector_call +drawable module_common_unlike_vr +drawable module_commons_dialog_bg +drawable module_commons_dialog_left_bg +drawable module_commons_dialog_right_bg +drawable module_commons_heart_ratingbar_drawable +drawable module_commons_shape_dlg_round_bkg +drawable module_commons_shape_left_btn_bkg +drawable module_commons_shape_right_btn_bkg +drawable module_commons_toast_bkg +drawable module_dw_common_corner_bkg_light +drawable module_ext_check +drawable module_ext_drawable_shadow_bg +drawable module_ext_shadow_bkg +drawable module_ext_shadow_bkg_pressed +drawable module_hmi_autopilot_status_bg +drawable module_hmi_autopilot_status_checked_bg +drawable module_hmi_autopilot_status_disabled_bg +drawable module_hmi_autopilot_status_enable_bg +drawable module_hmi_warning_bkg_bottom +drawable module_hmi_warning_bkg_left +drawable module_hmi_warning_bkg_right +drawable module_hmi_warning_bkg_top +drawable module_light_nor +drawable module_main_dw_left_frame_bkg +drawable module_main_dw_top_frame_bkg +drawable module_main_launcher_bg +drawable module_main_warning_bkg_bottom +drawable module_main_warning_bkg_left +drawable module_main_warning_bkg_right +drawable module_main_warning_bkg_top +drawable module_map_amap_my_location_icon +drawable module_push_clear_bg +drawable module_push_close +drawable module_push_content_background +drawable module_push_decrease_timer_bkg +drawable module_push_dialog_check_background +drawable module_push_dialog_close +drawable module_push_item_background +drawable module_push_item_background_origin +drawable module_push_item_background_p +drawable module_push_left_button +drawable module_push_message_background +drawable module_push_recycler_item_background +drawable module_push_right_button +drawable module_push_ui_delay_background +drawable module_push_ui_ic_message2 +drawable module_service_dispatch_cars_affirm_bg +drawable module_service_dispatch_cars_bg +drawable module_service_dispatch_cars_cancel_bg +drawable module_service_dispatch_timer_bg +drawable module_service_ic_call +drawable module_service_ic_rc_accident +drawable module_service_ic_rc_accident2 +drawable module_service_ic_rc_accident3 +drawable module_service_ic_rc_accident3_white +drawable module_service_ic_rc_dark_frog +drawable module_service_ic_rc_dark_frog2 +drawable module_service_ic_rc_dark_frog2_white +drawable module_service_ic_rc_freeze +drawable module_service_ic_rc_freeze2 +drawable module_service_ic_rc_freeze2_white +drawable module_service_ic_rc_illegal_park +drawable module_service_ic_rc_illegal_park_white +drawable module_service_ic_rc_parking +drawable module_service_ic_rc_parking2 +drawable module_service_ic_rc_road_slippery +drawable module_service_ic_rc_road_slippery_light +drawable module_service_ic_seek_helping +drawable module_service_left_corner_bg +drawable module_service_right_corner_bg +drawable module_services_driver_info_window_bkg +drawable module_services_driver_type_blue_info +drawable module_services_driver_type_green_info +drawable module_services_driver_type_red_info +drawable module_services_info_window_cursor +drawable module_services_marker_bkg +drawable module_services_marker_vr_bkg +drawable module_services_marker_vr_bkg_checked +drawable module_services_online_car_panel_background +drawable module_services_online_car_panel_empty_icon +drawable module_shadow_left_nor +drawable module_shadow_right_nor +drawable module_small_map_view_border +drawable module_small_map_view_border_north +drawable module_small_map_view_dir_end +drawable module_small_map_view_dir_start +drawable module_small_map_view_end +drawable module_small_map_view_my_location_logo +drawable module_small_map_view_start +drawable module_switch_map_angle +drawable module_switch_map_bg +drawable module_turn_light_bg +drawable module_v2x_shadow_bkg +drawable module_v2x_suddenly_break +drawable module_v2x_vr_close +drawable mogo_image_accident_small +drawable mogo_image_blank_nor +drawable mogo_image_daolushigong_nor +drawable mogo_image_daolushigong_small +drawable mogo_image_fenglu_nor +drawable mogo_image_fenglu_small +drawable mogo_image_jiaotongjiancha_nor +drawable mogo_image_jiaotongjiancha_small +drawable mogo_image_jiaotongshigu_nor +drawable mogo_image_jiebing_nor +drawable mogo_image_jiebing_small +drawable mogo_image_jishui_nor +drawable mogo_image_jishui_small +drawable mogo_image_nongwu_nor +drawable mogo_image_nongwu_small +drawable mogo_image_shishilukuang_small +drawable mogo_image_shishlukuang_nor +drawable mogo_image_yongdu_nor +drawable mogo_image_yongdu_small +drawable mogo_slogan +drawable mtrl_dialog_background +drawable mtrl_dropdown_arrow +drawable mtrl_ic_arrow_drop_down +drawable mtrl_ic_arrow_drop_up +drawable mtrl_ic_cancel +drawable mtrl_ic_error +drawable mtrl_navigation_bar_item_background +drawable mtrl_popupmenu_background +drawable mtrl_popupmenu_background_dark +drawable mtrl_tabs_default_indicator +drawable navi_tmcbar_bg +drawable navigation_empty_icon +drawable notice_banner_default +drawable notice_banner_icon_video +drawable notice_connect +drawable notice_dialog_check_background +drawable notice_item_background +drawable notice_player_ic_circle_nor +drawable notice_push_item_background +drawable notice_seekbar_style +drawable notice_traffic_placeholder +drawable notice_unsuccess_image +drawable notice_unsuccess_traffic +drawable notice_video_after_pause +drawable notice_video_pause +drawable notice_video_play +drawable notification_action_background +drawable notification_bg +drawable notification_bg_low +drawable notification_bg_low_normal +drawable notification_bg_low_pressed +drawable notification_bg_normal +drawable notification_bg_normal_pressed +drawable notification_icon_background +drawable notification_template_icon_bg +drawable notification_template_icon_low_bg +drawable notification_tile_bg +drawable notify_panel_notification_icon_bg +drawable obu_state_blue +drawable obu_state_green +drawable obu_state_red +drawable obu_state_yellow +drawable obu_unusual +drawable oub_usual +drawable pad_unusual +drawable panel_channellist_detail +drawable panel_menu_selector +drawable panel_route_selecter +drawable panel_route_selecter_p +drawable panel_search_btn_selector +drawable panel_search_indicator_selector +drawable panel_search_voice_selector +drawable panel_sharetrf_bg_pressed +drawable pilot_speed_bg +drawable pilot_speed_high_light_bg +drawable placeholder +drawable progress_bg +drawable progressbar +drawable radio_btn_bg +drawable radio_button_background +drawable radio_button_background_left +drawable radio_button_background_middle +drawable radio_button_background_right +drawable radio_button_checked_background +drawable radio_button_checked_background_left +drawable radio_button_checked_background_middle +drawable radio_button_checked_background_right +drawable radio_button_normal_background +drawable radio_button_normal_background_left +drawable radio_button_normal_background_middle +drawable radio_button_normal_background_right +drawable rect_dark +drawable rect_light +drawable result_color +drawable rtk_unusual +drawable rtk_usual +drawable scan_tip_line +drawable seagreen +drawable selector_back +drawable selector_btn_play +drawable selector_call_btn_normal +drawable selector_call_btn_pressed +drawable selector_can +drawable selector_data_preview +drawable selector_live_btn +drawable selector_live_btn_vr +drawable selector_mic +drawable selector_minimality +drawable selector_nav_btn +drawable selector_nav_history +drawable selector_obu_state +drawable selector_settings +drawable selector_start +drawable selector_state +drawable selector_stop +drawable selector_talk_btn +drawable selector_talk_btn_vr +drawable selector_text_color +drawable service_car_panel_details_normal +drawable service_car_panel_details_pressed +drawable setting_toggle_button_background +drawable shadow_bottom +drawable shadow_left +drawable shadow_line +drawable shadow_line2 +drawable shadow_progress +drawable shadow_right +drawable shape_blue_trans +drawable shape_react_blue_grident +drawable shape_react_gray_grident +drawable shape_round_gray +drawable sr +drawable stat_sys_download +drawable state_blue +drawable state_default +drawable state_green +drawable state_red +drawable state_yellow +drawable sy +drawable test_custom_background +drawable text_bg +drawable textblue +drawable tooltip_frame_dark +drawable tooltip_frame_light +drawable transparent_background +drawable transparent_drawable +drawable turnlight_background +drawable unlock +drawable utils_toast_bg +drawable v2x_alert_window_bg +drawable v2x_alert_window_live_bg +drawable v2x_back_image +drawable v2x_bg_big_image_dark +drawable v2x_bg_pop_up +drawable v2x_bg_video_tip_vr +drawable v2x_bkg_dark_light_same +drawable v2x_drawable_event_message_bkg +drawable v2x_event_icon_daohang_vr +drawable v2x_event_icon_live +drawable v2x_event_icon_live_press +drawable v2x_event_icon_live_vr +drawable v2x_event_icon_nav +drawable v2x_event_icon_nav_press +drawable v2x_event_icon_talk +drawable v2x_event_icon_talk_press +drawable v2x_event_icon_talk_vr +drawable v2x_event_icon_tel_vr +drawable v2x_event_icon_zan +drawable v2x_front_warning_bg +drawable v2x_icon_ahead_car_brake +drawable v2x_icon_car_collide_warning +drawable v2x_icon_daolushigong_vr +drawable v2x_icon_event_live_top +drawable v2x_icon_event_play +drawable v2x_icon_fenglu_vr +drawable v2x_icon_help_navi +drawable v2x_icon_jiaotongjiancha_vr +drawable v2x_icon_jiaotongshigu_vr +drawable v2x_icon_jiebing_vr +drawable v2x_icon_jishui_vr +drawable v2x_icon_live_logo +drawable v2x_icon_nongwu_vr +drawable v2x_icon_obu_optimal_speed +drawable v2x_icon_obu_rush_red_light +drawable v2x_icon_obu_traffic_light +drawable v2x_icon_obu_urgency_collision +drawable v2x_icon_route +drawable v2x_icon_unlike_animation_vr +drawable v2x_icon_yongdu_vr +drawable v2x_map_marker_blue_info +drawable v2x_map_marker_driver_type_blue_info +drawable v2x_map_marker_driver_type_green_info +drawable v2x_map_marker_driver_type_red_info +drawable v2x_nav_normal +drawable v2x_nav_select +drawable v2x_obu_green_point +drawable v2x_obu_traffic_light_pop +drawable v2x_optimal_route_warning +drawable v2x_panel_color_bg +drawable v2x_park_car_port_bg +drawable v2x_park_title_bg +drawable v2x_refresh_button_bg +drawable v2x_road_front_car_warning +drawable v2x_road_front_m_warning +drawable v2x_road_front_p_warning +drawable v2x_selector_icon_report_err +drawable v2x_selector_icon_report_true +drawable v2x_shadow_shape_view +drawable v2x_shape_bg_count_down_corner_14 +drawable v2x_shape_reverse_triangle_blue +drawable v2x_share_item_like +drawable v2x_share_item_unlike +drawable v2x_stop_line +drawable v2x_surrounding_bottom_bg +drawable v2x_tip_bg +drawable v2x_to_nav +drawable v2x_to_nav_nomal +drawable v2x_to_nav_pressed +drawable v2x_video_pause +drawable v2x_vip_identification_vr +drawable v_to_x_event_ugc_fenglu +drawable v_to_x_event_ugc_shigu +drawable v_to_x_event_ugc_yongdu +drawable v_to_x_marker_1 +drawable v_to_x_marker_11 +drawable v_to_x_marker_16 +drawable v_to_x_marker_2 +drawable v_to_x_marker_3 +drawable v_to_x_marker_5 +drawable v_to_x_marker_6 +drawable v_to_x_marker_7 +drawable v_to_x_marker_8 +drawable v_to_x_marker_9 +drawable v_to_x_marker_car_blue +drawable v_to_x_marker_car_green +drawable v_to_x_marker_car_live_vedio +drawable v_to_x_marker_car_red +drawable v_to_x_marker_express +drawable v_to_x_marker_taxi +drawable v_to_x_warning_car_orange +drawable v_to_x_warning_car_red +drawable v_to_x_warning_circle_orange_00011 +drawable v_to_x_warning_circle_orange_00012 +drawable v_to_x_warning_circle_orange_00013 +drawable v_to_x_warning_circle_orange_00014 +drawable v_to_x_warning_circle_orange_00015 +drawable v_to_x_warning_circle_orange_00016 +drawable v_to_x_warning_circle_orange_00017 +drawable v_to_x_warning_circle_orange_00018 +drawable v_to_x_warning_circle_orange_00019 +drawable v_to_x_warning_circle_orange_00020 +drawable v_to_x_warning_circle_orange_00021 +drawable v_to_x_warning_circle_orange_00022 +drawable v_to_x_warning_circle_orange_00023 +drawable v_to_x_warning_circle_orange_00024 +drawable v_to_x_warning_circle_orange_00025 +drawable v_to_x_warning_circle_orange_00026 +drawable v_to_x_warning_circle_orange_00027 +drawable v_to_x_warning_circle_orange_00028 +drawable v_to_x_warning_circle_orange_00029 +drawable v_to_x_warning_circle_orange_00030 +drawable v_to_x_warning_circle_orange_00031 +drawable v_to_x_warning_circle_orange_00032 +drawable v_to_x_warning_circle_orange_00033 +drawable v_to_x_warning_circle_orange_00034 +drawable v_to_x_warning_circle_orange_00035 +drawable v_to_x_warning_circle_orange_00036 +drawable v_to_x_warning_circle_orange_00037 +drawable v_to_x_warning_circle_orange_00038 +drawable v_to_x_warning_circle_orange_00039 +drawable v_to_x_warning_circle_orange_00040 +drawable v_to_x_warning_circle_orange_00041 +drawable v_to_x_warning_circle_orange_00042 +drawable v_to_x_warning_circle_orange_00043 +drawable v_to_x_warning_circle_orange_00044 +drawable v_to_x_warning_circle_orange_00045 +drawable v_to_x_warning_circle_orange_00046 +drawable v_to_x_warning_circle_orange_00047 +drawable v_to_x_warning_circle_orange_00048 +drawable v_to_x_warning_circle_red_00011 +drawable v_to_x_warning_circle_red_00012 +drawable v_to_x_warning_circle_red_00013 +drawable v_to_x_warning_circle_red_00014 +drawable v_to_x_warning_circle_red_00015 +drawable v_to_x_warning_circle_red_00016 +drawable v_to_x_warning_circle_red_00017 +drawable v_to_x_warning_circle_red_00018 +drawable v_to_x_warning_circle_red_00019 +drawable v_to_x_warning_circle_red_00020 +drawable v_to_x_warning_circle_red_00021 +drawable v_to_x_warning_circle_red_00022 +drawable v_to_x_warning_circle_red_00023 +drawable v_to_x_warning_circle_red_00024 +drawable v_to_x_warning_circle_red_00025 +drawable v_to_x_warning_circle_red_00026 +drawable v_to_x_warning_circle_red_00027 +drawable v_to_x_warning_circle_red_00028 +drawable v_to_x_warning_circle_red_00029 +drawable v_to_x_warning_circle_red_00030 +drawable v_to_x_warning_circle_red_00031 +drawable v_to_x_warning_circle_red_00032 +drawable v_to_x_warning_circle_red_00033 +drawable v_to_x_warning_circle_red_00034 +drawable v_to_x_warning_circle_red_00035 +drawable v_to_x_warning_circle_red_00036 +drawable v_to_x_warning_circle_red_00037 +drawable v_to_x_warning_circle_red_00038 +drawable v_to_x_warning_circle_red_00039 +drawable v_to_x_warning_circle_red_00040 +drawable v_to_x_warning_circle_red_00041 +drawable v_to_x_warning_circle_red_00042 +drawable v_to_x_warning_circle_red_00043 +drawable v_to_x_warning_circle_red_00044 +drawable v_to_x_warning_circle_red_00045 +drawable v_to_x_warning_circle_red_00046 +drawable v_to_x_warning_circle_red_00047 +drawable v_to_x_warning_circle_red_00048 +drawable version_latest_background +drawable version_upgrade_tips_background +drawable version_upgradeable_background +drawable version_upgrading_background +drawable video_back +drawable video_backward_icon +drawable video_brightness_6_white_36dp +drawable video_click_error_selector +drawable video_click_pause_selector +drawable video_click_play_selector +drawable video_dialog_progress +drawable video_dialog_progress_bg +drawable video_enlarge +drawable video_error_normal +drawable video_error_pressed +drawable video_forward_icon +drawable video_jump_btn_bg +drawable video_loading +drawable video_loading_bg +drawable video_pause +drawable video_pause_normal +drawable video_pause_pressed +drawable video_play +drawable video_play_normal +drawable video_play_pressed +drawable video_progress +drawable video_seek_progress +drawable video_seek_thumb +drawable video_seek_thumb_normal +drawable video_seek_thumb_pressed +drawable video_shrink +drawable video_small_close +drawable video_title_bg +drawable video_volume_icon +drawable video_volume_progress_bg +drawable white +drawable white1 +drawable white2 +drawable wu1 +drawable wu2 +drawable yi_biao_pan_bg_nor +drawable yi_biao_pan_bg_speeding +drawable yingyan +drawable zhujiguang_unusual +drawable zhujiguang_usual +drawable zxing_scanline +id BOTTOM_END +id BOTTOM_START +id BaseQuickAdapter_databinding_support +id BaseQuickAdapter_dragging_support +id BaseQuickAdapter_swiping_support +id BaseQuickAdapter_viewholder_support +id Full +id Half +id LinearLayout1 +id NO_DEBUG +id SHOW_ALL +id SHOW_PATH +id SHOW_PROGRESS +id TOP_END +id TOP_START +id aMapNaviView +id accelerate +id accept_traffic +id accessibility_action_clickable_span +id accessibility_custom_action_0 +id accessibility_custom_action_1 +id accessibility_custom_action_10 +id accessibility_custom_action_11 +id accessibility_custom_action_12 +id accessibility_custom_action_13 +id accessibility_custom_action_14 +id accessibility_custom_action_15 +id accessibility_custom_action_16 +id accessibility_custom_action_17 +id accessibility_custom_action_18 +id accessibility_custom_action_19 +id accessibility_custom_action_2 +id accessibility_custom_action_20 +id accessibility_custom_action_21 +id accessibility_custom_action_22 +id accessibility_custom_action_23 +id accessibility_custom_action_24 +id accessibility_custom_action_25 +id accessibility_custom_action_26 +id accessibility_custom_action_27 +id accessibility_custom_action_28 +id accessibility_custom_action_29 +id accessibility_custom_action_3 +id accessibility_custom_action_30 +id accessibility_custom_action_31 +id accessibility_custom_action_4 +id accessibility_custom_action_5 +id accessibility_custom_action_6 +id accessibility_custom_action_7 +id accessibility_custom_action_8 +id accessibility_custom_action_9 +id action0 +id actionDown +id actionDownUp +id actionUp +id action_bar +id action_bar_activity_content +id action_bar_container +id action_bar_root +id action_bar_spinner +id action_bar_subtitle +id action_bar_title +id action_container +id action_context_bar +id action_divider +id action_image +id action_menu_divider +id action_menu_presenter +id action_mode_bar +id action_mode_bar_stub +id action_mode_close_button +id action_text +id actions +id activity_chooser_view_content +id adCircularProgressView +id ad_full_id +id ad_small_id +id ad_time +id add +id alertTitle +id aligned +id allStates +id animateToEnd +id animateToStart +id animationImage +id animationLayout +id antiClockwise +id anticipate +id any +id appVersionInfoLayout +id app_video_brightness +id app_video_brightness_box +id app_video_brightness_icon +id arc +id asConfigured +id async +id auto +id autoComplete +id autoCompleteToEnd +id autoCompleteToStart +id auto_layout +id auto_risk_state +id autopilotIPDivider +id autopilotInfoDivider +id autopilotSpeedDivider +id autopilot_badcase_record +id back +id backId +id back_image +id back_tiny +id barrier +id baseline +id bestChoice +id bg +id bkg +id blocking +id blue_block +id bottom +id bottomBg +id bottom_progressbar +id bounce +id box_bkg +id box_custom +id box_info +id box_progress +id brakeView +id btnAdasDataWarn +id btnBack +id btnClearRoadEvent +id btnDisconnectIpc +id btnDrawBicycle +id btnDrawBus +id btnDrawMotorcycle +id btnDrawObuTrolley +id btnDrawPedestrian +id btnDrawTrolley +id btnDrawTruck +id btnDrawUnknown +id btnForceClearNotice +id btnFrontCarLiveEvent +id btnHidePanels +id btnOpenObuFusion +id btnRecordPackage +id btnRefresh +id btnRetryFlow +id btnSetAutopilotIP +id btnSetAutopilotSpeed +id btnSetObuIP +id btnShear +id btnShowOrHidePanels +id btnStart +id btnStop +id btnSystemRestart +id btnSystemUpgrade +id btnTriggerAnimationEvent +id btnTriggerCallUserInfo +id btnTriggerCongestedRouteRecommendation +id btnTriggerDoubleFlash +id btnTriggerEventUgc +id btnTriggerFatigueDrivingEvent +id btnTriggerObstacleDetour +id btnTriggerOpen +id btnTriggerParkEvent +id btnTriggerPedestrianWarning +id btnTriggerPushEvent +id btnTriggerPushLiveCarEvent +id btnTriggerRearDangerousVehicles +id btnTriggerRearVIPCarTip +id btnTriggerRecommendRouteEvent +id btnTriggerReverseVehicleRoutePrediction +id btnTriggerRoadEvent +id btnTriggerSeekHelpEvent +id btnTriggerTrafficSearch +id btnTriggerVIPLightChange +id btnTriggerVR +id btnTriggerVehicleBrakes +id btnTriggerWarningEvent +id btnXINGLiveEvent +id btn_audition +id btn_back +id btn_bottom +id btn_c +id btn_clean +id btn_connect +id btn_data_preview +id btn_dest +id btn_export +id btn_list +id btn_maximize +id btn_mic +id btn_minimality +id btn_navi +id btn_pos +id btn_selectNegative +id btn_selectPositive +id btn_settings +id btn_start +id btn_top +id btn_tu +id btn_zoom_city +id btn_zoom_country +id btn_zoom_in +id btn_zoom_out +id btn_zoom_provincial +id btn_zoom_road +id buffer +id buttonPanel +id button_wrap +id camera +id camera_begind +id camera_begind_txt +id camera_front_txt +id can_parent +id cancel +id cancel_action +id cancel_button +id cancel_info_list_button +id carcorderPreview +id carryVelocity +id cbAdasAutoPilot +id cbAdasDataTrack +id cbAdasLog +id cbAdasTrajectory +id cbAdasVehicle +id cbBusLog +id cbDevaLog +id cbHmiLog +id cbMapLog +id cbNetworkLog +id cbObuLog +id cbOldRouteLog +id cbTaxiLog +id cbTaxiPLog +id cbV2xLog +id center +id centerCrop +id centerInside +id center_empty +id chain +id changesight_back_btn +id changesight_cross_btn +id changesight_far_btn +id changesight_top_btn +id check +id checkLayout +id checkSystemView +id check_button +id check_detail +id check_image +id check_info_title +id check_list +id check_list_recycler +id check_progress +id check_progress_text +id check_text_view +id check_tip_image +id check_title +id check_title_item +id check_view +id checkbox +id checked +id chip +id chip1 +id chip2 +id chip3 +id chip_group +id chronometer +id circle +id circle_center +id clAutopilotStatus +id clCheckSystem +id clHistoryList +id clHmiContainer +id clLoadError +id clMarkerContent +id clMarkerTopView +id clPanelContainer +id clTrafficLight +id clVipIdentification +id cl_special_effect +id clamp +id clear_text +id clockwise +id close +id closest +id column +id column_reverse +id confirm_button +id constraint +id container +id content +id contentPanel +id contiguous +id continuousVelocity +id controlCenterLayout +id coordinator +id cos +id counterclockwise +id ctvGreenTrafficLight +id ctvRedTrafficLight +id ctvYellowTrafficLight +id current +id currentState +id cus_polygon +id custom +id customPanel +id customRatingBar +id cut +id dataBinding +id date_picker_actions +id db +id db_unit +id debug +id decelerate +id decelerateAndComplete +id decor_content_parent +id default_activity_button +id deltaRelative +id description +id design_bottom_sheet +id design_menu_item_action_area +id design_menu_item_action_area_stub +id design_menu_item_text +id design_navigation_view +id determinate +id deviceBindLayout +id dialog_button +id disjoint +id domainControllerLayout +id dragAnticlockwise +id dragClockwise +id dragDown +id dragEnd +id dragLeft +id dragRight +id dragStart +id dragUp +id dropdown_menu +id duration_image_tip +id duration_progressbar +id easeIn +id easeInOut +id easeOut +id east +id edit_password +id edit_query +id edit_username +id elastic +id end +id endToStart +id end_padder +id error +id errorTipImage +id error_image +id error_tip +id error_tip_green +id error_title +id error_txt +id error_view +id et +id etAutopilotIP +id etInputRecordTime +id etInputSpeed +id etLogCatch +id etObuIP +id et_root +id event_share_load_status +id exo_artwork +id exo_content_frame +id exo_controller_placeholder +id exo_duration +id exo_ffwd +id exo_next +id exo_overlay +id exo_pause +id exo_play +id exo_position +id exo_prev +id exo_progress +id exo_rew +id exo_shutter +id exo_subtitles +id expand_activities_button +id expanded_menu +id fade +id feed_back_badcase_job +id feed_back_badcase_tag +id feed_back_badcase_taskid_tag +id feedback +id fill +id filled +id fit +id fitBottomStart +id fitCenter +id fitEnd +id fitStart +id fitXY +id fixed +id fixed_height +id fixed_width +id flLogControl +id flTestPanel +id flTestPanelShunNormal +id flTestPanelShunYi +id flTestPanelVR +id flV2XWarningView +id flVipIdentificationView +id fl_cars +id flex +id flex_end +id flex_start +id flip +id floating +id focusCrop +id forever +id fragment_container_view_tag +id front +id frost +id full_id +id fullscreen +id ghost_view +id ghost_view_holder +id glide_custom_view_target_tag +id gone +id group_divider +id guidance_btn_show_route_mode +id guidance_enter_image +id guidance_exit_image +id guidance_iv_line +id guidance_layout_next_road +id guidance_layout_next_road_name +id guidance_layout_next_road_two_name +id guidance_layout_server_enter +id guidance_left +id guidance_progressBar +id guidance_server_image +id guidance_tv_progress +id guidance_tv_speed +id guideline +id guideline1 +id hdMapControllerLayout +id header_title +id hint +id hmiControllerLayout +id hmiWarningBottomImg +id hmiWarningLeftImg +id hmiWarningRightImg +id hmiWarningTopImg +id home +id honorRequest +id horizontal +id horizontal_only +id icon +id iconSwitch +id icon_auto +id icon_auto_title +id icon_group +id icon_ying +id icon_ying_title +id ignore +id ignoreRequest +id image +id imageView +id image_brake +id imgView +id img_traffic +id img_zoom_in +id img_zoom_out +id immediateStop +id included +id indeterminate +id index +id info +id infoW_title +id infoWindowLayer +id info_check_icon +id info_result_tx +id infow_content +id invisible +id inward +id ip +id italic +id item_group +id item_list +id item_touch_helper_previous_elevation +id item_video_cover +id ivAdStatus +id ivAdVersion +id ivBg +id ivCameraIcon +id ivCar +id ivCheckIcon +id ivClose +id ivCloseIcon +id ivDebugFeedback +id ivDebugPanel +id ivDialogBg +id ivEmptyView +id ivErrorIcon +id ivEventCallChart +id ivEventDistanceLogo +id ivEventEventNav +id ivEventHead +id ivEventImg +id ivEventLive +id ivEventPlay +id ivEventReportErr +id ivEventReportTrue +id ivEventTypeIcon +id ivEventZan +id ivFaultHelpEventCall +id ivFaultHelpEventNavi +id ivFaultHelpHead +id ivIcon +id ivIconP +id ivIllegalParkingLike +id ivIllegalParkingUnLike +id ivIllegalParkingUnpaLike +id ivImg +id ivLikeForGrayBack +id ivMapBorder +id ivMarkerTip +id ivObuTypeIcon +id ivPadStatus +id ivPadVersion +id ivReportHead +id ivReverseTriangle +id ivRoadCallChart +id ivRoadEventLike +id ivRoadEventNav +id ivRoadReportErr +id ivRoadReportTrue +id ivSignalIcon +id ivStatusIcon +id ivToNav +id ivToolsIcon +id ivUserHead +id ivVideoPlayingSign +id ivVipIdentification +id ivWaringIcon +id iv_back +id iv_camera_traffic +id iv_empty +id iv_event +id iv_event_bg +id iv_event_type +id iv_guidance_3d_route_arrow +id iv_guidance_3d_route_bg +id iv_guidance_bind_car_arrow +id iv_guidance_board_arrow +id iv_guidance_board_bg +id iv_guidance_enter_icon +id iv_guidance_exit_icon +id iv_guidance_lane_arrow +id iv_guidance_lane_bg +id iv_guidance_next_road +id iv_guidance_next_road_over_mileage +id iv_guidance_next_road_trun_mileage +id iv_guidance_next_turn +id iv_guidance_next_turn_over_mileage +id iv_guidance_over_mileage +id iv_guidance_server_icon +id iv_logo +id iv_play +id iv_traffic +id iv_wu1 +id iv_wu2 +id jiaoJiGuangBottom +id jiaoJiGuangBottom_txt +id jiaoJiGuangTop +id jiaoJiGuangTop_txt +id jumpToEnd +id jumpToStart +id jump_ad +id key_text_view +id labeled +id largeLabel +id layout +id layout_bottom +id layout_brake +id layout_btn +id layout_empty_data_show +id layout_parent +id layout_root +id layout_surrounding_event +id layout_top +id layout_zoom +id layout_zoom_control +id layout_zoom_value +id leak_canary_about_heap_dump_switch_button +id leak_canary_about_heap_dump_text +id leak_canary_about_text +id leak_canary_bottom_navigation_bar +id leak_canary_chip_library_leak +id leak_canary_chip_new +id leak_canary_count_text +id leak_canary_dump_heap_now +id leak_canary_explorer_list +id leak_canary_explorer_title +id leak_canary_header_text +id leak_canary_heap_dump_leaks +id leak_canary_heap_rendering +id leak_canary_import_heap_dump +id leak_canary_leak_text +id leak_canary_list +id leak_canary_loading +id leak_canary_main_container +id leak_canary_navigation_button_about +id leak_canary_navigation_button_about_icon +id leak_canary_navigation_button_heap_dumps +id leak_canary_navigation_button_heap_dumps_icon +id leak_canary_navigation_button_leaks +id leak_canary_navigation_button_leaks_icon +id leak_canary_notification_analysis_result +id leak_canary_notification_analyzing_heap +id leak_canary_notification_dumping_heap +id leak_canary_notification_no_retained_object_on_tap +id leak_canary_notification_on_screen_exit +id leak_canary_notification_retained_objects +id leak_canary_notification_write_permission +id leak_canary_row_connector +id leak_canary_row_small_text +id leak_canary_row_text +id leak_canary_row_title +id leak_canary_search_button +id leak_canary_single_leak_trace_row +id leak_canary_spinner +id leak_canary_stacktrace +id leak_canary_time_text +id leak_canary_toast_icon +id left +id leftImageView +id leftToRight +id left_nor_image +id left_select_image +id length +id lin_next_turn +id line1 +id line3 +id line_top +id linear +id listMode +id list_item +id list_item_title +id list_layout_container +id liveVideo +id liveVideoClose +id llEventMore +id llIllegalParkingLike +id llIllegalParkingUnLike +id llSpeedLayout +id llSpeedPosition +id ll_event +id ll_infowindow +id ll_loading +id ll_title +id load_failed_image +id load_more_load_complete_view +id load_more_load_end_view +id load_more_load_fail_view +id load_more_loading_view +id loading +id loading_imageview +id loading_iv +id loading_liner_layout +id loading_progress +id loading_text +id local_ip +id local_ip_view +id lock_screen +id log_content +id log_filter +id log_hint +id log_level_text +id log_list +id log_output_text +id log_page +id log_switcher +id logcatCenterLayout +id luyouqi +id luyouqi_txt +id lv_info +id map_container +id markerViewLayer +id masked +id match_constraint +id match_parent +id material_clock_display +id material_clock_face +id material_clock_hand +id material_clock_period_am_button +id material_clock_period_pm_button +id material_clock_period_toggle +id material_hour_text_input +id material_hour_tv +id material_label +id material_minute_text_input +id material_minute_tv +id material_textinput_timepicker +id material_timepicker_cancel_button +id material_timepicker_container +id material_timepicker_edit_text +id material_timepicker_mode_button +id material_timepicker_ok_button +id material_timepicker_view +id material_value_index +id media_actions +id menu_btn_bt +id menu_btn_clearmap +id menu_btn_common +id menu_btn_periphery +id menu_btn_periphery_search +id menu_btn_recent +id menu_btn_search +id menu_btn_setting +id menu_btn_show +id menu_left_btn +id menu_left_btns +id menu_left_layout +id message +id middle +id mini +id mirror +id module_adas_dispatch_remind_affirm +id module_adas_dispatch_remind_cancel +id module_adas_dispatch_remind_loc +id module_adas_dispatch_remind_timer +id module_carchatting_call_hangUp +id module_carchatting_call_head +id module_carchatting_call_nickname +id module_carchatting_call_time +id module_carchatting_incoming_answer +id module_carchatting_incoming_hangUp +id module_carchatting_rl_call_view +id module_carchatting_rl_incoming_view +id module_commons_marker_car_model +id module_commons_toast_left_drawable +id module_commons_toast_msg +id module_commons_wm_dialog_button_cancel +id module_commons_wm_dialog_button_ok +id module_commons_wm_dialog_content +id module_main_id_cover_up +id module_main_id_entrance_fragment_container +id module_main_id_floating_view +id module_main_id_map_fragment_container +id module_main_id_message_history_fragment_container +id module_main_id_och_fragment +id module_main_id_search_fragment +id module_main_id_smp_fragment +id module_main_id_waring_fragment +id module_map_amap_my_location_bg_iv +id module_map_amap_my_location_iv +id module_map_id_map +id module_push_app_icon +id module_push_app_icon_title +id module_push_button_left +id module_push_button_right +id module_push_buttons +id module_push_check +id module_push_content +id module_push_content_container +id module_push_dialog_acc_title +id module_push_dialog_bottom_title +id module_push_dialog_close +id module_push_dialog_content +id module_push_dialog_title +id module_push_id_clear +id module_push_id_close +id module_push_id_not_data +id module_push_id_recycler_view +id module_push_id_title +id module_push_image +id module_push_item_app_icon +id module_push_item_click +id module_push_item_content +id module_push_item_delete +id module_push_item_image +id module_push_item_time +id module_push_item_title +id module_push_line +id module_push_progress_bar_frame +id module_push_rl_content +id module_push_timer +id module_push_title +id module_service_id_call +id module_service_id_content +id module_service_id_marker_content +id module_service_id_tag +id module_service_id_user_header +id module_services_dispatch_dialog_confirm +id module_services_dispatch_dialog_end_content +id module_services_dispatch_dialog_flight_time +id module_services_dispatch_dialog_start_content +id module_services_dispatch_dialog_task_content +id module_services_dispatch_dialog_task_time +id module_services_dispatch_dialog_title +id module_switch_model_layout +id month_grid +id month_navigation_bar +id month_navigation_fragment_toggle +id month_navigation_next +id month_navigation_previous +id month_title +id motion_base +id movePathView +id mp3 +id mtrl_anchor_parent +id mtrl_calendar_day_selector_frame +id mtrl_calendar_days_of_week +id mtrl_calendar_frame +id mtrl_calendar_main_pane +id mtrl_calendar_months +id mtrl_calendar_selection_frame +id mtrl_calendar_text_input_frame +id mtrl_calendar_year_selector_frame +id mtrl_card_checked_layer_id +id mtrl_child_content_container +id mtrl_internal_children_alpha_tag +id mtrl_motion_snapshot_view +id mtrl_picker_fullscreen +id mtrl_picker_header +id mtrl_picker_header_selection_text +id mtrl_picker_header_title_and_selection +id mtrl_picker_header_toggle +id mtrl_picker_text_input_date +id mtrl_picker_text_input_range_end +id mtrl_picker_text_input_range_start +id mtrl_picker_title_text +id mtrl_view_tag_bottom_padding +id multiply +id name +id name_text +id navi_sdk_tmc_bar_container +id navigation_bar_item_icon_view +id navigation_bar_item_labels_group +id navigation_bar_item_large_label_view +id navigation_bar_item_small_label_view +id navigation_header_container +id network_loading_imageview +id neverCompleteToEnd +id neverCompleteToStart +id next_icon +id noId +id noState +id no_share_image +id none +id normal +id north +id notice_banner_line +id notice_connect +id notice_image +id notice_push_banner_check +id notice_push_content +id notice_push_icon_video +id notice_push_style_image +id notice_push_title +id notice_traffic_dialog_close +id notice_traffic_dialog_title +id notice_video_layout +id notice_video_play +id notification_background +id notification_main_column +id notification_main_column_container +id nowrap +id obu +id obuControllerLayout +id obuDivider +id obuDivider2 +id obu_ip_view +id obu_state +id obu_top_txt +id off +id ok +id on +id onAttachStateChangeListener +id onDateChanged +id orientation +id outline +id outward +id overshoot +id packed +id pad +id pad_txt +id panel_btn_gps +id panel_guidance_right +id panel_text_gps +id parallax +id parent +id parentPanel +id parentRelative +id parent_matrix +id password_toggle +id path +id pathId +id pathRelative +id pb +id pcm +id percent +id pid_text +id pin +id play +id poi_browse_btn_back +id poi_browse_btn_exit +id poi_browse_btn_next +id poi_browse_btn_pre +id poi_browse_btns +id position +id postLayout +id preview_layout +id progress +id progressBar +id progress_circular +id progress_horizontal +id pushVideoClose +id query +id r_16 +id r_16K +id r_44K +id r_8 +id r_8K +id r_btn +id radio +id radio_group +id rating_bar +id rbGpsProviderAndroid +id rbGpsProviderOBU +id rbGpsProviderRTK +id rbScenarioHistory +id rbShareEvents +id rbSurroundingEvent +id reason +id record +id recordPackageDivider +id rectangles +id recyclerView +id refresh_button +id refuse_traffic +id repeat +id reportMsgLayout +id reset_changesight +id reverseSawtooth +id rgGpsProvider +id rgTabSelect +id rg_audio_format +id rg_encoding +id rg_routing_set +id rg_simple_rate +id right +id rightLinear +id rightToLeft +id right_icon +id right_nor_image +id right_select_image +id right_side +id rlContent +id rlRoadEventDetail +id rlRoadEventImg +id rlRoadEventList +id rlSmallMapBorder +id roadVideoClose +id roadVideoView +id road_case_address +id road_case_liset_item +id road_case_share_list +id road_case_share_time +id road_case_style +id road_case_useful +id road_case_useful_num +id road_case_useless +id road_case_useless_num +id round +id rounded +id route_select_ok +id route_select_setting +id route_select_sim_navi +id route_select_start +id route_select_start_navi +id route_select_time +id route_set_end +id route_set_layout +id route_set_ok +id route_set_start +id route_set_waypoi +id routebook_child_item_info_ll +id routing_set_avoidhwy +id routing_set_avoidtoll +id routing_set_default +id routing_set_fast +id routing_set_short +id row +id row_index_key +id row_reverse +id rtk +id rtk_txt +id rv +id rvCameraList +id rvRoadEventList +id rv_take_over +id sKeyBoardView +id save_non_transition_alpha +id save_obu_ip +id save_overlay_view +id sawtooth +id scale +id scan_car_image +id scan_car_tips +id scan_car_top_image +id scan_line_image +id screen +id scrollIndicatorDown +id scrollIndicatorUp +id scrollView +id scrollable +id search_badge +id search_bar +id search_button +id search_close_btn +id search_edit_frame +id search_go_btn +id search_mag_icon +id search_plate +id search_src_text +id search_voice_btn +id select_dialog_listview +id selected +id selection_type +id send +id shadowView +id shape_id +id share_approve +id share_approve_des +id share_event_button +id share_event_guide_des +id share_event_null_des +id share_index_des +id share_num +id sharedValueSet +id sharedValueUnset +id shortcut +id shre_num_des +id sim_navi_control +id sim_navi_next +id sim_navi_pre +id sim_navi_start +id sim_navi_text +id sin +id skipped +id slide +id smallLabel +id smallMapDirectionView +id small_close +id small_id +id snackbar_action +id snackbar_text +id south +id space_around +id space_between +id space_evenly +id spacer +id special_effects_controller_view_tag +id spinner1 +id spline +id split_action_bar +id spread +id spread_inside +id spring +id square +id src_atop +id src_in +id src_over +id standard +id start +id startHorizontal +id startToEnd +id startVertical +id start_for_traffic +id state +id staticLayout +id staticPostLayout +id statusCenterLayout +id status_bar_latest_event_content +id stop +id stretch +id submenuarrow +id submit_area +id supply +id surfaceView +id surface_container +id surface_view +id surrounding_detail_recycleview +id surrounding_recycleview +id surrounding_road_like +id surrounding_road_type +id surrounding_road_type_address +id surrounding_road_unlike +id surrounding_root +id surrounding_time +id surrounding_username +id svLayout +id svpPlayer +id systemVersionView +id tabMode +id tagEventEvaluate +id tagEventType +id tag_accessibility_actions +id tag_accessibility_clickable_spans +id tag_accessibility_heading +id tag_accessibility_pane_title +id tag_click_time +id tag_on_apply_window_listener +id tag_on_receive_content_listener +id tag_on_receive_content_mime_types +id tag_screen_reader_focusable +id tag_state_description +id tag_text +id tag_transition_group +id tag_unhandled_key_event_manager +id tag_unhandled_key_listeners +id tag_window_insets_animation_callback +id tbADASLog +id tbAppVersionInfo +id tbAutopilotStatusView +id tbChangeAutoPilotStatus +id tbChangeCurrentCarIcon +id tbCheckStatusView +id tbControlCenter +id tbControlView +id tbDeviceBind +id tbDomainController +id tbHdMapController +id tbHmiController +id tbIsDemoMode +id tbIsDrawAutopilotTrajectoryData +id tbIsDrawIdentifyData +id tbIsDrawUnknownIdentifyData +id tbLogCatch +id tbLogDebugView +id tbLogcatCenter +id tbObuController +id tbOpenBrakeLight +id tbOpenLight +id tbPerspectiveSwitchView +id tbSelfLog +id tbSpeedView +id tbStatusCenter +id test_checkbox_android_button_tint +id test_checkbox_app_button_tint +id test_radiobutton_android_button_tint +id test_radiobutton_app_button_tint +id text +id text2 +id textSpacerNoButtons +id textSpacerNoTitle +id textSwitch +id textView1 +id textWatcher +id text_input_end_icon +id text_input_error_icon +id text_input_start_icon +id text_tip +id textinput_counter +id textinput_error +id textinput_helper_text +id textinput_placeholder +id textinput_prefix_text +id textinput_suffix_text +id textureView +id texture_view +id thumb +id thumbImage +id thumbnail_image +id time +id time_of_take_over +id timestamp_text +id title +id titleDividerNoCustom +id titleId +id titleLayoutId +id title_bar +id title_for +id title_one +id title_template +id title_thr +id title_two +id tmcBarCar +id tmcBarTxt +id tmcBarView +id toolbar +id top +id topPanel +id topResource +id top_mask +id total +id touch_outside +id traffic_info_recyclerView +id traffic_middle_line +id traffic_top_line +id transition_current_scene +id transition_layout_save +id transition_position +id transition_scene_layoutid_cache +id transition_transform +id triangle +id turnLightView +id turn_light_layout +id tvAcceleration +id tvAdVersionContent +id tvAdVersionTitle +id tvAddress +id tvAddressDistance +id tvAndroidSystemVersion +id tvAppVersionCode +id tvAppVersionName +id tvAutopilotConnectStatus +id tvAutopilotInfo +id tvAutopilotProtocolVersionInfo +id tvCPUFrameworkInfo +id tvCameraInfo +id tvCameraTitle +id tvCarInfo +id tvCheck +id tvCheckReboot +id tvCheckShutDown +id tvCountDown +id tvDebug +id tvDebugFeedback +id tvDialogContent +id tvDialogLeft +id tvDialogRight +id tvDriverServerStartupStatus +id tvErrorContent +id tvEventAddress +id tvEventCount +id tvEventDistance +id tvEventStubClose +id tvEventTime +id tvEventTypeTitle +id tvEventUgcTitle +id tvFaultHelpDistance +id tvFaultHelpEventTime +id tvFaultHelpName +id tvGitBranchInfo +id tvGitHashInfo +id tvIPCMac +id tvIdentifyInfo +id tvIllegalNum +id tvImgTextContent +id tvInternetEnvironment +id tvIpcProtocolVersionInfo +id tvLimitingVelocity +id tvLocationEnabled +id tvLogDebugTitle +id tvLoggingNotice +id tvMarkerContent +id tvMessage +id tvMoGoMapVersion +id tvNoMoreDataTrip +id tvObuAppInfo +id tvObuConnectStatus +id tvObuDelay +id tvObuDesc +id tvObuHliInfo +id tvObuInfo +id tvObuSdkVersion +id tvObuType +id tvPadCopyrightId +id tvPadSn +id tvPadVersionContent +id tvPadVersionTitle +id tvPlateNumber +id tvRefreshButton +id tvReportActions +id tvReportCode +id tvReportLevel +id tvReportMsg +id tvReportNSec +id tvReportResult +id tvReportSec +id tvReportSrc +id tvRouteInfoSize +id tvServerEnvironment +id tvServerSocketStatus +id tvSpeedTitle +id tvStatusDes +id tvSystemOperation +id tvSystemVersion +id tvTipContent +id tvTrajectoryInfoSize +id tvTrip +id tvUniqueDeviceId +id tvUserMarker +id tvWaringContent +id tv_bindingcar_cancel +id tv_bindingcar_confirm +id tv_bindingcar_tips +id tv_bindingcar_title +id tv_brake +id tv_brief +id tv_brief_detail +id tv_cancel +id tv_current +id tv_dialog_cancel +id tv_dialog_ok +id tv_dis +id tv_duration +id tv_event +id tv_guidance_cur_road +id tv_guidance_enter_dis +id tv_guidance_exit_dis +id tv_guidance_next_export +id tv_guidance_next_road +id tv_guidance_next_road_two_name +id tv_guidance_over_mileage +id tv_guidance_over_time +id tv_guidance_server_dis +id tv_info_total +id tv_line +id tv_main_empty_1 +id tv_main_empty_2 +id tv_main_refresh +id tv_main_share +id tv_next_road +id tv_over_view +id tv_play +id tv_poitype +id tv_prompt +id tv_reboot_cancel +id tv_reboot_confirm +id tv_reboot_tips +id tv_reboot_title +id tv_scale +id tv_scale_bg +id tv_snippet +id tv_title +id tv_to_bindingcar_cancel +id tv_to_bindingcar_confirm +id tv_top_refresh +id tv_upgrade_cancel +id tv_upgrade_confirm +id tv_upgrade_content +id tv_upgrade_tip +id tv_upgrade_title +id txcVideoView +id txt_dialog_tip +id txt_dialog_title +id txt_info +id txt_input +id unchecked +id uniform +id unlabeled +id unusual_title +id up +id usual_title +id utvBottomIconView +id utvLeftIconView +id utvRightIconView +id utvTopIconView +id value_text_view +id verbose +id version +id vertical +id vertical_only +id videoPlayer +id video_player +id viewAutopilotStatus +id viewBottomLine +id viewCheckReboot +id viewCheckShutDown +id viewCheckStatus +id viewEmpty +id viewLimitingVelocity +id viewLinEnd +id viewLinStart +id viewPerspectiveSwitch +id viewShowDebugView +id viewSpeedChart +id viewSystemVersion +id viewTrafficLightVr +id viewUpgradeTips +id view_divider +id view_horizontal_line +id view_lifecycle_owner +id view_offset_helper +id view_transition +id view_tree_lifecycle_owner +id view_tree_saved_state_registry_owner +id view_tree_view_model_store_owner +id view_vertical_line +id visible +id visible_removing_fragment_view_tag +id volume_progressbar +id vpEventPanel +id vsBadCaseToolsView +id vvCarAnimation +id warn +id warning_content_text +id warning_distance +id warning_type_image +id wav +id west +id widget_container +id window_video_play +id withinBounds +id words_count +id wrap +id wrap_content +id wrap_content_constrained +id wrap_reverse +id x86_support +id x_left +id x_right +id yesId +id ying_layout +id ying_risk_state +id zero_corner_chip +id zhujiguang +id zhujiguang_txt +integer abc_config_activityDefaultDur +integer abc_config_activityShortDur +integer app_bar_elevation_anim_duration +integer bottom_sheet_slide_duration +integer cancel_button_image_alpha +integer config_tooltipAnimTime +integer design_snackbar_text_max_lines +integer design_tab_indicator_anim_duration_ms +integer hide_password_duration +integer keyCode_0 +integer keyCode_1 +integer keyCode_1002 +integer keyCode_1003 +integer keyCode_1004 +integer keyCode_1005 +integer keyCode_2 +integer keyCode_3 +integer keyCode_4 +integer keyCode_5 +integer keyCode_6 +integer keyCode_7 +integer keyCode_8 +integer keyCode_9 +integer keyCode_a +integer keyCode_b +integer keyCode_c +integer keyCode_d +integer keyCode_del +integer keyCode_e +integer keyCode_f +integer keyCode_g +integer keyCode_h +integer keyCode_heng +integer keyCode_i +integer keyCode_input_type +integer keyCode_j +integer keyCode_k +integer keyCode_keboard_style +integer keyCode_l +integer keyCode_m +integer keyCode_n +integer keyCode_o +integer keyCode_ok +integer keyCode_p +integer keyCode_q +integer keyCode_r +integer keyCode_s +integer keyCode_search +integer keyCode_t +integer keyCode_u +integer keyCode_v +integer keyCode_w +integer keyCode_x +integer keyCode_xing +integer keyCode_y +integer keyCode_z +integer material_motion_duration_long_1 +integer material_motion_duration_long_2 +integer material_motion_duration_medium_1 +integer material_motion_duration_medium_2 +integer material_motion_duration_short_1 +integer material_motion_duration_short_2 +integer material_motion_path +integer mtrl_badge_max_character_count +integer mtrl_btn_anim_delay_ms +integer mtrl_btn_anim_duration_ms +integer mtrl_calendar_header_orientation +integer mtrl_calendar_selection_text_lines +integer mtrl_calendar_year_selector_span +integer mtrl_card_anim_delay_ms +integer mtrl_card_anim_duration_ms +integer mtrl_chip_anim_duration +integer mtrl_tab_indicator_anim_duration_ms +integer show_password_duration +integer status_bar_notification_info_maxnum +interpolator btn_checkbox_checked_mtrl_animation_interpolator_0 +interpolator btn_checkbox_checked_mtrl_animation_interpolator_1 +interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_0 +interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_1 +interpolator btn_radio_to_off_mtrl_animation_interpolator_0 +interpolator btn_radio_to_on_mtrl_animation_interpolator_0 +interpolator fast_out_slow_in +interpolator mtrl_fast_out_linear_in +interpolator mtrl_fast_out_slow_in +interpolator mtrl_linear +interpolator mtrl_linear_out_slow_in +layout abc_action_bar_title_item +layout abc_action_bar_up_container +layout abc_action_menu_item_layout +layout abc_action_menu_layout +layout abc_action_mode_bar +layout abc_action_mode_close_item_material +layout abc_activity_chooser_view +layout abc_activity_chooser_view_list_item +layout abc_alert_dialog_button_bar_material +layout abc_alert_dialog_material +layout abc_alert_dialog_title_material +layout abc_cascading_menu_item_layout +layout abc_dialog_title_material +layout abc_expanded_menu_layout +layout abc_list_menu_item_checkbox +layout abc_list_menu_item_icon +layout abc_list_menu_item_layout +layout abc_list_menu_item_radio +layout abc_popup_menu_header_item_layout +layout abc_popup_menu_item_layout +layout abc_screen_content_include +layout abc_screen_simple +layout abc_screen_simple_overlay_action_mode +layout abc_screen_toolbar +layout abc_search_dropdown_item_icons_2line +layout abc_search_view +layout abc_select_dialog_material +layout abc_tooltip +layout activity_beta_active_alert +layout activity_check +layout activity_data_preview +layout activity_log +layout activity_login_sftp +layout activity_settings +layout activity_simulate +layout brvah_quick_view_load_more +layout camera_item_v2x_live_video +layout camera_push_live_video +layout camera_view_video_layout_normal +layout check_dialog +layout check_hardware +layout check_info_adapter +layout check_info_list +layout check_info_title_item +layout check_list +layout check_recycler_footer +layout check_titel +layout custom_dialog +layout design_bottom_navigation_item +layout design_bottom_sheet_dialog +layout design_layout_snackbar +layout design_layout_snackbar_include +layout design_layout_tab_icon +layout design_layout_tab_text +layout design_menu_item_action_area +layout design_navigation_item +layout design_navigation_item_header +layout design_navigation_item_separator +layout design_navigation_item_subheader +layout design_navigation_menu +layout design_navigation_menu_item +layout design_text_input_end_icon +layout design_text_input_start_icon +layout dialog_ad_upgrade +layout dialog_camera +layout dialog_can_config +layout dialog_docker_reboot +layout dialog_log +layout dialog_log_debug +layout dialog_modify_bindingcar +layout dialog_navi_notice +layout dialog_routing_set +layout dialog_select +layout dialog_tip +layout dialog_to_bindingcar +layout dialog_v2x_seek_help +layout dialog_wait +layout exo_playback_control_view +layout exo_simple_player_view +layout footer_nomore_view +layout fragment_hmi +layout item +layout item_camera_info +layout item_data +layout item_log +layout item_notice_video +layout item_notice_video_small +layout item_radio_btn +layout item_v2x_crossroad_live_video +layout item_v2x_event_detail +layout item_v2x_event_detail_vr +layout item_v2x_event_share_load_more +layout item_v2x_event_ugc +layout item_v2x_fatigue_driving +layout item_v2x_fault_help +layout item_v2x_fault_help_vr +layout item_v2x_illegal_parking +layout item_v2x_illegal_parking_vr +layout item_v2x_live_video +layout item_v2x_live_video_vr +layout item_v2x_push_event_detail +layout item_v2x_push_live_video +layout item_v2x_push_live_video_vr +layout item_v2x_recommend_route +layout item_v2x_road_live_car_detail +layout item_v2x_road_live_car_detail_vr +layout item_v2x_scennario_history +layout item_v2x_scennario_history_other_help +layout item_v2x_see_crossroad_live_video +layout item_v2x_see_frontcar_live_video +layout item_v2x_see_frontcar_live_video_vr +layout layout_badcase_collect +layout layout_badcase_item +layout layout_custom_info +layout layout_fb +layout layout_fb_badcase +layout layout_float +layout layout_map_auto_view +layout layout_marker_infowindow_layer +layout layout_normal_info_window_style +layout layout_panel_btn_top_right +layout layout_panel_guidance +layout leak_canary_about_screen +layout leak_canary_heap_analysis_failure_screen +layout leak_canary_heap_dump_leak_title +layout leak_canary_heap_dump_toast +layout leak_canary_heap_dumps_screen +layout leak_canary_heap_render +layout leak_canary_hprof_explorer +layout leak_canary_leak_activity +layout leak_canary_leak_chips +layout leak_canary_leak_header +layout leak_canary_leak_row +layout leak_canary_leak_screen +layout leak_canary_list +layout leak_canary_ref_row +layout leak_canary_simple_row +layout listitem_device +layout log_title_bar +layout log_view +layout material_chip_input_combo +layout material_clock_display +layout material_clock_display_divider +layout material_clock_period_toggle +layout material_clock_period_toggle_land +layout material_clockface_textview +layout material_clockface_view +layout material_radial_view_group +layout material_textinput_timepicker +layout material_time_chip +layout material_time_input +layout material_timepicker +layout material_timepicker_dialog +layout material_timepicker_textinput_display +layout modeules_commons_layout_custom_ratingbar +layout modudle_camera_layout_info +layout modudle_services_marker_info_window_layout +layout modudle_services_marker_layout +layout modudle_services_marker_layout_info +layout modudle_services_marker_vr_layout +layout module_car_chatting_launcher_calling_hawk_eye_view +layout module_car_chatting_launcher_incoming_hawk_eye_view +layout module_common_my_location +layout module_common_warning_marker_bottom +layout module_common_warning_marker_front +layout module_commons_layout_car +layout module_commons_layout_toast +layout module_commons_layout_toast_with_left_drawable +layout module_commons_layout_wm_dialog +layout module_dialog_adas_dispatch_airport +layout module_dialog_adas_dispatch_cars +layout module_event_panel_fragment_surrounding +layout module_fragment_surrounding_event_item +layout module_hmi_warning_v2x +layout module_main_activity_main +layout module_main_fragement_placeholder +layout module_map_fragment_map +layout module_push_dialog_check +layout module_push_item +layout module_push_item_origin +layout module_push_item_vertical +layout module_push_message_hisotry_fragment +layout module_push_message_item +layout module_small_map_fragment +layout module_small_map_view +layout module_v2x_event_panel_fragment_event_panel +layout module_v2x_event_panel_fragment_scenario_history +layout module_v2x_event_share_description +layout module_v2x_event_share_empty +layout module_v2x_event_share_item +layout module_v2x_event_share_recylerview +layout module_v2x_event_surrounding_detail_item +layout mtrl_alert_dialog +layout mtrl_alert_dialog_actions +layout mtrl_alert_dialog_title +layout mtrl_alert_select_dialog_item +layout mtrl_alert_select_dialog_multichoice +layout mtrl_alert_select_dialog_singlechoice +layout mtrl_calendar_day +layout mtrl_calendar_day_of_week +layout mtrl_calendar_days_of_week +layout mtrl_calendar_horizontal +layout mtrl_calendar_month +layout mtrl_calendar_month_labeled +layout mtrl_calendar_month_navigation +layout mtrl_calendar_months +layout mtrl_calendar_vertical +layout mtrl_calendar_year +layout mtrl_layout_snackbar +layout mtrl_layout_snackbar_include +layout mtrl_navigation_rail_item +layout mtrl_picker_actions +layout mtrl_picker_dialog +layout mtrl_picker_fullscreen +layout mtrl_picker_header_dialog +layout mtrl_picker_header_fullscreen +layout mtrl_picker_header_selection_text +layout mtrl_picker_header_title_text +layout mtrl_picker_header_toggle +layout mtrl_picker_text_input_date +layout mtrl_picker_text_input_date_range +layout navi_control_btn +layout network_loading_item +layout network_ttnet_inner_debug_activity +layout notice_dialog_check_with_accessory +layout notice_dialog_traffic_police +layout notice_module_dialog_check +layout notice_push_top_banner +layout notice_traffice_info_list_adapter +layout notice_video_card_layout +layout notification_action +layout notification_action_tombstone +layout notification_media_action +layout notification_media_cancel_action +layout notification_template_big_media +layout notification_template_big_media_custom +layout notification_template_big_media_narrow +layout notification_template_big_media_narrow_custom +layout notification_template_custom_big +layout notification_template_icon_group +layout notification_template_lines_media +layout notification_template_media +layout notification_template_media_custom +layout notification_template_part_chronometer +layout notification_template_part_time +layout notification_v2x_msg_vr +layout panel_btn_car +layout panel_btn_cars +layout panel_btn_left +layout panel_btn_location +layout panel_btn_logo +layout panel_btn_scale +layout panel_btn_zoom +layout panel_btn_zoom_ctrl +layout panel_guidance +layout panel_polygon +layout panel_route_select +layout panel_route_set +layout panel_traffic_sign +layout routebook_child_item +layout select_dialog_item_material +layout select_dialog_multichoice_material +layout select_dialog_singlechoice_material +layout support_simple_spinner_dropdown_item +layout test_action_chip +layout test_chip_zero_corner_radius +layout test_design_checkbox +layout test_design_radiobutton +layout test_navigation_bar_item_layout +layout test_reflow_chipgroup +layout test_toolbar +layout test_toolbar_custom_background +layout test_toolbar_elevation +layout test_toolbar_surface +layout text_view_with_line_height_from_appearance +layout text_view_with_line_height_from_layout +layout text_view_with_line_height_from_style +layout text_view_with_theme_line_height +layout text_view_without_line_height +layout tooltip +layout utils_toast_view +layout v2x_front_target_info_view +layout v2x_road_front_warning_vr +layout v2x_road_video_plyer_layout +layout v2x_road_video_plyer_layout_vr +layout video_brightness +layout video_layout_ad +layout video_layout_custom +layout video_layout_normal +layout video_layout_sample_ad +layout video_layout_standard +layout video_progress_dialog +layout video_volume_dialog +layout view_ap_badcase_entrance +layout view_auto_pilot_check +layout view_autopilot_status +layout view_brake_light_status +layout view_camera_list +layout view_carcorder_preview +layout view_check_status +layout view_check_system +layout view_debug_setting +layout view_event_panel_history_count +layout view_heart_like +layout view_heart_like_gray_back +layout view_heart_like_vr +layout view_heart_unlike +layout view_heart_unlike_vr +layout view_history_empty +layout view_limiting_speed_vr +layout view_marker_car +layout view_marker_car_info +layout view_marker_event_car +layout view_marker_event_road +layout view_over_view +layout view_perspective_switch +layout view_system_version +layout view_traffic_button +layout view_traffic_light_vr +layout view_trafficbar +layout view_turn_light_status +layout view_v2x_optimal_speed_marker +layout view_video_layout_normal +layout view_video_layout_see_crossroad +layout view_video_layout_see_live +layout view_vip_identification +layout view_zoom +layout vr_window_top_tips +layout window_animation +layout window_carforhelp_detail +layout window_fault_help +layout window_push_event_detail +layout window_road_video_layout +layout window_road_video_layout_vr +layout window_see_carlive_video +layout window_see_carlive_video_vr +layout window_see_crossroadlive_video +layout window_simple_obu_event_detail_vr +layout window_test_console +layout wm_logging_notice +mipmap arrow +mipmap bg_main +mipmap divider_mapbutton +mipmap dot +mipmap gray_dot +mipmap green_dot +mipmap ic_arrow_left_pressed +mipmap ic_ch +mipmap ic_launcher +mipmap ic_search_btn_down +mipmap ic_search_btn_up +mipmap ic_search_voice_down +mipmap ic_search_voice_up +mipmap ic_show_map_n +mipmap ic_show_map_p +mipmap icon1001 +mipmap icon1002 +mipmap icon1003 +mipmap icon1004 +mipmap icon1005 +mipmap icon1006 +mipmap icon1007 +mipmap icon1008 +mipmap icon1009 +mipmap icon1010 +mipmap icon1011 +mipmap icon1012 +mipmap icon1013 +mipmap icon1014 +mipmap icon1015 +mipmap icon1022 +mipmap icon1027 +mipmap icon1028 +mipmap icon1029 +mipmap icon1035 +mipmap icon1042 +mipmap icon1043 +mipmap icon1044 +mipmap icon1501 +mipmap icon1502 +mipmap icon1503 +mipmap icon_car +mipmap icon_collect +mipmap icon_collect_s +mipmap icon_day +mipmap icon_direction +mipmap icon_loading +mipmap icon_loc_day +mipmap icon_loc_night +mipmap icon_location +mipmap icon_location_day +mipmap icon_location_night +mipmap icon_night +mipmap icon_pause_night +mipmap icon_play_night +mipmap icon_sim_navi_car +mipmap icon_sim_navi_next +mipmap icon_sim_navi_pause +mipmap icon_sim_navi_pre +mipmap icon_sim_navi_start +mipmap icon_traffic_close_day +mipmap icon_traffic_close_night +mipmap icon_traffic_open_day +mipmap icon_traffic_open_night +mipmap icon_zoom_in_day +mipmap icon_zoom_in_night +mipmap icon_zoom_out_day +mipmap icon_zoom_out_night +mipmap img_error +mipmap img_error_dark +mipmap img_finish +mipmap img_finish_dark +mipmap img_warning +mipmap img_warning_dark +mipmap l0 +mipmap l1 +mipmap l2 +mipmap l3 +mipmap l4 +mipmap l5 +mipmap l6 +mipmap l7 +mipmap l8 +mipmap l9 +mipmap leak_canary_icon +mipmap map_custom_mogo_self_car_2d +mipmap map_custom_self_car +mipmap map_custom_self_car_day +mipmap map_custom_self_car_night +mipmap mapdir +mipmap marker_blue +mipmap marker_red +mipmap menu_left_btn_icon_in +mipmap menu_left_btn_icon_out +mipmap mk_car +mipmap module_callchatting_launcher_incoming_answer +mipmap module_callchatting_launcher_incoming_hangup +mipmap module_carchatting_hawk_eye_default_head_img +mipmap module_carchatting_launcher_calling_hangup +mipmap n0 +mipmap n1 +mipmap n2 +mipmap n3 +mipmap n4 +mipmap n5 +mipmap n6 +mipmap n7 +mipmap n8 +mipmap n9 +mipmap navi_gps_set +mipmap navi_gpssv +mipmap navi_s_1 +mipmap navi_s_10 +mipmap navi_s_11 +mipmap navi_s_12 +mipmap navi_s_13 +mipmap navi_s_14 +mipmap navi_s_15 +mipmap navi_s_2 +mipmap navi_s_22 +mipmap navi_s_27 +mipmap navi_s_28 +mipmap navi_s_29 +mipmap navi_s_3 +mipmap navi_s_35 +mipmap navi_s_4 +mipmap navi_s_42 +mipmap navi_s_43 +mipmap navi_s_44 +mipmap navi_s_5 +mipmap navi_s_501 +mipmap navi_s_502 +mipmap navi_s_503 +mipmap navi_s_6 +mipmap navi_s_7 +mipmap navi_s_8 +mipmap navi_s_9 +mipmap navi_tmcbar_cursor +mipmap panel_search_indicator_p +mipmap panel_search_indicator_s +mipmap poires +mipmap poires_a +mipmap poires_b +mipmap poires_c +mipmap poires_d +mipmap poires_e +mipmap poires_f +mipmap poires_g +mipmap poires_his +mipmap routebook_icon1001 +mipmap sector +mipmap stat_sys_download_anim0 +mipmap stat_sys_download_anim1 +mipmap stat_sys_download_anim2 +mipmap stat_sys_download_anim3 +mipmap stat_sys_download_anim4 +mipmap stat_sys_download_anim5 +mipmap sym_keyboard_delete +mipmap traffic_sign_1 +mipmap traffic_sign_10 +mipmap traffic_sign_11 +mipmap traffic_sign_12 +mipmap traffic_sign_13 +mipmap traffic_sign_2 +mipmap traffic_sign_20 +mipmap traffic_sign_22 +mipmap traffic_sign_23 +mipmap traffic_sign_24 +mipmap traffic_sign_25 +mipmap traffic_sign_26 +mipmap traffic_sign_27 +mipmap traffic_sign_28 +mipmap traffic_sign_3 +mipmap traffic_sign_31 +mipmap traffic_sign_32 +mipmap traffic_sign_33 +mipmap traffic_sign_34 +mipmap traffic_sign_35 +mipmap traffic_sign_36 +mipmap traffic_sign_37 +mipmap traffic_sign_38 +mipmap traffic_sign_39 +mipmap traffic_sign_4 +mipmap traffic_sign_40 +mipmap traffic_sign_41 +mipmap traffic_sign_42 +mipmap traffic_sign_43 +mipmap traffic_sign_44 +mipmap traffic_sign_45 +mipmap traffic_sign_5 +mipmap traffic_sign_6 +mipmap traffic_sign_7 +mipmap traffic_sign_8 +mipmap traffic_sign_9 +mipmap ui_menu_clear +mipmap ui_menu_exit +mipmap ui_navigate +mipmap water +mipmap yellow_dot +mipmap zoom_in_day +mipmap zoom_in_night +mipmap zoom_out_day +mipmap zoom_out_night +plurals leak_canary_distinct_leaks +plurals leak_canary_group_screen_title +plurals mtrl_badge_content_description +raw beep +raw call +raw camera_click +raw car +raw chuzuche +raw fangkuang +raw guangquan +raw illegal_park_data +raw jiantou +raw putonghua_f1 +raw putonghua_f2 +raw putonghua_f3 +raw putonghua_f4 +raw putonghua_f5 +raw putonghua_f6 +raw qfpz +raw scenario_fatigue_driving_data +raw scenario_push_animation_event_data +raw scenario_push_cross_crash +raw scenario_push_event_data +raw scenario_push_live_event_data +raw scenario_push_vr_hehind_vip_data +raw scenario_push_vr_reverse_car_data +raw scenario_road_event_data +raw scenario_seek_help +raw scenario_warning_event_data_left +raw scenario_warning_event_data_pedestrians +raw scenario_warning_event_data_right +raw shexiangtou +raw shu +raw special_vehicle +raw stopline +raw taxi +raw test_coordinates +raw test_coordinates2 +raw test_data_v2x_zuiyouluxian +raw theme +raw traffic_daba +raw traffic_kache +raw traffic_motuoche +raw traffic_people +raw traffic_tachexiaoche +raw traffic_unkonwn +raw traffic_zixingche +raw v2x_daolujiebing +raw v2x_daolujishui +raw v2x_daolushigong +raw v2x_guzhangqiuzhu +raw v2x_jiaotongjiancha +raw v2x_nongwu +raw v2x_shigong_warning +raw v2x_shigu +raw v2x_shishilukuang +raw v2x_yongdu +raw xiaobache +raw ziche +string Angle1 +string Angle2 +string Angle3 +string Disclaimer +string DisclaimerInfo +string High +string Initial +string N_A +string Speed +string TrackType_audio +string TrackType_metadata +string TrackType_subtitle +string TrackType_timedtext +string TrackType_unknown +string TrackType_video +string VideoView_ar_16_9_fit_parent +string VideoView_ar_4_3_fit_parent +string VideoView_ar_aspect_fill_parent +string VideoView_ar_aspect_fit_parent +string VideoView_ar_aspect_wrap_content +string VideoView_ar_match_parent +string VideoView_error_button +string VideoView_error_text_invalid_progressive_playback +string VideoView_error_text_unknown +string VideoView_info_text_video_not_supported +string VideoView_player_AndroidMediaPlayer +string VideoView_player_IjkExoMediaPlayer +string VideoView_player_IjkMediaPlayer +string VideoView_player_none +string VideoView_render_none +string VideoView_render_surface_view +string VideoView_render_texture_view +string a_cache +string abc_action_bar_home_description +string abc_action_bar_up_description +string abc_action_menu_overflow_description +string abc_action_mode_done +string abc_activity_chooser_view_see_all +string abc_activitychooserview_choose_application +string abc_capital_off +string abc_capital_on +string abc_font_family_body_1_material +string abc_font_family_body_2_material +string abc_font_family_button_material +string abc_font_family_caption_material +string abc_font_family_display_1_material +string abc_font_family_display_2_material +string abc_font_family_display_3_material +string abc_font_family_display_4_material +string abc_font_family_headline_material +string abc_font_family_menu_material +string abc_font_family_subhead_material +string abc_font_family_title_material +string abc_menu_alt_shortcut_label +string abc_menu_ctrl_shortcut_label +string abc_menu_delete_shortcut_label +string abc_menu_enter_shortcut_label +string abc_menu_function_shortcut_label +string abc_menu_meta_shortcut_label +string abc_menu_shift_shortcut_label +string abc_menu_space_shortcut_label +string abc_menu_sym_shortcut_label +string abc_prepend_shortcut_label +string abc_search_hint +string abc_searchview_description_clear +string abc_searchview_description_query +string abc_searchview_description_search +string abc_searchview_description_submit +string abc_searchview_description_voice +string abc_shareactionprovider_share_with +string abc_shareactionprovider_share_with_application +string abc_toolbar_collapse_description +string add_ch_toast +string age_prompt +string androidx_startup +string app +string app_name +string appbar_scrolling_view_behavior +string application_upgrade +string application_upgrade_confirm +string application_upgrade_tips +string aspeed +string bindingcar_title +string bit_rate +string bottom_sheet_behavior +string bottomsheet_action_expand_halfway +string brvah_load_complete +string brvah_load_end +string brvah_load_failed +string brvah_loading +string camera +string cancel +string cancelBtn +string ch_name_illegal +string ch_name_null +string ch_name_presence +string change_ch_name +string character_counter_content_description +string character_counter_overflowed_content_description +string character_counter_pattern +string check_system_operation +string check_system_reboot +string check_system_reboot_tips +string check_system_reboot_title +string check_system_shut_down +string check_system_version +string check_vehicle_detection +string check_vehicle_speed_setting +string chip_text +string clear_text_end_icon_content_description +string close +string comment_err +string comment_suc +string confirm +string crash_dialog_comment_prompt +string crash_dialog_text +string crash_dialog_title +string current_system_version +string debug_panel +string debug_panel_fb +string dialog_title +string downloadMap +string drivetime +string email_sensitive_words_error +string error_icon_content_description +string exit +string exo_controls_fastforward_description +string exo_controls_next_description +string exo_controls_pause_description +string exo_controls_play_description +string exo_controls_previous_description +string exo_controls_rewind_description +string exo_controls_stop_description +string exposed_dropdown_menu_content_description +string fab_transformation_scrim_behavior +string fab_transformation_sheet_behavior +string file_not_support +string fps +string freqOfspeedDown +string freqOfspeedUp +string freqOfturn +string greater_than_ +string heading +string hide_bottom_view_on_scroll_behavior +string highestspeed +string highspeedtime +string hottime +string hours_ago +string icon_content_description +string idlingtime +string ijkplayer_dummy +string infowindow_snippet +string infowindow_title +string input_null +string input_too_long +string input_user_name +string item_view_role_description +string jump_ad +string just_now +string keyLable_0 +string keyLable_1 +string keyLable_12 +string keyLable_13 +string keyLable_14 +string keyLable_2 +string keyLable_3 +string keyLable_4 +string keyLable_5 +string keyLable_6 +string keyLable_7 +string keyLable_8 +string keyLable_9 +string keyLable_a +string keyLable_b +string keyLable_c +string keyLable_d +string keyLable_del +string keyLable_e +string keyLable_f +string keyLable_g +string keyLable_h +string keyLable_heng +string keyLable_i +string keyLable_input_type_bihua +string keyLable_input_type_jianpin +string keyLable_input_type_quanpin +string keyLable_j +string keyLable_k +string keyLable_keboard_style_qwerty +string keyLable_keboard_style_t9 +string keyLable_l +string keyLable_ll +string keyLable_m +string keyLable_n +string keyLable_o +string keyLable_ok +string keyLable_p +string keyLable_q +string keyLable_r +string keyLable_s +string keyLable_search +string keyLable_t +string keyLable_u +string keyLable_v +string keyLable_w +string keyLable_x +string keyLable_xing +string keyLable_y +string keyLable_z +string l +string leak_canary_about_enable_heap_dump +string leak_canary_about_enable_heap_dump_textOff +string leak_canary_about_enable_heap_dump_textOn +string leak_canary_about_menu +string leak_canary_about_message +string leak_canary_about_title +string leak_canary_analysis_deleted_title +string leak_canary_analysis_failed +string leak_canary_analysis_success_notification +string leak_canary_class_has_leaked +string leak_canary_delete +string leak_canary_delete_all +string leak_canary_delete_all_leaks_title +string leak_canary_display_activity_label +string leak_canary_dump_heap +string leak_canary_explore_heap_dump +string leak_canary_explorer_search_classes +string leak_canary_failure_clipdata_label +string leak_canary_failure_copied +string leak_canary_generating_hq_bitmap_toast_failure_notice +string leak_canary_generating_hq_bitmap_toast_notice +string leak_canary_go_to_heap_analysis +string leak_canary_group_list_time_label +string leak_canary_heap_analysis_list_screen_title +string leak_canary_heap_analysis_success_screen_row_time_format +string leak_canary_heap_dump_disabled_by_app +string leak_canary_heap_dump_disabled_from_ui +string leak_canary_heap_dump_disabled_running_tests +string leak_canary_heap_dump_disabled_text +string leak_canary_heap_dump_enabled_text +string leak_canary_heap_dump_not_installed_text +string leak_canary_heap_dump_screen_title +string leak_canary_help_title +string leak_canary_import_from_title +string leak_canary_import_hprof_file +string leak_canary_leak_clipdata_label +string leak_canary_leak_copied +string leak_canary_leak_missing_browser_error +string leak_canary_leak_not_found +string leak_canary_loading_title +string leak_canary_notification_analysing +string leak_canary_notification_channel_low +string leak_canary_notification_channel_result +string leak_canary_notification_dumping +string leak_canary_notification_foreground_text +string leak_canary_notification_message +string leak_canary_notification_no_retained_object_content +string leak_canary_notification_no_retained_object_title +string leak_canary_notification_retained_debugger_attached +string leak_canary_notification_retained_dump_failed +string leak_canary_notification_retained_dump_wait +string leak_canary_notification_retained_title +string leak_canary_notification_retained_visible +string leak_canary_options_menu_generate_hq_bitmap +string leak_canary_options_menu_permission_toast +string leak_canary_options_menu_render_heap_dump +string leak_canary_permission_not_granted +string leak_canary_permission_notification_text +string leak_canary_permission_notification_title +string leak_canary_share_heap_dump_bitmap_screen_title +string leak_canary_share_with +string leak_canary_shortcut_label +string leak_canary_stackoverflow_share +string leak_canary_storage_permission_activity_label +string leak_canary_test_class_name +string leak_canary_toast_heap_dump +string leak_canary_tv_analysis_failure +string leak_canary_tv_analysis_success +string leak_canary_tv_toast_retained_objects +string load_cost +string location_err +string log_btn_back_top +string log_btn_clean +string log_btn_export +string log_btn_to_bottom +string log_info +string log_info_debug +string log_info_edt_hint +string log_info_error +string log_info_info +string log_info_verbose +string log_info_warn +string log_min +string log_text_loading +string lowspeedtime +string material_clock_display_divider +string material_clock_toggle_content_description +string material_hour_selection +string material_hour_suffix +string material_minute_selection +string material_minute_suffix +string material_motion_easing_accelerated +string material_motion_easing_decelerated +string material_motion_easing_emphasized +string material_motion_easing_linear +string material_motion_easing_standard +string material_slider_range_end +string material_slider_range_start +string material_timepicker_am +string material_timepicker_clock_mode_description +string material_timepicker_hour +string material_timepicker_minute +string material_timepicker_pm +string material_timepicker_select_time +string material_timepicker_text_input_mode_description +string media_information +string menu_more +string menu_settings +string mi__selected_audio_track +string mi__selected_subtitle_track +string mi__selected_video_track +string mi_bit_rate +string mi_channels +string mi_codec +string mi_frame_rate +string mi_language +string mi_length +string mi_media +string mi_pixel_format +string mi_player +string mi_profile_level +string mi_resolution +string mi_sample_rate +string mi_stream_fmt1 +string mi_type +string midspeedtime +string minutes_ago +string modify_binding_car +string module_car_chat_matching_wait +string module_commons_button_cancel +string module_commons_button_ok +string module_commons_exit_navi_content +string module_map_model_faster +string module_map_model_normal +string module_push_check +string module_push_str_clear +string module_push_str_delete +string module_push_str_not_data +string module_service_launcher_card_info +string module_service_launcher_card_tips +string module_services_dispatch_cars_affirm +string module_services_dispatch_cars_cancel +string module_services_dispatch_cars_remind_content +string module_services_dispatch_cars_remind_title +string module_services_dispatch_dialog_affirm +string module_services_dispatch_dialog_end_loc +string module_services_dispatch_dialog_flight_info +string module_services_dispatch_dialog_start_loc +string module_services_dispatch_dialog_task_info +string module_services_dispatch_dialog_task_time +string module_services_dispatch_dialog_title +string motice_push_check +string mtrl_badge_numberless_content_description +string mtrl_chip_close_icon_content_description +string mtrl_exceed_max_badge_number_content_description +string mtrl_exceed_max_badge_number_suffix +string mtrl_picker_a11y_next_month +string mtrl_picker_a11y_prev_month +string mtrl_picker_announce_current_selection +string mtrl_picker_cancel +string mtrl_picker_confirm +string mtrl_picker_date_header_selected +string mtrl_picker_date_header_title +string mtrl_picker_date_header_unselected +string mtrl_picker_day_of_week_column_header +string mtrl_picker_invalid_format +string mtrl_picker_invalid_format_example +string mtrl_picker_invalid_format_use +string mtrl_picker_invalid_range +string mtrl_picker_navigate_to_year_description +string mtrl_picker_out_of_range +string mtrl_picker_range_header_only_end_selected +string mtrl_picker_range_header_only_start_selected +string mtrl_picker_range_header_selected +string mtrl_picker_range_header_title +string mtrl_picker_range_header_unselected +string mtrl_picker_save +string mtrl_picker_text_input_date_hint +string mtrl_picker_text_input_date_range_end_hint +string mtrl_picker_text_input_date_range_start_hint +string mtrl_picker_text_input_day_abbr +string mtrl_picker_text_input_month_abbr +string mtrl_picker_text_input_year_abbr +string mtrl_picker_toggle_to_calendar_input_mode +string mtrl_picker_toggle_to_day_selection +string mtrl_picker_toggle_to_text_input_mode +string mtrl_picker_toggle_to_year_selection +string net_err +string net_timeout +string nickname_sensitive_words_error +string no +string no_ch +string no_device +string no_net +string no_sd +string no_url +string nullInitial +string panel_Traffic_jam_number +string panel_down_channel +string panel_down_dest +string panel_down_dest_select +string panel_down_mute +string panel_down_share +string panel_search_btn +string panel_search_voice +string panel_seperator +string panel_share_trf_accident +string panel_share_trf_event +string panel_share_trf_police +string panel_share_trf_road +string password_toggle_content_description +string path_password_eye +string path_password_eye_mask_strike_through +string path_password_eye_mask_visible +string path_password_strike_through +string permission_audio +string permission_audio_recording_reason +string permission_audio_recording_request +string permission_audio_streaming_reason +string permission_audio_streaming_request +string permission_camera +string permission_camera_finish +string permission_camera_reason +string permission_camera_request +string permission_ext_storage +string permission_ext_storage_finish +string permission_ext_storage_reason +string permission_ext_storage_request +string permission_hardware_id_request +string permission_location +string permission_location_finish +string permission_location_reason +string permission_location_request +string permission_network +string permission_network_finish +string permission_network_reason +string permission_network_request +string permission_title +string planet_prompt +string r +string re_input_user_name +string recent +string recommended_Parking +string recommended_route +string refresh +string reg_err +string sample +string search_menu_title +string seek_cost +string seek_load_cost +string select +string sendBtn +string serv_err +string settings +string sex_prompt +string show_info +string starttime +string status_bar_notification_info_overflow +string stoptime +string strNetworkTipsCancelBtn +string strNetworkTipsConfirmBtn +string strNetworkTipsMessage +string strNetworkTipsTitle +string strNotificationClickToContinue +string strNotificationClickToInstall +string strNotificationClickToRetry +string strNotificationClickToView +string strNotificationDownloadError +string strNotificationDownloadSucc +string strNotificationDownloading +string strNotificationHaveNewVersion +string strToastCheckUpgradeError +string strToastCheckingUpgrade +string strToastYourAreTheLatestVersion +string strUpgradeDialogCancelBtn +string strUpgradeDialogContinueBtn +string strUpgradeDialogFeatureLabel +string strUpgradeDialogFileSizeLabel +string strUpgradeDialogInstallBtn +string strUpgradeDialogRetryBtn +string strUpgradeDialogUpdateTimeLabel +string strUpgradeDialogUpgradeBtn +string strUpgradeDialogVersionLabel +string tcp_speed +string tips_not_wifi +string tips_not_wifi_cancel +string tips_not_wifi_confirm +string title_activity_map +string to_binding_car +string toggle_player +string toggle_ratio +string toggle_render +string totaltime +string tracks +string ui_cancel +string ui_exit +string ui_finish +string ui_ok +string updat_err +string updat_suc +string update_server +string user_name_error +string user_name_presence +string v2x_front_live_url_null +string v2x_help_speed_txt +string v2x_recommond_route_size +string v2x_report_pop_submit_txt +string v2x_report_pop_thank_txt +string v2x_specific_live_url_null +string v2x_surrounding_detail_top_brief +string v2x_surrounding_go_to_share +string v2x_surrounding_refresh +string v2x_surrounding_top_brief +string v2x_voice_see_crossroad_live +string v2x_voice_see_crossroad_live_error +string v2x_voice_see_front_car_live +string v2x_voice_see_front_car_live_error +string v_cache +string vdec +string vehicle_GONE +string vehicle_VISIBLE +string yes +style ActivityTranslucent +style AlertDialog_AppCompat +style AlertDialog_AppCompat_Light +style AndroidThemeColorAccentYellow +style Animation_AppCompat_Dialog +style Animation_AppCompat_DropDownUp +style Animation_AppCompat_Tooltip +style Animation_Design_BottomSheetDialog +style Animation_MaterialComponents_BottomSheetDialog +style AppBaseTheme +style AppTheme +style AppTheme_AppBarOverlay +style AppTheme_NoActionBar +style AppTheme_PopupOverlay +style BaseFloatDialogStyle +style Base_AlertDialog_AppCompat +style Base_AlertDialog_AppCompat_Light +style Base_Animation_AppCompat_Dialog +style Base_Animation_AppCompat_DropDownUp +style Base_Animation_AppCompat_Tooltip +style Base_CardView +style Base_DialogWindowTitleBackground_AppCompat +style Base_DialogWindowTitle_AppCompat +style Base_MaterialAlertDialog_MaterialComponents_Title_Icon +style Base_MaterialAlertDialog_MaterialComponents_Title_Panel +style Base_MaterialAlertDialog_MaterialComponents_Title_Text +style Base_TextAppearance_AppCompat +style Base_TextAppearance_AppCompat_Body1 +style Base_TextAppearance_AppCompat_Body2 +style Base_TextAppearance_AppCompat_Button +style Base_TextAppearance_AppCompat_Caption +style Base_TextAppearance_AppCompat_Display1 +style Base_TextAppearance_AppCompat_Display2 +style Base_TextAppearance_AppCompat_Display3 +style Base_TextAppearance_AppCompat_Display4 +style Base_TextAppearance_AppCompat_Headline +style Base_TextAppearance_AppCompat_Inverse +style Base_TextAppearance_AppCompat_Large +style Base_TextAppearance_AppCompat_Large_Inverse +style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +style Base_TextAppearance_AppCompat_Medium +style Base_TextAppearance_AppCompat_Medium_Inverse +style Base_TextAppearance_AppCompat_Menu +style Base_TextAppearance_AppCompat_SearchResult +style Base_TextAppearance_AppCompat_SearchResult_Subtitle +style Base_TextAppearance_AppCompat_SearchResult_Title +style Base_TextAppearance_AppCompat_Small +style Base_TextAppearance_AppCompat_Small_Inverse +style Base_TextAppearance_AppCompat_Subhead +style Base_TextAppearance_AppCompat_Subhead_Inverse +style Base_TextAppearance_AppCompat_Title +style Base_TextAppearance_AppCompat_Title_Inverse +style Base_TextAppearance_AppCompat_Tooltip +style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu +style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle +style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +style Base_TextAppearance_AppCompat_Widget_ActionBar_Title +style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle +style Base_TextAppearance_AppCompat_Widget_ActionMode_Title +style Base_TextAppearance_AppCompat_Widget_Button +style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored +style Base_TextAppearance_AppCompat_Widget_Button_Colored +style Base_TextAppearance_AppCompat_Widget_Button_Inverse +style Base_TextAppearance_AppCompat_Widget_DropDownItem +style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header +style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large +style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small +style Base_TextAppearance_AppCompat_Widget_Switch +style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem +style Base_TextAppearance_MaterialComponents_Badge +style Base_TextAppearance_MaterialComponents_Button +style Base_TextAppearance_MaterialComponents_Headline6 +style Base_TextAppearance_MaterialComponents_Subtitle2 +style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item +style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle +style Base_TextAppearance_Widget_AppCompat_Toolbar_Title +style Base_ThemeOverlay_AppCompat +style Base_ThemeOverlay_AppCompat_ActionBar +style Base_ThemeOverlay_AppCompat_Dark +style Base_ThemeOverlay_AppCompat_Dark_ActionBar +style Base_ThemeOverlay_AppCompat_Dialog +style Base_ThemeOverlay_AppCompat_Dialog_Alert +style Base_ThemeOverlay_AppCompat_Light +style Base_ThemeOverlay_MaterialComponents_Dialog +style Base_ThemeOverlay_MaterialComponents_Dialog_Alert +style Base_ThemeOverlay_MaterialComponents_Dialog_Alert_Framework +style Base_ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework +style Base_ThemeOverlay_MaterialComponents_MaterialAlertDialog +style Base_Theme_AppCompat +style Base_Theme_AppCompat_CompactMenu +style Base_Theme_AppCompat_Dialog +style Base_Theme_AppCompat_DialogWhenLarge +style Base_Theme_AppCompat_Dialog_Alert +style Base_Theme_AppCompat_Dialog_FixedSize +style Base_Theme_AppCompat_Dialog_MinWidth +style Base_Theme_AppCompat_Light +style Base_Theme_AppCompat_Light_DarkActionBar +style Base_Theme_AppCompat_Light_Dialog +style Base_Theme_AppCompat_Light_DialogWhenLarge +style Base_Theme_AppCompat_Light_Dialog_Alert +style Base_Theme_AppCompat_Light_Dialog_FixedSize +style Base_Theme_AppCompat_Light_Dialog_MinWidth +style Base_Theme_MaterialComponents +style Base_Theme_MaterialComponents_Bridge +style Base_Theme_MaterialComponents_CompactMenu +style Base_Theme_MaterialComponents_Dialog +style Base_Theme_MaterialComponents_DialogWhenLarge +style Base_Theme_MaterialComponents_Dialog_Alert +style Base_Theme_MaterialComponents_Dialog_Bridge +style Base_Theme_MaterialComponents_Dialog_FixedSize +style Base_Theme_MaterialComponents_Dialog_MinWidth +style Base_Theme_MaterialComponents_Light +style Base_Theme_MaterialComponents_Light_Bridge +style Base_Theme_MaterialComponents_Light_DarkActionBar +style Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge +style Base_Theme_MaterialComponents_Light_Dialog +style Base_Theme_MaterialComponents_Light_DialogWhenLarge +style Base_Theme_MaterialComponents_Light_Dialog_Alert +style Base_Theme_MaterialComponents_Light_Dialog_Bridge +style Base_Theme_MaterialComponents_Light_Dialog_FixedSize +style Base_Theme_MaterialComponents_Light_Dialog_MinWidth +style Base_V11_ThemeOverlay_AppCompat_Dialog +style Base_V11_Theme_AppCompat_Dialog +style Base_V11_Theme_AppCompat_Light_Dialog +style Base_V12_Widget_AppCompat_AutoCompleteTextView +style Base_V12_Widget_AppCompat_EditText +style Base_V14_ThemeOverlay_MaterialComponents_BottomSheetDialog +style Base_V14_ThemeOverlay_MaterialComponents_Dialog +style Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert +style Base_V14_ThemeOverlay_MaterialComponents_MaterialAlertDialog +style Base_V14_Theme_MaterialComponents +style Base_V14_Theme_MaterialComponents_Bridge +style Base_V14_Theme_MaterialComponents_Dialog +style Base_V14_Theme_MaterialComponents_Dialog_Bridge +style Base_V14_Theme_MaterialComponents_Light +style Base_V14_Theme_MaterialComponents_Light_Bridge +style Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge +style Base_V14_Theme_MaterialComponents_Light_Dialog +style Base_V14_Theme_MaterialComponents_Light_Dialog_Bridge +style Base_V21_ThemeOverlay_AppCompat_Dialog +style Base_V21_ThemeOverlay_MaterialComponents_BottomSheetDialog +style Base_V21_Theme_AppCompat +style Base_V21_Theme_AppCompat_Dialog +style Base_V21_Theme_AppCompat_Light +style Base_V21_Theme_AppCompat_Light_Dialog +style Base_V21_Theme_MaterialComponents +style Base_V21_Theme_MaterialComponents_Dialog +style Base_V21_Theme_MaterialComponents_Light +style Base_V21_Theme_MaterialComponents_Light_Dialog +style Base_V22_Theme_AppCompat +style Base_V22_Theme_AppCompat_Light +style Base_V23_Theme_AppCompat +style Base_V23_Theme_AppCompat_Light +style Base_V26_Theme_AppCompat +style Base_V26_Theme_AppCompat_Light +style Base_V26_Widget_AppCompat_Toolbar +style Base_V28_Theme_AppCompat +style Base_V28_Theme_AppCompat_Light +style Base_V7_ThemeOverlay_AppCompat_Dialog +style Base_V7_Theme_AppCompat +style Base_V7_Theme_AppCompat_Dialog +style Base_V7_Theme_AppCompat_Light +style Base_V7_Theme_AppCompat_Light_Dialog +style Base_V7_Widget_AppCompat_AutoCompleteTextView +style Base_V7_Widget_AppCompat_EditText +style Base_V7_Widget_AppCompat_Toolbar +style Base_Widget_AppCompat_ActionBar +style Base_Widget_AppCompat_ActionBar_Solid +style Base_Widget_AppCompat_ActionBar_TabBar +style Base_Widget_AppCompat_ActionBar_TabText +style Base_Widget_AppCompat_ActionBar_TabView +style Base_Widget_AppCompat_ActionButton +style Base_Widget_AppCompat_ActionButton_CloseMode +style Base_Widget_AppCompat_ActionButton_Overflow +style Base_Widget_AppCompat_ActionMode +style Base_Widget_AppCompat_ActivityChooserView +style Base_Widget_AppCompat_AutoCompleteTextView +style Base_Widget_AppCompat_Button +style Base_Widget_AppCompat_ButtonBar +style Base_Widget_AppCompat_ButtonBar_AlertDialog +style Base_Widget_AppCompat_Button_Borderless +style Base_Widget_AppCompat_Button_Borderless_Colored +style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog +style Base_Widget_AppCompat_Button_Colored +style Base_Widget_AppCompat_Button_Small +style Base_Widget_AppCompat_CompoundButton_CheckBox +style Base_Widget_AppCompat_CompoundButton_RadioButton +style Base_Widget_AppCompat_CompoundButton_Switch +style Base_Widget_AppCompat_DrawerArrowToggle +style Base_Widget_AppCompat_DrawerArrowToggle_Common +style Base_Widget_AppCompat_DropDownItem_Spinner +style Base_Widget_AppCompat_EditText +style Base_Widget_AppCompat_ImageButton +style Base_Widget_AppCompat_Light_ActionBar +style Base_Widget_AppCompat_Light_ActionBar_Solid +style Base_Widget_AppCompat_Light_ActionBar_TabBar +style Base_Widget_AppCompat_Light_ActionBar_TabText +style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse +style Base_Widget_AppCompat_Light_ActionBar_TabView +style Base_Widget_AppCompat_Light_PopupMenu +style Base_Widget_AppCompat_Light_PopupMenu_Overflow +style Base_Widget_AppCompat_ListMenuView +style Base_Widget_AppCompat_ListPopupWindow +style Base_Widget_AppCompat_ListView +style Base_Widget_AppCompat_ListView_DropDown +style Base_Widget_AppCompat_ListView_Menu +style Base_Widget_AppCompat_PopupMenu +style Base_Widget_AppCompat_PopupMenu_Overflow +style Base_Widget_AppCompat_PopupWindow +style Base_Widget_AppCompat_ProgressBar +style Base_Widget_AppCompat_ProgressBar_Horizontal +style Base_Widget_AppCompat_RatingBar +style Base_Widget_AppCompat_RatingBar_Indicator +style Base_Widget_AppCompat_RatingBar_Small +style Base_Widget_AppCompat_SearchView +style Base_Widget_AppCompat_SearchView_ActionBar +style Base_Widget_AppCompat_SeekBar +style Base_Widget_AppCompat_SeekBar_Discrete +style Base_Widget_AppCompat_Spinner +style Base_Widget_AppCompat_Spinner_Underlined +style Base_Widget_AppCompat_TextView +style Base_Widget_AppCompat_TextView_SpinnerItem +style Base_Widget_AppCompat_Toolbar +style Base_Widget_AppCompat_Toolbar_Button_Navigation +style Base_Widget_Design_TabLayout +style Base_Widget_MaterialComponents_AutoCompleteTextView +style Base_Widget_MaterialComponents_CheckedTextView +style Base_Widget_MaterialComponents_Chip +style Base_Widget_MaterialComponents_MaterialCalendar_NavigationButton +style Base_Widget_MaterialComponents_PopupMenu +style Base_Widget_MaterialComponents_PopupMenu_ContextMenu +style Base_Widget_MaterialComponents_PopupMenu_ListPopupWindow +style Base_Widget_MaterialComponents_PopupMenu_Overflow +style Base_Widget_MaterialComponents_Slider +style Base_Widget_MaterialComponents_Snackbar +style Base_Widget_MaterialComponents_TextInputEditText +style Base_Widget_MaterialComponents_TextInputLayout +style Base_Widget_MaterialComponents_TextView +style Bottom +style CardView +style CardView_Dark +style CardView_Light +style CircularProgress +style DebugSettingText +style DialogActivityTheme +style DialogTransparentStyle +style Dialog_Fullscreen +style EmptyTheme +style ExoMediaButton +style ExoMediaButton_FastForward +style ExoMediaButton_Next +style ExoMediaButton_Pause +style ExoMediaButton_Play +style ExoMediaButton_Previous +style ExoMediaButton_Rewind +style Input +style Main +style MainAnimation +style MaterialAlertDialog_MaterialComponents +style MaterialAlertDialog_MaterialComponents_Body_Text +style MaterialAlertDialog_MaterialComponents_Picker_Date_Calendar +style MaterialAlertDialog_MaterialComponents_Picker_Date_Spinner +style MaterialAlertDialog_MaterialComponents_Title_Icon +style MaterialAlertDialog_MaterialComponents_Title_Icon_CenterStacked +style MaterialAlertDialog_MaterialComponents_Title_Panel +style MaterialAlertDialog_MaterialComponents_Title_Panel_CenterStacked +style MaterialAlertDialog_MaterialComponents_Title_Text +style MaterialAlertDialog_MaterialComponents_Title_Text_CenterStacked +style ModulePushMessageTheme +style Platform_AppCompat +style Platform_AppCompat_Light +style Platform_MaterialComponents +style Platform_MaterialComponents_Dialog +style Platform_MaterialComponents_Light +style Platform_MaterialComponents_Light_Dialog +style Platform_ThemeOverlay_AppCompat +style Platform_ThemeOverlay_AppCompat_Dark +style Platform_ThemeOverlay_AppCompat_Light +style Platform_V11_AppCompat +style Platform_V11_AppCompat_Light +style Platform_V14_AppCompat +style Platform_V14_AppCompat_Light +style Platform_V21_AppCompat +style Platform_V21_AppCompat_Light +style Platform_V25_AppCompat +style Platform_V25_AppCompat_Light +style Platform_Widget_AppCompat_Spinner +style RadioBtnStyle +style RadioButton +style RadioButton_Left +style RadioButton_Middle +style RadioButton_Right +style RtlOverlay_DialogWindowTitle_AppCompat +style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem +style RtlOverlay_Widget_AppCompat_DialogTitle_Icon +style RtlOverlay_Widget_AppCompat_PopupMenuItem +style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup +style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut +style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow +style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text +style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title +style RtlOverlay_Widget_AppCompat_SearchView_MagIcon +style RtlOverlay_Widget_AppCompat_Search_DropDown +style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 +style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 +style RtlOverlay_Widget_AppCompat_Search_DropDown_Query +style RtlOverlay_Widget_AppCompat_Search_DropDown_Text +style RtlUnderlay_Widget_AppCompat_ActionButton +style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow +style ShapeAppearanceOverlay +style ShapeAppearanceOverlay_BottomLeftDifferentCornerSize +style ShapeAppearanceOverlay_BottomRightCut +style ShapeAppearanceOverlay_Cut +style ShapeAppearanceOverlay_DifferentCornerSize +style ShapeAppearanceOverlay_MaterialComponents_BottomSheet +style ShapeAppearanceOverlay_MaterialComponents_Chip +style ShapeAppearanceOverlay_MaterialComponents_ExtendedFloatingActionButton +style ShapeAppearanceOverlay_MaterialComponents_FloatingActionButton +style ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day +style ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Window_Fullscreen +style ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Year +style ShapeAppearanceOverlay_MaterialComponents_TextInputLayout_FilledBox +style ShapeAppearanceOverlay_TopLeftCut +style ShapeAppearanceOverlay_TopRightDifferentCornerSize +style ShapeAppearance_MaterialComponents +style ShapeAppearance_MaterialComponents_LargeComponent +style ShapeAppearance_MaterialComponents_MediumComponent +style ShapeAppearance_MaterialComponents_SmallComponent +style ShapeAppearance_MaterialComponents_Test +style ShapeAppearance_MaterialComponents_Tooltip +style TestStyleWithLineHeight +style TestStyleWithLineHeightAppearance +style TestStyleWithThemeLineHeightAttribute +style TestStyleWithoutLineHeight +style TestThemeWithLineHeight +style TestThemeWithLineHeightDisabled +style Test_ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day +style Test_Theme_MaterialComponents_MaterialCalendar +style Test_Widget_MaterialComponents_MaterialCalendar +style Test_Widget_MaterialComponents_MaterialCalendar_Day +style Test_Widget_MaterialComponents_MaterialCalendar_Day_Selected +style Text +style TextAppearance_AppCompat +style TextAppearance_AppCompat_Body1 +style TextAppearance_AppCompat_Body2 +style TextAppearance_AppCompat_Button +style TextAppearance_AppCompat_Caption +style TextAppearance_AppCompat_Display1 +style TextAppearance_AppCompat_Display2 +style TextAppearance_AppCompat_Display3 +style TextAppearance_AppCompat_Display4 +style TextAppearance_AppCompat_Headline +style TextAppearance_AppCompat_Inverse +style TextAppearance_AppCompat_Large +style TextAppearance_AppCompat_Large_Inverse +style TextAppearance_AppCompat_Light_SearchResult_Subtitle +style TextAppearance_AppCompat_Light_SearchResult_Title +style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +style TextAppearance_AppCompat_Medium +style TextAppearance_AppCompat_Medium_Inverse +style TextAppearance_AppCompat_Menu +style TextAppearance_AppCompat_SearchResult_Subtitle +style TextAppearance_AppCompat_SearchResult_Title +style TextAppearance_AppCompat_Small +style TextAppearance_AppCompat_Small_Inverse +style TextAppearance_AppCompat_Subhead +style TextAppearance_AppCompat_Subhead_Inverse +style TextAppearance_AppCompat_Title +style TextAppearance_AppCompat_Title_Inverse +style TextAppearance_AppCompat_Tooltip +style TextAppearance_AppCompat_Widget_ActionBar_Menu +style TextAppearance_AppCompat_Widget_ActionBar_Subtitle +style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +style TextAppearance_AppCompat_Widget_ActionBar_Title +style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +style TextAppearance_AppCompat_Widget_ActionMode_Subtitle +style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse +style TextAppearance_AppCompat_Widget_ActionMode_Title +style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse +style TextAppearance_AppCompat_Widget_Button +style TextAppearance_AppCompat_Widget_Button_Borderless_Colored +style TextAppearance_AppCompat_Widget_Button_Colored +style TextAppearance_AppCompat_Widget_Button_Inverse +style TextAppearance_AppCompat_Widget_DropDownItem +style TextAppearance_AppCompat_Widget_PopupMenu_Header +style TextAppearance_AppCompat_Widget_PopupMenu_Large +style TextAppearance_AppCompat_Widget_PopupMenu_Small +style TextAppearance_AppCompat_Widget_Switch +style TextAppearance_AppCompat_Widget_TextView_SpinnerItem +style TextAppearance_Compat_Notification +style TextAppearance_Compat_Notification_Info +style TextAppearance_Compat_Notification_Info_Media +style TextAppearance_Compat_Notification_Line2 +style TextAppearance_Compat_Notification_Line2_Media +style TextAppearance_Compat_Notification_Media +style TextAppearance_Compat_Notification_Time +style TextAppearance_Compat_Notification_Time_Media +style TextAppearance_Compat_Notification_Title +style TextAppearance_Compat_Notification_Title_Media +style TextAppearance_Design_CollapsingToolbar_Expanded +style TextAppearance_Design_Counter +style TextAppearance_Design_Counter_Overflow +style TextAppearance_Design_Error +style TextAppearance_Design_HelperText +style TextAppearance_Design_Hint +style TextAppearance_Design_Placeholder +style TextAppearance_Design_Prefix +style TextAppearance_Design_Snackbar_Message +style TextAppearance_Design_Suffix +style TextAppearance_Design_Tab +style TextAppearance_MaterialComponents_Badge +style TextAppearance_MaterialComponents_Body1 +style TextAppearance_MaterialComponents_Body2 +style TextAppearance_MaterialComponents_Button +style TextAppearance_MaterialComponents_Caption +style TextAppearance_MaterialComponents_Chip +style TextAppearance_MaterialComponents_Headline1 +style TextAppearance_MaterialComponents_Headline2 +style TextAppearance_MaterialComponents_Headline3 +style TextAppearance_MaterialComponents_Headline4 +style TextAppearance_MaterialComponents_Headline5 +style TextAppearance_MaterialComponents_Headline6 +style TextAppearance_MaterialComponents_Overline +style TextAppearance_MaterialComponents_Subtitle1 +style TextAppearance_MaterialComponents_Subtitle2 +style TextAppearance_MaterialComponents_TimePicker_Title +style TextAppearance_MaterialComponents_Tooltip +style TextAppearance_Widget_AppCompat_ExpandedMenu_Item +style TextAppearance_Widget_AppCompat_Toolbar_Subtitle +style TextAppearance_Widget_AppCompat_Toolbar_Title +style ThemeOverlayColorAccentRed +style ThemeOverlay_AppCompat +style ThemeOverlay_AppCompat_ActionBar +style ThemeOverlay_AppCompat_Dark +style ThemeOverlay_AppCompat_Dark_ActionBar +style ThemeOverlay_AppCompat_DayNight +style ThemeOverlay_AppCompat_DayNight_ActionBar +style ThemeOverlay_AppCompat_Dialog +style ThemeOverlay_AppCompat_Dialog_Alert +style ThemeOverlay_AppCompat_Light +style ThemeOverlay_Design_TextInputEditText +style ThemeOverlay_MaterialComponents +style ThemeOverlay_MaterialComponents_ActionBar +style ThemeOverlay_MaterialComponents_ActionBar_Primary +style ThemeOverlay_MaterialComponents_ActionBar_Surface +style ThemeOverlay_MaterialComponents_AutoCompleteTextView +style ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox +style ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox_Dense +style ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox +style ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense +style ThemeOverlay_MaterialComponents_BottomAppBar_Primary +style ThemeOverlay_MaterialComponents_BottomAppBar_Surface +style ThemeOverlay_MaterialComponents_BottomSheetDialog +style ThemeOverlay_MaterialComponents_Dark +style ThemeOverlay_MaterialComponents_Dark_ActionBar +style ThemeOverlay_MaterialComponents_DayNight_BottomSheetDialog +style ThemeOverlay_MaterialComponents_Dialog +style ThemeOverlay_MaterialComponents_Dialog_Alert +style ThemeOverlay_MaterialComponents_Dialog_Alert_Framework +style ThemeOverlay_MaterialComponents_Light +style ThemeOverlay_MaterialComponents_Light_BottomSheetDialog +style ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework +style ThemeOverlay_MaterialComponents_MaterialAlertDialog +style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Centered +style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date +style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Calendar +style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text +style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text_Day +style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Spinner +style ThemeOverlay_MaterialComponents_MaterialCalendar +style ThemeOverlay_MaterialComponents_MaterialCalendar_Fullscreen +style ThemeOverlay_MaterialComponents_TextInputEditText +style ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox +style ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense +style ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox +style ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense +style ThemeOverlay_MaterialComponents_TimePicker +style ThemeOverlay_MaterialComponents_TimePicker_Display +style ThemeOverlay_MaterialComponents_Toolbar_Primary +style ThemeOverlay_MaterialComponents_Toolbar_Surface +style Theme_AppCompat +style Theme_AppCompat_CompactMenu +style Theme_AppCompat_DayNight +style Theme_AppCompat_DayNight_DarkActionBar +style Theme_AppCompat_DayNight_Dialog +style Theme_AppCompat_DayNight_DialogWhenLarge +style Theme_AppCompat_DayNight_Dialog_Alert +style Theme_AppCompat_DayNight_Dialog_MinWidth +style Theme_AppCompat_DayNight_NoActionBar +style Theme_AppCompat_Dialog +style Theme_AppCompat_DialogWhenLarge +style Theme_AppCompat_Dialog_Alert +style Theme_AppCompat_Dialog_MinWidth +style Theme_AppCompat_Empty +style Theme_AppCompat_Light +style Theme_AppCompat_Light_DarkActionBar +style Theme_AppCompat_Light_Dialog +style Theme_AppCompat_Light_DialogWhenLarge +style Theme_AppCompat_Light_Dialog_Alert +style Theme_AppCompat_Light_Dialog_MinWidth +style Theme_AppCompat_Light_NoActionBar +style Theme_AppCompat_NoActionBar +style Theme_Design +style Theme_Design_BottomSheetDialog +style Theme_Design_Light +style Theme_Design_Light_BottomSheetDialog +style Theme_Design_Light_NoActionBar +style Theme_Design_NoActionBar +style Theme_MaterialComponents +style Theme_MaterialComponents_BottomSheetDialog +style Theme_MaterialComponents_Bridge +style Theme_MaterialComponents_CompactMenu +style Theme_MaterialComponents_DayNight +style Theme_MaterialComponents_DayNight_BottomSheetDialog +style Theme_MaterialComponents_DayNight_Bridge +style Theme_MaterialComponents_DayNight_DarkActionBar +style Theme_MaterialComponents_DayNight_DarkActionBar_Bridge +style Theme_MaterialComponents_DayNight_Dialog +style Theme_MaterialComponents_DayNight_DialogWhenLarge +style Theme_MaterialComponents_DayNight_Dialog_Alert +style Theme_MaterialComponents_DayNight_Dialog_Alert_Bridge +style Theme_MaterialComponents_DayNight_Dialog_Bridge +style Theme_MaterialComponents_DayNight_Dialog_FixedSize +style Theme_MaterialComponents_DayNight_Dialog_FixedSize_Bridge +style Theme_MaterialComponents_DayNight_Dialog_MinWidth +style Theme_MaterialComponents_DayNight_Dialog_MinWidth_Bridge +style Theme_MaterialComponents_DayNight_NoActionBar +style Theme_MaterialComponents_DayNight_NoActionBar_Bridge +style Theme_MaterialComponents_Dialog +style Theme_MaterialComponents_DialogWhenLarge +style Theme_MaterialComponents_Dialog_Alert +style Theme_MaterialComponents_Dialog_Alert_Bridge +style Theme_MaterialComponents_Dialog_Bridge +style Theme_MaterialComponents_Dialog_FixedSize +style Theme_MaterialComponents_Dialog_FixedSize_Bridge +style Theme_MaterialComponents_Dialog_MinWidth +style Theme_MaterialComponents_Dialog_MinWidth_Bridge +style Theme_MaterialComponents_Light +style Theme_MaterialComponents_Light_BarSize +style Theme_MaterialComponents_Light_BottomSheetDialog +style Theme_MaterialComponents_Light_Bridge +style Theme_MaterialComponents_Light_DarkActionBar +style Theme_MaterialComponents_Light_DarkActionBar_Bridge +style Theme_MaterialComponents_Light_Dialog +style Theme_MaterialComponents_Light_DialogWhenLarge +style Theme_MaterialComponents_Light_Dialog_Alert +style Theme_MaterialComponents_Light_Dialog_Alert_Bridge +style Theme_MaterialComponents_Light_Dialog_Bridge +style Theme_MaterialComponents_Light_Dialog_FixedSize +style Theme_MaterialComponents_Light_Dialog_FixedSize_Bridge +style Theme_MaterialComponents_Light_Dialog_MinWidth +style Theme_MaterialComponents_Light_Dialog_MinWidth_Bridge +style Theme_MaterialComponents_Light_LargeTouch +style Theme_MaterialComponents_Light_NoActionBar +style Theme_MaterialComponents_Light_NoActionBar_Bridge +style Theme_MaterialComponents_NoActionBar +style Theme_MaterialComponents_NoActionBar_Bridge +style TitleBig +style White +style Widget_AppCompat_ActionBar +style Widget_AppCompat_ActionBar_Solid +style Widget_AppCompat_ActionBar_TabBar +style Widget_AppCompat_ActionBar_TabText +style Widget_AppCompat_ActionBar_TabView +style Widget_AppCompat_ActionButton +style Widget_AppCompat_ActionButton_CloseMode +style Widget_AppCompat_ActionButton_Overflow +style Widget_AppCompat_ActionMode +style Widget_AppCompat_ActivityChooserView +style Widget_AppCompat_AutoCompleteTextView +style Widget_AppCompat_Button +style Widget_AppCompat_ButtonBar +style Widget_AppCompat_ButtonBar_AlertDialog +style Widget_AppCompat_Button_Borderless +style Widget_AppCompat_Button_Borderless_Colored +style Widget_AppCompat_Button_ButtonBar_AlertDialog +style Widget_AppCompat_Button_Colored +style Widget_AppCompat_Button_Small +style Widget_AppCompat_CompoundButton_CheckBox +style Widget_AppCompat_CompoundButton_RadioButton +style Widget_AppCompat_CompoundButton_Switch +style Widget_AppCompat_DrawerArrowToggle +style Widget_AppCompat_DropDownItem_Spinner +style Widget_AppCompat_EditText +style Widget_AppCompat_ImageButton +style Widget_AppCompat_Light_ActionBar +style Widget_AppCompat_Light_ActionBar_Solid +style Widget_AppCompat_Light_ActionBar_Solid_Inverse +style Widget_AppCompat_Light_ActionBar_TabBar +style Widget_AppCompat_Light_ActionBar_TabBar_Inverse +style Widget_AppCompat_Light_ActionBar_TabText +style Widget_AppCompat_Light_ActionBar_TabText_Inverse +style Widget_AppCompat_Light_ActionBar_TabView +style Widget_AppCompat_Light_ActionBar_TabView_Inverse +style Widget_AppCompat_Light_ActionButton +style Widget_AppCompat_Light_ActionButton_CloseMode +style Widget_AppCompat_Light_ActionButton_Overflow +style Widget_AppCompat_Light_ActionMode_Inverse +style Widget_AppCompat_Light_ActivityChooserView +style Widget_AppCompat_Light_AutoCompleteTextView +style Widget_AppCompat_Light_DropDownItem_Spinner +style Widget_AppCompat_Light_ListPopupWindow +style Widget_AppCompat_Light_ListView_DropDown +style Widget_AppCompat_Light_PopupMenu +style Widget_AppCompat_Light_PopupMenu_Overflow +style Widget_AppCompat_Light_SearchView +style Widget_AppCompat_Light_Spinner_DropDown_ActionBar +style Widget_AppCompat_ListMenuView +style Widget_AppCompat_ListPopupWindow +style Widget_AppCompat_ListView +style Widget_AppCompat_ListView_DropDown +style Widget_AppCompat_ListView_Menu +style Widget_AppCompat_PopupMenu +style Widget_AppCompat_PopupMenu_Overflow +style Widget_AppCompat_PopupWindow +style Widget_AppCompat_ProgressBar +style Widget_AppCompat_ProgressBar_Horizontal +style Widget_AppCompat_RatingBar +style Widget_AppCompat_RatingBar_Indicator +style Widget_AppCompat_RatingBar_Small +style Widget_AppCompat_SearchView +style Widget_AppCompat_SearchView_ActionBar +style Widget_AppCompat_SeekBar +style Widget_AppCompat_SeekBar_Discrete +style Widget_AppCompat_Spinner +style Widget_AppCompat_Spinner_DropDown +style Widget_AppCompat_Spinner_DropDown_ActionBar +style Widget_AppCompat_Spinner_Underlined +style Widget_AppCompat_TextView +style Widget_AppCompat_TextView_SpinnerItem +style Widget_AppCompat_Toolbar +style Widget_AppCompat_Toolbar_Button_Navigation +style Widget_Compat_NotificationActionContainer +style Widget_Compat_NotificationActionText +style Widget_Design_AppBarLayout +style Widget_Design_BottomNavigationView +style Widget_Design_BottomSheet_Modal +style Widget_Design_CollapsingToolbar +style Widget_Design_FloatingActionButton +style Widget_Design_NavigationView +style Widget_Design_ScrimInsetsFrameLayout +style Widget_Design_Snackbar +style Widget_Design_TabLayout +style Widget_Design_TextInputEditText +style Widget_Design_TextInputLayout +style Widget_MaterialComponents_ActionBar_Primary +style Widget_MaterialComponents_ActionBar_PrimarySurface +style Widget_MaterialComponents_ActionBar_Solid +style Widget_MaterialComponents_ActionBar_Surface +style Widget_MaterialComponents_AppBarLayout_Primary +style Widget_MaterialComponents_AppBarLayout_PrimarySurface +style Widget_MaterialComponents_AppBarLayout_Surface +style Widget_MaterialComponents_AutoCompleteTextView_FilledBox +style Widget_MaterialComponents_AutoCompleteTextView_FilledBox_Dense +style Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox +style Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense +style Widget_MaterialComponents_Badge +style Widget_MaterialComponents_BottomAppBar +style Widget_MaterialComponents_BottomAppBar_Colored +style Widget_MaterialComponents_BottomAppBar_PrimarySurface +style Widget_MaterialComponents_BottomNavigationView +style Widget_MaterialComponents_BottomNavigationView_Colored +style Widget_MaterialComponents_BottomNavigationView_PrimarySurface +style Widget_MaterialComponents_BottomSheet +style Widget_MaterialComponents_BottomSheet_Modal +style Widget_MaterialComponents_Button +style Widget_MaterialComponents_Button_Icon +style Widget_MaterialComponents_Button_OutlinedButton +style Widget_MaterialComponents_Button_OutlinedButton_Icon +style Widget_MaterialComponents_Button_TextButton +style Widget_MaterialComponents_Button_TextButton_Dialog +style Widget_MaterialComponents_Button_TextButton_Dialog_Flush +style Widget_MaterialComponents_Button_TextButton_Dialog_Icon +style Widget_MaterialComponents_Button_TextButton_Icon +style Widget_MaterialComponents_Button_TextButton_Snackbar +style Widget_MaterialComponents_Button_UnelevatedButton +style Widget_MaterialComponents_Button_UnelevatedButton_Icon +style Widget_MaterialComponents_CardView +style Widget_MaterialComponents_CheckedTextView +style Widget_MaterialComponents_ChipGroup +style Widget_MaterialComponents_Chip_Action +style Widget_MaterialComponents_Chip_Choice +style Widget_MaterialComponents_Chip_Entry +style Widget_MaterialComponents_Chip_Filter +style Widget_MaterialComponents_CircularProgressIndicator +style Widget_MaterialComponents_CircularProgressIndicator_ExtraSmall +style Widget_MaterialComponents_CircularProgressIndicator_Medium +style Widget_MaterialComponents_CircularProgressIndicator_Small +style Widget_MaterialComponents_CollapsingToolbar +style Widget_MaterialComponents_CompoundButton_CheckBox +style Widget_MaterialComponents_CompoundButton_RadioButton +style Widget_MaterialComponents_CompoundButton_Switch +style Widget_MaterialComponents_ExtendedFloatingActionButton +style Widget_MaterialComponents_ExtendedFloatingActionButton_Icon +style Widget_MaterialComponents_FloatingActionButton +style Widget_MaterialComponents_Light_ActionBar_Solid +style Widget_MaterialComponents_LinearProgressIndicator +style Widget_MaterialComponents_MaterialButtonToggleGroup +style Widget_MaterialComponents_MaterialCalendar +style Widget_MaterialComponents_MaterialCalendar_Day +style Widget_MaterialComponents_MaterialCalendar_DayTextView +style Widget_MaterialComponents_MaterialCalendar_Day_Invalid +style Widget_MaterialComponents_MaterialCalendar_Day_Selected +style Widget_MaterialComponents_MaterialCalendar_Day_Today +style Widget_MaterialComponents_MaterialCalendar_Fullscreen +style Widget_MaterialComponents_MaterialCalendar_HeaderCancelButton +style Widget_MaterialComponents_MaterialCalendar_HeaderConfirmButton +style Widget_MaterialComponents_MaterialCalendar_HeaderDivider +style Widget_MaterialComponents_MaterialCalendar_HeaderLayout +style Widget_MaterialComponents_MaterialCalendar_HeaderSelection +style Widget_MaterialComponents_MaterialCalendar_HeaderSelection_Fullscreen +style Widget_MaterialComponents_MaterialCalendar_HeaderTitle +style Widget_MaterialComponents_MaterialCalendar_HeaderToggleButton +style Widget_MaterialComponents_MaterialCalendar_Item +style Widget_MaterialComponents_MaterialCalendar_MonthNavigationButton +style Widget_MaterialComponents_MaterialCalendar_MonthTextView +style Widget_MaterialComponents_MaterialCalendar_Year +style Widget_MaterialComponents_MaterialCalendar_YearNavigationButton +style Widget_MaterialComponents_MaterialCalendar_Year_Selected +style Widget_MaterialComponents_MaterialCalendar_Year_Today +style Widget_MaterialComponents_NavigationRailView +style Widget_MaterialComponents_NavigationRailView_Colored +style Widget_MaterialComponents_NavigationRailView_Colored_Compact +style Widget_MaterialComponents_NavigationRailView_Compact +style Widget_MaterialComponents_NavigationRailView_PrimarySurface +style Widget_MaterialComponents_NavigationView +style Widget_MaterialComponents_PopupMenu +style Widget_MaterialComponents_PopupMenu_ContextMenu +style Widget_MaterialComponents_PopupMenu_ListPopupWindow +style Widget_MaterialComponents_PopupMenu_Overflow +style Widget_MaterialComponents_ProgressIndicator +style Widget_MaterialComponents_ShapeableImageView +style Widget_MaterialComponents_Slider +style Widget_MaterialComponents_Snackbar +style Widget_MaterialComponents_Snackbar_FullWidth +style Widget_MaterialComponents_Snackbar_TextView +style Widget_MaterialComponents_TabLayout +style Widget_MaterialComponents_TabLayout_Colored +style Widget_MaterialComponents_TabLayout_PrimarySurface +style Widget_MaterialComponents_TextInputEditText_FilledBox +style Widget_MaterialComponents_TextInputEditText_FilledBox_Dense +style Widget_MaterialComponents_TextInputEditText_OutlinedBox +style Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense +style Widget_MaterialComponents_TextInputLayout_FilledBox +style Widget_MaterialComponents_TextInputLayout_FilledBox_Dense +style Widget_MaterialComponents_TextInputLayout_FilledBox_Dense_ExposedDropdownMenu +style Widget_MaterialComponents_TextInputLayout_FilledBox_ExposedDropdownMenu +style Widget_MaterialComponents_TextInputLayout_OutlinedBox +style Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense +style Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense_ExposedDropdownMenu +style Widget_MaterialComponents_TextInputLayout_OutlinedBox_ExposedDropdownMenu +style Widget_MaterialComponents_TextView +style Widget_MaterialComponents_TimePicker +style Widget_MaterialComponents_TimePicker_Button +style Widget_MaterialComponents_TimePicker_Clock +style Widget_MaterialComponents_TimePicker_Display +style Widget_MaterialComponents_TimePicker_Display_TextInputEditText +style Widget_MaterialComponents_TimePicker_ImageButton +style Widget_MaterialComponents_TimePicker_ImageButton_ShapeAppearance +style Widget_MaterialComponents_Toolbar +style Widget_MaterialComponents_Toolbar_Primary +style Widget_MaterialComponents_Toolbar_PrimarySurface +style Widget_MaterialComponents_Toolbar_Surface +style Widget_MaterialComponents_Tooltip +style Widget_Support_CoordinatorLayout +style check_progressBar_scale +style customHeartHeartRatingBarStyle +style customTabLayoutTextAppearance +style darkMode +style leak_canary_LeakCanary_Base +style leak_canary_Theme_Transparent +style leak_canary_Widget_ActionBar +style lightMode +style noCheckboxStyle +style noRadioButtonStyle +style rb_map_nav +style register_Dialog_Fullscreen +style title +style video_popup_toast_anim +style video_style_dialog_progress +style video_vertical_progressBar +styleable ActionBar background backgroundSplit backgroundStacked contentInsetEnd contentInsetEndWithActions contentInsetLeft contentInsetRight contentInsetStart contentInsetStartWithNavigation customNavigationLayout displayOptions divider elevation height hideOnContentScroll homeAsUpIndicator homeLayout icon indeterminateProgressStyle itemPadding logo navigationMode popupTheme progressBarPadding progressBarStyle subtitle subtitleTextStyle title titleTextStyle +styleable ActionBarLayout android_layout_gravity +styleable ActionMenuItemView android_minWidth +styleable ActionMenuView +styleable ActionMode background backgroundSplit closeItemLayout height subtitleTextStyle titleTextStyle +styleable ActivityChooserView expandActivityOverflowButtonDrawable initialActivityCount +styleable AlertDialog android_layout buttonIconDimen buttonPanelSideLayout listItemLayout listLayout multiChoiceItemLayout showTitle singleChoiceItemLayout +styleable AnimatedStateListDrawableCompat android_constantSize android_dither android_enterFadeDuration android_exitFadeDuration android_variablePadding android_visible +styleable AnimatedStateListDrawableItem android_drawable android_id +styleable AnimatedStateListDrawableTransition android_drawable android_fromId android_reversible android_toId +styleable AppBarLayout android_background android_keyboardNavigationCluster android_touchscreenBlocksFocus elevation expanded liftOnScroll liftOnScrollTargetViewId statusBarForeground +styleable AppBarLayoutStates state_collapsed state_collapsible state_liftable state_lifted +styleable AppBarLayout_Layout layout_scrollFlags layout_scrollInterpolator +styleable AppCompatImageView android_src srcCompat tint tintMode +styleable AppCompatSeekBar android_thumb tickMark tickMarkTint tickMarkTintMode +styleable AppCompatTextHelper android_drawableBottom android_drawableEnd android_drawableLeft android_drawableRight android_drawableStart android_drawableTop android_textAppearance +styleable AppCompatTextView android_textAppearance autoSizeMaxTextSize autoSizeMinTextSize autoSizePresetSizes autoSizeStepGranularity autoSizeTextType drawableBottomCompat drawableEndCompat drawableLeftCompat drawableRightCompat drawableStartCompat drawableTint drawableTintMode drawableTopCompat firstBaselineToTopHeight fontFamily fontVariationSettings lastBaselineToBottomHeight lineHeight textAllCaps textLocale +styleable AppCompatTheme actionBarDivider actionBarItemBackground actionBarPopupTheme actionBarSize actionBarSplitStyle actionBarStyle actionBarTabBarStyle actionBarTabStyle actionBarTabTextStyle actionBarTheme actionBarWidgetTheme actionButtonStyle actionDropDownStyle actionMenuTextAppearance actionMenuTextColor actionModeBackground actionModeCloseButtonStyle actionModeCloseContentDescription actionModeCloseDrawable actionModeCopyDrawable actionModeCutDrawable actionModeFindDrawable actionModePasteDrawable actionModePopupWindowStyle actionModeSelectAllDrawable actionModeShareDrawable actionModeSplitBackground actionModeStyle actionModeTheme actionModeWebSearchDrawable actionOverflowButtonStyle actionOverflowMenuStyle activityChooserViewStyle alertDialogButtonGroupStyle alertDialogCenterButtons alertDialogStyle alertDialogTheme android_windowAnimationStyle android_windowIsFloating autoCompleteTextViewStyle borderlessButtonStyle buttonBarButtonStyle buttonBarNegativeButtonStyle buttonBarNeutralButtonStyle buttonBarPositiveButtonStyle buttonBarStyle buttonStyle buttonStyleSmall checkboxStyle checkedTextViewStyle colorAccent colorBackgroundFloating colorButtonNormal colorControlActivated colorControlHighlight colorControlNormal colorError colorPrimary colorPrimaryDark colorSwitchThumbNormal controlBackground dialogCornerRadius dialogPreferredPadding dialogTheme dividerHorizontal dividerVertical dropDownListViewStyle dropdownListPreferredItemHeight editTextBackground editTextColor editTextStyle homeAsUpIndicator imageButtonStyle listChoiceBackgroundIndicator listChoiceIndicatorMultipleAnimated listChoiceIndicatorSingleAnimated listDividerAlertDialog listMenuViewStyle listPopupWindowStyle listPreferredItemHeight listPreferredItemHeightLarge listPreferredItemHeightSmall listPreferredItemPaddingEnd listPreferredItemPaddingLeft listPreferredItemPaddingRight listPreferredItemPaddingStart panelBackground panelMenuListTheme panelMenuListWidth popupMenuStyle popupWindowStyle radioButtonStyle ratingBarStyle ratingBarStyleIndicator ratingBarStyleSmall searchViewStyle seekBarStyle selectableItemBackground selectableItemBackgroundBorderless spinnerDropDownItemStyle spinnerStyle switchStyle textAppearanceLargePopupMenu textAppearanceListItem textAppearanceListItemSecondary textAppearanceListItemSmall textAppearancePopupMenuHeader textAppearanceSearchResultSubtitle textAppearanceSearchResultTitle textAppearanceSmallPopupMenu textColorAlertDialogListItem textColorSearchUrl toolbarNavigationButtonStyle toolbarStyle tooltipForegroundColor tooltipFrameBackground viewInflaterClass windowActionBar windowActionBarOverlay windowActionModeOverlay windowFixedHeightMajor windowFixedHeightMinor windowFixedWidthMajor windowFixedWidthMinor windowMinWidthMajor windowMinWidthMinor windowNoTitle +styleable AspectRatioFrameLayout resize_mode +styleable AutoScannerView btmText btmTextSize maskColor scanline showRectLine topText topTextSize triAngleColor triAngleLength triAngleWidth +styleable Badge backgroundColor badgeGravity badgeTextColor horizontalOffset maxCharacterCount number verticalOffset +styleable BaseProgressIndicator android_indeterminate hideAnimationBehavior indicatorColor minHideDelay showAnimationBehavior showDelay trackColor trackCornerRadius trackThickness +styleable BottomAppBar backgroundTint elevation fabAlignmentMode fabAnimationMode fabCradleMargin fabCradleRoundedCornerRadius fabCradleVerticalOffset hideOnScroll paddingBottomSystemWindowInsets paddingLeftSystemWindowInsets paddingRightSystemWindowInsets +styleable BottomNavigationView backgroundTint elevation itemBackground itemHorizontalTranslationEnabled itemIconSize itemIconTint itemRippleColor itemTextAppearanceActive itemTextAppearanceInactive itemTextColor labelVisibilityMode menu +styleable BottomSheetBehavior_Layout android_elevation android_maxWidth backgroundTint behavior_draggable behavior_expandedOffset behavior_fitToContents behavior_halfExpandedRatio behavior_hideable behavior_peekHeight behavior_saveFlags behavior_skipCollapsed gestureInsetBottomIgnored paddingBottomSystemWindowInsets paddingLeftSystemWindowInsets paddingRightSystemWindowInsets paddingTopSystemWindowInsets shapeAppearance shapeAppearanceOverlay +styleable ButtonBarContainerTheme buttonBarButtonStyle buttonBarStyle +styleable ButtonBarLayout allowStacking +styleable CameraBridgeViewBase camera_id show_fps +styleable CardView android_minHeight android_minWidth cardBackgroundColor cardCornerRadius cardElevation cardMaxElevation cardPreventCornerOverlap cardUseCompatPadding contentPadding contentPaddingBottom contentPaddingLeft contentPaddingRight contentPaddingTop +styleable Carousel carousel_backwardTransition carousel_emptyViewsBehavior carousel_firstView carousel_forwardTransition carousel_infinite carousel_nextState carousel_previousState carousel_touchUpMode carousel_touchUp_dampeningFactor carousel_touchUp_velocityThreshold +styleable Chip android_checkable android_ellipsize android_maxWidth android_text android_textAppearance android_textColor android_textSize checkedIcon checkedIconEnabled checkedIconTint checkedIconVisible chipBackgroundColor chipCornerRadius chipEndPadding chipIcon chipIconEnabled chipIconSize chipIconTint chipIconVisible chipMinHeight chipMinTouchTargetSize chipStartPadding chipStrokeColor chipStrokeWidth chipSurfaceColor closeIcon closeIconEnabled closeIconEndPadding closeIconSize closeIconStartPadding closeIconTint closeIconVisible ensureMinTouchTargetSize hideMotionSpec iconEndPadding iconStartPadding rippleColor shapeAppearance shapeAppearanceOverlay showMotionSpec textEndPadding textStartPadding +styleable ChipGroup checkedChip chipSpacing chipSpacingHorizontal chipSpacingVertical selectionRequired singleLine singleSelection +styleable CircleImageView civ_border_color civ_border_overlay civ_border_width civ_circle_background_color +styleable CircularProgressDrawable cpd_inAnimDuration cpd_inStepColors cpd_inStepPercent cpd_initialAngle cpd_keepDuration cpd_maxSweepAngle cpd_minSweepAngle cpd_outAnimDuration cpd_padding cpd_reverse cpd_rotateDuration cpd_strokeColor cpd_strokeColors cpd_strokeSecondaryColor cpd_strokeSize cpd_transformDuration cpd_transformInterpolator pv_progressMode +styleable CircularProgressIndicator indicatorDirectionCircular indicatorInset indicatorSize +styleable CircularProgressView backColor backWidth progColor progFirstColor progStartColor progWidth progress +styleable ClockFaceView clockFaceBackgroundColor clockNumberTextColor +styleable ClockHandView clockHandColor materialCircleRadius selectorSize +styleable CollapsingToolbarLayout collapsedTitleGravity collapsedTitleTextAppearance contentScrim expandedTitleGravity expandedTitleMargin expandedTitleMarginBottom expandedTitleMarginEnd expandedTitleMarginStart expandedTitleMarginTop expandedTitleTextAppearance extraMultilineHeightEnabled forceApplySystemWindowInsetTop maxLines scrimAnimationDuration scrimVisibleHeightTrigger statusBarScrim title titleCollapseMode titleEnabled toolbarId +styleable CollapsingToolbarLayout_Layout layout_collapseMode layout_collapseParallaxMultiplier +styleable ColorStateListItem alpha android_alpha android_color +styleable CompoundButton android_button buttonCompat buttonTint buttonTintMode +styleable Constraint android_alpha android_elevation android_id android_layout_height android_layout_marginBottom android_layout_marginEnd android_layout_marginLeft android_layout_marginRight android_layout_marginStart android_layout_marginTop android_layout_width android_maxHeight android_maxWidth android_minHeight android_minWidth android_orientation android_rotation android_rotationX android_rotationY android_scaleX android_scaleY android_transformPivotX android_transformPivotY android_translationX android_translationY android_translationZ android_visibility animateCircleAngleTo animateRelativeTo animate_relativeTo barrierAllowsGoneWidgets barrierDirection barrierMargin chainUseRtl constraint_referenced_ids constraint_referenced_tags drawPath flow_firstHorizontalBias flow_firstHorizontalStyle flow_firstVerticalBias flow_firstVerticalStyle flow_horizontalAlign flow_horizontalBias flow_horizontalGap flow_horizontalStyle flow_lastHorizontalBias flow_lastHorizontalStyle flow_lastVerticalBias flow_lastVerticalStyle flow_maxElementsWrap flow_verticalAlign flow_verticalBias flow_verticalGap flow_verticalStyle flow_wrapMode layout_constrainedHeight layout_constrainedWidth layout_constraintBaseline_creator layout_constraintBaseline_toBaselineOf layout_constraintBaseline_toBottomOf layout_constraintBaseline_toTopOf layout_constraintBottom_creator layout_constraintBottom_toBottomOf layout_constraintBottom_toTopOf layout_constraintCircle layout_constraintCircleAngle layout_constraintCircleRadius layout_constraintDimensionRatio layout_constraintEnd_toEndOf layout_constraintEnd_toStartOf layout_constraintGuide_begin layout_constraintGuide_end layout_constraintGuide_percent layout_constraintHeight layout_constraintHeight_default layout_constraintHeight_max layout_constraintHeight_min layout_constraintHeight_percent layout_constraintHorizontal_bias layout_constraintHorizontal_chainStyle layout_constraintHorizontal_weight layout_constraintLeft_creator layout_constraintLeft_toLeftOf layout_constraintLeft_toRightOf layout_constraintRight_creator layout_constraintRight_toLeftOf layout_constraintRight_toRightOf layout_constraintStart_toEndOf layout_constraintStart_toStartOf layout_constraintTag layout_constraintTop_creator layout_constraintTop_toBottomOf layout_constraintTop_toTopOf layout_constraintVertical_bias layout_constraintVertical_chainStyle layout_constraintVertical_weight layout_constraintWidth layout_constraintWidth_default layout_constraintWidth_max layout_constraintWidth_min layout_constraintWidth_percent layout_editor_absoluteX layout_editor_absoluteY layout_goneMarginBaseline layout_goneMarginBottom layout_goneMarginEnd layout_goneMarginLeft layout_goneMarginRight layout_goneMarginStart layout_goneMarginTop layout_marginBaseline layout_wrapBehaviorInParent motionProgress motionStagger pathMotionArc pivotAnchor polarRelativeTo quantizeMotionInterpolator quantizeMotionPhase quantizeMotionSteps transformPivotTarget transitionEasing transitionPathRotate visibilityMode +styleable ConstraintLayout_Layout android_elevation android_layout_height android_layout_margin android_layout_marginBottom android_layout_marginEnd android_layout_marginHorizontal android_layout_marginLeft android_layout_marginRight android_layout_marginStart android_layout_marginTop android_layout_marginVertical android_layout_width android_maxHeight android_maxWidth android_minHeight android_minWidth android_orientation android_padding android_paddingBottom android_paddingEnd android_paddingLeft android_paddingRight android_paddingStart android_paddingTop android_visibility barrierAllowsGoneWidgets barrierDirection barrierMargin chainUseRtl circularflow_angles circularflow_defaultAngle circularflow_defaultRadius circularflow_radiusInDP circularflow_viewCenter constraintSet constraint_referenced_ids constraint_referenced_tags flow_firstHorizontalBias flow_firstHorizontalStyle flow_firstVerticalBias flow_firstVerticalStyle flow_horizontalAlign flow_horizontalBias flow_horizontalGap flow_horizontalStyle flow_lastHorizontalBias flow_lastHorizontalStyle flow_lastVerticalBias flow_lastVerticalStyle flow_maxElementsWrap flow_verticalAlign flow_verticalBias flow_verticalGap flow_verticalStyle flow_wrapMode layoutDescription layout_constrainedHeight layout_constrainedWidth layout_constraintBaseline_creator layout_constraintBaseline_toBaselineOf layout_constraintBaseline_toBottomOf layout_constraintBaseline_toTopOf layout_constraintBottom_creator layout_constraintBottom_toBottomOf layout_constraintBottom_toTopOf layout_constraintCircle layout_constraintCircleAngle layout_constraintCircleRadius layout_constraintDimensionRatio layout_constraintEnd_toEndOf layout_constraintEnd_toStartOf layout_constraintGuide_begin layout_constraintGuide_end layout_constraintGuide_percent layout_constraintHeight layout_constraintHeight_default layout_constraintHeight_max layout_constraintHeight_min layout_constraintHeight_percent layout_constraintHorizontal_bias layout_constraintHorizontal_chainStyle layout_constraintHorizontal_weight layout_constraintLeft_creator layout_constraintLeft_toLeftOf layout_constraintLeft_toRightOf layout_constraintRight_creator layout_constraintRight_toLeftOf layout_constraintRight_toRightOf layout_constraintStart_toEndOf layout_constraintStart_toStartOf layout_constraintTag layout_constraintTop_creator layout_constraintTop_toBottomOf layout_constraintTop_toTopOf layout_constraintVertical_bias layout_constraintVertical_chainStyle layout_constraintVertical_weight layout_constraintWidth layout_constraintWidth_default layout_constraintWidth_max layout_constraintWidth_min layout_constraintWidth_percent layout_editor_absoluteX layout_editor_absoluteY layout_goneMarginBaseline layout_goneMarginBottom layout_goneMarginEnd layout_goneMarginLeft layout_goneMarginRight layout_goneMarginStart layout_goneMarginTop layout_marginBaseline layout_optimizationLevel layout_wrapBehaviorInParent +styleable ConstraintLayout_ReactiveGuide reactiveGuide_animateChange reactiveGuide_applyToAllConstraintSets reactiveGuide_applyToConstraintSet reactiveGuide_valueId +styleable ConstraintLayout_placeholder content placeholder_emptyVisibility +styleable ConstraintOverride android_alpha android_elevation android_id android_layout_height android_layout_marginBottom android_layout_marginEnd android_layout_marginLeft android_layout_marginRight android_layout_marginStart android_layout_marginTop android_layout_width android_maxHeight android_maxWidth android_minHeight android_minWidth android_orientation android_rotation android_rotationX android_rotationY android_scaleX android_scaleY android_transformPivotX android_transformPivotY android_translationX android_translationY android_translationZ android_visibility animateCircleAngleTo animateRelativeTo barrierAllowsGoneWidgets barrierDirection barrierMargin chainUseRtl constraint_referenced_ids drawPath flow_firstHorizontalBias flow_firstHorizontalStyle flow_firstVerticalBias flow_firstVerticalStyle flow_horizontalAlign flow_horizontalBias flow_horizontalGap flow_horizontalStyle flow_lastHorizontalBias flow_lastHorizontalStyle flow_lastVerticalBias flow_lastVerticalStyle flow_maxElementsWrap flow_verticalAlign flow_verticalBias flow_verticalGap flow_verticalStyle flow_wrapMode layout_constrainedHeight layout_constrainedWidth layout_constraintBaseline_creator layout_constraintBottom_creator layout_constraintCircleAngle layout_constraintCircleRadius layout_constraintDimensionRatio layout_constraintGuide_begin layout_constraintGuide_end layout_constraintGuide_percent layout_constraintHeight layout_constraintHeight_default layout_constraintHeight_max layout_constraintHeight_min layout_constraintHeight_percent layout_constraintHorizontal_bias layout_constraintHorizontal_chainStyle layout_constraintHorizontal_weight layout_constraintLeft_creator layout_constraintRight_creator layout_constraintTag layout_constraintTop_creator layout_constraintVertical_bias layout_constraintVertical_chainStyle layout_constraintVertical_weight layout_constraintWidth layout_constraintWidth_default layout_constraintWidth_max layout_constraintWidth_min layout_constraintWidth_percent layout_editor_absoluteX layout_editor_absoluteY layout_goneMarginBaseline layout_goneMarginBottom layout_goneMarginEnd layout_goneMarginLeft layout_goneMarginRight layout_goneMarginStart layout_goneMarginTop layout_marginBaseline layout_wrapBehaviorInParent motionProgress motionStagger motionTarget pathMotionArc pivotAnchor polarRelativeTo quantizeMotionInterpolator quantizeMotionPhase quantizeMotionSteps transformPivotTarget transitionEasing transitionPathRotate visibilityMode +styleable ConstraintSet ConstraintRotate android_alpha android_elevation android_id android_layout_height android_layout_marginBottom android_layout_marginEnd android_layout_marginLeft android_layout_marginRight android_layout_marginStart android_layout_marginTop android_layout_width android_maxHeight android_maxWidth android_minHeight android_minWidth android_orientation android_pivotX android_pivotY android_rotation android_rotationX android_rotationY android_scaleX android_scaleY android_transformPivotX android_transformPivotY android_translationX android_translationY android_translationZ android_visibility animateCircleAngleTo animateRelativeTo animate_relativeTo barrierAllowsGoneWidgets barrierDirection barrierMargin chainUseRtl constraint_referenced_ids constraint_referenced_tags deriveConstraintsFrom drawPath flow_firstHorizontalBias flow_firstHorizontalStyle flow_firstVerticalBias flow_firstVerticalStyle flow_horizontalAlign flow_horizontalBias flow_horizontalGap flow_horizontalStyle flow_lastHorizontalBias flow_lastHorizontalStyle flow_lastVerticalBias flow_lastVerticalStyle flow_maxElementsWrap flow_verticalAlign flow_verticalBias flow_verticalGap flow_verticalStyle flow_wrapMode layout_constrainedHeight layout_constrainedWidth layout_constraintBaseline_creator layout_constraintBaseline_toBaselineOf layout_constraintBaseline_toBottomOf layout_constraintBaseline_toTopOf layout_constraintBottom_creator layout_constraintBottom_toBottomOf layout_constraintBottom_toTopOf layout_constraintCircle layout_constraintCircleAngle layout_constraintCircleRadius layout_constraintDimensionRatio layout_constraintEnd_toEndOf layout_constraintEnd_toStartOf layout_constraintGuide_begin layout_constraintGuide_end layout_constraintGuide_percent layout_constraintHeight_default layout_constraintHeight_max layout_constraintHeight_min layout_constraintHeight_percent layout_constraintHorizontal_bias layout_constraintHorizontal_chainStyle layout_constraintHorizontal_weight layout_constraintLeft_creator layout_constraintLeft_toLeftOf layout_constraintLeft_toRightOf layout_constraintRight_creator layout_constraintRight_toLeftOf layout_constraintRight_toRightOf layout_constraintStart_toEndOf layout_constraintStart_toStartOf layout_constraintTag layout_constraintTop_creator layout_constraintTop_toBottomOf layout_constraintTop_toTopOf layout_constraintVertical_bias layout_constraintVertical_chainStyle layout_constraintVertical_weight layout_constraintWidth_default layout_constraintWidth_max layout_constraintWidth_min layout_constraintWidth_percent layout_editor_absoluteX layout_editor_absoluteY layout_goneMarginBaseline layout_goneMarginBottom layout_goneMarginEnd layout_goneMarginLeft layout_goneMarginRight layout_goneMarginStart layout_goneMarginTop layout_marginBaseline layout_wrapBehaviorInParent motionProgress motionStagger pathMotionArc pivotAnchor polarRelativeTo quantizeMotionSteps transitionEasing transitionPathRotate +styleable CoordinatorLayout keylines statusBarBackground +styleable CoordinatorLayout_Layout android_layout_gravity layout_anchor layout_anchorGravity layout_behavior layout_dodgeInsetEdges layout_insetEdge layout_keyline +styleable CustomAttribute attributeName customBoolean customColorDrawableValue customColorValue customDimension customFloatValue customIntegerValue customPixelDimension customReference customStringValue methodName +styleable CustomCircleImageView civ_border_color civ_border_overlay civ_border_width civ_fill_color +styleable CustomRatingBar OtherHeartImg clickable elenmentCount elenmentEmpty elenmentFill elenmentHarf elenmentHeight elenmentPadding elenmentStep elenmentWidth stepSize +styleable DefaultTimeBar ad_marker_color ad_marker_width bar_height buffered_color played_color scrubber_color scrubber_disabled_size scrubber_dragged_size scrubber_enabled_size touch_target_height unplayed_color +styleable DiscreteScrollView dsv_orientation +styleable DrawerArrowToggle arrowHeadLength arrowShaftLength barLength color drawableSize gapBetweenBars spinBars thickness +styleable ExtendedFloatingActionButton collapsedSize elevation extendMotionSpec hideMotionSpec showMotionSpec shrinkMotionSpec +styleable ExtendedFloatingActionButton_Behavior_Layout behavior_autoHide behavior_autoShrink +styleable FlexboxLayout alignContent alignItems dividerDrawable dividerDrawableHorizontal dividerDrawableVertical flexDirection flexWrap justifyContent maxLine showDivider showDividerHorizontal showDividerVertical +styleable FlexboxLayout_Layout layout_alignSelf layout_flexBasisPercent layout_flexGrow layout_flexShrink layout_maxHeight layout_maxWidth layout_minHeight layout_minWidth layout_order layout_wrapBefore +styleable FloatingActionButton android_enabled backgroundTint backgroundTintMode borderWidth elevation ensureMinTouchTargetSize fabCustomSize fabSize hideMotionSpec hoveredFocusedTranslationZ maxImageSize pressedTranslationZ rippleColor shapeAppearance shapeAppearanceOverlay showMotionSpec useCompatPadding +styleable FloatingActionButton_Behavior_Layout behavior_autoHide +styleable FlowLayout itemSpacing lineSpacing +styleable FontFamily fontProviderAuthority fontProviderCerts fontProviderFetchStrategy fontProviderFetchTimeout fontProviderPackage fontProviderQuery fontProviderSystemFontFamily +styleable FontFamilyFont android_font android_fontStyle android_fontVariationSettings android_fontWeight android_ttcIndex font fontStyle fontVariationSettings fontWeight ttcIndex +styleable ForegroundLinearLayout android_foreground android_foregroundGravity foregroundInsidePadding +styleable Fragment android_id android_name android_tag +styleable FragmentContainerView android_name android_tag +styleable GenericDraweeHierarchy actualImageScaleType backgroundImage fadeDuration failureImage failureImageScaleType overlayImage placeholderImage placeholderImageScaleType pressedStateOverlayImage progressBarAutoRotateInterval progressBarImage progressBarImageScaleType retryImage retryImageScaleType roundAsCircle roundBottomEnd roundBottomLeft roundBottomRight roundBottomStart roundTopEnd roundTopLeft roundTopRight roundTopStart roundWithOverlayColor roundedCornerRadius roundingBorderColor roundingBorderPadding roundingBorderWidth viewAspectRatio +styleable GradientColor android_centerColor android_centerX android_centerY android_endColor android_endX android_endY android_gradientRadius android_startColor android_startX android_startY android_tileMode android_type +styleable GradientColorItem android_color android_offset +styleable HeartLikeView showGrayBack +styleable ImageFilterView altSrc blendSrc brightness contrast crossfade imagePanX imagePanY imageRotate imageZoom overlay round roundPercent saturation warmth +styleable Insets paddingBottomSystemWindowInsets paddingLeftSystemWindowInsets paddingRightSystemWindowInsets paddingTopSystemWindowInsets +styleable KeyAttribute android_alpha android_elevation android_rotation android_rotationX android_rotationY android_scaleX android_scaleY android_transformPivotX android_transformPivotY android_translationX android_translationY android_translationZ curveFit framePosition motionProgress motionTarget transformPivotTarget transitionEasing transitionPathRotate +styleable KeyCycle android_alpha android_elevation android_rotation android_rotationX android_rotationY android_scaleX android_scaleY android_translationX android_translationY android_translationZ curveFit framePosition motionProgress motionTarget transitionEasing transitionPathRotate waveOffset wavePeriod wavePhase waveShape waveVariesBy +styleable KeyFrame +styleable KeyFramesAcceleration +styleable KeyFramesVelocity +styleable KeyPosition curveFit drawPath framePosition keyPositionType motionTarget pathMotionArc percentHeight percentWidth percentX percentY sizePercent transitionEasing +styleable KeyTimeCycle android_alpha android_elevation android_rotation android_rotationX android_rotationY android_scaleX android_scaleY android_translationX android_translationY android_translationZ curveFit framePosition motionProgress motionTarget transitionEasing transitionPathRotate waveDecay waveOffset wavePeriod wavePhase waveShape +styleable KeyTrigger framePosition motionTarget motion_postLayoutCollision motion_triggerOnCollision onCross onNegativeCross onPositiveCross triggerId triggerReceiver triggerSlack viewTransitionOnCross viewTransitionOnNegativeCross viewTransitionOnPositiveCross +styleable Layout android_layout_height android_layout_marginBottom android_layout_marginEnd android_layout_marginLeft android_layout_marginRight android_layout_marginStart android_layout_marginTop android_layout_width android_orientation barrierAllowsGoneWidgets barrierDirection barrierMargin chainUseRtl constraint_referenced_ids constraint_referenced_tags layout_constrainedHeight layout_constrainedWidth layout_constraintBaseline_creator layout_constraintBaseline_toBaselineOf layout_constraintBaseline_toBottomOf layout_constraintBaseline_toTopOf layout_constraintBottom_creator layout_constraintBottom_toBottomOf layout_constraintBottom_toTopOf layout_constraintCircle layout_constraintCircleAngle layout_constraintCircleRadius layout_constraintDimensionRatio layout_constraintEnd_toEndOf layout_constraintEnd_toStartOf layout_constraintGuide_begin layout_constraintGuide_end layout_constraintGuide_percent layout_constraintHeight layout_constraintHeight_default layout_constraintHeight_max layout_constraintHeight_min layout_constraintHeight_percent layout_constraintHorizontal_bias layout_constraintHorizontal_chainStyle layout_constraintHorizontal_weight layout_constraintLeft_creator layout_constraintLeft_toLeftOf layout_constraintLeft_toRightOf layout_constraintRight_creator layout_constraintRight_toLeftOf layout_constraintRight_toRightOf layout_constraintStart_toEndOf layout_constraintStart_toStartOf layout_constraintTop_creator layout_constraintTop_toBottomOf layout_constraintTop_toTopOf layout_constraintVertical_bias layout_constraintVertical_chainStyle layout_constraintVertical_weight layout_constraintWidth layout_constraintWidth_default layout_constraintWidth_max layout_constraintWidth_min layout_constraintWidth_percent layout_editor_absoluteX layout_editor_absoluteY layout_goneMarginBaseline layout_goneMarginBottom layout_goneMarginEnd layout_goneMarginLeft layout_goneMarginRight layout_goneMarginStart layout_goneMarginTop layout_marginBaseline layout_wrapBehaviorInParent maxHeight maxWidth minHeight minWidth +styleable LinearLayoutCompat android_baselineAligned android_baselineAlignedChildIndex android_gravity android_orientation android_weightSum divider dividerPadding measureWithLargestChild showDividers +styleable LinearLayoutCompat_Layout android_layout_gravity android_layout_height android_layout_weight android_layout_width +styleable LinearProgressIndicator indeterminateAnimationType indicatorDirectionLinear +styleable ListPopupWindow android_dropDownHorizontalOffset android_dropDownVerticalOffset +styleable LogTitleBar Back Icon Title +styleable MaterialAlertDialog backgroundInsetBottom backgroundInsetEnd backgroundInsetStart backgroundInsetTop +styleable MaterialAlertDialogTheme materialAlertDialogBodyTextStyle materialAlertDialogTheme materialAlertDialogTitleIconStyle materialAlertDialogTitlePanelStyle materialAlertDialogTitleTextStyle +styleable MaterialAutoCompleteTextView android_inputType +styleable MaterialButton android_background android_checkable android_insetBottom android_insetLeft android_insetRight android_insetTop backgroundTint backgroundTintMode cornerRadius elevation icon iconGravity iconPadding iconSize iconTint iconTintMode rippleColor shapeAppearance shapeAppearanceOverlay strokeColor strokeWidth +styleable MaterialButtonToggleGroup checkedButton selectionRequired singleSelection +styleable MaterialCalendar android_windowFullscreen dayInvalidStyle daySelectedStyle dayStyle dayTodayStyle nestedScrollable rangeFillColor yearSelectedStyle yearStyle yearTodayStyle +styleable MaterialCalendarItem android_insetBottom android_insetLeft android_insetRight android_insetTop itemFillColor itemShapeAppearance itemShapeAppearanceOverlay itemStrokeColor itemStrokeWidth itemTextColor +styleable MaterialCardView android_checkable cardForegroundColor checkedIcon checkedIconMargin checkedIconSize checkedIconTint rippleColor shapeAppearance shapeAppearanceOverlay state_dragged strokeColor strokeWidth +styleable MaterialCheckBox buttonTint useMaterialThemeColors +styleable MaterialRadioButton buttonTint useMaterialThemeColors +styleable MaterialShape shapeAppearance shapeAppearanceOverlay +styleable MaterialTextAppearance android_letterSpacing android_lineHeight lineHeight +styleable MaterialTextView android_lineHeight android_textAppearance lineHeight +styleable MaterialTimePicker clockIcon keyboardIcon +styleable MaterialToolbar navigationIconTint subtitleCentered titleCentered +styleable MenuGroup android_checkableBehavior android_enabled android_id android_menuCategory android_orderInCategory android_visible +styleable MenuItem actionLayout actionProviderClass actionViewClass alphabeticModifiers android_alphabeticShortcut android_checkable android_checked android_enabled android_icon android_id android_menuCategory android_numericShortcut android_onClick android_orderInCategory android_title android_titleCondensed android_visible contentDescription iconTint iconTintMode numericModifiers showAsAction tooltipText +styleable MenuView android_headerBackground android_horizontalDivider android_itemBackground android_itemIconDisabledAlpha android_itemTextAppearance android_verticalDivider android_windowAnimationStyle preserveIconSpacing subMenuArrow +styleable MockView mock_diagonalsColor mock_label mock_labelBackgroundColor mock_labelColor mock_showDiagonals mock_showLabel +styleable MogoImageView miv_blurRadius miv_borderColor miv_bottomLeftRadius miv_bottomRightRadius miv_failureHolder miv_isBlur miv_overlayImageId miv_placeHolder miv_radius miv_shape miv_shapeBorderWidth miv_topLeftRadius miv_topRightRadius +styleable Motion animateCircleAngleTo animateRelativeTo animate_relativeTo drawPath motionPathRotate motionStagger pathMotionArc quantizeMotionInterpolator quantizeMotionPhase quantizeMotionSteps transitionEasing +styleable MotionEffect motionEffect_alpha motionEffect_end motionEffect_move motionEffect_start motionEffect_strict motionEffect_translationX motionEffect_translationY motionEffect_viewTransition +styleable MotionHelper onHide onShow +styleable MotionLabel android_autoSizeTextType android_fontFamily android_gravity android_shadowRadius android_text android_textColor android_textSize android_textStyle android_typeface borderRound borderRoundPercent scaleFromTextSize textBackground textBackgroundPanX textBackgroundPanY textBackgroundRotate textBackgroundZoom textOutlineColor textOutlineThickness textPanX textPanY textureBlurFactor textureEffect textureHeight textureWidth +styleable MotionLayout applyMotionScene currentState layoutDescription motionDebug motionProgress showPaths +styleable MotionScene defaultDuration layoutDuringTransition +styleable MotionTelltales telltales_tailColor telltales_tailScale telltales_velocityMode +styleable NavigationBarView backgroundTint elevation itemBackground itemIconSize itemIconTint itemRippleColor itemTextAppearanceActive itemTextAppearanceInactive itemTextColor labelVisibilityMode menu +styleable NavigationRailView headerLayout menuGravity +styleable NavigationView android_background android_fitsSystemWindows android_maxWidth elevation headerLayout itemBackground itemHorizontalPadding itemIconPadding itemIconSize itemIconTint itemMaxLines itemShapeAppearance itemShapeAppearanceOverlay itemShapeFillColor itemShapeInsetBottom itemShapeInsetEnd itemShapeInsetStart itemShapeInsetTop itemTextAppearance itemTextColor menu shapeAppearance shapeAppearanceOverlay +styleable OnClick clickAction targetId +styleable OnSwipe autoCompleteMode dragDirection dragScale dragThreshold limitBoundsTo maxAcceleration maxVelocity moveWhenScrollAtTop nestedScrollFlags onTouchUp rotationCenterId springBoundary springDamping springMass springStiffness springStopThreshold touchAnchorId touchAnchorSide touchRegionId +styleable PlaybackControlView controller_layout_id fastforward_increment rewind_increment show_timeout +styleable PopupWindow android_popupAnimationStyle android_popupBackground overlapAnchor +styleable PopupWindowBackgroundState state_above_anchor +styleable PropertySet android_alpha android_visibility layout_constraintTag motionProgress visibilityMode +styleable RadialViewGroup materialCircleRadius +styleable RangeSlider minSeparation values +styleable RealtimeBlurView realtimeBlurRadius realtimeDownsampleFactor realtimeOverlayColor xRadius yRadius +styleable RecycleListView paddingBottomNoButtons paddingTopNoTitle +styleable RecyclerView android_clipToPadding android_descendantFocusability android_orientation fastScrollEnabled fastScrollHorizontalThumbDrawable fastScrollHorizontalTrackDrawable fastScrollVerticalThumbDrawable fastScrollVerticalTrackDrawable layoutManager reverseLayout spanCount stackFromEnd +styleable RoundLayout roundLayoutRadius +styleable RoundedImageView android_scaleType riv_border_color riv_border_width riv_corner_radius riv_corner_radius_bottom_left riv_corner_radius_bottom_right riv_corner_radius_top_left riv_corner_radius_top_right riv_mutate_background riv_oval riv_tile_Mode riv_tile_Mode_x riv_tile_Mode_y +styleable Scale disappearedScale +styleable ScrimInsetsFrameLayout insetForeground +styleable ScrollingViewBehavior_Layout behavior_overlapTop +styleable SearchView android_focusable android_imeOptions android_inputType android_maxWidth closeIcon commitIcon defaultQueryHint goIcon iconifiedByDefault layout queryBackground queryHint searchHintIcon searchIcon submitBackground suggestionRowLayout voiceIcon +styleable ShapeAppearance cornerFamily cornerFamilyBottomLeft cornerFamilyBottomRight cornerFamilyTopLeft cornerFamilyTopRight cornerSize cornerSizeBottomLeft cornerSizeBottomRight cornerSizeTopLeft cornerSizeTopRight +styleable ShapeableImageView contentPadding contentPaddingBottom contentPaddingEnd contentPaddingLeft contentPaddingRight contentPaddingStart contentPaddingTop shapeAppearance shapeAppearanceOverlay strokeColor strokeWidth +styleable SimpleDraweeView actualImageResource actualImageScaleType actualImageUri backgroundImage fadeDuration failureImage failureImageScaleType overlayImage placeholderImage placeholderImageScaleType pressedStateOverlayImage progressBarAutoRotateInterval progressBarImage progressBarImageScaleType retryImage retryImageScaleType roundAsCircle roundBottomEnd roundBottomLeft roundBottomRight roundBottomStart roundTopEnd roundTopLeft roundTopRight roundTopStart roundWithOverlayColor roundedCornerRadius roundingBorderColor roundingBorderPadding roundingBorderWidth viewAspectRatio +styleable SimpleExoPlayerView controller_layout_id default_artwork fastforward_increment hide_on_touch player_layout_id resize_mode rewind_increment show_timeout surface_type use_artwork use_controller +styleable Slider android_enabled android_stepSize android_value android_valueFrom android_valueTo haloColor haloRadius labelBehavior labelStyle thumbColor thumbElevation thumbRadius thumbStrokeColor thumbStrokeWidth tickColor tickColorActive tickColorInactive tickVisible trackColor trackColorActive trackColorInactive trackHeight +styleable Snackbar snackbarButtonStyle snackbarStyle snackbarTextViewStyle +styleable SnackbarLayout actionTextColorAlpha android_maxWidth animationMode backgroundOverlayColorAlpha backgroundTint backgroundTintMode elevation maxActionInlineWidth +styleable Spinner android_dropDownWidth android_entries android_popupBackground android_prompt popupTheme +styleable State android_id constraints +styleable StateListDrawable android_constantSize android_dither android_enterFadeDuration android_exitFadeDuration android_variablePadding android_visible +styleable StateListDrawableItem android_drawable +styleable StateSet defaultState +styleable SwitchCompat android_textOff android_textOn android_thumb showText splitTrack switchMinWidth switchPadding switchTextAppearance thumbTextPadding thumbTint thumbTintMode track trackTint trackTintMode +styleable SwitchMaterial useMaterialThemeColors +styleable TabItem android_icon android_layout android_text +styleable TabLayout tabBackground tabContentStart tabGravity tabIconTint tabIconTintMode tabIndicator tabIndicatorAnimationDuration tabIndicatorAnimationMode tabIndicatorColor tabIndicatorFullWidth tabIndicatorGravity tabIndicatorHeight tabInlineLabel tabMaxWidth tabMinWidth tabMode tabPadding tabPaddingBottom tabPaddingEnd tabPaddingStart tabPaddingTop tabRippleColor tabSelectedTextColor tabTextAppearance tabTextColor tabUnboundedRipple +styleable TextAppearance android_fontFamily android_shadowColor android_shadowDx android_shadowDy android_shadowRadius android_textColor android_textColorHint android_textColorLink android_textFontWeight android_textSize android_textStyle android_typeface fontFamily fontVariationSettings textAllCaps textLocale +styleable TextEffects android_fontFamily android_shadowColor android_shadowDx android_shadowDy android_shadowRadius android_text android_textSize android_textStyle android_typeface borderRound borderRoundPercent textFillColor textOutlineColor textOutlineThickness +styleable TextInputEditText textInputLayoutFocusedRectEnabled +styleable TextInputLayout android_enabled android_hint android_maxWidth android_minWidth android_textColorHint boxBackgroundColor boxBackgroundMode boxCollapsedPaddingTop boxCornerRadiusBottomEnd boxCornerRadiusBottomStart boxCornerRadiusTopEnd boxCornerRadiusTopStart boxStrokeColor boxStrokeErrorColor boxStrokeWidth boxStrokeWidthFocused counterEnabled counterMaxLength counterOverflowTextAppearance counterOverflowTextColor counterTextAppearance counterTextColor endIconCheckable endIconContentDescription endIconDrawable endIconMode endIconTint endIconTintMode errorContentDescription errorEnabled errorIconDrawable errorIconTint errorIconTintMode errorTextAppearance errorTextColor expandedHintEnabled helperText helperTextEnabled helperTextTextAppearance helperTextTextColor hintAnimationEnabled hintEnabled hintTextAppearance hintTextColor passwordToggleContentDescription passwordToggleDrawable passwordToggleEnabled passwordToggleTint passwordToggleTintMode placeholderText placeholderTextAppearance placeholderTextColor prefixText prefixTextAppearance prefixTextColor shapeAppearance shapeAppearanceOverlay startIconCheckable startIconContentDescription startIconDrawable startIconTint startIconTintMode suffixText suffixTextAppearance suffixTextColor +styleable ThemeEnforcement android_textAppearance enforceMaterialTheme enforceTextAppearance +styleable Toolbar android_gravity android_minHeight buttonGravity collapseContentDescription collapseIcon contentInsetEnd contentInsetEndWithActions contentInsetLeft contentInsetRight contentInsetStart contentInsetStartWithNavigation logo logoDescription maxButtonHeight menu navigationContentDescription navigationIcon popupTheme subtitle subtitleTextAppearance subtitleTextColor title titleMargin titleMarginBottom titleMarginEnd titleMarginStart titleMarginTop titleMargins titleTextAppearance titleTextColor +styleable Tooltip android_layout_margin android_minHeight android_minWidth android_padding android_text android_textAppearance backgroundTint +styleable Transform android_elevation android_rotation android_rotationX android_rotationY android_scaleX android_scaleY android_transformPivotX android_transformPivotY android_translationX android_translationY android_translationZ transformPivotTarget +styleable Transition android_id autoTransition constraintSetEnd constraintSetStart duration layoutDuringTransition motionInterpolator pathMotionArc staggered transitionDisable transitionFlags +styleable Variant constraints region_heightLessThan region_heightMoreThan region_widthLessThan region_widthMoreThan +styleable View android_focusable android_theme paddingEnd paddingStart theme +styleable ViewBackgroundHelper android_background backgroundTint backgroundTintMode +styleable ViewPager2 android_orientation +styleable ViewStubCompat android_id android_inflatedId android_layout +styleable ViewTransition SharedValue SharedValueId android_id clearsTag duration ifTagNotSet ifTagSet motionInterpolator motionTarget onStateTransition pathMotionArc setsTag transitionDisable upDuration viewTransitionMode +styleable download download_bg_line_color download_bg_line_width download_line_color download_line_width download_text_color download_text_size +styleable include constraintSet +styleable keyboard keyBackground keyTextSize keyTextStyle +styleable leak_canary_MoreDetailsView leak_canary_plus_color +styleable play play_bg_line_color play_bg_line_width play_line_color play_line_width +xml device_filter +xml key +xml leak_canary_file_paths +xml provider_paths +xml standalone_badge +xml standalone_badge_gravity_bottom_end +xml standalone_badge_gravity_bottom_start +xml standalone_badge_gravity_top_start +xml standalone_badge_offset +xml util_code_provider_paths diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/runtime_library_classes/debug/classes.jar b/core/function-impl/mogo-core-function-main/build/intermediates/runtime_library_classes/debug/classes.jar new file mode 100644 index 0000000000..400ed0161f Binary files /dev/null and b/core/function-impl/mogo-core-function-main/build/intermediates/runtime_library_classes/debug/classes.jar differ diff --git a/core/function-impl/mogo-core-function-main/build/intermediates/symbols/debug/R.txt b/core/function-impl/mogo-core-function-main/build/intermediates/symbols/debug/R.txt new file mode 100644 index 0000000000..67e3fa4dca --- /dev/null +++ b/core/function-impl/mogo-core-function-main/build/intermediates/symbols/debug/R.txt @@ -0,0 +1,10253 @@ +int anim abc_fade_in 0x7f010001 +int anim abc_fade_out 0x7f010002 +int anim abc_grow_fade_in_from_bottom 0x7f010003 +int anim abc_popup_enter 0x7f010004 +int anim abc_popup_exit 0x7f010005 +int anim abc_shrink_fade_out_from_bottom 0x7f010006 +int anim abc_slide_in_bottom 0x7f010007 +int anim abc_slide_in_top 0x7f010008 +int anim abc_slide_out_bottom 0x7f010009 +int anim abc_slide_out_top 0x7f01000a +int anim abc_tooltip_enter 0x7f01000b +int anim abc_tooltip_exit 0x7f01000c +int anim bottom_in 0x7f01000d +int anim bottom_out 0x7f01000e +int anim btn_checkbox_to_checked_box_inner_merged_animation 0x7f01000f +int anim btn_checkbox_to_checked_box_outer_merged_animation 0x7f010010 +int anim btn_checkbox_to_checked_icon_null_animation 0x7f010011 +int anim btn_checkbox_to_unchecked_box_inner_merged_animation 0x7f010012 +int anim btn_checkbox_to_unchecked_check_path_merged_animation 0x7f010013 +int anim btn_checkbox_to_unchecked_icon_null_animation 0x7f010014 +int anim btn_radio_to_off_mtrl_dot_group_animation 0x7f010015 +int anim btn_radio_to_off_mtrl_ring_outer_animation 0x7f010016 +int anim btn_radio_to_off_mtrl_ring_outer_path_animation 0x7f010017 +int anim btn_radio_to_on_mtrl_dot_group_animation 0x7f010018 +int anim btn_radio_to_on_mtrl_ring_outer_animation 0x7f010019 +int anim btn_radio_to_on_mtrl_ring_outer_path_animation 0x7f01001a +int anim cycle_7_1 0x7f01001b +int anim design_bottom_sheet_slide_in 0x7f01001c +int anim design_bottom_sheet_slide_out 0x7f01001d +int anim design_snackbar_in 0x7f01001e +int anim design_snackbar_out 0x7f01001f +int anim fragment_fast_out_extra_slow_in 0x7f010020 +int anim leak_canary_enter_alpha 0x7f010021 +int anim leak_canary_enter_backward 0x7f010022 +int anim leak_canary_enter_forward 0x7f010023 +int anim leak_canary_exit_alpha 0x7f010024 +int anim leak_canary_exit_backward 0x7f010025 +int anim leak_canary_exit_forward 0x7f010026 +int anim left_in 0x7f010027 +int anim left_out 0x7f010028 +int anim mtrl_bottom_sheet_slide_in 0x7f010029 +int anim mtrl_bottom_sheet_slide_out 0x7f01002a +int anim mtrl_card_lowers_interpolator 0x7f01002b +int anim push_left_in 0x7f01002c +int anim right_in 0x7f01002d +int anim right_out 0x7f01002e +int anim shake 0x7f01002f +int anim slide_top_to_bottom 0x7f010030 +int anim tooltip_enter 0x7f010031 +int anim tooltip_exit 0x7f010032 +int anim top_in 0x7f010033 +int anim top_out 0x7f010034 +int anim v2x_unlike_heart_scale_ani_vr 0x7f010035 +int animator design_appbar_state_list_animator 0x7f020001 +int animator design_fab_hide_motion_spec 0x7f020002 +int animator design_fab_show_motion_spec 0x7f020003 +int animator fragment_close_enter 0x7f020004 +int animator fragment_close_exit 0x7f020005 +int animator fragment_fade_enter 0x7f020006 +int animator fragment_fade_exit 0x7f020007 +int animator fragment_open_enter 0x7f020008 +int animator fragment_open_exit 0x7f020009 +int animator linear_indeterminate_line1_head_interpolator 0x7f02000a +int animator linear_indeterminate_line1_tail_interpolator 0x7f02000b +int animator linear_indeterminate_line2_head_interpolator 0x7f02000c +int animator linear_indeterminate_line2_tail_interpolator 0x7f02000d +int animator mtrl_btn_state_list_anim 0x7f02000e +int animator mtrl_btn_unelevated_state_list_anim 0x7f02000f +int animator mtrl_card_state_list_anim 0x7f020010 +int animator mtrl_chip_state_list_anim 0x7f020011 +int animator mtrl_extended_fab_change_size_collapse_motion_spec 0x7f020012 +int animator mtrl_extended_fab_change_size_expand_motion_spec 0x7f020013 +int animator mtrl_extended_fab_change_size_motion_spec 0x7f020014 +int animator mtrl_extended_fab_hide_motion_spec 0x7f020015 +int animator mtrl_extended_fab_show_motion_spec 0x7f020016 +int animator mtrl_extended_fab_state_list_animator 0x7f020017 +int animator mtrl_fab_hide_motion_spec 0x7f020018 +int animator mtrl_fab_show_motion_spec 0x7f020019 +int animator mtrl_fab_transformation_sheet_collapse_spec 0x7f02001a +int animator mtrl_fab_transformation_sheet_expand_spec 0x7f02001b +int animator v2x_like_heart_animation 0x7f02001c +int animator v2x_like_heart_animation_vr 0x7f02001d +int animator v2x_unlike_heart_animation 0x7f02001e +int animator v2x_unlike_heart_animation_vr 0x7f02001f +int array ages 0x7f030001 +int array gender 0x7f030002 +int array list_preference 0x7f030003 +int array map_style 0x7f030004 +int array map_style_value 0x7f030005 +int array mapdist 0x7f030006 +int array mapscale 0x7f030007 +int array values_list_preference 0x7f030008 +int attr Back 0x7f040001 +int attr ConstraintRotate 0x7f040002 +int attr Icon 0x7f040003 +int attr OtherHeartImg 0x7f040004 +int attr SharedValue 0x7f040005 +int attr SharedValueId 0x7f040006 +int attr Title 0x7f040007 +int attr actionBarDivider 0x7f040008 +int attr actionBarItemBackground 0x7f040009 +int attr actionBarPopupTheme 0x7f04000a +int attr actionBarSize 0x7f04000b +int attr actionBarSplitStyle 0x7f04000c +int attr actionBarStyle 0x7f04000d +int attr actionBarTabBarStyle 0x7f04000e +int attr actionBarTabStyle 0x7f04000f +int attr actionBarTabTextStyle 0x7f040010 +int attr actionBarTheme 0x7f040011 +int attr actionBarWidgetTheme 0x7f040012 +int attr actionButtonStyle 0x7f040013 +int attr actionDropDownStyle 0x7f040014 +int attr actionLayout 0x7f040015 +int attr actionMenuTextAppearance 0x7f040016 +int attr actionMenuTextColor 0x7f040017 +int attr actionModeBackground 0x7f040018 +int attr actionModeCloseButtonStyle 0x7f040019 +int attr actionModeCloseContentDescription 0x7f04001a +int attr actionModeCloseDrawable 0x7f04001b +int attr actionModeCopyDrawable 0x7f04001c +int attr actionModeCutDrawable 0x7f04001d +int attr actionModeFindDrawable 0x7f04001e +int attr actionModePasteDrawable 0x7f04001f +int attr actionModePopupWindowStyle 0x7f040020 +int attr actionModeSelectAllDrawable 0x7f040021 +int attr actionModeShareDrawable 0x7f040022 +int attr actionModeSplitBackground 0x7f040023 +int attr actionModeStyle 0x7f040024 +int attr actionModeTheme 0x7f040025 +int attr actionModeWebSearchDrawable 0x7f040026 +int attr actionOverflowButtonStyle 0x7f040027 +int attr actionOverflowMenuStyle 0x7f040028 +int attr actionProviderClass 0x7f040029 +int attr actionTextColorAlpha 0x7f04002a +int attr actionViewClass 0x7f04002b +int attr activityChooserViewStyle 0x7f04002c +int attr actualImageResource 0x7f04002d +int attr actualImageScaleType 0x7f04002e +int attr actualImageUri 0x7f04002f +int attr ad_marker_color 0x7f040030 +int attr ad_marker_width 0x7f040031 +int attr alertDialogButtonGroupStyle 0x7f040032 +int attr alertDialogCenterButtons 0x7f040033 +int attr alertDialogStyle 0x7f040034 +int attr alertDialogTheme 0x7f040035 +int attr alignContent 0x7f040036 +int attr alignItems 0x7f040037 +int attr allowStacking 0x7f040038 +int attr alpha 0x7f040039 +int attr alphabeticModifiers 0x7f04003a +int attr altSrc 0x7f04003b +int attr animateCircleAngleTo 0x7f04003c +int attr animateRelativeTo 0x7f04003d +int attr animate_relativeTo 0x7f04003e +int attr animationMode 0x7f04003f +int attr appBarLayoutStyle 0x7f040040 +int attr applyMotionScene 0x7f040041 +int attr arcMode 0x7f040042 +int attr arrowHeadLength 0x7f040043 +int attr arrowShaftLength 0x7f040044 +int attr attributeName 0x7f040045 +int attr autoCompleteMode 0x7f040046 +int attr autoCompleteTextViewStyle 0x7f040047 +int attr autoSizeMaxTextSize 0x7f040048 +int attr autoSizeMinTextSize 0x7f040049 +int attr autoSizePresetSizes 0x7f04004a +int attr autoSizeStepGranularity 0x7f04004b +int attr autoSizeTextType 0x7f04004c +int attr autoTransition 0x7f04004d +int attr backColor 0x7f04004e +int attr backWidth 0x7f04004f +int attr background 0x7f040050 +int attr backgroundColor 0x7f040051 +int attr backgroundImage 0x7f040052 +int attr backgroundInsetBottom 0x7f040053 +int attr backgroundInsetEnd 0x7f040054 +int attr backgroundInsetStart 0x7f040055 +int attr backgroundInsetTop 0x7f040056 +int attr backgroundOverlayColorAlpha 0x7f040057 +int attr backgroundSplit 0x7f040058 +int attr backgroundStacked 0x7f040059 +int attr backgroundTint 0x7f04005a +int attr backgroundTintMode 0x7f04005b +int attr badgeGravity 0x7f04005c +int attr badgeStyle 0x7f04005d +int attr badgeTextColor 0x7f04005e +int attr barLength 0x7f04005f +int attr bar_height 0x7f040060 +int attr barrierAllowsGoneWidgets 0x7f040061 +int attr barrierDirection 0x7f040062 +int attr barrierMargin 0x7f040063 +int attr behavior_autoHide 0x7f040064 +int attr behavior_autoShrink 0x7f040065 +int attr behavior_draggable 0x7f040066 +int attr behavior_expandedOffset 0x7f040067 +int attr behavior_fitToContents 0x7f040068 +int attr behavior_halfExpandedRatio 0x7f040069 +int attr behavior_hideable 0x7f04006a +int attr behavior_overlapTop 0x7f04006b +int attr behavior_peekHeight 0x7f04006c +int attr behavior_saveFlags 0x7f04006d +int attr behavior_skipCollapsed 0x7f04006e +int attr blendSrc 0x7f04006f +int attr borderRound 0x7f040070 +int attr borderRoundPercent 0x7f040071 +int attr borderWidth 0x7f040072 +int attr borderlessButtonStyle 0x7f040073 +int attr bottomAppBarStyle 0x7f040074 +int attr bottomNavigationStyle 0x7f040075 +int attr bottomSheetDialogTheme 0x7f040076 +int attr bottomSheetStyle 0x7f040077 +int attr boxBackgroundColor 0x7f040078 +int attr boxBackgroundMode 0x7f040079 +int attr boxCollapsedPaddingTop 0x7f04007a +int attr boxCornerRadiusBottomEnd 0x7f04007b +int attr boxCornerRadiusBottomStart 0x7f04007c +int attr boxCornerRadiusTopEnd 0x7f04007d +int attr boxCornerRadiusTopStart 0x7f04007e +int attr boxStrokeColor 0x7f04007f +int attr boxStrokeErrorColor 0x7f040080 +int attr boxStrokeWidth 0x7f040081 +int attr boxStrokeWidthFocused 0x7f040082 +int attr brightness 0x7f040083 +int attr btmText 0x7f040084 +int attr btmTextSize 0x7f040085 +int attr buffered_color 0x7f040086 +int attr buttonBarButtonStyle 0x7f040087 +int attr buttonBarNegativeButtonStyle 0x7f040088 +int attr buttonBarNeutralButtonStyle 0x7f040089 +int attr buttonBarPositiveButtonStyle 0x7f04008a +int attr buttonBarStyle 0x7f04008b +int attr buttonCompat 0x7f04008c +int attr buttonGravity 0x7f04008d +int attr buttonIconDimen 0x7f04008e +int attr buttonPanelSideLayout 0x7f04008f +int attr buttonStyle 0x7f040090 +int attr buttonStyleSmall 0x7f040091 +int attr buttonTint 0x7f040092 +int attr buttonTintMode 0x7f040093 +int attr camera_id 0x7f040094 +int attr cardBackgroundColor 0x7f040095 +int attr cardCornerRadius 0x7f040096 +int attr cardElevation 0x7f040097 +int attr cardForegroundColor 0x7f040098 +int attr cardMaxElevation 0x7f040099 +int attr cardPreventCornerOverlap 0x7f04009a +int attr cardUseCompatPadding 0x7f04009b +int attr cardViewStyle 0x7f04009c +int attr carousel_backwardTransition 0x7f04009d +int attr carousel_emptyViewsBehavior 0x7f04009e +int attr carousel_firstView 0x7f04009f +int attr carousel_forwardTransition 0x7f0400a0 +int attr carousel_infinite 0x7f0400a1 +int attr carousel_nextState 0x7f0400a2 +int attr carousel_previousState 0x7f0400a3 +int attr carousel_touchUpMode 0x7f0400a4 +int attr carousel_touchUp_dampeningFactor 0x7f0400a5 +int attr carousel_touchUp_velocityThreshold 0x7f0400a6 +int attr chainUseRtl 0x7f0400a7 +int attr checkboxStyle 0x7f0400a8 +int attr checkedButton 0x7f0400a9 +int attr checkedChip 0x7f0400aa +int attr checkedIcon 0x7f0400ab +int attr checkedIconEnabled 0x7f0400ac +int attr checkedIconMargin 0x7f0400ad +int attr checkedIconSize 0x7f0400ae +int attr checkedIconTint 0x7f0400af +int attr checkedIconVisible 0x7f0400b0 +int attr checkedTextViewStyle 0x7f0400b1 +int attr chipBackgroundColor 0x7f0400b2 +int attr chipCornerRadius 0x7f0400b3 +int attr chipEndPadding 0x7f0400b4 +int attr chipGroupStyle 0x7f0400b5 +int attr chipIcon 0x7f0400b6 +int attr chipIconEnabled 0x7f0400b7 +int attr chipIconSize 0x7f0400b8 +int attr chipIconTint 0x7f0400b9 +int attr chipIconVisible 0x7f0400ba +int attr chipMinHeight 0x7f0400bb +int attr chipMinTouchTargetSize 0x7f0400bc +int attr chipSpacing 0x7f0400bd +int attr chipSpacingHorizontal 0x7f0400be +int attr chipSpacingVertical 0x7f0400bf +int attr chipStandaloneStyle 0x7f0400c0 +int attr chipStartPadding 0x7f0400c1 +int attr chipStrokeColor 0x7f0400c2 +int attr chipStrokeWidth 0x7f0400c3 +int attr chipStyle 0x7f0400c4 +int attr chipSurfaceColor 0x7f0400c5 +int attr circleRadius 0x7f0400c6 +int attr circularProgressIndicatorStyle 0x7f0400c7 +int attr circularflow_angles 0x7f0400c8 +int attr circularflow_defaultAngle 0x7f0400c9 +int attr circularflow_defaultRadius 0x7f0400ca +int attr circularflow_radiusInDP 0x7f0400cb +int attr circularflow_viewCenter 0x7f0400cc +int attr civ_border_color 0x7f0400cd +int attr civ_border_overlay 0x7f0400ce +int attr civ_border_width 0x7f0400cf +int attr civ_circle_background_color 0x7f0400d0 +int attr civ_fill_color 0x7f0400d1 +int attr clearsTag 0x7f0400d2 +int attr clickAction 0x7f0400d3 +int attr clickable 0x7f0400d4 +int attr clockFaceBackgroundColor 0x7f0400d5 +int attr clockHandColor 0x7f0400d6 +int attr clockIcon 0x7f0400d7 +int attr clockNumberTextColor 0x7f0400d8 +int attr closeIcon 0x7f0400d9 +int attr closeIconEnabled 0x7f0400da +int attr closeIconEndPadding 0x7f0400db +int attr closeIconSize 0x7f0400dc +int attr closeIconStartPadding 0x7f0400dd +int attr closeIconTint 0x7f0400de +int attr closeIconVisible 0x7f0400df +int attr closeItemLayout 0x7f0400e0 +int attr collapseContentDescription 0x7f0400e1 +int attr collapseIcon 0x7f0400e2 +int attr collapsedSize 0x7f0400e3 +int attr collapsedTitleGravity 0x7f0400e4 +int attr collapsedTitleTextAppearance 0x7f0400e5 +int attr collapsingToolbarLayoutStyle 0x7f0400e6 +int attr color 0x7f0400e7 +int attr colorAccent 0x7f0400e8 +int attr colorBackgroundFloating 0x7f0400e9 +int attr colorButtonNormal 0x7f0400ea +int attr colorControlActivated 0x7f0400eb +int attr colorControlHighlight 0x7f0400ec +int attr colorControlNormal 0x7f0400ed +int attr colorError 0x7f0400ee +int attr colorOnBackground 0x7f0400ef +int attr colorOnError 0x7f0400f0 +int attr colorOnPrimary 0x7f0400f1 +int attr colorOnPrimarySurface 0x7f0400f2 +int attr colorOnSecondary 0x7f0400f3 +int attr colorOnSurface 0x7f0400f4 +int attr colorPrimary 0x7f0400f5 +int attr colorPrimaryDark 0x7f0400f6 +int attr colorPrimarySurface 0x7f0400f7 +int attr colorPrimaryVariant 0x7f0400f8 +int attr colorSecondary 0x7f0400f9 +int attr colorSecondaryVariant 0x7f0400fa +int attr colorSurface 0x7f0400fb +int attr colorSwitchThumbNormal 0x7f0400fc +int attr commitIcon 0x7f0400fd +int attr constraintSet 0x7f0400fe +int attr constraintSetEnd 0x7f0400ff +int attr constraintSetStart 0x7f040100 +int attr constraint_referenced_ids 0x7f040101 +int attr constraint_referenced_tags 0x7f040102 +int attr constraints 0x7f040103 +int attr content 0x7f040104 +int attr contentDescription 0x7f040105 +int attr contentInsetEnd 0x7f040106 +int attr contentInsetEndWithActions 0x7f040107 +int attr contentInsetLeft 0x7f040108 +int attr contentInsetRight 0x7f040109 +int attr contentInsetStart 0x7f04010a +int attr contentInsetStartWithNavigation 0x7f04010b +int attr contentPadding 0x7f04010c +int attr contentPaddingBottom 0x7f04010d +int attr contentPaddingEnd 0x7f04010e +int attr contentPaddingLeft 0x7f04010f +int attr contentPaddingRight 0x7f040110 +int attr contentPaddingStart 0x7f040111 +int attr contentPaddingTop 0x7f040112 +int attr contentScrim 0x7f040113 +int attr contrast 0x7f040114 +int attr controlBackground 0x7f040115 +int attr controller_layout_id 0x7f040116 +int attr coordinatorLayoutStyle 0x7f040117 +int attr cornerFamily 0x7f040118 +int attr cornerFamilyBottomLeft 0x7f040119 +int attr cornerFamilyBottomRight 0x7f04011a +int attr cornerFamilyTopLeft 0x7f04011b +int attr cornerFamilyTopRight 0x7f04011c +int attr cornerRadius 0x7f04011d +int attr cornerSize 0x7f04011e +int attr cornerSizeBottomLeft 0x7f04011f +int attr cornerSizeBottomRight 0x7f040120 +int attr cornerSizeTopLeft 0x7f040121 +int attr cornerSizeTopRight 0x7f040122 +int attr counterEnabled 0x7f040123 +int attr counterMaxLength 0x7f040124 +int attr counterOverflowTextAppearance 0x7f040125 +int attr counterOverflowTextColor 0x7f040126 +int attr counterTextAppearance 0x7f040127 +int attr counterTextColor 0x7f040128 +int attr cpd_inAnimDuration 0x7f040129 +int attr cpd_inStepColors 0x7f04012a +int attr cpd_inStepPercent 0x7f04012b +int attr cpd_initialAngle 0x7f04012c +int attr cpd_keepDuration 0x7f04012d +int attr cpd_maxSweepAngle 0x7f04012e +int attr cpd_minSweepAngle 0x7f04012f +int attr cpd_outAnimDuration 0x7f040130 +int attr cpd_padding 0x7f040131 +int attr cpd_reverse 0x7f040132 +int attr cpd_rotateDuration 0x7f040133 +int attr cpd_strokeColor 0x7f040134 +int attr cpd_strokeColors 0x7f040135 +int attr cpd_strokeSecondaryColor 0x7f040136 +int attr cpd_strokeSize 0x7f040137 +int attr cpd_transformDuration 0x7f040138 +int attr cpd_transformInterpolator 0x7f040139 +int attr crossfade 0x7f04013a +int attr currentState 0x7f04013b +int attr curveFit 0x7f04013c +int attr customBoolean 0x7f04013d +int attr customColorDrawableValue 0x7f04013e +int attr customColorValue 0x7f04013f +int attr customDimension 0x7f040140 +int attr customFloatValue 0x7f040141 +int attr customIntegerValue 0x7f040142 +int attr customNavigationLayout 0x7f040143 +int attr customPixelDimension 0x7f040144 +int attr customReference 0x7f040145 +int attr customStringValue 0x7f040146 +int attr dayInvalidStyle 0x7f040147 +int attr daySelectedStyle 0x7f040148 +int attr dayStyle 0x7f040149 +int attr dayTodayStyle 0x7f04014a +int attr defaultDuration 0x7f04014b +int attr defaultQueryHint 0x7f04014c +int attr defaultState 0x7f04014d +int attr default_artwork 0x7f04014e +int attr deltaPolarAngle 0x7f04014f +int attr deltaPolarRadius 0x7f040150 +int attr deriveConstraintsFrom 0x7f040151 +int attr dialogCornerRadius 0x7f040152 +int attr dialogPreferredPadding 0x7f040153 +int attr dialogTheme 0x7f040154 +int attr disappearedScale 0x7f040155 +int attr displayOptions 0x7f040156 +int attr divider 0x7f040157 +int attr dividerDrawable 0x7f040158 +int attr dividerDrawableHorizontal 0x7f040159 +int attr dividerDrawableVertical 0x7f04015a +int attr dividerHorizontal 0x7f04015b +int attr dividerPadding 0x7f04015c +int attr dividerVertical 0x7f04015d +int attr download_bg_line_color 0x7f04015e +int attr download_bg_line_width 0x7f04015f +int attr download_line_color 0x7f040160 +int attr download_line_width 0x7f040161 +int attr download_text_color 0x7f040162 +int attr download_text_size 0x7f040163 +int attr dragDirection 0x7f040164 +int attr dragScale 0x7f040165 +int attr dragThreshold 0x7f040166 +int attr drawPath 0x7f040167 +int attr drawableBottomCompat 0x7f040168 +int attr drawableEndCompat 0x7f040169 +int attr drawableLeftCompat 0x7f04016a +int attr drawableRightCompat 0x7f04016b +int attr drawableSize 0x7f04016c +int attr drawableStartCompat 0x7f04016d +int attr drawableTint 0x7f04016e +int attr drawableTintMode 0x7f04016f +int attr drawableTopCompat 0x7f040170 +int attr drawerArrowStyle 0x7f040171 +int attr dropDownListViewStyle 0x7f040172 +int attr dropdownListPreferredItemHeight 0x7f040173 +int attr dsv_orientation 0x7f040174 +int attr duration 0x7f040175 +int attr editTextBackground 0x7f040176 +int attr editTextColor 0x7f040177 +int attr editTextStyle 0x7f040178 +int attr elenmentCount 0x7f040179 +int attr elenmentEmpty 0x7f04017a +int attr elenmentFill 0x7f04017b +int attr elenmentHarf 0x7f04017c +int attr elenmentHeight 0x7f04017d +int attr elenmentPadding 0x7f04017e +int attr elenmentStep 0x7f04017f +int attr elenmentWidth 0x7f040180 +int attr elevation 0x7f040181 +int attr elevationOverlayColor 0x7f040182 +int attr elevationOverlayEnabled 0x7f040183 +int attr enableEdgeToEdge 0x7f040184 +int attr endIconCheckable 0x7f040185 +int attr endIconContentDescription 0x7f040186 +int attr endIconDrawable 0x7f040187 +int attr endIconMode 0x7f040188 +int attr endIconTint 0x7f040189 +int attr endIconTintMode 0x7f04018a +int attr enforceMaterialTheme 0x7f04018b +int attr enforceTextAppearance 0x7f04018c +int attr ensureMinTouchTargetSize 0x7f04018d +int attr errorContentDescription 0x7f04018e +int attr errorEnabled 0x7f04018f +int attr errorIconDrawable 0x7f040190 +int attr errorIconTint 0x7f040191 +int attr errorIconTintMode 0x7f040192 +int attr errorTextAppearance 0x7f040193 +int attr errorTextColor 0x7f040194 +int attr expandActivityOverflowButtonDrawable 0x7f040195 +int attr expanded 0x7f040196 +int attr expandedHintEnabled 0x7f040197 +int attr expandedTitleGravity 0x7f040198 +int attr expandedTitleMargin 0x7f040199 +int attr expandedTitleMarginBottom 0x7f04019a +int attr expandedTitleMarginEnd 0x7f04019b +int attr expandedTitleMarginStart 0x7f04019c +int attr expandedTitleMarginTop 0x7f04019d +int attr expandedTitleTextAppearance 0x7f04019e +int attr extendMotionSpec 0x7f04019f +int attr extendedFloatingActionButtonStyle 0x7f0401a0 +int attr extraMultilineHeightEnabled 0x7f0401a1 +int attr fabAlignmentMode 0x7f0401a2 +int attr fabAnimationMode 0x7f0401a3 +int attr fabCradleMargin 0x7f0401a4 +int attr fabCradleRoundedCornerRadius 0x7f0401a5 +int attr fabCradleVerticalOffset 0x7f0401a6 +int attr fabCustomSize 0x7f0401a7 +int attr fabSize 0x7f0401a8 +int attr fadeDuration 0x7f0401a9 +int attr failureImage 0x7f0401aa +int attr failureImageScaleType 0x7f0401ab +int attr fastScrollEnabled 0x7f0401ac +int attr fastScrollHorizontalThumbDrawable 0x7f0401ad +int attr fastScrollHorizontalTrackDrawable 0x7f0401ae +int attr fastScrollVerticalThumbDrawable 0x7f0401af +int attr fastScrollVerticalTrackDrawable 0x7f0401b0 +int attr fastforward_increment 0x7f0401b1 +int attr firstBaselineToTopHeight 0x7f0401b2 +int attr flexDirection 0x7f0401b3 +int attr flexWrap 0x7f0401b4 +int attr floatingActionButtonStyle 0x7f0401b5 +int attr flow_firstHorizontalBias 0x7f0401b6 +int attr flow_firstHorizontalStyle 0x7f0401b7 +int attr flow_firstVerticalBias 0x7f0401b8 +int attr flow_firstVerticalStyle 0x7f0401b9 +int attr flow_horizontalAlign 0x7f0401ba +int attr flow_horizontalBias 0x7f0401bb +int attr flow_horizontalGap 0x7f0401bc +int attr flow_horizontalStyle 0x7f0401bd +int attr flow_lastHorizontalBias 0x7f0401be +int attr flow_lastHorizontalStyle 0x7f0401bf +int attr flow_lastVerticalBias 0x7f0401c0 +int attr flow_lastVerticalStyle 0x7f0401c1 +int attr flow_maxElementsWrap 0x7f0401c2 +int attr flow_padding 0x7f0401c3 +int attr flow_verticalAlign 0x7f0401c4 +int attr flow_verticalBias 0x7f0401c5 +int attr flow_verticalGap 0x7f0401c6 +int attr flow_verticalStyle 0x7f0401c7 +int attr flow_wrapMode 0x7f0401c8 +int attr font 0x7f0401c9 +int attr fontFamily 0x7f0401ca +int attr fontProviderAuthority 0x7f0401cb +int attr fontProviderCerts 0x7f0401cc +int attr fontProviderFetchStrategy 0x7f0401cd +int attr fontProviderFetchTimeout 0x7f0401ce +int attr fontProviderPackage 0x7f0401cf +int attr fontProviderQuery 0x7f0401d0 +int attr fontProviderSystemFontFamily 0x7f0401d1 +int attr fontStyle 0x7f0401d2 +int attr fontVariationSettings 0x7f0401d3 +int attr fontWeight 0x7f0401d4 +int attr forceApplySystemWindowInsetTop 0x7f0401d5 +int attr foregroundInsidePadding 0x7f0401d6 +int attr framePosition 0x7f0401d7 +int attr gapBetweenBars 0x7f0401d8 +int attr gestureInsetBottomIgnored 0x7f0401d9 +int attr goIcon 0x7f0401da +int attr haloColor 0x7f0401db +int attr haloRadius 0x7f0401dc +int attr headerLayout 0x7f0401dd +int attr height 0x7f0401de +int attr helperText 0x7f0401df +int attr helperTextEnabled 0x7f0401e0 +int attr helperTextTextAppearance 0x7f0401e1 +int attr helperTextTextColor 0x7f0401e2 +int attr hideAnimationBehavior 0x7f0401e3 +int attr hideMotionSpec 0x7f0401e4 +int attr hideOnContentScroll 0x7f0401e5 +int attr hideOnScroll 0x7f0401e6 +int attr hide_on_touch 0x7f0401e7 +int attr hintAnimationEnabled 0x7f0401e8 +int attr hintEnabled 0x7f0401e9 +int attr hintTextAppearance 0x7f0401ea +int attr hintTextColor 0x7f0401eb +int attr homeAsUpIndicator 0x7f0401ec +int attr homeLayout 0x7f0401ed +int attr horizontalOffset 0x7f0401ee +int attr hoveredFocusedTranslationZ 0x7f0401ef +int attr icon 0x7f0401f0 +int attr iconEndPadding 0x7f0401f1 +int attr iconGravity 0x7f0401f2 +int attr iconPadding 0x7f0401f3 +int attr iconSize 0x7f0401f4 +int attr iconStartPadding 0x7f0401f5 +int attr iconTint 0x7f0401f6 +int attr iconTintMode 0x7f0401f7 +int attr iconifiedByDefault 0x7f0401f8 +int attr ifTagNotSet 0x7f0401f9 +int attr ifTagSet 0x7f0401fa +int attr imageButtonStyle 0x7f0401fb +int attr imagePanX 0x7f0401fc +int attr imagePanY 0x7f0401fd +int attr imageRotate 0x7f0401fe +int attr imageZoom 0x7f0401ff +int attr indeterminateAnimationType 0x7f040200 +int attr indeterminateProgressStyle 0x7f040201 +int attr indicatorColor 0x7f040202 +int attr indicatorDirectionCircular 0x7f040203 +int attr indicatorDirectionLinear 0x7f040204 +int attr indicatorInset 0x7f040205 +int attr indicatorSize 0x7f040206 +int attr initialActivityCount 0x7f040207 +int attr insetForeground 0x7f040208 +int attr isLightTheme 0x7f040209 +int attr isMaterialTheme 0x7f04020a +int attr itemBackground 0x7f04020b +int attr itemFillColor 0x7f04020c +int attr itemHorizontalPadding 0x7f04020d +int attr itemHorizontalTranslationEnabled 0x7f04020e +int attr itemIconPadding 0x7f04020f +int attr itemIconSize 0x7f040210 +int attr itemIconTint 0x7f040211 +int attr itemMaxLines 0x7f040212 +int attr itemPadding 0x7f040213 +int attr itemRippleColor 0x7f040214 +int attr itemShapeAppearance 0x7f040215 +int attr itemShapeAppearanceOverlay 0x7f040216 +int attr itemShapeFillColor 0x7f040217 +int attr itemShapeInsetBottom 0x7f040218 +int attr itemShapeInsetEnd 0x7f040219 +int attr itemShapeInsetStart 0x7f04021a +int attr itemShapeInsetTop 0x7f04021b +int attr itemSpacing 0x7f04021c +int attr itemStrokeColor 0x7f04021d +int attr itemStrokeWidth 0x7f04021e +int attr itemTextAppearance 0x7f04021f +int attr itemTextAppearanceActive 0x7f040220 +int attr itemTextAppearanceInactive 0x7f040221 +int attr itemTextColor 0x7f040222 +int attr justifyContent 0x7f040223 +int attr keyBackground 0x7f040224 +int attr keyPositionType 0x7f040225 +int attr keyTextSize 0x7f040226 +int attr keyTextStyle 0x7f040227 +int attr keyboardIcon 0x7f040228 +int attr keylines 0x7f040229 +int attr labelBehavior 0x7f04022a +int attr labelStyle 0x7f04022b +int attr labelVisibilityMode 0x7f04022c +int attr lastBaselineToBottomHeight 0x7f04022d +int attr layout 0x7f04022e +int attr layoutDescription 0x7f04022f +int attr layoutDuringTransition 0x7f040230 +int attr layoutManager 0x7f040231 +int attr layout_alignSelf 0x7f040232 +int attr layout_anchor 0x7f040233 +int attr layout_anchorGravity 0x7f040234 +int attr layout_behavior 0x7f040235 +int attr layout_collapseMode 0x7f040236 +int attr layout_collapseParallaxMultiplier 0x7f040237 +int attr layout_constrainedHeight 0x7f040238 +int attr layout_constrainedWidth 0x7f040239 +int attr layout_constraintBaseline_creator 0x7f04023a +int attr layout_constraintBaseline_toBaselineOf 0x7f04023b +int attr layout_constraintBaseline_toBottomOf 0x7f04023c +int attr layout_constraintBaseline_toTopOf 0x7f04023d +int attr layout_constraintBottom_creator 0x7f04023e +int attr layout_constraintBottom_toBottomOf 0x7f04023f +int attr layout_constraintBottom_toTopOf 0x7f040240 +int attr layout_constraintCircle 0x7f040241 +int attr layout_constraintCircleAngle 0x7f040242 +int attr layout_constraintCircleRadius 0x7f040243 +int attr layout_constraintDimensionRatio 0x7f040244 +int attr layout_constraintEnd_toEndOf 0x7f040245 +int attr layout_constraintEnd_toStartOf 0x7f040246 +int attr layout_constraintGuide_begin 0x7f040247 +int attr layout_constraintGuide_end 0x7f040248 +int attr layout_constraintGuide_percent 0x7f040249 +int attr layout_constraintHeight 0x7f04024a +int attr layout_constraintHeight_default 0x7f04024b +int attr layout_constraintHeight_max 0x7f04024c +int attr layout_constraintHeight_min 0x7f04024d +int attr layout_constraintHeight_percent 0x7f04024e +int attr layout_constraintHorizontal_bias 0x7f04024f +int attr layout_constraintHorizontal_chainStyle 0x7f040250 +int attr layout_constraintHorizontal_weight 0x7f040251 +int attr layout_constraintLeft_creator 0x7f040252 +int attr layout_constraintLeft_toLeftOf 0x7f040253 +int attr layout_constraintLeft_toRightOf 0x7f040254 +int attr layout_constraintRight_creator 0x7f040255 +int attr layout_constraintRight_toLeftOf 0x7f040256 +int attr layout_constraintRight_toRightOf 0x7f040257 +int attr layout_constraintStart_toEndOf 0x7f040258 +int attr layout_constraintStart_toStartOf 0x7f040259 +int attr layout_constraintTag 0x7f04025a +int attr layout_constraintTop_creator 0x7f04025b +int attr layout_constraintTop_toBottomOf 0x7f04025c +int attr layout_constraintTop_toTopOf 0x7f04025d +int attr layout_constraintVertical_bias 0x7f04025e +int attr layout_constraintVertical_chainStyle 0x7f04025f +int attr layout_constraintVertical_weight 0x7f040260 +int attr layout_constraintWidth 0x7f040261 +int attr layout_constraintWidth_default 0x7f040262 +int attr layout_constraintWidth_max 0x7f040263 +int attr layout_constraintWidth_min 0x7f040264 +int attr layout_constraintWidth_percent 0x7f040265 +int attr layout_dodgeInsetEdges 0x7f040266 +int attr layout_editor_absoluteX 0x7f040267 +int attr layout_editor_absoluteY 0x7f040268 +int attr layout_flexBasisPercent 0x7f040269 +int attr layout_flexGrow 0x7f04026a +int attr layout_flexShrink 0x7f04026b +int attr layout_goneMarginBaseline 0x7f04026c +int attr layout_goneMarginBottom 0x7f04026d +int attr layout_goneMarginEnd 0x7f04026e +int attr layout_goneMarginLeft 0x7f04026f +int attr layout_goneMarginRight 0x7f040270 +int attr layout_goneMarginStart 0x7f040271 +int attr layout_goneMarginTop 0x7f040272 +int attr layout_insetEdge 0x7f040273 +int attr layout_keyline 0x7f040274 +int attr layout_marginBaseline 0x7f040275 +int attr layout_maxHeight 0x7f040276 +int attr layout_maxWidth 0x7f040277 +int attr layout_minHeight 0x7f040278 +int attr layout_minWidth 0x7f040279 +int attr layout_optimizationLevel 0x7f04027a +int attr layout_order 0x7f04027b +int attr layout_scrollFlags 0x7f04027c +int attr layout_scrollInterpolator 0x7f04027d +int attr layout_wrapBefore 0x7f04027e +int attr layout_wrapBehaviorInParent 0x7f04027f +int attr leak_canary_plus_color 0x7f040280 +int attr liftOnScroll 0x7f040281 +int attr liftOnScrollTargetViewId 0x7f040282 +int attr limitBoundsTo 0x7f040283 +int attr lineHeight 0x7f040284 +int attr lineSpacing 0x7f040285 +int attr linearProgressIndicatorStyle 0x7f040286 +int attr listChoiceBackgroundIndicator 0x7f040287 +int attr listChoiceIndicatorMultipleAnimated 0x7f040288 +int attr listChoiceIndicatorSingleAnimated 0x7f040289 +int attr listDividerAlertDialog 0x7f04028a +int attr listItemLayout 0x7f04028b +int attr listLayout 0x7f04028c +int attr listMenuViewStyle 0x7f04028d +int attr listPopupWindowStyle 0x7f04028e +int attr listPreferredItemHeight 0x7f04028f +int attr listPreferredItemHeightLarge 0x7f040290 +int attr listPreferredItemHeightSmall 0x7f040291 +int attr listPreferredItemPaddingEnd 0x7f040292 +int attr listPreferredItemPaddingLeft 0x7f040293 +int attr listPreferredItemPaddingRight 0x7f040294 +int attr listPreferredItemPaddingStart 0x7f040295 +int attr logo 0x7f040296 +int attr logoDescription 0x7f040297 +int attr maskColor 0x7f040298 +int attr materialAlertDialogBodyTextStyle 0x7f040299 +int attr materialAlertDialogTheme 0x7f04029a +int attr materialAlertDialogTitleIconStyle 0x7f04029b +int attr materialAlertDialogTitlePanelStyle 0x7f04029c +int attr materialAlertDialogTitleTextStyle 0x7f04029d +int attr materialButtonOutlinedStyle 0x7f04029e +int attr materialButtonStyle 0x7f04029f +int attr materialButtonToggleGroupStyle 0x7f0402a0 +int attr materialCalendarDay 0x7f0402a1 +int attr materialCalendarFullscreenTheme 0x7f0402a2 +int attr materialCalendarHeaderCancelButton 0x7f0402a3 +int attr materialCalendarHeaderConfirmButton 0x7f0402a4 +int attr materialCalendarHeaderDivider 0x7f0402a5 +int attr materialCalendarHeaderLayout 0x7f0402a6 +int attr materialCalendarHeaderSelection 0x7f0402a7 +int attr materialCalendarHeaderTitle 0x7f0402a8 +int attr materialCalendarHeaderToggleButton 0x7f0402a9 +int attr materialCalendarMonth 0x7f0402aa +int attr materialCalendarMonthNavigationButton 0x7f0402ab +int attr materialCalendarStyle 0x7f0402ac +int attr materialCalendarTheme 0x7f0402ad +int attr materialCalendarYearNavigationButton 0x7f0402ae +int attr materialCardViewStyle 0x7f0402af +int attr materialCircleRadius 0x7f0402b0 +int attr materialClockStyle 0x7f0402b1 +int attr materialThemeOverlay 0x7f0402b2 +int attr materialTimePickerStyle 0x7f0402b3 +int attr materialTimePickerTheme 0x7f0402b4 +int attr maxAcceleration 0x7f0402b5 +int attr maxActionInlineWidth 0x7f0402b6 +int attr maxButtonHeight 0x7f0402b7 +int attr maxCharacterCount 0x7f0402b8 +int attr maxHeight 0x7f0402b9 +int attr maxImageSize 0x7f0402ba +int attr maxLine 0x7f0402bb +int attr maxLines 0x7f0402bc +int attr maxVelocity 0x7f0402bd +int attr maxWidth 0x7f0402be +int attr measureWithLargestChild 0x7f0402bf +int attr menu 0x7f0402c0 +int attr menuGravity 0x7f0402c1 +int attr methodName 0x7f0402c2 +int attr minHeight 0x7f0402c3 +int attr minHideDelay 0x7f0402c4 +int attr minSeparation 0x7f0402c5 +int attr minTouchTargetSize 0x7f0402c6 +int attr minWidth 0x7f0402c7 +int attr miv_blurRadius 0x7f0402c8 +int attr miv_borderColor 0x7f0402c9 +int attr miv_bottomLeftRadius 0x7f0402ca +int attr miv_bottomRightRadius 0x7f0402cb +int attr miv_failureHolder 0x7f0402cc +int attr miv_isBlur 0x7f0402cd +int attr miv_overlayImageId 0x7f0402ce +int attr miv_placeHolder 0x7f0402cf +int attr miv_radius 0x7f0402d0 +int attr miv_shape 0x7f0402d1 +int attr miv_shapeBorderWidth 0x7f0402d2 +int attr miv_topLeftRadius 0x7f0402d3 +int attr miv_topRightRadius 0x7f0402d4 +int attr mock_diagonalsColor 0x7f0402d5 +int attr mock_label 0x7f0402d6 +int attr mock_labelBackgroundColor 0x7f0402d7 +int attr mock_labelColor 0x7f0402d8 +int attr mock_showDiagonals 0x7f0402d9 +int attr mock_showLabel 0x7f0402da +int attr motionDebug 0x7f0402db +int attr motionDurationLong1 0x7f0402dc +int attr motionDurationLong2 0x7f0402dd +int attr motionDurationMedium1 0x7f0402de +int attr motionDurationMedium2 0x7f0402df +int attr motionDurationShort1 0x7f0402e0 +int attr motionDurationShort2 0x7f0402e1 +int attr motionEasingAccelerated 0x7f0402e2 +int attr motionEasingDecelerated 0x7f0402e3 +int attr motionEasingEmphasized 0x7f0402e4 +int attr motionEasingLinear 0x7f0402e5 +int attr motionEasingStandard 0x7f0402e6 +int attr motionEffect_alpha 0x7f0402e7 +int attr motionEffect_end 0x7f0402e8 +int attr motionEffect_move 0x7f0402e9 +int attr motionEffect_start 0x7f0402ea +int attr motionEffect_strict 0x7f0402eb +int attr motionEffect_translationX 0x7f0402ec +int attr motionEffect_translationY 0x7f0402ed +int attr motionEffect_viewTransition 0x7f0402ee +int attr motionInterpolator 0x7f0402ef +int attr motionPath 0x7f0402f0 +int attr motionPathRotate 0x7f0402f1 +int attr motionProgress 0x7f0402f2 +int attr motionStagger 0x7f0402f3 +int attr motionTarget 0x7f0402f4 +int attr motion_postLayoutCollision 0x7f0402f5 +int attr motion_triggerOnCollision 0x7f0402f6 +int attr moveWhenScrollAtTop 0x7f0402f7 +int attr multiChoiceItemLayout 0x7f0402f8 +int attr navigationContentDescription 0x7f0402f9 +int attr navigationIcon 0x7f0402fa +int attr navigationIconTint 0x7f0402fb +int attr navigationMode 0x7f0402fc +int attr navigationRailStyle 0x7f0402fd +int attr navigationViewStyle 0x7f0402fe +int attr nestedScrollFlags 0x7f0402ff +int attr nestedScrollable 0x7f040300 +int attr number 0x7f040301 +int attr numericModifiers 0x7f040302 +int attr onCross 0x7f040303 +int attr onHide 0x7f040304 +int attr onNegativeCross 0x7f040305 +int attr onPositiveCross 0x7f040306 +int attr onShow 0x7f040307 +int attr onStateTransition 0x7f040308 +int attr onTouchUp 0x7f040309 +int attr overlapAnchor 0x7f04030a +int attr overlay 0x7f04030b +int attr overlayImage 0x7f04030c +int attr paddingBottomNoButtons 0x7f04030d +int attr paddingBottomSystemWindowInsets 0x7f04030e +int attr paddingEnd 0x7f04030f +int attr paddingLeftSystemWindowInsets 0x7f040310 +int attr paddingRightSystemWindowInsets 0x7f040311 +int attr paddingStart 0x7f040312 +int attr paddingTopNoTitle 0x7f040313 +int attr paddingTopSystemWindowInsets 0x7f040314 +int attr panelBackground 0x7f040315 +int attr panelMenuListTheme 0x7f040316 +int attr panelMenuListWidth 0x7f040317 +int attr passwordToggleContentDescription 0x7f040318 +int attr passwordToggleDrawable 0x7f040319 +int attr passwordToggleEnabled 0x7f04031a +int attr passwordToggleTint 0x7f04031b +int attr passwordToggleTintMode 0x7f04031c +int attr pathMotionArc 0x7f04031d +int attr path_percent 0x7f04031e +int attr percentHeight 0x7f04031f +int attr percentWidth 0x7f040320 +int attr percentX 0x7f040321 +int attr percentY 0x7f040322 +int attr perpendicularPath_percent 0x7f040323 +int attr pivotAnchor 0x7f040324 +int attr placeholderImage 0x7f040325 +int attr placeholderImageScaleType 0x7f040326 +int attr placeholderText 0x7f040327 +int attr placeholderTextAppearance 0x7f040328 +int attr placeholderTextColor 0x7f040329 +int attr placeholder_emptyVisibility 0x7f04032a +int attr play_bg_line_color 0x7f04032b +int attr play_bg_line_width 0x7f04032c +int attr play_line_color 0x7f04032d +int attr play_line_width 0x7f04032e +int attr played_color 0x7f04032f +int attr player_layout_id 0x7f040330 +int attr polarRelativeTo 0x7f040331 +int attr popupMenuBackground 0x7f040332 +int attr popupMenuStyle 0x7f040333 +int attr popupTheme 0x7f040334 +int attr popupWindowStyle 0x7f040335 +int attr prefixText 0x7f040336 +int attr prefixTextAppearance 0x7f040337 +int attr prefixTextColor 0x7f040338 +int attr preserveIconSpacing 0x7f040339 +int attr pressedStateOverlayImage 0x7f04033a +int attr pressedTranslationZ 0x7f04033b +int attr progColor 0x7f04033c +int attr progFirstColor 0x7f04033d +int attr progStartColor 0x7f04033e +int attr progWidth 0x7f04033f +int attr progress 0x7f040340 +int attr progressBarAutoRotateInterval 0x7f040341 +int attr progressBarImage 0x7f040342 +int attr progressBarImageScaleType 0x7f040343 +int attr progressBarPadding 0x7f040344 +int attr progressBarStyle 0x7f040345 +int attr pv_progressMode 0x7f040346 +int attr quantizeMotionInterpolator 0x7f040347 +int attr quantizeMotionPhase 0x7f040348 +int attr quantizeMotionSteps 0x7f040349 +int attr queryBackground 0x7f04034a +int attr queryHint 0x7f04034b +int attr radioButtonStyle 0x7f04034c +int attr rangeFillColor 0x7f04034d +int attr ratingBarStyle 0x7f04034e +int attr ratingBarStyleIndicator 0x7f04034f +int attr ratingBarStyleSmall 0x7f040350 +int attr reactiveGuide_animateChange 0x7f040351 +int attr reactiveGuide_applyToAllConstraintSets 0x7f040352 +int attr reactiveGuide_applyToConstraintSet 0x7f040353 +int attr reactiveGuide_valueId 0x7f040354 +int attr realtimeBlurRadius 0x7f040355 +int attr realtimeDownsampleFactor 0x7f040356 +int attr realtimeOverlayColor 0x7f040357 +int attr recyclerViewStyle 0x7f040358 +int attr region_heightLessThan 0x7f040359 +int attr region_heightMoreThan 0x7f04035a +int attr region_widthLessThan 0x7f04035b +int attr region_widthMoreThan 0x7f04035c +int attr resize_mode 0x7f04035d +int attr retryImage 0x7f04035e +int attr retryImageScaleType 0x7f04035f +int attr reverseLayout 0x7f040360 +int attr rewind_increment 0x7f040361 +int attr rippleColor 0x7f040362 +int attr riv_border_color 0x7f040363 +int attr riv_border_width 0x7f040364 +int attr riv_corner_radius 0x7f040365 +int attr riv_corner_radius_bottom_left 0x7f040366 +int attr riv_corner_radius_bottom_right 0x7f040367 +int attr riv_corner_radius_top_left 0x7f040368 +int attr riv_corner_radius_top_right 0x7f040369 +int attr riv_mutate_background 0x7f04036a +int attr riv_oval 0x7f04036b +int attr riv_tile_Mode 0x7f04036c +int attr riv_tile_Mode_x 0x7f04036d +int attr riv_tile_Mode_y 0x7f04036e +int attr rotationCenterId 0x7f04036f +int attr round 0x7f040370 +int attr roundAsCircle 0x7f040371 +int attr roundBottomEnd 0x7f040372 +int attr roundBottomLeft 0x7f040373 +int attr roundBottomRight 0x7f040374 +int attr roundBottomStart 0x7f040375 +int attr roundLayoutRadius 0x7f040376 +int attr roundPercent 0x7f040377 +int attr roundTopEnd 0x7f040378 +int attr roundTopLeft 0x7f040379 +int attr roundTopRight 0x7f04037a +int attr roundTopStart 0x7f04037b +int attr roundWithOverlayColor 0x7f04037c +int attr roundedCornerRadius 0x7f04037d +int attr roundingBorderColor 0x7f04037e +int attr roundingBorderPadding 0x7f04037f +int attr roundingBorderWidth 0x7f040380 +int attr saturation 0x7f040381 +int attr scaleFromTextSize 0x7f040382 +int attr scanline 0x7f040383 +int attr scrimAnimationDuration 0x7f040384 +int attr scrimBackground 0x7f040385 +int attr scrimVisibleHeightTrigger 0x7f040386 +int attr scrubber_color 0x7f040387 +int attr scrubber_disabled_size 0x7f040388 +int attr scrubber_dragged_size 0x7f040389 +int attr scrubber_enabled_size 0x7f04038a +int attr searchHintIcon 0x7f04038b +int attr searchIcon 0x7f04038c +int attr searchViewStyle 0x7f04038d +int attr seekBarStyle 0x7f04038e +int attr selectableItemBackground 0x7f04038f +int attr selectableItemBackgroundBorderless 0x7f040390 +int attr selectionRequired 0x7f040391 +int attr selectorSize 0x7f040392 +int attr setsTag 0x7f040393 +int attr shapeAppearance 0x7f040394 +int attr shapeAppearanceLargeComponent 0x7f040395 +int attr shapeAppearanceMediumComponent 0x7f040396 +int attr shapeAppearanceOverlay 0x7f040397 +int attr shapeAppearanceSmallComponent 0x7f040398 +int attr showAnimationBehavior 0x7f040399 +int attr showAsAction 0x7f04039a +int attr showDelay 0x7f04039b +int attr showDivider 0x7f04039c +int attr showDividerHorizontal 0x7f04039d +int attr showDividerVertical 0x7f04039e +int attr showDividers 0x7f04039f +int attr showGrayBack 0x7f0403a0 +int attr showMotionSpec 0x7f0403a1 +int attr showPaths 0x7f0403a2 +int attr showRectLine 0x7f0403a3 +int attr showText 0x7f0403a4 +int attr showTitle 0x7f0403a5 +int attr show_fps 0x7f0403a6 +int attr show_timeout 0x7f0403a7 +int attr shrinkMotionSpec 0x7f0403a8 +int attr singleChoiceItemLayout 0x7f0403a9 +int attr singleLine 0x7f0403aa +int attr singleSelection 0x7f0403ab +int attr sizePercent 0x7f0403ac +int attr sliderStyle 0x7f0403ad +int attr snackbarButtonStyle 0x7f0403ae +int attr snackbarStyle 0x7f0403af +int attr snackbarTextViewStyle 0x7f0403b0 +int attr spanCount 0x7f0403b1 +int attr spinBars 0x7f0403b2 +int attr spinnerDropDownItemStyle 0x7f0403b3 +int attr spinnerStyle 0x7f0403b4 +int attr splitTrack 0x7f0403b5 +int attr springBoundary 0x7f0403b6 +int attr springDamping 0x7f0403b7 +int attr springMass 0x7f0403b8 +int attr springStiffness 0x7f0403b9 +int attr springStopThreshold 0x7f0403ba +int attr srcCompat 0x7f0403bb +int attr stackFromEnd 0x7f0403bc +int attr staggered 0x7f0403bd +int attr startIconCheckable 0x7f0403be +int attr startIconContentDescription 0x7f0403bf +int attr startIconDrawable 0x7f0403c0 +int attr startIconTint 0x7f0403c1 +int attr startIconTintMode 0x7f0403c2 +int attr state_above_anchor 0x7f0403c3 +int attr state_collapsed 0x7f0403c4 +int attr state_collapsible 0x7f0403c5 +int attr state_dragged 0x7f0403c6 +int attr state_liftable 0x7f0403c7 +int attr state_lifted 0x7f0403c8 +int attr statusBarBackground 0x7f0403c9 +int attr statusBarForeground 0x7f0403ca +int attr statusBarScrim 0x7f0403cb +int attr stepSize 0x7f0403cc +int attr strokeColor 0x7f0403cd +int attr strokeWidth 0x7f0403ce +int attr subMenuArrow 0x7f0403cf +int attr submitBackground 0x7f0403d0 +int attr subtitle 0x7f0403d1 +int attr subtitleCentered 0x7f0403d2 +int attr subtitleTextAppearance 0x7f0403d3 +int attr subtitleTextColor 0x7f0403d4 +int attr subtitleTextStyle 0x7f0403d5 +int attr suffixText 0x7f0403d6 +int attr suffixTextAppearance 0x7f0403d7 +int attr suffixTextColor 0x7f0403d8 +int attr suggestionRowLayout 0x7f0403d9 +int attr surface_type 0x7f0403da +int attr switchMinWidth 0x7f0403db +int attr switchPadding 0x7f0403dc +int attr switchStyle 0x7f0403dd +int attr switchTextAppearance 0x7f0403de +int attr tabBackground 0x7f0403df +int attr tabContentStart 0x7f0403e0 +int attr tabGravity 0x7f0403e1 +int attr tabIconTint 0x7f0403e2 +int attr tabIconTintMode 0x7f0403e3 +int attr tabIndicator 0x7f0403e4 +int attr tabIndicatorAnimationDuration 0x7f0403e5 +int attr tabIndicatorAnimationMode 0x7f0403e6 +int attr tabIndicatorColor 0x7f0403e7 +int attr tabIndicatorFullWidth 0x7f0403e8 +int attr tabIndicatorGravity 0x7f0403e9 +int attr tabIndicatorHeight 0x7f0403ea +int attr tabInlineLabel 0x7f0403eb +int attr tabMaxWidth 0x7f0403ec +int attr tabMinWidth 0x7f0403ed +int attr tabMode 0x7f0403ee +int attr tabPadding 0x7f0403ef +int attr tabPaddingBottom 0x7f0403f0 +int attr tabPaddingEnd 0x7f0403f1 +int attr tabPaddingStart 0x7f0403f2 +int attr tabPaddingTop 0x7f0403f3 +int attr tabRippleColor 0x7f0403f4 +int attr tabSelectedTextColor 0x7f0403f5 +int attr tabStyle 0x7f0403f6 +int attr tabTextAppearance 0x7f0403f7 +int attr tabTextColor 0x7f0403f8 +int attr tabUnboundedRipple 0x7f0403f9 +int attr targetId 0x7f0403fa +int attr telltales_tailColor 0x7f0403fb +int attr telltales_tailScale 0x7f0403fc +int attr telltales_velocityMode 0x7f0403fd +int attr textAllCaps 0x7f0403fe +int attr textAppearanceBody1 0x7f0403ff +int attr textAppearanceBody2 0x7f040400 +int attr textAppearanceButton 0x7f040401 +int attr textAppearanceCaption 0x7f040402 +int attr textAppearanceHeadline1 0x7f040403 +int attr textAppearanceHeadline2 0x7f040404 +int attr textAppearanceHeadline3 0x7f040405 +int attr textAppearanceHeadline4 0x7f040406 +int attr textAppearanceHeadline5 0x7f040407 +int attr textAppearanceHeadline6 0x7f040408 +int attr textAppearanceLargePopupMenu 0x7f040409 +int attr textAppearanceLineHeightEnabled 0x7f04040a +int attr textAppearanceListItem 0x7f04040b +int attr textAppearanceListItemSecondary 0x7f04040c +int attr textAppearanceListItemSmall 0x7f04040d +int attr textAppearanceOverline 0x7f04040e +int attr textAppearancePopupMenuHeader 0x7f04040f +int attr textAppearanceSearchResultSubtitle 0x7f040410 +int attr textAppearanceSearchResultTitle 0x7f040411 +int attr textAppearanceSmallPopupMenu 0x7f040412 +int attr textAppearanceSubtitle1 0x7f040413 +int attr textAppearanceSubtitle2 0x7f040414 +int attr textBackground 0x7f040415 +int attr textBackgroundPanX 0x7f040416 +int attr textBackgroundPanY 0x7f040417 +int attr textBackgroundRotate 0x7f040418 +int attr textBackgroundZoom 0x7f040419 +int attr textColorAlertDialogListItem 0x7f04041a +int attr textColorSearchUrl 0x7f04041b +int attr textEndPadding 0x7f04041c +int attr textFillColor 0x7f04041d +int attr textInputLayoutFocusedRectEnabled 0x7f04041e +int attr textInputStyle 0x7f04041f +int attr textLocale 0x7f040420 +int attr textOutlineColor 0x7f040421 +int attr textOutlineThickness 0x7f040422 +int attr textPanX 0x7f040423 +int attr textPanY 0x7f040424 +int attr textStartPadding 0x7f040425 +int attr textureBlurFactor 0x7f040426 +int attr textureEffect 0x7f040427 +int attr textureHeight 0x7f040428 +int attr textureWidth 0x7f040429 +int attr theme 0x7f04042a +int attr themeLineHeight 0x7f04042b +int attr thickness 0x7f04042c +int attr thumbColor 0x7f04042d +int attr thumbElevation 0x7f04042e +int attr thumbRadius 0x7f04042f +int attr thumbStrokeColor 0x7f040430 +int attr thumbStrokeWidth 0x7f040431 +int attr thumbTextPadding 0x7f040432 +int attr thumbTint 0x7f040433 +int attr thumbTintMode 0x7f040434 +int attr tickColor 0x7f040435 +int attr tickColorActive 0x7f040436 +int attr tickColorInactive 0x7f040437 +int attr tickMark 0x7f040438 +int attr tickMarkTint 0x7f040439 +int attr tickMarkTintMode 0x7f04043a +int attr tickVisible 0x7f04043b +int attr tint 0x7f04043c +int attr tintMode 0x7f04043d +int attr title 0x7f04043e +int attr titleCentered 0x7f04043f +int attr titleCollapseMode 0x7f040440 +int attr titleEnabled 0x7f040441 +int attr titleMargin 0x7f040442 +int attr titleMarginBottom 0x7f040443 +int attr titleMarginEnd 0x7f040444 +int attr titleMarginStart 0x7f040445 +int attr titleMarginTop 0x7f040446 +int attr titleMargins 0x7f040447 +int attr titleTextAppearance 0x7f040448 +int attr titleTextColor 0x7f040449 +int attr titleTextStyle 0x7f04044a +int attr toolbarId 0x7f04044b +int attr toolbarNavigationButtonStyle 0x7f04044c +int attr toolbarStyle 0x7f04044d +int attr tooltipForegroundColor 0x7f04044e +int attr tooltipFrameBackground 0x7f04044f +int attr tooltipStyle 0x7f040450 +int attr tooltipText 0x7f040451 +int attr topText 0x7f040452 +int attr topTextSize 0x7f040453 +int attr touchAnchorId 0x7f040454 +int attr touchAnchorSide 0x7f040455 +int attr touchRegionId 0x7f040456 +int attr touch_target_height 0x7f040457 +int attr track 0x7f040458 +int attr trackColor 0x7f040459 +int attr trackColorActive 0x7f04045a +int attr trackColorInactive 0x7f04045b +int attr trackCornerRadius 0x7f04045c +int attr trackHeight 0x7f04045d +int attr trackThickness 0x7f04045e +int attr trackTint 0x7f04045f +int attr trackTintMode 0x7f040460 +int attr transformPivotTarget 0x7f040461 +int attr transitionDisable 0x7f040462 +int attr transitionEasing 0x7f040463 +int attr transitionFlags 0x7f040464 +int attr transitionPathRotate 0x7f040465 +int attr transitionShapeAppearance 0x7f040466 +int attr triAngleColor 0x7f040467 +int attr triAngleLength 0x7f040468 +int attr triAngleWidth 0x7f040469 +int attr triggerId 0x7f04046a +int attr triggerReceiver 0x7f04046b +int attr triggerSlack 0x7f04046c +int attr ttcIndex 0x7f04046d +int attr unplayed_color 0x7f04046e +int attr upDuration 0x7f04046f +int attr useCompatPadding 0x7f040470 +int attr useMaterialThemeColors 0x7f040471 +int attr use_artwork 0x7f040472 +int attr use_controller 0x7f040473 +int attr values 0x7f040474 +int attr verticalOffset 0x7f040475 +int attr viewAspectRatio 0x7f040476 +int attr viewInflaterClass 0x7f040477 +int attr viewTransitionMode 0x7f040478 +int attr viewTransitionOnCross 0x7f040479 +int attr viewTransitionOnNegativeCross 0x7f04047a +int attr viewTransitionOnPositiveCross 0x7f04047b +int attr visibilityMode 0x7f04047c +int attr voiceIcon 0x7f04047d +int attr warmth 0x7f04047e +int attr waveDecay 0x7f04047f +int attr waveOffset 0x7f040480 +int attr wavePeriod 0x7f040481 +int attr wavePhase 0x7f040482 +int attr waveShape 0x7f040483 +int attr waveVariesBy 0x7f040484 +int attr windowActionBar 0x7f040485 +int attr windowActionBarOverlay 0x7f040486 +int attr windowActionModeOverlay 0x7f040487 +int attr windowFixedHeightMajor 0x7f040488 +int attr windowFixedHeightMinor 0x7f040489 +int attr windowFixedWidthMajor 0x7f04048a +int attr windowFixedWidthMinor 0x7f04048b +int attr windowMinWidthMajor 0x7f04048c +int attr windowMinWidthMinor 0x7f04048d +int attr windowNoTitle 0x7f04048e +int attr xRadius 0x7f04048f +int attr yRadius 0x7f040490 +int attr yearSelectedStyle 0x7f040491 +int attr yearStyle 0x7f040492 +int attr yearTodayStyle 0x7f040493 +int bool abc_action_bar_embed_tabs 0x7f050001 +int bool abc_allow_stacked_button_bar 0x7f050002 +int bool abc_config_actionMenuItemAllCaps 0x7f050003 +int bool abc_config_closeDialogWhenTouchOutside 0x7f050004 +int bool abc_config_showMenuShortcutsWhenKeyboardPresent 0x7f050005 +int bool leak_canary_add_dynamic_shortcut 0x7f050006 +int bool leak_canary_add_launcher_icon 0x7f050007 +int bool leak_canary_allow_in_non_debuggable_build 0x7f050008 +int bool leak_canary_plumber_auto_install 0x7f050009 +int bool leak_canary_watcher_auto_install 0x7f05000a +int bool leak_canary_watcher_watch_dismissed_dialogs 0x7f05000b +int bool mtrl_btn_textappearance_all_caps 0x7f05000c +int color abc_background_cache_hint_selector_material_dark 0x7f060001 +int color abc_background_cache_hint_selector_material_light 0x7f060002 +int color abc_btn_colored_borderless_text_material 0x7f060003 +int color abc_btn_colored_text_material 0x7f060004 +int color abc_color_highlight_material 0x7f060005 +int color abc_decor_view_status_guard 0x7f060006 +int color abc_decor_view_status_guard_light 0x7f060007 +int color abc_hint_foreground_material_dark 0x7f060008 +int color abc_hint_foreground_material_light 0x7f060009 +int color abc_input_method_navigation_guard 0x7f06000a +int color abc_primary_text_disable_only_material_dark 0x7f06000b +int color abc_primary_text_disable_only_material_light 0x7f06000c +int color abc_primary_text_material_dark 0x7f06000d +int color abc_primary_text_material_light 0x7f06000e +int color abc_search_url_text 0x7f06000f +int color abc_search_url_text_normal 0x7f060010 +int color abc_search_url_text_pressed 0x7f060011 +int color abc_search_url_text_selected 0x7f060012 +int color abc_secondary_text_material_dark 0x7f060013 +int color abc_secondary_text_material_light 0x7f060014 +int color abc_tint_btn_checkable 0x7f060015 +int color abc_tint_default 0x7f060016 +int color abc_tint_edittext 0x7f060017 +int color abc_tint_seek_thumb 0x7f060018 +int color abc_tint_spinner 0x7f060019 +int color abc_tint_switch_track 0x7f06001a +int color accent_material_dark 0x7f06001b +int color accent_material_light 0x7f06001c +int color androidx_core_ripple_material_light 0x7f06001d +int color androidx_core_secondary_text_default_material_light 0x7f06001e +int color arrow_color 0x7f06001f +int color background_color 0x7f060020 +int color background_debug 0x7f060021 +int color background_error 0x7f060022 +int color background_floating_material_dark 0x7f060023 +int color background_floating_material_light 0x7f060024 +int color background_info 0x7f060025 +int color background_light_dark 0x7f060026 +int color background_material_dark 0x7f060027 +int color background_material_light 0x7f060028 +int color background_verbose 0x7f060029 +int color background_warn 0x7f06002a +int color background_wtf 0x7f06002b +int color bgSearchList 0x7f06002c +int color bg_gray_common_page 0x7f06002d +int color black 0x7f06002e +int color black_overlay 0x7f06002f +int color blue 0x7f060030 +int color blue_back_color 0x7f060031 +int color blue_check_color 0x7f060032 +int color bottom_container_bg 0x7f060033 +int color bright_foreground_disabled_material_dark 0x7f060034 +int color bright_foreground_disabled_material_light 0x7f060035 +int color bright_foreground_inverse_material_dark 0x7f060036 +int color bright_foreground_inverse_material_light 0x7f060037 +int color bright_foreground_material_dark 0x7f060038 +int color bright_foreground_material_light 0x7f060039 +int color burlywood 0x7f06003a +int color button_material_dark 0x7f06003b +int color button_material_light 0x7f06003c +int color cardview_dark_background 0x7f06003d +int color cardview_light_background 0x7f06003e +int color cardview_shadow_end_color 0x7f06003f +int color cardview_shadow_start_color 0x7f060040 +int color check_icon_error_color 0x7f060041 +int color check_info_position_line_color 0x7f060042 +int color check_info_shape_color 0x7f060043 +int color check_info_title_back 0x7f060044 +int color check_list_item_back 0x7f060045 +int color check_little_btn 0x7f060046 +int color check_little_btn_green 0x7f060047 +int color check_little_btn_solid 0x7f060048 +int color check_little_btn_solid_green 0x7f060049 +int color check_tip_error_color 0x7f06004a +int color checkbox_themeable_attribute_color 0x7f06004b +int color colorAccent 0x7f06004c +int color colorControlActivated 0x7f06004d +int color colorPrimary 0x7f06004e +int color colorPrimaryDark 0x7f06004f +int color colorSplashBackground 0x7f060050 +int color colorToolbarText 0x7f060051 +int color colorTransparent 0x7f060052 +int color color_000000 0x7f060053 +int color color_0099dd 0x7f060054 +int color color_8F0005 0x7f060055 +int color color_B3FFFFFF 0x7f060056 +int color color_FF0006 0x7f060057 +int color color_FF2966EC 0x7f060058 +int color color_FFA7B6F0 0x7f060059 +int color color_FFFFFF 0x7f06005a +int color defaultDivisionLine 0x7f06005b +int color defaultHintText 0x7f06005c +int color defaultLinkText 0x7f06005d +int color defaultMainText 0x7f06005e +int color defaulttextcolor 0x7f06005f +int color design_bottom_navigation_shadow_color 0x7f060060 +int color design_box_stroke_color 0x7f060061 +int color design_dark_default_color_background 0x7f060062 +int color design_dark_default_color_error 0x7f060063 +int color design_dark_default_color_on_background 0x7f060064 +int color design_dark_default_color_on_error 0x7f060065 +int color design_dark_default_color_on_primary 0x7f060066 +int color design_dark_default_color_on_secondary 0x7f060067 +int color design_dark_default_color_on_surface 0x7f060068 +int color design_dark_default_color_primary 0x7f060069 +int color design_dark_default_color_primary_dark 0x7f06006a +int color design_dark_default_color_primary_variant 0x7f06006b +int color design_dark_default_color_secondary 0x7f06006c +int color design_dark_default_color_secondary_variant 0x7f06006d +int color design_dark_default_color_surface 0x7f06006e +int color design_default_color_background 0x7f06006f +int color design_default_color_error 0x7f060070 +int color design_default_color_on_background 0x7f060071 +int color design_default_color_on_error 0x7f060072 +int color design_default_color_on_primary 0x7f060073 +int color design_default_color_on_secondary 0x7f060074 +int color design_default_color_on_surface 0x7f060075 +int color design_default_color_primary 0x7f060076 +int color design_default_color_primary_dark 0x7f060077 +int color design_default_color_primary_variant 0x7f060078 +int color design_default_color_secondary 0x7f060079 +int color design_default_color_secondary_variant 0x7f06007a +int color design_default_color_surface 0x7f06007b +int color design_error 0x7f06007c +int color design_fab_shadow_end_color 0x7f06007d +int color design_fab_shadow_mid_color 0x7f06007e +int color design_fab_shadow_start_color 0x7f06007f +int color design_fab_stroke_end_inner_color 0x7f060080 +int color design_fab_stroke_end_outer_color 0x7f060081 +int color design_fab_stroke_top_inner_color 0x7f060082 +int color design_fab_stroke_top_outer_color 0x7f060083 +int color design_icon_tint 0x7f060084 +int color design_snackbar_background_color 0x7f060085 +int color dialog_bg_color 0x7f060086 +int color dim_foreground_disabled_material_dark 0x7f060087 +int color dim_foreground_disabled_material_light 0x7f060088 +int color dim_foreground_material_dark 0x7f060089 +int color dim_foreground_material_light 0x7f06008a +int color error_color_material 0x7f06008b +int color error_color_material_dark 0x7f06008c +int color error_color_material_light 0x7f06008d +int color exo_edit_mode_background_color 0x7f06008e +int color focused 0x7f06008f +int color foreground_debug 0x7f060090 +int color foreground_error 0x7f060091 +int color foreground_info 0x7f060092 +int color foreground_material_dark 0x7f060093 +int color foreground_material_light 0x7f060094 +int color foreground_verbose 0x7f060095 +int color foreground_warn 0x7f060096 +int color foreground_wtf 0x7f060097 +int color gray_light 0x7f060098 +int color gray_light_d 0x7f060099 +int color green 0x7f06009a +int color highlighted_text_material_dark 0x7f06009b +int color highlighted_text_material_light 0x7f06009c +int color leak_canary_background_color 0x7f06009d +int color leak_canary_bottom_menu 0x7f06009e +int color leak_canary_class_name 0x7f06009f +int color leak_canary_count_default 0x7f0600a0 +int color leak_canary_count_new 0x7f0600a1 +int color leak_canary_count_new_border 0x7f0600a2 +int color leak_canary_count_text 0x7f0600a3 +int color leak_canary_extra 0x7f0600a4 +int color leak_canary_gray 0x7f0600a5 +int color leak_canary_gray_3f 0x7f0600a6 +int color leak_canary_gray_6f 0x7f0600a7 +int color leak_canary_gray_darkest 0x7f0600a8 +int color leak_canary_gray_darkest_25p 0x7f0600a9 +int color leak_canary_gray_darkest_40p 0x7f0600aa +int color leak_canary_gray_light 0x7f0600ab +int color leak_canary_gray_lightest 0x7f0600ac +int color leak_canary_heap_app 0x7f0600ad +int color leak_canary_heap_boolean_array 0x7f0600ae +int color leak_canary_heap_byte_array 0x7f0600af +int color leak_canary_heap_char_array 0x7f0600b0 +int color leak_canary_heap_class_dump 0x7f0600b1 +int color leak_canary_heap_double_array 0x7f0600b2 +int color leak_canary_heap_float_array 0x7f0600b3 +int color leak_canary_heap_hprof_string 0x7f0600b4 +int color leak_canary_heap_image 0x7f0600b5 +int color leak_canary_heap_instance 0x7f0600b6 +int color leak_canary_heap_instance_string 0x7f0600b7 +int color leak_canary_heap_int_array 0x7f0600b8 +int color leak_canary_heap_load_class 0x7f0600b9 +int color leak_canary_heap_long_array 0x7f0600ba +int color leak_canary_heap_object_array 0x7f0600bb +int color leak_canary_heap_other 0x7f0600bc +int color leak_canary_heap_short_array 0x7f0600bd +int color leak_canary_heap_stack_trace 0x7f0600be +int color leak_canary_heap_zygote 0x7f0600bf +int color leak_canary_help 0x7f0600c0 +int color leak_canary_leak 0x7f0600c1 +int color leak_canary_reference 0x7f0600c2 +int color leak_canary_white 0x7f0600c3 +int color leak_canary_yellow 0x7f0600c4 +int color leak_canary_yellow_button 0x7f0600c5 +int color leak_canary_yellow_button_pressed 0x7f0600c6 +int color light_g 0x7f0600c7 +int color live_video_background_color 0x7f0600c8 +int color live_video_progress_bar_loading_color 0x7f0600c9 +int color material_blue_grey_800 0x7f0600ca +int color material_blue_grey_900 0x7f0600cb +int color material_blue_grey_950 0x7f0600cc +int color material_cursor_color 0x7f0600cd +int color material_deep_teal_200 0x7f0600ce +int color material_deep_teal_500 0x7f0600cf +int color material_grey_100 0x7f0600d0 +int color material_grey_300 0x7f0600d1 +int color material_grey_50 0x7f0600d2 +int color material_grey_600 0x7f0600d3 +int color material_grey_800 0x7f0600d4 +int color material_grey_850 0x7f0600d5 +int color material_grey_900 0x7f0600d6 +int color material_on_background_disabled 0x7f0600d7 +int color material_on_background_emphasis_high_type 0x7f0600d8 +int color material_on_background_emphasis_medium 0x7f0600d9 +int color material_on_primary_disabled 0x7f0600da +int color material_on_primary_emphasis_high_type 0x7f0600db +int color material_on_primary_emphasis_medium 0x7f0600dc +int color material_on_surface_disabled 0x7f0600dd +int color material_on_surface_emphasis_high_type 0x7f0600de +int color material_on_surface_emphasis_medium 0x7f0600df +int color material_on_surface_stroke 0x7f0600e0 +int color material_slider_active_tick_marks_color 0x7f0600e1 +int color material_slider_active_track_color 0x7f0600e2 +int color material_slider_halo_color 0x7f0600e3 +int color material_slider_inactive_tick_marks_color 0x7f0600e4 +int color material_slider_inactive_track_color 0x7f0600e5 +int color material_slider_thumb_color 0x7f0600e6 +int color material_timepicker_button_background 0x7f0600e7 +int color material_timepicker_button_stroke 0x7f0600e8 +int color material_timepicker_clock_text_color 0x7f0600e9 +int color material_timepicker_clockface 0x7f0600ea +int color material_timepicker_modebutton_tint 0x7f0600eb +int color module_carchatting_hawk_eye_status_color 0x7f0600ec +int color module_commons_FFF_333 0x7f0600ed +int color module_commons_dlg_bkg 0x7f0600ee +int color module_commons_wm_dialog_text_textColor 0x7f0600ef +int color module_ext_color_voice_text 0x7f0600f0 +int color module_main_window_background_color 0x7f0600f1 +int color module_mogo_autopilot_status_disable 0x7f0600f2 +int color module_mogo_autopilot_status_enable 0x7f0600f3 +int color module_push_check_color 0x7f0600f4 +int color module_push_check_dialog_bg_color 0x7f0600f5 +int color module_push_item_content_textColor 0x7f0600f6 +int color module_push_item_line_color 0x7f0600f7 +int color module_push_item_time_textColor 0x7f0600f8 +int color module_push_item_title_textColor 0x7f0600f9 +int color module_push_panel_title_textColor 0x7f0600fa +int color module_services_dispatch_affirm_bg 0x7f0600fb +int color module_services_dispatch_bg 0x7f0600fc +int color module_services_dispatch_cars_background 0x7f0600fd +int color module_services_dispatch_cars_cancel 0x7f0600fe +int color module_services_dispatch_cars_count_down_bg 0x7f0600ff +int color module_services_dispatch_cars_count_down_txt 0x7f060100 +int color module_services_dispatch_cars_line 0x7f060101 +int color module_services_dispatch_cars_text_loc 0x7f060102 +int color module_services_remind_background 0x7f060103 +int color module_switch_map_bg 0x7f060104 +int color modules_commons_toast_text_color 0x7f060105 +int color mtrl_bottom_nav_colored_item_tint 0x7f060106 +int color mtrl_bottom_nav_colored_ripple_color 0x7f060107 +int color mtrl_bottom_nav_item_tint 0x7f060108 +int color mtrl_bottom_nav_ripple_color 0x7f060109 +int color mtrl_btn_bg_color_selector 0x7f06010a +int color mtrl_btn_ripple_color 0x7f06010b +int color mtrl_btn_stroke_color_selector 0x7f06010c +int color mtrl_btn_text_btn_bg_color_selector 0x7f06010d +int color mtrl_btn_text_btn_ripple_color 0x7f06010e +int color mtrl_btn_text_color_disabled 0x7f06010f +int color mtrl_btn_text_color_selector 0x7f060110 +int color mtrl_btn_transparent_bg_color 0x7f060111 +int color mtrl_calendar_item_stroke_color 0x7f060112 +int color mtrl_calendar_selected_range 0x7f060113 +int color mtrl_card_view_foreground 0x7f060114 +int color mtrl_card_view_ripple 0x7f060115 +int color mtrl_chip_background_color 0x7f060116 +int color mtrl_chip_close_icon_tint 0x7f060117 +int color mtrl_chip_ripple_color 0x7f060118 +int color mtrl_chip_surface_color 0x7f060119 +int color mtrl_chip_text_color 0x7f06011a +int color mtrl_choice_chip_background_color 0x7f06011b +int color mtrl_choice_chip_ripple_color 0x7f06011c +int color mtrl_choice_chip_text_color 0x7f06011d +int color mtrl_error 0x7f06011e +int color mtrl_fab_bg_color_selector 0x7f06011f +int color mtrl_fab_icon_text_color_selector 0x7f060120 +int color mtrl_fab_ripple_color 0x7f060121 +int color mtrl_filled_background_color 0x7f060122 +int color mtrl_filled_icon_tint 0x7f060123 +int color mtrl_filled_stroke_color 0x7f060124 +int color mtrl_indicator_text_color 0x7f060125 +int color mtrl_navigation_bar_colored_item_tint 0x7f060126 +int color mtrl_navigation_bar_colored_ripple_color 0x7f060127 +int color mtrl_navigation_bar_item_tint 0x7f060128 +int color mtrl_navigation_bar_ripple_color 0x7f060129 +int color mtrl_navigation_item_background_color 0x7f06012a +int color mtrl_navigation_item_icon_tint 0x7f06012b +int color mtrl_navigation_item_text_color 0x7f06012c +int color mtrl_on_primary_text_btn_text_color_selector 0x7f06012d +int color mtrl_on_surface_ripple_color 0x7f06012e +int color mtrl_outlined_icon_tint 0x7f06012f +int color mtrl_outlined_stroke_color 0x7f060130 +int color mtrl_popupmenu_overlay_color 0x7f060131 +int color mtrl_scrim_color 0x7f060132 +int color mtrl_tabs_colored_ripple_color 0x7f060133 +int color mtrl_tabs_icon_color_selector 0x7f060134 +int color mtrl_tabs_icon_color_selector_colored 0x7f060135 +int color mtrl_tabs_legacy_text_color_selector 0x7f060136 +int color mtrl_tabs_ripple_color 0x7f060137 +int color mtrl_text_btn_text_color_selector 0x7f060138 +int color mtrl_textinput_default_box_stroke_color 0x7f060139 +int color mtrl_textinput_disabled_color 0x7f06013a +int color mtrl_textinput_filled_box_default_background_color 0x7f06013b +int color mtrl_textinput_focused_box_stroke_color 0x7f06013c +int color mtrl_textinput_hovered_box_stroke_color 0x7f06013d +int color notice_banner_blue 0x7f06013e +int color notice_blue 0x7f06013f +int color notice_check_dialog_bg_color 0x7f060140 +int color notice_dialog_back 0x7f060141 +int color notice_text_blue 0x7f060142 +int color notice_traffic_line 0x7f060143 +int color notice_video_progressbar_loading_color 0x7f060144 +int color notification_action_color_filter 0x7f060145 +int color notification_icon_bg_color 0x7f060146 +int color notification_material_background_media_default_color 0x7f060147 +int color panel_shadow_shape_color 0x7f060148 +int color possible_result_points 0x7f060149 +int color pressed 0x7f06014a +int color primary_dark_material_dark 0x7f06014b +int color primary_dark_material_light 0x7f06014c +int color primary_material_dark 0x7f06014d +int color primary_material_light 0x7f06014e +int color primary_text_default_material_dark 0x7f06014f +int color primary_text_default_material_light 0x7f060150 +int color primary_text_disabled_material_dark 0x7f060151 +int color primary_text_disabled_material_light 0x7f060152 +int color radiobutton_textcolor 0x7f060153 +int color radiobutton_themeable_attribute_color 0x7f060154 +int color result_points 0x7f060155 +int color result_view 0x7f060156 +int color retangle_color 0x7f060157 +int color ripple_material_dark 0x7f060158 +int color ripple_material_light 0x7f060159 +int color secondary_text_default_material_dark 0x7f06015a +int color secondary_text_default_material_light 0x7f06015b +int color secondary_text_disabled_material_dark 0x7f06015c +int color secondary_text_disabled_material_light 0x7f06015d +int color selected 0x7f06015e +int color selected_list 0x7f06015f +int color selector_white_gray 0x7f060160 +int color share_btn 0x7f060161 +int color share_event_no_more_color 0x7f060162 +int color style_color 0x7f060163 +int color surrounding_card_background 0x7f060164 +int color surrounding_item_bottom_color 0x7f060165 +int color switch_blue 0x7f060166 +int color switch_thumb_disabled_material_dark 0x7f060167 +int color switch_thumb_disabled_material_light 0x7f060168 +int color switch_thumb_material_dark 0x7f060169 +int color switch_thumb_material_light 0x7f06016a +int color switch_thumb_normal_material_dark 0x7f06016b +int color switch_thumb_normal_material_light 0x7f06016c +int color test_mtrl_calendar_day 0x7f06016d +int color test_mtrl_calendar_day_selected 0x7f06016e +int color text_bg_color 0x7f06016f +int color text_btn_color 0x7f060170 +int color text_color 0x7f060171 +int color text_color_bg 0x7f060172 +int color text_list_color 0x7f060173 +int color tooltip_background_dark 0x7f060174 +int color tooltip_background_light 0x7f060175 +int color traf_list_s 0x7f060176 +int color translucent_background 0x7f060177 +int color transparent 0x7f060178 +int color transparent_white_30 0x7f060179 +int color turnlight_bg_color 0x7f06017a +int color unfocused 0x7f06017b +int color unselected 0x7f06017c +int color unselected_list 0x7f06017d +int color v2x_000_FFF 0x7f06017e +int color v2x_555A_F5F5 0x7f06017f +int color v2x_FF3036 0x7f060180 +int color v2x_FFF_2896FF 0x7f060181 +int color v2x_FFF_333 0x7f060182 +int color v2x_FFF_666 0x7f060183 +int color v2x_FFF_999 0x7f060184 +int color v2x_car_for_help_cancel 0x7f060185 +int color v2x_event_play_text 0x7f060186 +int color v2x_ff6163_333 0x7f060187 +int color v2x_item_white 0x7f060188 +int color v2x_line_color 0x7f060189 +int color v2x_share_des_title_color 0x7f06018a +int color v2x_white 0x7f06018b +int color v2x_white_color 0x7f06018c +int color v2x_white_refresh 0x7f06018d +int color version_latest_end_color 0x7f06018e +int color version_latest_start_color 0x7f06018f +int color version_upgradeable_end_color 0x7f060190 +int color version_upgradeable_start_color 0x7f060191 +int color version_upgrading_color 0x7f060192 +int color viewfinder_laser 0x7f060193 +int color viewfinder_mask 0x7f060194 +int color w1 0x7f060195 +int color w2 0x7f060196 +int color w3 0x7f060197 +int color w4 0x7f060198 +int color w5 0x7f060199 +int color white 0x7f06019a +int color white_30 0x7f06019b +int color white_50 0x7f06019c +int color white_argb_0 0x7f06019d +int color widgettext 0x7f06019e +int dimen abc_action_bar_content_inset_material 0x7f070001 +int dimen abc_action_bar_content_inset_with_nav 0x7f070002 +int dimen abc_action_bar_default_height_material 0x7f070003 +int dimen abc_action_bar_default_padding_end_material 0x7f070004 +int dimen abc_action_bar_default_padding_start_material 0x7f070005 +int dimen abc_action_bar_elevation_material 0x7f070006 +int dimen abc_action_bar_icon_vertical_padding_material 0x7f070007 +int dimen abc_action_bar_overflow_padding_end_material 0x7f070008 +int dimen abc_action_bar_overflow_padding_start_material 0x7f070009 +int dimen abc_action_bar_progress_bar_size 0x7f07000a +int dimen abc_action_bar_stacked_max_height 0x7f07000b +int dimen abc_action_bar_stacked_tab_max_width 0x7f07000c +int dimen abc_action_bar_subtitle_bottom_margin_material 0x7f07000d +int dimen abc_action_bar_subtitle_top_margin_material 0x7f07000e +int dimen abc_action_button_min_height_material 0x7f07000f +int dimen abc_action_button_min_width_material 0x7f070010 +int dimen abc_action_button_min_width_overflow_material 0x7f070011 +int dimen abc_alert_dialog_button_bar_height 0x7f070012 +int dimen abc_alert_dialog_button_dimen 0x7f070013 +int dimen abc_button_inset_horizontal_material 0x7f070014 +int dimen abc_button_inset_vertical_material 0x7f070015 +int dimen abc_button_padding_horizontal_material 0x7f070016 +int dimen abc_button_padding_vertical_material 0x7f070017 +int dimen abc_cascading_menus_min_smallest_width 0x7f070018 +int dimen abc_config_prefDialogWidth 0x7f070019 +int dimen abc_control_corner_material 0x7f07001a +int dimen abc_control_inset_material 0x7f07001b +int dimen abc_control_padding_material 0x7f07001c +int dimen abc_dialog_corner_radius_material 0x7f07001d +int dimen abc_dialog_fixed_height_major 0x7f07001e +int dimen abc_dialog_fixed_height_minor 0x7f07001f +int dimen abc_dialog_fixed_width_major 0x7f070020 +int dimen abc_dialog_fixed_width_minor 0x7f070021 +int dimen abc_dialog_list_padding_bottom_no_buttons 0x7f070022 +int dimen abc_dialog_list_padding_top_no_title 0x7f070023 +int dimen abc_dialog_min_width_major 0x7f070024 +int dimen abc_dialog_min_width_minor 0x7f070025 +int dimen abc_dialog_padding_material 0x7f070026 +int dimen abc_dialog_padding_top_material 0x7f070027 +int dimen abc_dialog_title_divider_material 0x7f070028 +int dimen abc_disabled_alpha_material_dark 0x7f070029 +int dimen abc_disabled_alpha_material_light 0x7f07002a +int dimen abc_dropdownitem_icon_width 0x7f07002b +int dimen abc_dropdownitem_text_padding_left 0x7f07002c +int dimen abc_dropdownitem_text_padding_right 0x7f07002d +int dimen abc_edit_text_inset_bottom_material 0x7f07002e +int dimen abc_edit_text_inset_horizontal_material 0x7f07002f +int dimen abc_edit_text_inset_top_material 0x7f070030 +int dimen abc_floating_window_z 0x7f070031 +int dimen abc_list_item_height_large_material 0x7f070032 +int dimen abc_list_item_height_material 0x7f070033 +int dimen abc_list_item_height_small_material 0x7f070034 +int dimen abc_list_item_padding_horizontal_material 0x7f070035 +int dimen abc_panel_menu_list_width 0x7f070036 +int dimen abc_progress_bar_height_material 0x7f070037 +int dimen abc_search_view_preferred_height 0x7f070038 +int dimen abc_search_view_preferred_width 0x7f070039 +int dimen abc_seekbar_track_background_height_material 0x7f07003a +int dimen abc_seekbar_track_progress_height_material 0x7f07003b +int dimen abc_select_dialog_padding_start_material 0x7f07003c +int dimen abc_star_big 0x7f07003d +int dimen abc_star_medium 0x7f07003e +int dimen abc_star_small 0x7f07003f +int dimen abc_switch_padding 0x7f070040 +int dimen abc_text_size_body_1_material 0x7f070041 +int dimen abc_text_size_body_2_material 0x7f070042 +int dimen abc_text_size_button_material 0x7f070043 +int dimen abc_text_size_caption_material 0x7f070044 +int dimen abc_text_size_display_1_material 0x7f070045 +int dimen abc_text_size_display_2_material 0x7f070046 +int dimen abc_text_size_display_3_material 0x7f070047 +int dimen abc_text_size_display_4_material 0x7f070048 +int dimen abc_text_size_headline_material 0x7f070049 +int dimen abc_text_size_large_material 0x7f07004a +int dimen abc_text_size_medium_material 0x7f07004b +int dimen abc_text_size_menu_header_material 0x7f07004c +int dimen abc_text_size_menu_material 0x7f07004d +int dimen abc_text_size_small_material 0x7f07004e +int dimen abc_text_size_subhead_material 0x7f07004f +int dimen abc_text_size_subtitle_material_toolbar 0x7f070050 +int dimen abc_text_size_title_material 0x7f070051 +int dimen abc_text_size_title_material_toolbar 0x7f070052 +int dimen action_bar_size 0x7f070053 +int dimen activity_horizontal_margin 0x7f070054 +int dimen activity_vertical_margin 0x7f070055 +int dimen appcompat_dialog_background_inset 0x7f070056 +int dimen brakelight_height 0x7f070057 +int dimen brakelight_width 0x7f070058 +int dimen brightness_icon 0x7f070059 +int dimen btn_size 0x7f07005a +int dimen button_size 0x7f07005b +int dimen candidate_font_height 0x7f07005c +int dimen candidate_vertical_padding 0x7f07005d +int dimen cards_container_dp_600 0x7f07005e +int dimen cards_container_shadow_dp_margin_top 0x7f07005f +int dimen cardview_compat_inset_shadow 0x7f070060 +int dimen cardview_default_elevation 0x7f070061 +int dimen cardview_default_radius 0x7f070062 +int dimen check_button_left 0x7f070063 +int dimen check_button_text_size 0x7f070064 +int dimen check_hard_ware_image_height 0x7f070065 +int dimen check_hard_ware_image_width 0x7f070066 +int dimen check_height 0x7f070067 +int dimen check_image_bottom 0x7f070068 +int dimen check_image_right 0x7f070069 +int dimen check_item_space_vr 0x7f07006a +int dimen check_little_btn_width 0x7f07006b +int dimen check_luyouqi_start 0x7f07006c +int dimen check_obu_start 0x7f07006d +int dimen check_scan_height 0x7f07006e +int dimen check_scan_width 0x7f07006f +int dimen check_width 0x7f070070 +int dimen clock_face_margin_start 0x7f070071 +int dimen compat_button_inset_horizontal_material 0x7f070072 +int dimen compat_button_inset_vertical_material 0x7f070073 +int dimen compat_button_padding_horizontal_material 0x7f070074 +int dimen compat_button_padding_vertical_material 0x7f070075 +int dimen compat_control_corner_material 0x7f070076 +int dimen compat_notification_large_icon_max_height 0x7f070077 +int dimen compat_notification_large_icon_max_width 0x7f070078 +int dimen def_height 0x7f070079 +int dimen default_dimension 0x7f07007a +int dimen des_text_margin_bottom 0x7f07007b +int dimen design_appbar_elevation 0x7f07007c +int dimen design_bottom_navigation_active_item_max_width 0x7f07007d +int dimen design_bottom_navigation_active_item_min_width 0x7f07007e +int dimen design_bottom_navigation_active_text_size 0x7f07007f +int dimen design_bottom_navigation_elevation 0x7f070080 +int dimen design_bottom_navigation_height 0x7f070081 +int dimen design_bottom_navigation_icon_size 0x7f070082 +int dimen design_bottom_navigation_item_max_width 0x7f070083 +int dimen design_bottom_navigation_item_min_width 0x7f070084 +int dimen design_bottom_navigation_label_padding 0x7f070085 +int dimen design_bottom_navigation_margin 0x7f070086 +int dimen design_bottom_navigation_shadow_height 0x7f070087 +int dimen design_bottom_navigation_text_size 0x7f070088 +int dimen design_bottom_sheet_elevation 0x7f070089 +int dimen design_bottom_sheet_modal_elevation 0x7f07008a +int dimen design_bottom_sheet_peek_height_min 0x7f07008b +int dimen design_fab_border_width 0x7f07008c +int dimen design_fab_elevation 0x7f07008d +int dimen design_fab_image_size 0x7f07008e +int dimen design_fab_size_mini 0x7f07008f +int dimen design_fab_size_normal 0x7f070090 +int dimen design_fab_translation_z_hovered_focused 0x7f070091 +int dimen design_fab_translation_z_pressed 0x7f070092 +int dimen design_navigation_elevation 0x7f070093 +int dimen design_navigation_icon_padding 0x7f070094 +int dimen design_navigation_icon_size 0x7f070095 +int dimen design_navigation_item_horizontal_padding 0x7f070096 +int dimen design_navigation_item_icon_padding 0x7f070097 +int dimen design_navigation_max_width 0x7f070098 +int dimen design_navigation_padding_bottom 0x7f070099 +int dimen design_navigation_separator_vertical_padding 0x7f07009a +int dimen design_snackbar_action_inline_max_width 0x7f07009b +int dimen design_snackbar_action_text_color_alpha 0x7f07009c +int dimen design_snackbar_background_corner_radius 0x7f07009d +int dimen design_snackbar_elevation 0x7f07009e +int dimen design_snackbar_extra_spacing_horizontal 0x7f07009f +int dimen design_snackbar_max_width 0x7f0700a0 +int dimen design_snackbar_min_width 0x7f0700a1 +int dimen design_snackbar_padding_horizontal 0x7f0700a2 +int dimen design_snackbar_padding_vertical 0x7f0700a3 +int dimen design_snackbar_padding_vertical_2lines 0x7f0700a4 +int dimen design_snackbar_text_size 0x7f0700a5 +int dimen design_tab_max_width 0x7f0700a6 +int dimen design_tab_scrollable_min_width 0x7f0700a7 +int dimen design_tab_text_size 0x7f0700a8 +int dimen design_tab_text_size_2line 0x7f0700a9 +int dimen design_textinput_caption_translate_y 0x7f0700aa +int dimen disabled_alpha_material_dark 0x7f0700ab +int dimen disabled_alpha_material_light 0x7f0700ac +int dimen dp_0 0x7f0700ad +int dimen dp_0_1 0x7f0700ae +int dimen dp_0_5 0x7f0700af +int dimen dp_1 0x7f0700b0 +int dimen dp_10 0x7f0700b1 +int dimen dp_100 0x7f0700b2 +int dimen dp_1000 0x7f0700b3 +int dimen dp_101 0x7f0700b4 +int dimen dp_102 0x7f0700b5 +int dimen dp_103 0x7f0700b6 +int dimen dp_104 0x7f0700b7 +int dimen dp_104_5 0x7f0700b8 +int dimen dp_105 0x7f0700b9 +int dimen dp_106 0x7f0700ba +int dimen dp_1066 0x7f0700bb +int dimen dp_107 0x7f0700bc +int dimen dp_108 0x7f0700bd +int dimen dp_109 0x7f0700be +int dimen dp_11 0x7f0700bf +int dimen dp_110 0x7f0700c0 +int dimen dp_111 0x7f0700c1 +int dimen dp_112 0x7f0700c2 +int dimen dp_113 0x7f0700c3 +int dimen dp_114 0x7f0700c4 +int dimen dp_115 0x7f0700c5 +int dimen dp_116 0x7f0700c6 +int dimen dp_117 0x7f0700c7 +int dimen dp_118 0x7f0700c8 +int dimen dp_119 0x7f0700c9 +int dimen dp_12 0x7f0700ca +int dimen dp_120 0x7f0700cb +int dimen dp_121 0x7f0700cc +int dimen dp_122 0x7f0700cd +int dimen dp_123 0x7f0700ce +int dimen dp_124 0x7f0700cf +int dimen dp_125 0x7f0700d0 +int dimen dp_126 0x7f0700d1 +int dimen dp_127 0x7f0700d2 +int dimen dp_128 0x7f0700d3 +int dimen dp_129 0x7f0700d4 +int dimen dp_13 0x7f0700d5 +int dimen dp_130 0x7f0700d6 +int dimen dp_1300 0x7f0700d7 +int dimen dp_131 0x7f0700d8 +int dimen dp_132 0x7f0700d9 +int dimen dp_133 0x7f0700da +int dimen dp_134 0x7f0700db +int dimen dp_134_5 0x7f0700dc +int dimen dp_135 0x7f0700dd +int dimen dp_136 0x7f0700de +int dimen dp_137 0x7f0700df +int dimen dp_138 0x7f0700e0 +int dimen dp_139 0x7f0700e1 +int dimen dp_14 0x7f0700e2 +int dimen dp_140 0x7f0700e3 +int dimen dp_141 0x7f0700e4 +int dimen dp_142 0x7f0700e5 +int dimen dp_143 0x7f0700e6 +int dimen dp_144 0x7f0700e7 +int dimen dp_145 0x7f0700e8 +int dimen dp_146 0x7f0700e9 +int dimen dp_147 0x7f0700ea +int dimen dp_148 0x7f0700eb +int dimen dp_149 0x7f0700ec +int dimen dp_15 0x7f0700ed +int dimen dp_150 0x7f0700ee +int dimen dp_151 0x7f0700ef +int dimen dp_152 0x7f0700f0 +int dimen dp_153 0x7f0700f1 +int dimen dp_154 0x7f0700f2 +int dimen dp_155 0x7f0700f3 +int dimen dp_156 0x7f0700f4 +int dimen dp_157 0x7f0700f5 +int dimen dp_158 0x7f0700f6 +int dimen dp_159 0x7f0700f7 +int dimen dp_16 0x7f0700f8 +int dimen dp_160 0x7f0700f9 +int dimen dp_161 0x7f0700fa +int dimen dp_162 0x7f0700fb +int dimen dp_163 0x7f0700fc +int dimen dp_164 0x7f0700fd +int dimen dp_165 0x7f0700fe +int dimen dp_166 0x7f0700ff +int dimen dp_167 0x7f070100 +int dimen dp_168 0x7f070101 +int dimen dp_169 0x7f070102 +int dimen dp_17 0x7f070103 +int dimen dp_170 0x7f070104 +int dimen dp_171 0x7f070105 +int dimen dp_172 0x7f070106 +int dimen dp_173 0x7f070107 +int dimen dp_174 0x7f070108 +int dimen dp_175 0x7f070109 +int dimen dp_176 0x7f07010a +int dimen dp_177 0x7f07010b +int dimen dp_178 0x7f07010c +int dimen dp_179 0x7f07010d +int dimen dp_18 0x7f07010e +int dimen dp_180 0x7f07010f +int dimen dp_181 0x7f070110 +int dimen dp_182 0x7f070111 +int dimen dp_183 0x7f070112 +int dimen dp_184 0x7f070113 +int dimen dp_185 0x7f070114 +int dimen dp_186 0x7f070115 +int dimen dp_187 0x7f070116 +int dimen dp_188 0x7f070117 +int dimen dp_189 0x7f070118 +int dimen dp_19 0x7f070119 +int dimen dp_190 0x7f07011a +int dimen dp_191 0x7f07011b +int dimen dp_191_25 0x7f07011c +int dimen dp_192 0x7f07011d +int dimen dp_1920 0x7f07011e +int dimen dp_193 0x7f07011f +int dimen dp_194 0x7f070120 +int dimen dp_195 0x7f070121 +int dimen dp_196 0x7f070122 +int dimen dp_197 0x7f070123 +int dimen dp_198 0x7f070124 +int dimen dp_199 0x7f070125 +int dimen dp_1_5 0x7f070126 +int dimen dp_2 0x7f070127 +int dimen dp_20 0x7f070128 +int dimen dp_200 0x7f070129 +int dimen dp_201 0x7f07012a +int dimen dp_202 0x7f07012b +int dimen dp_203 0x7f07012c +int dimen dp_204 0x7f07012d +int dimen dp_205 0x7f07012e +int dimen dp_206 0x7f07012f +int dimen dp_207 0x7f070130 +int dimen dp_208 0x7f070131 +int dimen dp_209 0x7f070132 +int dimen dp_21 0x7f070133 +int dimen dp_210 0x7f070134 +int dimen dp_211 0x7f070135 +int dimen dp_212 0x7f070136 +int dimen dp_213 0x7f070137 +int dimen dp_214 0x7f070138 +int dimen dp_215 0x7f070139 +int dimen dp_216 0x7f07013a +int dimen dp_217 0x7f07013b +int dimen dp_218 0x7f07013c +int dimen dp_219 0x7f07013d +int dimen dp_22 0x7f07013e +int dimen dp_220 0x7f07013f +int dimen dp_221 0x7f070140 +int dimen dp_222 0x7f070141 +int dimen dp_223 0x7f070142 +int dimen dp_224 0x7f070143 +int dimen dp_225 0x7f070144 +int dimen dp_226 0x7f070145 +int dimen dp_227 0x7f070146 +int dimen dp_228 0x7f070147 +int dimen dp_229 0x7f070148 +int dimen dp_23 0x7f070149 +int dimen dp_230 0x7f07014a +int dimen dp_231 0x7f07014b +int dimen dp_232 0x7f07014c +int dimen dp_233 0x7f07014d +int dimen dp_234 0x7f07014e +int dimen dp_235 0x7f07014f +int dimen dp_236 0x7f070150 +int dimen dp_237 0x7f070151 +int dimen dp_238 0x7f070152 +int dimen dp_239 0x7f070153 +int dimen dp_24 0x7f070154 +int dimen dp_240 0x7f070155 +int dimen dp_241 0x7f070156 +int dimen dp_242 0x7f070157 +int dimen dp_243 0x7f070158 +int dimen dp_244 0x7f070159 +int dimen dp_245 0x7f07015a +int dimen dp_246 0x7f07015b +int dimen dp_247 0x7f07015c +int dimen dp_248 0x7f07015d +int dimen dp_249 0x7f07015e +int dimen dp_25 0x7f07015f +int dimen dp_250 0x7f070160 +int dimen dp_251 0x7f070161 +int dimen dp_252 0x7f070162 +int dimen dp_253 0x7f070163 +int dimen dp_254 0x7f070164 +int dimen dp_255 0x7f070165 +int dimen dp_256 0x7f070166 +int dimen dp_257 0x7f070167 +int dimen dp_258 0x7f070168 +int dimen dp_259 0x7f070169 +int dimen dp_26 0x7f07016a +int dimen dp_260 0x7f07016b +int dimen dp_261 0x7f07016c +int dimen dp_262 0x7f07016d +int dimen dp_263 0x7f07016e +int dimen dp_264 0x7f07016f +int dimen dp_265 0x7f070170 +int dimen dp_266 0x7f070171 +int dimen dp_267 0x7f070172 +int dimen dp_268 0x7f070173 +int dimen dp_269 0x7f070174 +int dimen dp_27 0x7f070175 +int dimen dp_270 0x7f070176 +int dimen dp_271 0x7f070177 +int dimen dp_272 0x7f070178 +int dimen dp_273 0x7f070179 +int dimen dp_274 0x7f07017a +int dimen dp_275 0x7f07017b +int dimen dp_276 0x7f07017c +int dimen dp_277 0x7f07017d +int dimen dp_278 0x7f07017e +int dimen dp_279 0x7f07017f +int dimen dp_28 0x7f070180 +int dimen dp_280 0x7f070181 +int dimen dp_281 0x7f070182 +int dimen dp_282 0x7f070183 +int dimen dp_283 0x7f070184 +int dimen dp_284 0x7f070185 +int dimen dp_285 0x7f070186 +int dimen dp_286 0x7f070187 +int dimen dp_287 0x7f070188 +int dimen dp_288 0x7f070189 +int dimen dp_289 0x7f07018a +int dimen dp_29 0x7f07018b +int dimen dp_290 0x7f07018c +int dimen dp_291 0x7f07018d +int dimen dp_292 0x7f07018e +int dimen dp_293 0x7f07018f +int dimen dp_294 0x7f070190 +int dimen dp_295 0x7f070191 +int dimen dp_296 0x7f070192 +int dimen dp_297 0x7f070193 +int dimen dp_298 0x7f070194 +int dimen dp_299 0x7f070195 +int dimen dp_2_5 0x7f070196 +int dimen dp_3 0x7f070197 +int dimen dp_30 0x7f070198 +int dimen dp_300 0x7f070199 +int dimen dp_301 0x7f07019a +int dimen dp_302 0x7f07019b +int dimen dp_303 0x7f07019c +int dimen dp_304 0x7f07019d +int dimen dp_305 0x7f07019e +int dimen dp_306 0x7f07019f +int dimen dp_307 0x7f0701a0 +int dimen dp_308 0x7f0701a1 +int dimen dp_309 0x7f0701a2 +int dimen dp_31 0x7f0701a3 +int dimen dp_310 0x7f0701a4 +int dimen dp_311 0x7f0701a5 +int dimen dp_312 0x7f0701a6 +int dimen dp_313 0x7f0701a7 +int dimen dp_314 0x7f0701a8 +int dimen dp_315 0x7f0701a9 +int dimen dp_316 0x7f0701aa +int dimen dp_317 0x7f0701ab +int dimen dp_318 0x7f0701ac +int dimen dp_319 0x7f0701ad +int dimen dp_32 0x7f0701ae +int dimen dp_320 0x7f0701af +int dimen dp_321 0x7f0701b0 +int dimen dp_322 0x7f0701b1 +int dimen dp_323 0x7f0701b2 +int dimen dp_324 0x7f0701b3 +int dimen dp_325 0x7f0701b4 +int dimen dp_326 0x7f0701b5 +int dimen dp_327 0x7f0701b6 +int dimen dp_328 0x7f0701b7 +int dimen dp_329 0x7f0701b8 +int dimen dp_33 0x7f0701b9 +int dimen dp_330 0x7f0701ba +int dimen dp_331 0x7f0701bb +int dimen dp_332 0x7f0701bc +int dimen dp_333 0x7f0701bd +int dimen dp_334 0x7f0701be +int dimen dp_335 0x7f0701bf +int dimen dp_336 0x7f0701c0 +int dimen dp_337 0x7f0701c1 +int dimen dp_338 0x7f0701c2 +int dimen dp_339 0x7f0701c3 +int dimen dp_34 0x7f0701c4 +int dimen dp_340 0x7f0701c5 +int dimen dp_341 0x7f0701c6 +int dimen dp_342 0x7f0701c7 +int dimen dp_343 0x7f0701c8 +int dimen dp_344 0x7f0701c9 +int dimen dp_345 0x7f0701ca +int dimen dp_346 0x7f0701cb +int dimen dp_347 0x7f0701cc +int dimen dp_348 0x7f0701cd +int dimen dp_349 0x7f0701ce +int dimen dp_35 0x7f0701cf +int dimen dp_350 0x7f0701d0 +int dimen dp_351 0x7f0701d1 +int dimen dp_352 0x7f0701d2 +int dimen dp_353 0x7f0701d3 +int dimen dp_354 0x7f0701d4 +int dimen dp_355 0x7f0701d5 +int dimen dp_356 0x7f0701d6 +int dimen dp_357 0x7f0701d7 +int dimen dp_358 0x7f0701d8 +int dimen dp_359 0x7f0701d9 +int dimen dp_36 0x7f0701da +int dimen dp_366 0x7f0701db +int dimen dp_367 0x7f0701dc +int dimen dp_368 0x7f0701dd +int dimen dp_369 0x7f0701de +int dimen dp_37 0x7f0701df +int dimen dp_370 0x7f0701e0 +int dimen dp_371 0x7f0701e1 +int dimen dp_372 0x7f0701e2 +int dimen dp_373 0x7f0701e3 +int dimen dp_374 0x7f0701e4 +int dimen dp_375 0x7f0701e5 +int dimen dp_376 0x7f0701e6 +int dimen dp_377 0x7f0701e7 +int dimen dp_378 0x7f0701e8 +int dimen dp_379 0x7f0701e9 +int dimen dp_38 0x7f0701ea +int dimen dp_380 0x7f0701eb +int dimen dp_381 0x7f0701ec +int dimen dp_382 0x7f0701ed +int dimen dp_383 0x7f0701ee +int dimen dp_384 0x7f0701ef +int dimen dp_385 0x7f0701f0 +int dimen dp_386 0x7f0701f1 +int dimen dp_387 0x7f0701f2 +int dimen dp_388 0x7f0701f3 +int dimen dp_389 0x7f0701f4 +int dimen dp_39 0x7f0701f5 +int dimen dp_390 0x7f0701f6 +int dimen dp_391 0x7f0701f7 +int dimen dp_392 0x7f0701f8 +int dimen dp_393 0x7f0701f9 +int dimen dp_394 0x7f0701fa +int dimen dp_395 0x7f0701fb +int dimen dp_396 0x7f0701fc +int dimen dp_397 0x7f0701fd +int dimen dp_398 0x7f0701fe +int dimen dp_399 0x7f0701ff +int dimen dp_3_5 0x7f070200 +int dimen dp_4 0x7f070201 +int dimen dp_40 0x7f070202 +int dimen dp_400 0x7f070203 +int dimen dp_401 0x7f070204 +int dimen dp_402 0x7f070205 +int dimen dp_403 0x7f070206 +int dimen dp_404 0x7f070207 +int dimen dp_405 0x7f070208 +int dimen dp_406 0x7f070209 +int dimen dp_407 0x7f07020a +int dimen dp_408 0x7f07020b +int dimen dp_409 0x7f07020c +int dimen dp_41 0x7f07020d +int dimen dp_410 0x7f07020e +int dimen dp_411 0x7f07020f +int dimen dp_412 0x7f070210 +int dimen dp_413 0x7f070211 +int dimen dp_414 0x7f070212 +int dimen dp_415 0x7f070213 +int dimen dp_416 0x7f070214 +int dimen dp_417 0x7f070215 +int dimen dp_418 0x7f070216 +int dimen dp_419 0x7f070217 +int dimen dp_42 0x7f070218 +int dimen dp_420 0x7f070219 +int dimen dp_421 0x7f07021a +int dimen dp_422 0x7f07021b +int dimen dp_423 0x7f07021c +int dimen dp_424 0x7f07021d +int dimen dp_425 0x7f07021e +int dimen dp_426 0x7f07021f +int dimen dp_427 0x7f070220 +int dimen dp_428 0x7f070221 +int dimen dp_429 0x7f070222 +int dimen dp_43 0x7f070223 +int dimen dp_430 0x7f070224 +int dimen dp_431 0x7f070225 +int dimen dp_432 0x7f070226 +int dimen dp_433 0x7f070227 +int dimen dp_434 0x7f070228 +int dimen dp_435 0x7f070229 +int dimen dp_436 0x7f07022a +int dimen dp_437 0x7f07022b +int dimen dp_438 0x7f07022c +int dimen dp_439 0x7f07022d +int dimen dp_44 0x7f07022e +int dimen dp_440 0x7f07022f +int dimen dp_441 0x7f070230 +int dimen dp_442 0x7f070231 +int dimen dp_443 0x7f070232 +int dimen dp_444 0x7f070233 +int dimen dp_445 0x7f070234 +int dimen dp_446 0x7f070235 +int dimen dp_447 0x7f070236 +int dimen dp_448 0x7f070237 +int dimen dp_449 0x7f070238 +int dimen dp_45 0x7f070239 +int dimen dp_450 0x7f07023a +int dimen dp_451 0x7f07023b +int dimen dp_452 0x7f07023c +int dimen dp_453 0x7f07023d +int dimen dp_454 0x7f07023e +int dimen dp_455 0x7f07023f +int dimen dp_456 0x7f070240 +int dimen dp_457 0x7f070241 +int dimen dp_458 0x7f070242 +int dimen dp_459 0x7f070243 +int dimen dp_46 0x7f070244 +int dimen dp_460 0x7f070245 +int dimen dp_461 0x7f070246 +int dimen dp_462 0x7f070247 +int dimen dp_463 0x7f070248 +int dimen dp_464 0x7f070249 +int dimen dp_465 0x7f07024a +int dimen dp_466 0x7f07024b +int dimen dp_467 0x7f07024c +int dimen dp_468 0x7f07024d +int dimen dp_469 0x7f07024e +int dimen dp_47 0x7f07024f +int dimen dp_470 0x7f070250 +int dimen dp_471 0x7f070251 +int dimen dp_472 0x7f070252 +int dimen dp_473 0x7f070253 +int dimen dp_474 0x7f070254 +int dimen dp_475 0x7f070255 +int dimen dp_476 0x7f070256 +int dimen dp_477 0x7f070257 +int dimen dp_478 0x7f070258 +int dimen dp_479 0x7f070259 +int dimen dp_48 0x7f07025a +int dimen dp_480 0x7f07025b +int dimen dp_481 0x7f07025c +int dimen dp_482 0x7f07025d +int dimen dp_483 0x7f07025e +int dimen dp_484 0x7f07025f +int dimen dp_485 0x7f070260 +int dimen dp_486 0x7f070261 +int dimen dp_487 0x7f070262 +int dimen dp_488 0x7f070263 +int dimen dp_489 0x7f070264 +int dimen dp_49 0x7f070265 +int dimen dp_490 0x7f070266 +int dimen dp_491 0x7f070267 +int dimen dp_492 0x7f070268 +int dimen dp_493 0x7f070269 +int dimen dp_494 0x7f07026a +int dimen dp_495 0x7f07026b +int dimen dp_496 0x7f07026c +int dimen dp_497 0x7f07026d +int dimen dp_498 0x7f07026e +int dimen dp_499 0x7f07026f +int dimen dp_4_5 0x7f070270 +int dimen dp_5 0x7f070271 +int dimen dp_50 0x7f070272 +int dimen dp_500 0x7f070273 +int dimen dp_501 0x7f070274 +int dimen dp_502 0x7f070275 +int dimen dp_503 0x7f070276 +int dimen dp_504 0x7f070277 +int dimen dp_505 0x7f070278 +int dimen dp_506 0x7f070279 +int dimen dp_507 0x7f07027a +int dimen dp_508 0x7f07027b +int dimen dp_509 0x7f07027c +int dimen dp_51 0x7f07027d +int dimen dp_510 0x7f07027e +int dimen dp_511 0x7f07027f +int dimen dp_512 0x7f070280 +int dimen dp_513 0x7f070281 +int dimen dp_514 0x7f070282 +int dimen dp_515 0x7f070283 +int dimen dp_516 0x7f070284 +int dimen dp_517 0x7f070285 +int dimen dp_518 0x7f070286 +int dimen dp_519 0x7f070287 +int dimen dp_52 0x7f070288 +int dimen dp_520 0x7f070289 +int dimen dp_521 0x7f07028a +int dimen dp_522 0x7f07028b +int dimen dp_523 0x7f07028c +int dimen dp_524 0x7f07028d +int dimen dp_525 0x7f07028e +int dimen dp_526 0x7f07028f +int dimen dp_527 0x7f070290 +int dimen dp_528 0x7f070291 +int dimen dp_529 0x7f070292 +int dimen dp_53 0x7f070293 +int dimen dp_530 0x7f070294 +int dimen dp_531 0x7f070295 +int dimen dp_532 0x7f070296 +int dimen dp_533 0x7f070297 +int dimen dp_534 0x7f070298 +int dimen dp_535 0x7f070299 +int dimen dp_536 0x7f07029a +int dimen dp_537 0x7f07029b +int dimen dp_538 0x7f07029c +int dimen dp_539 0x7f07029d +int dimen dp_54 0x7f07029e +int dimen dp_540 0x7f07029f +int dimen dp_541 0x7f0702a0 +int dimen dp_542 0x7f0702a1 +int dimen dp_543 0x7f0702a2 +int dimen dp_544 0x7f0702a3 +int dimen dp_545 0x7f0702a4 +int dimen dp_546 0x7f0702a5 +int dimen dp_547 0x7f0702a6 +int dimen dp_548 0x7f0702a7 +int dimen dp_549 0x7f0702a8 +int dimen dp_55 0x7f0702a9 +int dimen dp_550 0x7f0702aa +int dimen dp_551 0x7f0702ab +int dimen dp_552 0x7f0702ac +int dimen dp_553 0x7f0702ad +int dimen dp_554 0x7f0702ae +int dimen dp_555 0x7f0702af +int dimen dp_556 0x7f0702b0 +int dimen dp_557 0x7f0702b1 +int dimen dp_558 0x7f0702b2 +int dimen dp_559 0x7f0702b3 +int dimen dp_56 0x7f0702b4 +int dimen dp_560 0x7f0702b5 +int dimen dp_561 0x7f0702b6 +int dimen dp_562 0x7f0702b7 +int dimen dp_563 0x7f0702b8 +int dimen dp_564 0x7f0702b9 +int dimen dp_565 0x7f0702ba +int dimen dp_566 0x7f0702bb +int dimen dp_567 0x7f0702bc +int dimen dp_568 0x7f0702bd +int dimen dp_569 0x7f0702be +int dimen dp_57 0x7f0702bf +int dimen dp_570 0x7f0702c0 +int dimen dp_571 0x7f0702c1 +int dimen dp_572 0x7f0702c2 +int dimen dp_573 0x7f0702c3 +int dimen dp_574 0x7f0702c4 +int dimen dp_575 0x7f0702c5 +int dimen dp_576 0x7f0702c6 +int dimen dp_577 0x7f0702c7 +int dimen dp_578 0x7f0702c8 +int dimen dp_579 0x7f0702c9 +int dimen dp_58 0x7f0702ca +int dimen dp_580 0x7f0702cb +int dimen dp_581 0x7f0702cc +int dimen dp_582 0x7f0702cd +int dimen dp_583 0x7f0702ce +int dimen dp_584 0x7f0702cf +int dimen dp_585 0x7f0702d0 +int dimen dp_586 0x7f0702d1 +int dimen dp_587 0x7f0702d2 +int dimen dp_588 0x7f0702d3 +int dimen dp_589 0x7f0702d4 +int dimen dp_59 0x7f0702d5 +int dimen dp_590 0x7f0702d6 +int dimen dp_591 0x7f0702d7 +int dimen dp_592 0x7f0702d8 +int dimen dp_593 0x7f0702d9 +int dimen dp_594 0x7f0702da +int dimen dp_595 0x7f0702db +int dimen dp_596 0x7f0702dc +int dimen dp_597 0x7f0702dd +int dimen dp_598 0x7f0702de +int dimen dp_599 0x7f0702df +int dimen dp_6 0x7f0702e0 +int dimen dp_60 0x7f0702e1 +int dimen dp_600 0x7f0702e2 +int dimen dp_601 0x7f0702e3 +int dimen dp_602 0x7f0702e4 +int dimen dp_603 0x7f0702e5 +int dimen dp_604 0x7f0702e6 +int dimen dp_605 0x7f0702e7 +int dimen dp_606 0x7f0702e8 +int dimen dp_607 0x7f0702e9 +int dimen dp_608 0x7f0702ea +int dimen dp_609 0x7f0702eb +int dimen dp_61 0x7f0702ec +int dimen dp_610 0x7f0702ed +int dimen dp_611 0x7f0702ee +int dimen dp_612 0x7f0702ef +int dimen dp_613 0x7f0702f0 +int dimen dp_614 0x7f0702f1 +int dimen dp_615 0x7f0702f2 +int dimen dp_616 0x7f0702f3 +int dimen dp_617 0x7f0702f4 +int dimen dp_618 0x7f0702f5 +int dimen dp_619 0x7f0702f6 +int dimen dp_62 0x7f0702f7 +int dimen dp_620 0x7f0702f8 +int dimen dp_621 0x7f0702f9 +int dimen dp_622 0x7f0702fa +int dimen dp_623 0x7f0702fb +int dimen dp_624 0x7f0702fc +int dimen dp_625 0x7f0702fd +int dimen dp_626 0x7f0702fe +int dimen dp_627 0x7f0702ff +int dimen dp_628 0x7f070300 +int dimen dp_629 0x7f070301 +int dimen dp_63 0x7f070302 +int dimen dp_630 0x7f070303 +int dimen dp_631 0x7f070304 +int dimen dp_632 0x7f070305 +int dimen dp_633 0x7f070306 +int dimen dp_634 0x7f070307 +int dimen dp_635 0x7f070308 +int dimen dp_636 0x7f070309 +int dimen dp_637 0x7f07030a +int dimen dp_638 0x7f07030b +int dimen dp_639 0x7f07030c +int dimen dp_64 0x7f07030d +int dimen dp_640 0x7f07030e +int dimen dp_641 0x7f07030f +int dimen dp_642 0x7f070310 +int dimen dp_643 0x7f070311 +int dimen dp_644 0x7f070312 +int dimen dp_645 0x7f070313 +int dimen dp_646 0x7f070314 +int dimen dp_647 0x7f070315 +int dimen dp_648 0x7f070316 +int dimen dp_649 0x7f070317 +int dimen dp_65 0x7f070318 +int dimen dp_650 0x7f070319 +int dimen dp_651 0x7f07031a +int dimen dp_652 0x7f07031b +int dimen dp_653 0x7f07031c +int dimen dp_654 0x7f07031d +int dimen dp_655 0x7f07031e +int dimen dp_656 0x7f07031f +int dimen dp_657 0x7f070320 +int dimen dp_658 0x7f070321 +int dimen dp_659 0x7f070322 +int dimen dp_66 0x7f070323 +int dimen dp_660 0x7f070324 +int dimen dp_661 0x7f070325 +int dimen dp_662 0x7f070326 +int dimen dp_663 0x7f070327 +int dimen dp_664 0x7f070328 +int dimen dp_665 0x7f070329 +int dimen dp_666 0x7f07032a +int dimen dp_667 0x7f07032b +int dimen dp_668 0x7f07032c +int dimen dp_669 0x7f07032d +int dimen dp_67 0x7f07032e +int dimen dp_670 0x7f07032f +int dimen dp_671 0x7f070330 +int dimen dp_672 0x7f070331 +int dimen dp_673 0x7f070332 +int dimen dp_674 0x7f070333 +int dimen dp_675 0x7f070334 +int dimen dp_676 0x7f070335 +int dimen dp_677 0x7f070336 +int dimen dp_678 0x7f070337 +int dimen dp_679 0x7f070338 +int dimen dp_68 0x7f070339 +int dimen dp_680 0x7f07033a +int dimen dp_681 0x7f07033b +int dimen dp_682 0x7f07033c +int dimen dp_683 0x7f07033d +int dimen dp_684 0x7f07033e +int dimen dp_685 0x7f07033f +int dimen dp_686 0x7f070340 +int dimen dp_687 0x7f070341 +int dimen dp_688 0x7f070342 +int dimen dp_689 0x7f070343 +int dimen dp_69 0x7f070344 +int dimen dp_690 0x7f070345 +int dimen dp_691 0x7f070346 +int dimen dp_692 0x7f070347 +int dimen dp_693 0x7f070348 +int dimen dp_694 0x7f070349 +int dimen dp_695 0x7f07034a +int dimen dp_696 0x7f07034b +int dimen dp_697 0x7f07034c +int dimen dp_698 0x7f07034d +int dimen dp_699 0x7f07034e +int dimen dp_7 0x7f07034f +int dimen dp_70 0x7f070350 +int dimen dp_700 0x7f070351 +int dimen dp_701 0x7f070352 +int dimen dp_702 0x7f070353 +int dimen dp_703 0x7f070354 +int dimen dp_704 0x7f070355 +int dimen dp_705 0x7f070356 +int dimen dp_706 0x7f070357 +int dimen dp_707 0x7f070358 +int dimen dp_708 0x7f070359 +int dimen dp_709 0x7f07035a +int dimen dp_71 0x7f07035b +int dimen dp_710 0x7f07035c +int dimen dp_711 0x7f07035d +int dimen dp_712 0x7f07035e +int dimen dp_713 0x7f07035f +int dimen dp_714 0x7f070360 +int dimen dp_715 0x7f070361 +int dimen dp_716 0x7f070362 +int dimen dp_717 0x7f070363 +int dimen dp_718 0x7f070364 +int dimen dp_719 0x7f070365 +int dimen dp_72 0x7f070366 +int dimen dp_720 0x7f070367 +int dimen dp_721 0x7f070368 +int dimen dp_722 0x7f070369 +int dimen dp_723 0x7f07036a +int dimen dp_724 0x7f07036b +int dimen dp_725 0x7f07036c +int dimen dp_726 0x7f07036d +int dimen dp_727 0x7f07036e +int dimen dp_728 0x7f07036f +int dimen dp_729 0x7f070370 +int dimen dp_73 0x7f070371 +int dimen dp_730 0x7f070372 +int dimen dp_731 0x7f070373 +int dimen dp_732 0x7f070374 +int dimen dp_733 0x7f070375 +int dimen dp_734 0x7f070376 +int dimen dp_735 0x7f070377 +int dimen dp_736 0x7f070378 +int dimen dp_737 0x7f070379 +int dimen dp_738 0x7f07037a +int dimen dp_739 0x7f07037b +int dimen dp_74 0x7f07037c +int dimen dp_740 0x7f07037d +int dimen dp_741 0x7f07037e +int dimen dp_742 0x7f07037f +int dimen dp_743 0x7f070380 +int dimen dp_744 0x7f070381 +int dimen dp_745 0x7f070382 +int dimen dp_746 0x7f070383 +int dimen dp_747 0x7f070384 +int dimen dp_748 0x7f070385 +int dimen dp_749 0x7f070386 +int dimen dp_75 0x7f070387 +int dimen dp_750 0x7f070388 +int dimen dp_751 0x7f070389 +int dimen dp_752 0x7f07038a +int dimen dp_753 0x7f07038b +int dimen dp_754 0x7f07038c +int dimen dp_755 0x7f07038d +int dimen dp_756 0x7f07038e +int dimen dp_757 0x7f07038f +int dimen dp_758 0x7f070390 +int dimen dp_759 0x7f070391 +int dimen dp_76 0x7f070392 +int dimen dp_760 0x7f070393 +int dimen dp_761 0x7f070394 +int dimen dp_762 0x7f070395 +int dimen dp_763 0x7f070396 +int dimen dp_764 0x7f070397 +int dimen dp_765 0x7f070398 +int dimen dp_766 0x7f070399 +int dimen dp_767 0x7f07039a +int dimen dp_768 0x7f07039b +int dimen dp_769 0x7f07039c +int dimen dp_77 0x7f07039d +int dimen dp_770 0x7f07039e +int dimen dp_771 0x7f07039f +int dimen dp_772 0x7f0703a0 +int dimen dp_773 0x7f0703a1 +int dimen dp_774 0x7f0703a2 +int dimen dp_775 0x7f0703a3 +int dimen dp_776 0x7f0703a4 +int dimen dp_777 0x7f0703a5 +int dimen dp_778 0x7f0703a6 +int dimen dp_779 0x7f0703a7 +int dimen dp_78 0x7f0703a8 +int dimen dp_780 0x7f0703a9 +int dimen dp_781 0x7f0703aa +int dimen dp_782 0x7f0703ab +int dimen dp_783 0x7f0703ac +int dimen dp_784 0x7f0703ad +int dimen dp_785 0x7f0703ae +int dimen dp_786 0x7f0703af +int dimen dp_787 0x7f0703b0 +int dimen dp_788 0x7f0703b1 +int dimen dp_789 0x7f0703b2 +int dimen dp_79 0x7f0703b3 +int dimen dp_790 0x7f0703b4 +int dimen dp_791 0x7f0703b5 +int dimen dp_792 0x7f0703b6 +int dimen dp_793 0x7f0703b7 +int dimen dp_794 0x7f0703b8 +int dimen dp_795 0x7f0703b9 +int dimen dp_796 0x7f0703ba +int dimen dp_797 0x7f0703bb +int dimen dp_798 0x7f0703bc +int dimen dp_799 0x7f0703bd +int dimen dp_7_5 0x7f0703be +int dimen dp_8 0x7f0703bf +int dimen dp_80 0x7f0703c0 +int dimen dp_800 0x7f0703c1 +int dimen dp_801 0x7f0703c2 +int dimen dp_802 0x7f0703c3 +int dimen dp_803 0x7f0703c4 +int dimen dp_804 0x7f0703c5 +int dimen dp_805 0x7f0703c6 +int dimen dp_806 0x7f0703c7 +int dimen dp_807 0x7f0703c8 +int dimen dp_808 0x7f0703c9 +int dimen dp_809 0x7f0703ca +int dimen dp_81 0x7f0703cb +int dimen dp_810 0x7f0703cc +int dimen dp_811 0x7f0703cd +int dimen dp_812 0x7f0703ce +int dimen dp_813 0x7f0703cf +int dimen dp_814 0x7f0703d0 +int dimen dp_815 0x7f0703d1 +int dimen dp_816 0x7f0703d2 +int dimen dp_817 0x7f0703d3 +int dimen dp_818 0x7f0703d4 +int dimen dp_819 0x7f0703d5 +int dimen dp_82 0x7f0703d6 +int dimen dp_820 0x7f0703d7 +int dimen dp_821 0x7f0703d8 +int dimen dp_822 0x7f0703d9 +int dimen dp_823 0x7f0703da +int dimen dp_824 0x7f0703db +int dimen dp_825 0x7f0703dc +int dimen dp_826 0x7f0703dd +int dimen dp_827 0x7f0703de +int dimen dp_828 0x7f0703df +int dimen dp_829 0x7f0703e0 +int dimen dp_83 0x7f0703e1 +int dimen dp_830 0x7f0703e2 +int dimen dp_831 0x7f0703e3 +int dimen dp_832 0x7f0703e4 +int dimen dp_833 0x7f0703e5 +int dimen dp_834 0x7f0703e6 +int dimen dp_835 0x7f0703e7 +int dimen dp_836 0x7f0703e8 +int dimen dp_837 0x7f0703e9 +int dimen dp_838 0x7f0703ea +int dimen dp_839 0x7f0703eb +int dimen dp_84 0x7f0703ec +int dimen dp_840 0x7f0703ed +int dimen dp_841 0x7f0703ee +int dimen dp_842 0x7f0703ef +int dimen dp_843 0x7f0703f0 +int dimen dp_844 0x7f0703f1 +int dimen dp_845 0x7f0703f2 +int dimen dp_846 0x7f0703f3 +int dimen dp_847 0x7f0703f4 +int dimen dp_848 0x7f0703f5 +int dimen dp_849 0x7f0703f6 +int dimen dp_85 0x7f0703f7 +int dimen dp_850 0x7f0703f8 +int dimen dp_851 0x7f0703f9 +int dimen dp_852 0x7f0703fa +int dimen dp_853 0x7f0703fb +int dimen dp_854 0x7f0703fc +int dimen dp_855 0x7f0703fd +int dimen dp_856 0x7f0703fe +int dimen dp_857 0x7f0703ff +int dimen dp_858 0x7f070400 +int dimen dp_859 0x7f070401 +int dimen dp_86 0x7f070402 +int dimen dp_860 0x7f070403 +int dimen dp_861 0x7f070404 +int dimen dp_862 0x7f070405 +int dimen dp_863 0x7f070406 +int dimen dp_864 0x7f070407 +int dimen dp_865 0x7f070408 +int dimen dp_866 0x7f070409 +int dimen dp_867 0x7f07040a +int dimen dp_868 0x7f07040b +int dimen dp_869 0x7f07040c +int dimen dp_87 0x7f07040d +int dimen dp_870 0x7f07040e +int dimen dp_871 0x7f07040f +int dimen dp_872 0x7f070410 +int dimen dp_873 0x7f070411 +int dimen dp_874 0x7f070412 +int dimen dp_875 0x7f070413 +int dimen dp_876 0x7f070414 +int dimen dp_877 0x7f070415 +int dimen dp_878 0x7f070416 +int dimen dp_879 0x7f070417 +int dimen dp_88 0x7f070418 +int dimen dp_880 0x7f070419 +int dimen dp_881 0x7f07041a +int dimen dp_882 0x7f07041b +int dimen dp_883 0x7f07041c +int dimen dp_884 0x7f07041d +int dimen dp_885 0x7f07041e +int dimen dp_886 0x7f07041f +int dimen dp_887 0x7f070420 +int dimen dp_888 0x7f070421 +int dimen dp_889 0x7f070422 +int dimen dp_89 0x7f070423 +int dimen dp_890 0x7f070424 +int dimen dp_891 0x7f070425 +int dimen dp_892 0x7f070426 +int dimen dp_893 0x7f070427 +int dimen dp_894 0x7f070428 +int dimen dp_895 0x7f070429 +int dimen dp_896 0x7f07042a +int dimen dp_897 0x7f07042b +int dimen dp_898 0x7f07042c +int dimen dp_899 0x7f07042d +int dimen dp_9 0x7f07042e +int dimen dp_90 0x7f07042f +int dimen dp_900 0x7f070430 +int dimen dp_901 0x7f070431 +int dimen dp_902 0x7f070432 +int dimen dp_903 0x7f070433 +int dimen dp_904 0x7f070434 +int dimen dp_905 0x7f070435 +int dimen dp_906 0x7f070436 +int dimen dp_907 0x7f070437 +int dimen dp_908 0x7f070438 +int dimen dp_909 0x7f070439 +int dimen dp_91 0x7f07043a +int dimen dp_910 0x7f07043b +int dimen dp_911 0x7f07043c +int dimen dp_912 0x7f07043d +int dimen dp_913 0x7f07043e +int dimen dp_914 0x7f07043f +int dimen dp_915 0x7f070440 +int dimen dp_916 0x7f070441 +int dimen dp_917 0x7f070442 +int dimen dp_918 0x7f070443 +int dimen dp_919 0x7f070444 +int dimen dp_92 0x7f070445 +int dimen dp_920 0x7f070446 +int dimen dp_921 0x7f070447 +int dimen dp_922 0x7f070448 +int dimen dp_923 0x7f070449 +int dimen dp_924 0x7f07044a +int dimen dp_925 0x7f07044b +int dimen dp_926 0x7f07044c +int dimen dp_927 0x7f07044d +int dimen dp_928 0x7f07044e +int dimen dp_929 0x7f07044f +int dimen dp_93 0x7f070450 +int dimen dp_930 0x7f070451 +int dimen dp_931 0x7f070452 +int dimen dp_932 0x7f070453 +int dimen dp_933 0x7f070454 +int dimen dp_934 0x7f070455 +int dimen dp_935 0x7f070456 +int dimen dp_936 0x7f070457 +int dimen dp_937 0x7f070458 +int dimen dp_938 0x7f070459 +int dimen dp_939 0x7f07045a +int dimen dp_94 0x7f07045b +int dimen dp_940 0x7f07045c +int dimen dp_941 0x7f07045d +int dimen dp_942 0x7f07045e +int dimen dp_943 0x7f07045f +int dimen dp_944 0x7f070460 +int dimen dp_945 0x7f070461 +int dimen dp_946 0x7f070462 +int dimen dp_947 0x7f070463 +int dimen dp_948 0x7f070464 +int dimen dp_949 0x7f070465 +int dimen dp_95 0x7f070466 +int dimen dp_950 0x7f070467 +int dimen dp_951 0x7f070468 +int dimen dp_952 0x7f070469 +int dimen dp_953 0x7f07046a +int dimen dp_954 0x7f07046b +int dimen dp_955 0x7f07046c +int dimen dp_956 0x7f07046d +int dimen dp_957 0x7f07046e +int dimen dp_958 0x7f07046f +int dimen dp_959 0x7f070470 +int dimen dp_96 0x7f070471 +int dimen dp_960 0x7f070472 +int dimen dp_961 0x7f070473 +int dimen dp_962 0x7f070474 +int dimen dp_963 0x7f070475 +int dimen dp_964 0x7f070476 +int dimen dp_965 0x7f070477 +int dimen dp_966 0x7f070478 +int dimen dp_967 0x7f070479 +int dimen dp_968 0x7f07047a +int dimen dp_969 0x7f07047b +int dimen dp_97 0x7f07047c +int dimen dp_970 0x7f07047d +int dimen dp_971 0x7f07047e +int dimen dp_972 0x7f07047f +int dimen dp_973 0x7f070480 +int dimen dp_974 0x7f070481 +int dimen dp_975 0x7f070482 +int dimen dp_976 0x7f070483 +int dimen dp_977 0x7f070484 +int dimen dp_978 0x7f070485 +int dimen dp_979 0x7f070486 +int dimen dp_98 0x7f070487 +int dimen dp_980 0x7f070488 +int dimen dp_981 0x7f070489 +int dimen dp_982 0x7f07048a +int dimen dp_983 0x7f07048b +int dimen dp_984 0x7f07048c +int dimen dp_985 0x7f07048d +int dimen dp_986 0x7f07048e +int dimen dp_987 0x7f07048f +int dimen dp_988 0x7f070490 +int dimen dp_989 0x7f070491 +int dimen dp_99 0x7f070492 +int dimen dp_990 0x7f070493 +int dimen dp_991 0x7f070494 +int dimen dp_992 0x7f070495 +int dimen dp_993 0x7f070496 +int dimen dp_994 0x7f070497 +int dimen dp_995 0x7f070498 +int dimen dp_996 0x7f070499 +int dimen dp_997 0x7f07049a +int dimen dp_998 0x7f07049b +int dimen dp_999 0x7f07049c +int dimen dp_m_1 0x7f07049d +int dimen dp_m_10 0x7f07049e +int dimen dp_m_12 0x7f07049f +int dimen dp_m_2 0x7f0704a0 +int dimen dp_m_20 0x7f0704a1 +int dimen dp_m_30 0x7f0704a2 +int dimen dp_m_5 0x7f0704a3 +int dimen dp_m_60 0x7f0704a4 +int dimen dp_m_8 0x7f0704a5 +int dimen exo_media_button_height 0x7f0704a6 +int dimen exo_media_button_width 0x7f0704a7 +int dimen fastscroll_default_thickness 0x7f0704a8 +int dimen fastscroll_margin 0x7f0704a9 +int dimen fastscroll_minimum_range 0x7f0704aa +int dimen heart_ratingbar_height 0x7f0704ab +int dimen heart_ratingbar_width 0x7f0704ac +int dimen highlight_alpha_material_colored 0x7f0704ad +int dimen highlight_alpha_material_dark 0x7f0704ae +int dimen highlight_alpha_material_light 0x7f0704af +int dimen hint_alpha_material_dark 0x7f0704b0 +int dimen hint_alpha_material_light 0x7f0704b1 +int dimen hint_pressed_alpha_material_dark 0x7f0704b2 +int dimen hint_pressed_alpha_material_light 0x7f0704b3 +int dimen horizontal_margin 0x7f0704b4 +int dimen item_touch_helper_max_drag_scroll_per_frame 0x7f0704b5 +int dimen item_touch_helper_swipe_escape_max_velocity 0x7f0704b6 +int dimen item_touch_helper_swipe_escape_velocity 0x7f0704b7 +int dimen key_height 0x7f0704b8 +int dimen layout_margin_bottom 0x7f0704b9 +int dimen leak_canary_connector_center_y 0x7f0704ba +int dimen leak_canary_connector_leak_dash_gap 0x7f0704bb +int dimen leak_canary_connector_leak_dash_line 0x7f0704bc +int dimen leak_canary_connector_stroke_size 0x7f0704bd +int dimen leak_canary_connector_width 0x7f0704be +int dimen leak_canary_more_margin_top 0x7f0704bf +int dimen leak_canary_more_size 0x7f0704c0 +int dimen leak_canary_more_stroke_width 0x7f0704c1 +int dimen leak_canary_row_margins 0x7f0704c2 +int dimen leak_canary_row_min 0x7f0704c3 +int dimen leak_canary_row_title_margin_top 0x7f0704c4 +int dimen leak_canary_squiggly_span_amplitude 0x7f0704c5 +int dimen leak_canary_squiggly_span_period_degrees 0x7f0704c6 +int dimen leak_canary_squiggly_span_stroke_width 0x7f0704c7 +int dimen leak_canary_toast_icon_size 0x7f0704c8 +int dimen leak_canary_toast_icon_tv_padding 0x7f0704c9 +int dimen list_font_size 0x7f0704ca +int dimen list_height_min 0x7f0704cb +int dimen material_bottom_sheet_max_width 0x7f0704cc +int dimen material_clock_display_padding 0x7f0704cd +int dimen material_clock_face_margin_top 0x7f0704ce +int dimen material_clock_hand_center_dot_radius 0x7f0704cf +int dimen material_clock_hand_padding 0x7f0704d0 +int dimen material_clock_hand_stroke_width 0x7f0704d1 +int dimen material_clock_number_text_size 0x7f0704d2 +int dimen material_clock_period_toggle_height 0x7f0704d3 +int dimen material_clock_period_toggle_margin_left 0x7f0704d4 +int dimen material_clock_period_toggle_width 0x7f0704d5 +int dimen material_clock_size 0x7f0704d6 +int dimen material_cursor_inset_bottom 0x7f0704d7 +int dimen material_cursor_inset_top 0x7f0704d8 +int dimen material_cursor_width 0x7f0704d9 +int dimen material_emphasis_disabled 0x7f0704da +int dimen material_emphasis_high_type 0x7f0704db +int dimen material_emphasis_medium 0x7f0704dc +int dimen material_filled_edittext_font_1_3_padding_bottom 0x7f0704dd +int dimen material_filled_edittext_font_1_3_padding_top 0x7f0704de +int dimen material_filled_edittext_font_2_0_padding_bottom 0x7f0704df +int dimen material_filled_edittext_font_2_0_padding_top 0x7f0704e0 +int dimen material_font_1_3_box_collapsed_padding_top 0x7f0704e1 +int dimen material_font_2_0_box_collapsed_padding_top 0x7f0704e2 +int dimen material_helper_text_default_padding_top 0x7f0704e3 +int dimen material_helper_text_font_1_3_padding_horizontal 0x7f0704e4 +int dimen material_helper_text_font_1_3_padding_top 0x7f0704e5 +int dimen material_input_text_to_prefix_suffix_padding 0x7f0704e6 +int dimen material_text_view_test_line_height 0x7f0704e7 +int dimen material_text_view_test_line_height_override 0x7f0704e8 +int dimen material_textinput_default_width 0x7f0704e9 +int dimen material_textinput_max_width 0x7f0704ea +int dimen material_textinput_min_width 0x7f0704eb +int dimen material_time_picker_minimum_screen_height 0x7f0704ec +int dimen material_time_picker_minimum_screen_width 0x7f0704ed +int dimen material_timepicker_dialog_buttons_margin_top 0x7f0704ee +int dimen module_call_chat_calling_bg_radius 0x7f0704ef +int dimen module_call_chat_calling_iv_hawk_eye_margin_left_right 0x7f0704f0 +int dimen module_call_chat_calling_iv_hawk_eye_width_height 0x7f0704f1 +int dimen module_call_chat_calling_text_hawk_eye_margin_top_bottom 0x7f0704f2 +int dimen module_call_chat_calling_text_hawk_eye_name_size 0x7f0704f3 +int dimen module_call_chat_calling_text_hawk_eye_time_size 0x7f0704f4 +int dimen module_call_chat_hawk_eye_circle_btn_size 0x7f0704f5 +int dimen module_call_chat_hawk_eye_incoming_circle_btn_size 0x7f0704f6 +int dimen module_call_chat_incoming_aisdk_tag_width 0x7f0704f7 +int dimen module_call_chat_state_hawk_eye_height 0x7f0704f8 +int dimen module_call_chat_state_hawk_eye_width 0x7f0704f9 +int dimen module_call_chat_state_incoming_hawk_eye_call_margin_right 0x7f0704fa +int dimen module_call_chat_state_incoming_hawk_eye_height 0x7f0704fb +int dimen module_call_chat_state_incoming_hawk_eye_margin_left 0x7f0704fc +int dimen module_call_chat_state_incoming_hawk_eye_width 0x7f0704fd +int dimen module_common_shadow_width 0x7f0704fe +int dimen module_common_shadow_width_pos 0x7f0704ff +int dimen module_commons_toast_icon_width 0x7f070500 +int dimen module_commons_toast_marginBottom 0x7f070501 +int dimen module_commons_toast_marginLeft 0x7f070502 +int dimen module_commons_toast_marginRight 0x7f070503 +int dimen module_commons_toast_marginTop 0x7f070504 +int dimen module_commons_toast_maxWidth 0x7f070505 +int dimen module_commons_toast_minWidth 0x7f070506 +int dimen module_commons_toast_space_between_icon_and_msg 0x7f070507 +int dimen module_commons_toast_textSize 0x7f070508 +int dimen module_commons_toast_with_left_drawable_marginBottom 0x7f070509 +int dimen module_commons_toast_with_left_drawable_marginLeft 0x7f07050a +int dimen module_commons_toast_with_left_drawable_marginTop 0x7f07050b +int dimen module_commons_toast_y_offset 0x7f07050c +int dimen module_event_fragment_container_padding 0x7f07050d +int dimen module_ext_arcView_center_text_size 0x7f07050e +int dimen module_ext_arcView_des_text_size 0x7f07050f +int dimen module_ext_arcView_height 0x7f070510 +int dimen module_ext_arcView_stroke_with 0x7f070511 +int dimen module_ext_arcView_top 0x7f070512 +int dimen module_ext_arcView_width 0x7f070513 +int dimen module_ext_speed_height 0x7f070514 +int dimen module_ext_speed_padding 0x7f070515 +int dimen module_ext_speed_width 0x7f070516 +int dimen module_ext_speed_width_big_radius 0x7f070517 +int dimen module_ext_speed_width_sm_radius 0x7f070518 +int dimen module_ext_top_view_max_width 0x7f070519 +int dimen module_ext_top_view_no_link_width_in_vr_mode 0x7f07051a +int dimen module_hmi_autopilot_status_bg_big_radius 0x7f07051b +int dimen module_hmi_autopilot_status_bg_sm_radius 0x7f07051c +int dimen module_hmi_btn_size 0x7f07051d +int dimen module_hmi_btn_text_size 0x7f07051e +int dimen module_hmi_check_left 0x7f07051f +int dimen module_hmi_check_size 0x7f070520 +int dimen module_main_apps_fragment_container_padding 0x7f070521 +int dimen module_main_apps_fragment_container_paddingBottom 0x7f070522 +int dimen module_main_apps_fragment_container_paddingTop 0x7f070523 +int dimen module_main_apps_fragment_container_width 0x7f070524 +int dimen module_main_card_card_shadow_height_div 0x7f070525 +int dimen module_main_card_card_shadow_width_div 0x7f070526 +int dimen module_main_card_container_height 0x7f070527 +int dimen module_main_card_container_marginBottom 0x7f070528 +int dimen module_main_card_container_marginLeft 0x7f070529 +int dimen module_main_card_container_marginTop 0x7f07052a +int dimen module_main_card_container_paddingBottom 0x7f07052b +int dimen module_main_card_container_width 0x7f07052c +int dimen module_main_card_cover_up_margin 0x7f07052d +int dimen module_main_entrance_fragment_container_marginLeft_in_vr_mode 0x7f07052e +int dimen module_main_entrance_fragment_container_marginLeft_out_vr_mode 0x7f07052f +int dimen module_main_entrance_fragment_container_padding 0x7f070530 +int dimen module_main_entrance_fragment_container_padding_top 0x7f070531 +int dimen module_main_entrance_fragment_container_width 0x7f070532 +int dimen module_main_event_panel_fragment_paddingBottom 0x7f070533 +int dimen module_main_event_panel_fragment_paddingLeft 0x7f070534 +int dimen module_main_event_panel_fragment_paddingRight 0x7f070535 +int dimen module_main_event_panel_fragment_paddingTop 0x7f070536 +int dimen module_main_header_fragment_container_marginLeft 0x7f070537 +int dimen module_main_header_fragment_container_marginTop 0x7f070538 +int dimen module_main_id_entrance_fragment_container_marginLeft 0x7f070539 +int dimen module_main_id_left_panel_fragment_container_width 0x7f07053a +int dimen module_main_map_left_shadow_frame_width 0x7f07053b +int dimen module_main_panel_margin_right 0x7f07053c +int dimen module_main_top_shadow_height 0x7f07053d +int dimen module_main_v2x_animation_width 0x7f07053e +int dimen module_map_amap_my_location_bg_size 0x7f07053f +int dimen module_map_amap_my_location_icon_height 0x7f070540 +int dimen module_map_amap_my_location_icon_width 0x7f070541 +int dimen module_map_calculate_path_display_overview_bottom_margin 0x7f070542 +int dimen module_map_calculate_path_display_overview_left_margin 0x7f070543 +int dimen module_map_calculate_path_display_overview_right_margin 0x7f070544 +int dimen module_map_calculate_path_display_overview_top_margin 0x7f070545 +int dimen module_map_display_overview_bottom_margin 0x7f070546 +int dimen module_map_display_overview_left_margin 0x7f070547 +int dimen module_map_display_overview_right_margin 0x7f070548 +int dimen module_map_display_overview_top_margin 0x7f070549 +int dimen module_mogo_autopilot_status_bg_height 0x7f07054a +int dimen module_mogo_autopilot_status_bg_width 0x7f07054b +int dimen module_mogo_autopilot_status_icon_margin 0x7f07054c +int dimen module_mogo_autopilot_status_icon_width 0x7f07054d +int dimen module_mogo_autopilot_status_margin_left 0x7f07054e +int dimen module_mogo_autopilot_status_margin_top 0x7f07054f +int dimen module_mogo_autopilot_status_padding 0x7f070550 +int dimen module_mogo_autopilot_status_text_margin_start 0x7f070551 +int dimen module_mogo_autopilot_status_text_size 0x7f070552 +int dimen module_push_activity_clear_margin_bottom 0x7f070553 +int dimen module_push_activity_close_margin_end 0x7f070554 +int dimen module_push_activity_close_margin_top 0x7f070555 +int dimen module_push_activity_close_padding 0x7f070556 +int dimen module_push_activity_not_data_text_size 0x7f070557 +int dimen module_push_activity_recycler_view_margin_top 0x7f070558 +int dimen module_push_activity_title_margin_top 0x7f070559 +int dimen module_push_activity_title_text_size 0x7f07055a +int dimen module_push_app_icon_margin_start 0x7f07055b +int dimen module_push_app_icon_size 0x7f07055c +int dimen module_push_button_height 0x7f07055d +int dimen module_push_button_margin_bottom 0x7f07055e +int dimen module_push_button_margin_top 0x7f07055f +int dimen module_push_button_maxWidth 0x7f070560 +int dimen module_push_button_radius 0x7f070561 +int dimen module_push_button_right_marLeft 0x7f070562 +int dimen module_push_button_width 0x7f070563 +int dimen module_push_check_margin 0x7f070564 +int dimen module_push_check_text_size 0x7f070565 +int dimen module_push_check_width 0x7f070566 +int dimen module_push_clear_bg_radius 0x7f070567 +int dimen module_push_content_only_height 0x7f070568 +int dimen module_push_content_only_line_space 0x7f070569 +int dimen module_push_content_only_padding 0x7f07056a +int dimen module_push_content_only_width 0x7f07056b +int dimen module_push_content_paddingBottom_vertical 0x7f07056c +int dimen module_push_dialog_check_acc_image__height 0x7f07056d +int dimen module_push_dialog_check_acc_image_width 0x7f07056e +int dimen module_push_dialog_check_accessory_height 0x7f07056f +int dimen module_push_dialog_check_accessory_width 0x7f070570 +int dimen module_push_dialog_check_bg_corner 0x7f070571 +int dimen module_push_dialog_check_height 0x7f070572 +int dimen module_push_dialog_check_width 0x7f070573 +int dimen module_push_dialog_close_height 0x7f070574 +int dimen module_push_dialog_close_margin 0x7f070575 +int dimen module_push_dialog_close_width 0x7f070576 +int dimen module_push_dialog_content_margin_top 0x7f070577 +int dimen module_push_dialog_content_size 0x7f070578 +int dimen module_push_dialog_content_width 0x7f070579 +int dimen module_push_dialog_title_margin 0x7f07057a +int dimen module_push_dialog_title_size 0x7f07057b +int dimen module_push_image_height 0x7f07057c +int dimen module_push_image_marginTop_vertical 0x7f07057d +int dimen module_push_image_margin_bottom 0x7f07057e +int dimen module_push_image_margin_top 0x7f07057f +int dimen module_push_image_qr_size_vertical 0x7f070580 +int dimen module_push_image_radius 0x7f070581 +int dimen module_push_image_width 0x7f070582 +int dimen module_push_item_content_margin_bottom 0x7f070583 +int dimen module_push_item_content_margin_end 0x7f070584 +int dimen module_push_item_content_text_size 0x7f070585 +int dimen module_push_item_content_width 0x7f070586 +int dimen module_push_item_image_height 0x7f070587 +int dimen module_push_item_image_radius 0x7f070588 +int dimen module_push_item_image_width 0x7f070589 +int dimen module_push_item_maxHeight_vertical 0x7f07058a +int dimen module_push_item_minHeight_vertical 0x7f07058b +int dimen module_push_item_time_textSize 0x7f07058c +int dimen module_push_item_title_gone_margin_bottom 0x7f07058d +int dimen module_push_item_title_margin_bottom 0x7f07058e +int dimen module_push_item_title_margin_top 0x7f07058f +int dimen module_push_line_height 0x7f070590 +int dimen module_push_line_margin_left 0x7f070591 +int dimen module_push_line_width 0x7f070592 +int dimen module_push_margin_start 0x7f070593 +int dimen module_push_margin_top 0x7f070594 +int dimen module_push_massage_time_text_size 0x7f070595 +int dimen module_push_message_app_icon_size 0x7f070596 +int dimen module_push_message_item_height 0x7f070597 +int dimen module_push_message_item_image_margin_end 0x7f070598 +int dimen module_push_message_item_image_size 0x7f070599 +int dimen module_push_message_margin_start 0x7f07059a +int dimen module_push_panel_bkg_padding 0x7f07059b +int dimen module_push_panel_corner 0x7f07059c +int dimen module_push_panel_item_corner 0x7f07059d +int dimen module_push_panel_marginBottom 0x7f07059e +int dimen module_push_panel_marginRight 0x7f07059f +int dimen module_push_panel_marginTop 0x7f0705a0 +int dimen module_push_panel_paddingBottom 0x7f0705a1 +int dimen module_push_panel_paddingLeft 0x7f0705a2 +int dimen module_push_progress_bar_frame_marginEnd 0x7f0705a3 +int dimen module_push_progress_bar_frame_marginTop 0x7f0705a4 +int dimen module_push_progress_bar_frame_padding 0x7f0705a5 +int dimen module_push_size 0x7f0705a6 +int dimen module_push_timer_inner_radius 0x7f0705a7 +int dimen module_push_timer_margin_end 0x7f0705a8 +int dimen module_push_timer_margin_top 0x7f0705a9 +int dimen module_push_timer_text_size 0x7f0705aa +int dimen module_push_timer_thickness 0x7f0705ab +int dimen module_push_title_margin_start 0x7f0705ac +int dimen module_push_title_margin_top 0x7f0705ad +int dimen module_push_title_mix_width 0x7f0705ae +int dimen module_push_title_text_size 0x7f0705af +int dimen module_push_ui_app_icon_goneTopMargin 0x7f0705b0 +int dimen module_push_ui_app_icon_leftMargin 0x7f0705b1 +int dimen module_push_ui_app_icon_leftMargin_vertical 0x7f0705b2 +int dimen module_push_ui_app_icon_size 0x7f0705b3 +int dimen module_push_ui_app_icon_topMargin 0x7f0705b4 +int dimen module_push_ui_app_icon_topMargin_vertical 0x7f0705b5 +int dimen module_push_ui_bkg_corner 0x7f0705b6 +int dimen module_push_ui_button_radius 0x7f0705b7 +int dimen module_push_ui_content_height 0x7f0705b8 +int dimen module_push_ui_content_marginBottom 0x7f0705b9 +int dimen module_push_ui_content_marginTop 0x7f0705ba +int dimen module_push_ui_content_marginTop_vertical 0x7f0705bb +int dimen module_push_ui_content_width 0x7f0705bc +int dimen module_push_ui_decrease_timer_corner 0x7f0705bd +int dimen module_push_ui_height 0x7f0705be +int dimen module_push_ui_height_vertical 0x7f0705bf +int dimen module_push_ui_image_corner 0x7f0705c0 +int dimen module_push_ui_image_height 0x7f0705c1 +int dimen module_push_ui_image_height_vertical 0x7f0705c2 +int dimen module_push_ui_image_marLeft 0x7f0705c3 +int dimen module_push_ui_image_width 0x7f0705c4 +int dimen module_push_ui_image_width_vertical 0x7f0705c5 +int dimen module_push_ui_margin_top 0x7f0705c6 +int dimen module_push_ui_timer_textSize 0x7f0705c7 +int dimen module_push_ui_title_textSize 0x7f0705c8 +int dimen module_push_ui_title_text_size 0x7f0705c9 +int dimen module_push_ui_width_vertical 0x7f0705ca +int dimen module_push_window_x 0x7f0705cb +int dimen module_push_window_y 0x7f0705cc +int dimen module_service_content_minWidth 0x7f0705cd +int dimen module_service_content_textSize 0x7f0705ce +int dimen module_service_id_marker_content_paddingRight 0x7f0705cf +int dimen module_service_id_marker_content_paddingRight_widthoutCall 0x7f0705d0 +int dimen module_service_marker_anchor_size 0x7f0705d1 +int dimen module_service_marker_bounds_bottomMargin 0x7f0705d2 +int dimen module_service_marker_bounds_leftMargin 0x7f0705d3 +int dimen module_service_marker_bounds_rightMargin 0x7f0705d4 +int dimen module_service_marker_bounds_topMargin 0x7f0705d5 +int dimen module_service_marker_bubble_height 0x7f0705d6 +int dimen module_service_marker_bubble_icon_height 0x7f0705d7 +int dimen module_service_marker_bubble_icon_marginBottom 0x7f0705d8 +int dimen module_service_marker_bubble_icon_vr_height 0x7f0705d9 +int dimen module_service_marker_bubble_icon_vr_width 0x7f0705da +int dimen module_service_marker_bubble_icon_width 0x7f0705db +int dimen module_service_marker_bubble_vr_height 0x7f0705dc +int dimen module_service_marker_bubble_vr_width 0x7f0705dd +int dimen module_service_marker_bubble_width 0x7f0705de +int dimen module_service_marker_dot_marginTop 0x7f0705df +int dimen module_service_tag_textSize 0x7f0705e0 +int dimen module_service_user_header_height 0x7f0705e1 +int dimen module_service_user_header_width 0x7f0705e2 +int dimen module_services_dispatch_airport_dialog_affirm_corner 0x7f0705e3 +int dimen module_services_dispatch_airport_dialog_affirm_height 0x7f0705e4 +int dimen module_services_dispatch_airport_dialog_affirm_width 0x7f0705e5 +int dimen module_services_dispatch_airport_dialog_corner 0x7f0705e6 +int dimen module_services_dispatch_airport_dialog_endloc_content_margin_top 0x7f0705e7 +int dimen module_services_dispatch_airport_dialog_endloc_margin_top 0x7f0705e8 +int dimen module_services_dispatch_airport_dialog_first_column_margin_left 0x7f0705e9 +int dimen module_services_dispatch_airport_dialog_height 0x7f0705ea +int dimen module_services_dispatch_airport_dialog_last_column_margin_left 0x7f0705eb +int dimen module_services_dispatch_airport_dialog_margin_bottom 0x7f0705ec +int dimen module_services_dispatch_airport_dialog_margin_top 0x7f0705ed +int dimen module_services_dispatch_airport_dialog_next_level_title_size 0x7f0705ee +int dimen module_services_dispatch_airport_dialog_startloc_content_margin_top 0x7f0705ef +int dimen module_services_dispatch_airport_dialog_startloc_margin_top 0x7f0705f0 +int dimen module_services_dispatch_airport_dialog_task_content_margin_top 0x7f0705f1 +int dimen module_services_dispatch_airport_dialog_task_content_size 0x7f0705f2 +int dimen module_services_dispatch_airport_dialog_task_margin_top 0x7f0705f3 +int dimen module_services_dispatch_airport_dialog_title_margin_top 0x7f0705f4 +int dimen module_services_dispatch_airport_dialog_title_size 0x7f0705f5 +int dimen module_services_dispatch_airport_dialog_width 0x7f0705f6 +int dimen module_services_dispatch_cars_dialog_btn_width 0x7f0705f7 +int dimen module_services_dispatch_cars_dialog_content_margin_top 0x7f0705f8 +int dimen module_services_dispatch_cars_dialog_content_size 0x7f0705f9 +int dimen module_services_dispatch_cars_dialog_corner 0x7f0705fa +int dimen module_services_dispatch_cars_dialog_height 0x7f0705fb +int dimen module_services_dispatch_cars_dialog_line_margin_bottom 0x7f0705fc +int dimen module_services_dispatch_cars_dialog_loc_margin_top 0x7f0705fd +int dimen module_services_dispatch_cars_dialog_loc_size 0x7f0705fe +int dimen module_services_dispatch_cars_dialog_timer_margin 0x7f0705ff +int dimen module_services_dispatch_cars_dialog_timer_size 0x7f070600 +int dimen module_services_dispatch_cars_dialog_timer_txt_size 0x7f070601 +int dimen module_services_dispatch_cars_dialog_title_margin_top 0x7f070602 +int dimen module_services_dispatch_cars_dialog_title_size 0x7f070603 +int dimen module_services_dispatch_cars_dialog_width 0x7f070604 +int dimen module_services_empty_tip_marginTop 0x7f070605 +int dimen module_services_empty_tip_textSize 0x7f070606 +int dimen module_services_id_panel_item_avatar_border_width 0x7f070607 +int dimen module_services_id_panel_item_distance_marginLeft 0x7f070608 +int dimen module_services_info_window_height 0x7f070609 +int dimen module_services_info_window_paddingEnd 0x7f07060a +int dimen module_services_info_window_paddingStart 0x7f07060b +int dimen module_services_load_strategy_marginRight 0x7f07060c +int dimen module_services_load_strategy_paddingLeft 0x7f07060d +int dimen module_services_load_strategy_paddingTop 0x7f07060e +int dimen module_services_load_strategy_textSize 0x7f07060f +int dimen module_services_online_car_panel_close_margin_top 0x7f070610 +int dimen module_services_online_car_panel_marginBottom 0x7f070611 +int dimen module_services_online_car_panel_marginRight 0x7f070612 +int dimen module_services_online_car_panel_marginTop 0x7f070613 +int dimen module_services_online_car_panel_paddingBottom 0x7f070614 +int dimen module_services_online_car_panel_paddingLeft 0x7f070615 +int dimen module_services_online_car_panel_recycler_view_margin_top 0x7f070616 +int dimen module_services_online_car_panel_title_margin_top 0x7f070617 +int dimen module_services_online_car_panel_title_text_size 0x7f070618 +int dimen module_services_panel_item_avatar_size 0x7f070619 +int dimen module_services_panel_item_corner 0x7f07061a +int dimen module_services_panel_item_detail_bkg_corner 0x7f07061b +int dimen module_services_panel_item_detail_padding 0x7f07061c +int dimen module_services_panel_item_detail_textSize 0x7f07061d +int dimen module_services_panel_item_distance_textSize 0x7f07061e +int dimen module_services_panel_item_marginBottom 0x7f07061f +int dimen module_services_panel_item_nickname_marginLeft 0x7f070620 +int dimen module_services_panel_item_nickname_textSize 0x7f070621 +int dimen module_services_panel_item_padding 0x7f070622 +int dimen module_services_panel_strategy_button_bkg_corner 0x7f070623 +int dimen module_services_panel_strategy_button_marginTop 0x7f070624 +int dimen module_small_map_border_view_width 0x7f070625 +int dimen module_small_map_padding 0x7f070626 +int dimen module_small_map_view_border_width 0x7f070627 +int dimen module_small_map_view_width 0x7f070628 +int dimen module_switch_image 0x7f070629 +int dimen module_switch_image_circle 0x7f07062a +int dimen module_switch_map 0x7f07062b +int dimen module_switch_map_height 0x7f07062c +int dimen module_switch_margin_left 0x7f07062d +int dimen module_switch_text_size 0x7f07062e +int dimen module_v2n_image_margin_left 0x7f07062f +int dimen module_v2n_tip_height 0x7f070630 +int dimen module_v2n_tip_text_margin_right 0x7f070631 +int dimen module_v2n_tip_text_width 0x7f070632 +int dimen module_v2n_tip_width 0x7f070633 +int dimen module_v2x_brake_image_margin_left 0x7f070634 +int dimen module_v2x_brake_image_margin_right 0x7f070635 +int dimen module_v2x_brake_image_width 0x7f070636 +int dimen module_v2x_brake_tip_height 0x7f070637 +int dimen module_v2x_brake_tip_width 0x7f070638 +int dimen module_v2x_car_for_help_cancel_text_size 0x7f070639 +int dimen module_v2x_car_for_help_event_maxwidth 0x7f07063a +int dimen module_v2x_car_for_help_event_text_size 0x7f07063b +int dimen module_v2x_car_for_help_height 0x7f07063c +int dimen module_v2x_car_for_help_icon_height 0x7f07063d +int dimen module_v2x_car_for_help_icon_width 0x7f07063e +int dimen module_v2x_car_for_help_width 0x7f07063f +int dimen module_v2x_car_for_help_window_height 0x7f070640 +int dimen module_v2x_event_button_size 0x7f070641 +int dimen module_v2x_event_button_size_detail 0x7f070642 +int dimen module_v2x_event_button_size_detail_vr 0x7f070643 +int dimen module_v2x_event_button_size_vr 0x7f070644 +int dimen module_v2x_event_distance_text 0x7f070645 +int dimen module_v2x_event_distance_title 0x7f070646 +int dimen module_v2x_event_distance_title_vr 0x7f070647 +int dimen module_v2x_event_head_size 0x7f070648 +int dimen module_v2x_event_help_distance_text_size 0x7f070649 +int dimen module_v2x_event_help_head_size 0x7f07064a +int dimen module_v2x_event_help_sub_title_text_size 0x7f07064b +int dimen module_v2x_event_help_title_text_size 0x7f07064c +int dimen module_v2x_event_icon_size 0x7f07064d +int dimen module_v2x_event_icon_size_vr 0x7f07064e +int dimen module_v2x_event_image_height 0x7f07064f +int dimen module_v2x_event_image_width 0x7f070650 +int dimen module_v2x_event_live_error_text_size 0x7f070651 +int dimen module_v2x_event_panel_btn_x 0x7f070652 +int dimen module_v2x_event_panel_btn_y 0x7f070653 +int dimen module_v2x_event_panel_in_launcher_btn_x 0x7f070654 +int dimen module_v2x_event_parking_text_size 0x7f070655 +int dimen module_v2x_event_see_live_window_height 0x7f070656 +int dimen module_v2x_event_see_live_window_height_vr 0x7f070657 +int dimen module_v2x_event_sub_title_text_size 0x7f070658 +int dimen module_v2x_event_title_text_size 0x7f070659 +int dimen module_v2x_event_type_title_text_size 0x7f07065a +int dimen module_v2x_event_warning_type_image_size 0x7f07065b +int dimen module_v2x_event_warning_type_text_size 0x7f07065c +int dimen module_v2x_event_window_close_distance 0x7f07065d +int dimen module_v2x_event_window_height 0x7f07065e +int dimen module_v2x_event_window_height_ground 0x7f07065f +int dimen module_v2x_event_window_height_vr_for_item 0x7f070660 +int dimen module_v2x_event_window_right_margin 0x7f070661 +int dimen module_v2x_event_window_right_margin_vr 0x7f070662 +int dimen module_v2x_event_window_top_margin 0x7f070663 +int dimen module_v2x_event_window_top_margin_vr 0x7f070664 +int dimen module_v2x_event_window_width 0x7f070665 +int dimen module_v2x_event_window_width_vr 0x7f070666 +int dimen module_v2x_fatigue_driving_window_height_ground 0x7f070667 +int dimen module_v2x_fault_help_distance_text_size 0x7f070668 +int dimen module_v2x_fault_help_event_call_width 0x7f070669 +int dimen module_v2x_fault_help_event_navi_margin_right 0x7f07066a +int dimen module_v2x_fault_help_height 0x7f07066b +int dimen module_v2x_fault_help_img_content_height 0x7f07066c +int dimen module_v2x_fault_help_img_content_text_size 0x7f07066d +int dimen module_v2x_fault_help_img_content_width 0x7f07066e +int dimen module_v2x_fault_help_name_margin_top 0x7f07066f +int dimen module_v2x_fault_help_name_text_size 0x7f070670 +int dimen module_v2x_fault_help_time_margin_bottom 0x7f070671 +int dimen module_v2x_fault_help_time_text_size 0x7f070672 +int dimen module_v2x_fault_help_width 0x7f070673 +int dimen module_v2x_history_event_icon_size 0x7f070674 +int dimen module_v2x_live_window_height 0x7f070675 +int dimen module_v2x_map_bottom 0x7f070676 +int dimen module_v2x_map_left 0x7f070677 +int dimen module_v2x_map_right 0x7f070678 +int dimen module_v2x_map_top 0x7f070679 +int dimen module_v2x_operation_panel_share_goneMarginRight 0x7f07067a +int dimen module_v2x_panel_icon_cor 0x7f07067b +int dimen module_v2x_panel_surrounding_marginbottom 0x7f07067c +int dimen module_v2x_panel_surrounding_stance 0x7f07067d +int dimen module_v2x_panel_tab_height 0x7f07067e +int dimen module_v2x_panel_width 0x7f07067f +int dimen module_v2x_push_img_container_height 0x7f070680 +int dimen module_v2x_push_img_height 0x7f070681 +int dimen module_v2x_road_event_bg_radius 0x7f070682 +int dimen module_v2x_road_event_height 0x7f070683 +int dimen module_v2x_road_event_icon_height 0x7f070684 +int dimen module_v2x_road_event_icon_margin_left 0x7f070685 +int dimen module_v2x_road_event_icon_play_margin_top 0x7f070686 +int dimen module_v2x_road_event_icon_width 0x7f070687 +int dimen module_v2x_road_event_text_play_text_size 0x7f070688 +int dimen module_v2x_road_event_text_size 0x7f070689 +int dimen module_v2x_road_event_window_height_vr 0x7f07068a +int dimen module_v2x_road_event_window_width_vr 0x7f07068b +int dimen module_v2x_search_marginLeft 0x7f07068c +int dimen module_v2x_surrounding_empty_bt_height 0x7f07068d +int dimen module_v2x_surrounding_empty_bt_margin_top 0x7f07068e +int dimen module_v2x_surrounding_empty_bt_width 0x7f07068f +int dimen module_v2x_surrounding_empty_image_height 0x7f070690 +int dimen module_v2x_surrounding_empty_iv_margin_top 0x7f070691 +int dimen module_v2x_surrounding_empty_tv_margin_top 0x7f070692 +int dimen module_v2x_surrounding_item_bottom 0x7f070693 +int dimen module_v2x_surrounding_item_bottom_image_height 0x7f070694 +int dimen module_v2x_surrounding_item_bottom_left_textsize 0x7f070695 +int dimen module_v2x_surrounding_item_bottom_right_textsize 0x7f070696 +int dimen module_v2x_surrounding_item_bottom_size 0x7f070697 +int dimen module_v2x_surrounding_item_height 0x7f070698 +int dimen module_v2x_surrounding_item_maigin_left 0x7f070699 +int dimen module_v2x_surrounding_item_margin_left 0x7f07069a +int dimen module_v2x_surrounding_item_marigin_bottom_left 0x7f07069b +int dimen module_v2x_surrounding_item_marigin_left 0x7f07069c +int dimen module_v2x_surrounding_item_width 0x7f07069d +int dimen module_v2x_surrounding_list_margin_left 0x7f07069e +int dimen module_v2x_surrounding_margin_left 0x7f07069f +int dimen module_v2x_surrounding_refresh_bt_radius 0x7f0706a0 +int dimen module_v2x_surrounding_root_margin_left 0x7f0706a1 +int dimen module_v2x_surrounding_top 0x7f0706a2 +int dimen module_v2x_surrounding_top_bt_height 0x7f0706a3 +int dimen module_v2x_surrounding_top_bt_width 0x7f0706a4 +int dimen module_v2x_surrounding_top_height 0x7f0706a5 +int dimen module_v2x_surrounding_top_textsize 0x7f0706a6 +int dimen module_v2x_widow_top_gaps 0x7f0706a7 +int dimen module_vip_height 0x7f0706a8 +int dimen module_vip_margin_left 0x7f0706a9 +int dimen module_vip_margin_top 0x7f0706aa +int dimen module_vip_width 0x7f0706ab +int dimen mohist_utility_large_pad_min_height 0x7f0706ac +int dimen mohist_utility_large_pad_min_width 0x7f0706ad +int dimen mtrl_alert_dialog_background_inset_bottom 0x7f0706ae +int dimen mtrl_alert_dialog_background_inset_end 0x7f0706af +int dimen mtrl_alert_dialog_background_inset_start 0x7f0706b0 +int dimen mtrl_alert_dialog_background_inset_top 0x7f0706b1 +int dimen mtrl_alert_dialog_picker_background_inset 0x7f0706b2 +int dimen mtrl_badge_horizontal_edge_offset 0x7f0706b3 +int dimen mtrl_badge_long_text_horizontal_padding 0x7f0706b4 +int dimen mtrl_badge_radius 0x7f0706b5 +int dimen mtrl_badge_text_horizontal_edge_offset 0x7f0706b6 +int dimen mtrl_badge_text_size 0x7f0706b7 +int dimen mtrl_badge_toolbar_action_menu_item_horizontal_offset 0x7f0706b8 +int dimen mtrl_badge_toolbar_action_menu_item_vertical_offset 0x7f0706b9 +int dimen mtrl_badge_with_text_radius 0x7f0706ba +int dimen mtrl_bottomappbar_fabOffsetEndMode 0x7f0706bb +int dimen mtrl_bottomappbar_fab_bottom_margin 0x7f0706bc +int dimen mtrl_bottomappbar_fab_cradle_margin 0x7f0706bd +int dimen mtrl_bottomappbar_fab_cradle_rounded_corner_radius 0x7f0706be +int dimen mtrl_bottomappbar_fab_cradle_vertical_offset 0x7f0706bf +int dimen mtrl_bottomappbar_height 0x7f0706c0 +int dimen mtrl_btn_corner_radius 0x7f0706c1 +int dimen mtrl_btn_dialog_btn_min_width 0x7f0706c2 +int dimen mtrl_btn_disabled_elevation 0x7f0706c3 +int dimen mtrl_btn_disabled_z 0x7f0706c4 +int dimen mtrl_btn_elevation 0x7f0706c5 +int dimen mtrl_btn_focused_z 0x7f0706c6 +int dimen mtrl_btn_hovered_z 0x7f0706c7 +int dimen mtrl_btn_icon_btn_padding_left 0x7f0706c8 +int dimen mtrl_btn_icon_padding 0x7f0706c9 +int dimen mtrl_btn_inset 0x7f0706ca +int dimen mtrl_btn_letter_spacing 0x7f0706cb +int dimen mtrl_btn_max_width 0x7f0706cc +int dimen mtrl_btn_padding_bottom 0x7f0706cd +int dimen mtrl_btn_padding_left 0x7f0706ce +int dimen mtrl_btn_padding_right 0x7f0706cf +int dimen mtrl_btn_padding_top 0x7f0706d0 +int dimen mtrl_btn_pressed_z 0x7f0706d1 +int dimen mtrl_btn_snackbar_margin_horizontal 0x7f0706d2 +int dimen mtrl_btn_stroke_size 0x7f0706d3 +int dimen mtrl_btn_text_btn_icon_padding 0x7f0706d4 +int dimen mtrl_btn_text_btn_padding_left 0x7f0706d5 +int dimen mtrl_btn_text_btn_padding_right 0x7f0706d6 +int dimen mtrl_btn_text_size 0x7f0706d7 +int dimen mtrl_btn_z 0x7f0706d8 +int dimen mtrl_calendar_action_confirm_button_min_width 0x7f0706d9 +int dimen mtrl_calendar_action_height 0x7f0706da +int dimen mtrl_calendar_action_padding 0x7f0706db +int dimen mtrl_calendar_bottom_padding 0x7f0706dc +int dimen mtrl_calendar_content_padding 0x7f0706dd +int dimen mtrl_calendar_day_corner 0x7f0706de +int dimen mtrl_calendar_day_height 0x7f0706df +int dimen mtrl_calendar_day_horizontal_padding 0x7f0706e0 +int dimen mtrl_calendar_day_today_stroke 0x7f0706e1 +int dimen mtrl_calendar_day_vertical_padding 0x7f0706e2 +int dimen mtrl_calendar_day_width 0x7f0706e3 +int dimen mtrl_calendar_days_of_week_height 0x7f0706e4 +int dimen mtrl_calendar_dialog_background_inset 0x7f0706e5 +int dimen mtrl_calendar_header_content_padding 0x7f0706e6 +int dimen mtrl_calendar_header_content_padding_fullscreen 0x7f0706e7 +int dimen mtrl_calendar_header_divider_thickness 0x7f0706e8 +int dimen mtrl_calendar_header_height 0x7f0706e9 +int dimen mtrl_calendar_header_height_fullscreen 0x7f0706ea +int dimen mtrl_calendar_header_selection_line_height 0x7f0706eb +int dimen mtrl_calendar_header_text_padding 0x7f0706ec +int dimen mtrl_calendar_header_toggle_margin_bottom 0x7f0706ed +int dimen mtrl_calendar_header_toggle_margin_top 0x7f0706ee +int dimen mtrl_calendar_landscape_header_width 0x7f0706ef +int dimen mtrl_calendar_maximum_default_fullscreen_minor_axis 0x7f0706f0 +int dimen mtrl_calendar_month_horizontal_padding 0x7f0706f1 +int dimen mtrl_calendar_month_vertical_padding 0x7f0706f2 +int dimen mtrl_calendar_navigation_bottom_padding 0x7f0706f3 +int dimen mtrl_calendar_navigation_height 0x7f0706f4 +int dimen mtrl_calendar_navigation_top_padding 0x7f0706f5 +int dimen mtrl_calendar_pre_l_text_clip_padding 0x7f0706f6 +int dimen mtrl_calendar_selection_baseline_to_top_fullscreen 0x7f0706f7 +int dimen mtrl_calendar_selection_text_baseline_to_bottom 0x7f0706f8 +int dimen mtrl_calendar_selection_text_baseline_to_bottom_fullscreen 0x7f0706f9 +int dimen mtrl_calendar_selection_text_baseline_to_top 0x7f0706fa +int dimen mtrl_calendar_text_input_padding_top 0x7f0706fb +int dimen mtrl_calendar_title_baseline_to_top 0x7f0706fc +int dimen mtrl_calendar_title_baseline_to_top_fullscreen 0x7f0706fd +int dimen mtrl_calendar_year_corner 0x7f0706fe +int dimen mtrl_calendar_year_height 0x7f0706ff +int dimen mtrl_calendar_year_horizontal_padding 0x7f070700 +int dimen mtrl_calendar_year_vertical_padding 0x7f070701 +int dimen mtrl_calendar_year_width 0x7f070702 +int dimen mtrl_card_checked_icon_margin 0x7f070703 +int dimen mtrl_card_checked_icon_size 0x7f070704 +int dimen mtrl_card_corner_radius 0x7f070705 +int dimen mtrl_card_dragged_z 0x7f070706 +int dimen mtrl_card_elevation 0x7f070707 +int dimen mtrl_card_spacing 0x7f070708 +int dimen mtrl_chip_pressed_translation_z 0x7f070709 +int dimen mtrl_chip_text_size 0x7f07070a +int dimen mtrl_edittext_rectangle_top_offset 0x7f07070b +int dimen mtrl_exposed_dropdown_menu_popup_elevation 0x7f07070c +int dimen mtrl_exposed_dropdown_menu_popup_vertical_offset 0x7f07070d +int dimen mtrl_exposed_dropdown_menu_popup_vertical_padding 0x7f07070e +int dimen mtrl_extended_fab_bottom_padding 0x7f07070f +int dimen mtrl_extended_fab_corner_radius 0x7f070710 +int dimen mtrl_extended_fab_disabled_elevation 0x7f070711 +int dimen mtrl_extended_fab_disabled_translation_z 0x7f070712 +int dimen mtrl_extended_fab_elevation 0x7f070713 +int dimen mtrl_extended_fab_end_padding 0x7f070714 +int dimen mtrl_extended_fab_end_padding_icon 0x7f070715 +int dimen mtrl_extended_fab_icon_size 0x7f070716 +int dimen mtrl_extended_fab_icon_text_spacing 0x7f070717 +int dimen mtrl_extended_fab_min_height 0x7f070718 +int dimen mtrl_extended_fab_min_width 0x7f070719 +int dimen mtrl_extended_fab_start_padding 0x7f07071a +int dimen mtrl_extended_fab_start_padding_icon 0x7f07071b +int dimen mtrl_extended_fab_top_padding 0x7f07071c +int dimen mtrl_extended_fab_translation_z_base 0x7f07071d +int dimen mtrl_extended_fab_translation_z_hovered_focused 0x7f07071e +int dimen mtrl_extended_fab_translation_z_pressed 0x7f07071f +int dimen mtrl_fab_elevation 0x7f070720 +int dimen mtrl_fab_min_touch_target 0x7f070721 +int dimen mtrl_fab_translation_z_hovered_focused 0x7f070722 +int dimen mtrl_fab_translation_z_pressed 0x7f070723 +int dimen mtrl_high_ripple_default_alpha 0x7f070724 +int dimen mtrl_high_ripple_focused_alpha 0x7f070725 +int dimen mtrl_high_ripple_hovered_alpha 0x7f070726 +int dimen mtrl_high_ripple_pressed_alpha 0x7f070727 +int dimen mtrl_large_touch_target 0x7f070728 +int dimen mtrl_low_ripple_default_alpha 0x7f070729 +int dimen mtrl_low_ripple_focused_alpha 0x7f07072a +int dimen mtrl_low_ripple_hovered_alpha 0x7f07072b +int dimen mtrl_low_ripple_pressed_alpha 0x7f07072c +int dimen mtrl_min_touch_target_size 0x7f07072d +int dimen mtrl_navigation_bar_item_default_icon_size 0x7f07072e +int dimen mtrl_navigation_bar_item_default_margin 0x7f07072f +int dimen mtrl_navigation_elevation 0x7f070730 +int dimen mtrl_navigation_item_horizontal_padding 0x7f070731 +int dimen mtrl_navigation_item_icon_padding 0x7f070732 +int dimen mtrl_navigation_item_icon_size 0x7f070733 +int dimen mtrl_navigation_item_shape_horizontal_margin 0x7f070734 +int dimen mtrl_navigation_item_shape_vertical_margin 0x7f070735 +int dimen mtrl_navigation_rail_active_text_size 0x7f070736 +int dimen mtrl_navigation_rail_compact_width 0x7f070737 +int dimen mtrl_navigation_rail_default_width 0x7f070738 +int dimen mtrl_navigation_rail_elevation 0x7f070739 +int dimen mtrl_navigation_rail_icon_margin 0x7f07073a +int dimen mtrl_navigation_rail_icon_size 0x7f07073b +int dimen mtrl_navigation_rail_margin 0x7f07073c +int dimen mtrl_navigation_rail_text_bottom_margin 0x7f07073d +int dimen mtrl_navigation_rail_text_size 0x7f07073e +int dimen mtrl_progress_circular_inset 0x7f07073f +int dimen mtrl_progress_circular_inset_extra_small 0x7f070740 +int dimen mtrl_progress_circular_inset_medium 0x7f070741 +int dimen mtrl_progress_circular_inset_small 0x7f070742 +int dimen mtrl_progress_circular_radius 0x7f070743 +int dimen mtrl_progress_circular_size 0x7f070744 +int dimen mtrl_progress_circular_size_extra_small 0x7f070745 +int dimen mtrl_progress_circular_size_medium 0x7f070746 +int dimen mtrl_progress_circular_size_small 0x7f070747 +int dimen mtrl_progress_circular_track_thickness_extra_small 0x7f070748 +int dimen mtrl_progress_circular_track_thickness_medium 0x7f070749 +int dimen mtrl_progress_circular_track_thickness_small 0x7f07074a +int dimen mtrl_progress_indicator_full_rounded_corner_radius 0x7f07074b +int dimen mtrl_progress_track_thickness 0x7f07074c +int dimen mtrl_shape_corner_size_large_component 0x7f07074d +int dimen mtrl_shape_corner_size_medium_component 0x7f07074e +int dimen mtrl_shape_corner_size_small_component 0x7f07074f +int dimen mtrl_slider_halo_radius 0x7f070750 +int dimen mtrl_slider_label_padding 0x7f070751 +int dimen mtrl_slider_label_radius 0x7f070752 +int dimen mtrl_slider_label_square_side 0x7f070753 +int dimen mtrl_slider_thumb_elevation 0x7f070754 +int dimen mtrl_slider_thumb_radius 0x7f070755 +int dimen mtrl_slider_track_height 0x7f070756 +int dimen mtrl_slider_track_side_padding 0x7f070757 +int dimen mtrl_slider_track_top 0x7f070758 +int dimen mtrl_slider_widget_height 0x7f070759 +int dimen mtrl_snackbar_action_text_color_alpha 0x7f07075a +int dimen mtrl_snackbar_background_corner_radius 0x7f07075b +int dimen mtrl_snackbar_background_overlay_color_alpha 0x7f07075c +int dimen mtrl_snackbar_margin 0x7f07075d +int dimen mtrl_snackbar_message_margin_horizontal 0x7f07075e +int dimen mtrl_snackbar_padding_horizontal 0x7f07075f +int dimen mtrl_switch_thumb_elevation 0x7f070760 +int dimen mtrl_textinput_box_corner_radius_medium 0x7f070761 +int dimen mtrl_textinput_box_corner_radius_small 0x7f070762 +int dimen mtrl_textinput_box_label_cutout_padding 0x7f070763 +int dimen mtrl_textinput_box_stroke_width_default 0x7f070764 +int dimen mtrl_textinput_box_stroke_width_focused 0x7f070765 +int dimen mtrl_textinput_counter_margin_start 0x7f070766 +int dimen mtrl_textinput_end_icon_margin_start 0x7f070767 +int dimen mtrl_textinput_outline_box_expanded_padding 0x7f070768 +int dimen mtrl_textinput_start_icon_margin_end 0x7f070769 +int dimen mtrl_toolbar_default_height 0x7f07076a +int dimen mtrl_tooltip_arrowSize 0x7f07076b +int dimen mtrl_tooltip_cornerSize 0x7f07076c +int dimen mtrl_tooltip_minHeight 0x7f07076d +int dimen mtrl_tooltip_minWidth 0x7f07076e +int dimen mtrl_tooltip_padding 0x7f07076f +int dimen mtrl_transition_shared_axis_slide_distance 0x7f070770 +int dimen notice_current_time_margin 0x7f070771 +int dimen notice_dialog_check_bg_corner 0x7f070772 +int dimen notice_fullscreen_bt 0x7f070773 +int dimen notice_loading_bt 0x7f070774 +int dimen notice_play_bottom 0x7f070775 +int dimen notice_play_height 0x7f070776 +int dimen notice_play_marginleft 0x7f070777 +int dimen notice_play_marginleft_small 0x7f070778 +int dimen notice_play_marginright 0x7f070779 +int dimen notice_play_marginright_small 0x7f07077a +int dimen notice_seekbar_bottom 0x7f07077b +int dimen notice_seekbar_width 0x7f07077c +int dimen notice_seekbar_width_small 0x7f07077d +int dimen notice_time_bottom 0x7f07077e +int dimen notice_traffic_acc_image_height 0x7f07077f +int dimen notice_traffic_acc_image_width 0x7f070780 +int dimen notice_traffic_back__height 0x7f070781 +int dimen notice_traffic_back__width 0x7f070782 +int dimen notice_traffic_info_height 0x7f070783 +int dimen notice_traffic_info_width 0x7f070784 +int dimen notification_action_icon_size 0x7f070785 +int dimen notification_action_text_size 0x7f070786 +int dimen notification_big_circle_margin 0x7f070787 +int dimen notification_content_margin_start 0x7f070788 +int dimen notification_large_icon_height 0x7f070789 +int dimen notification_large_icon_width 0x7f07078a +int dimen notification_main_column_padding_top 0x7f07078b +int dimen notification_media_narrow_margin 0x7f07078c +int dimen notification_right_icon_size 0x7f07078d +int dimen notification_right_side_padding_top 0x7f07078e +int dimen notification_small_icon_background_padding 0x7f07078f +int dimen notification_small_icon_size_as_large 0x7f070790 +int dimen notification_subtext_size 0x7f070791 +int dimen notification_top_pad 0x7f070792 +int dimen notification_top_pad_large_text 0x7f070793 +int dimen num_padding_left 0x7f070794 +int dimen padding_large 0x7f070795 +int dimen padding_medium 0x7f070796 +int dimen padding_small 0x7f070797 +int dimen panel_list_item_title_size 0x7f070798 +int dimen ratingbar_padding 0x7f070799 +int dimen road_sign_right 0x7f07079a +int dimen road_sign_top 0x7f07079b +int dimen scale 0x7f07079c +int dimen seek_bar_image 0x7f07079d +int dimen share_btn_middle_padding 0x7f07079e +int dimen share_des_num_size 0x7f07079f +int dimen share_empty_btn_padding 0x7f0707a0 +int dimen share_empty_icon_width 0x7f0707a1 +int dimen share_empty_margin_top 0x7f0707a2 +int dimen share_index_bottom_padding 0x7f0707a3 +int dimen share_index_des_size 0x7f0707a4 +int dimen share_item_address 0x7f0707a5 +int dimen share_item_padding 0x7f0707a6 +int dimen share_item_text_size 0x7f0707a7 +int dimen share_refresh_padding 0x7f0707a8 +int dimen share_top_text_size 0x7f0707a9 +int dimen sp_10 0x7f0707aa +int dimen sp_11 0x7f0707ab +int dimen sp_12 0x7f0707ac +int dimen sp_13 0x7f0707ad +int dimen sp_14 0x7f0707ae +int dimen sp_15 0x7f0707af +int dimen sp_16 0x7f0707b0 +int dimen sp_17 0x7f0707b1 +int dimen sp_18 0x7f0707b2 +int dimen sp_19 0x7f0707b3 +int dimen sp_20 0x7f0707b4 +int dimen sp_21 0x7f0707b5 +int dimen sp_22 0x7f0707b6 +int dimen sp_23 0x7f0707b7 +int dimen sp_24 0x7f0707b8 +int dimen sp_25 0x7f0707b9 +int dimen sp_28 0x7f0707ba +int dimen sp_30 0x7f0707bb +int dimen sp_32 0x7f0707bc +int dimen sp_34 0x7f0707bd +int dimen sp_36 0x7f0707be +int dimen sp_38 0x7f0707bf +int dimen sp_40 0x7f0707c0 +int dimen sp_42 0x7f0707c1 +int dimen sp_48 0x7f0707c2 +int dimen sp_6 0x7f0707c3 +int dimen sp_7 0x7f0707c4 +int dimen sp_8 0x7f0707c5 +int dimen sp_9 0x7f0707c6 +int dimen subtitle_corner_radius 0x7f0707c7 +int dimen subtitle_outline_width 0x7f0707c8 +int dimen subtitle_shadow_offset 0x7f0707c9 +int dimen subtitle_shadow_radius 0x7f0707ca +int dimen test_mtrl_calendar_day_cornerSize 0x7f0707cb +int dimen test_navigation_bar_active_item_max_width 0x7f0707cc +int dimen test_navigation_bar_active_item_min_width 0x7f0707cd +int dimen test_navigation_bar_active_text_size 0x7f0707ce +int dimen test_navigation_bar_elevation 0x7f0707cf +int dimen test_navigation_bar_height 0x7f0707d0 +int dimen test_navigation_bar_icon_size 0x7f0707d1 +int dimen test_navigation_bar_item_max_width 0x7f0707d2 +int dimen test_navigation_bar_item_min_width 0x7f0707d3 +int dimen test_navigation_bar_label_padding 0x7f0707d4 +int dimen test_navigation_bar_shadow_height 0x7f0707d5 +int dimen test_navigation_bar_text_size 0x7f0707d6 +int dimen text_size_btn 0x7f0707d7 +int dimen text_size_btn2 0x7f0707d8 +int dimen text_size_middle 0x7f0707d9 +int dimen text_size_nav 0x7f0707da +int dimen time_textsize 0x7f0707db +int dimen tooltip_corner_radius 0x7f0707dc +int dimen tooltip_horizontal_padding 0x7f0707dd +int dimen tooltip_margin 0x7f0707de +int dimen tooltip_precise_anchor_extra_offset 0x7f0707df +int dimen tooltip_precise_anchor_threshold 0x7f0707e0 +int dimen tooltip_vertical_padding 0x7f0707e1 +int dimen tooltip_y_offset_non_touch 0x7f0707e2 +int dimen tooltip_y_offset_touch 0x7f0707e3 +int dimen turnlight_bg_corner 0x7f0707e4 +int dimen turnlight_height 0x7f0707e5 +int dimen turnlight_width 0x7f0707e6 +int dimen useful_image_padding_right 0x7f0707e7 +int dimen useless_padding_right 0x7f0707e8 +int dimen v2x_driving_heigt 0x7f0707e9 +int dimen v2x_driving_width 0x7f0707ea +int dimen v2x_index_rating_top 0x7f0707eb +int dimen v2x_loading_ani_width 0x7f0707ec +int dimen v2x_panel_btn_image_width 0x7f0707ed +int dimen v2x_panel_btn_translationY 0x7f0707ee +int dimen v2x_panel_loading_top 0x7f0707ef +int dimen v2x_recommond_route_size 0x7f0707f0 +int dimen v2x_right_context_margin 0x7f0707f1 +int dimen v2x_share_btn_height 0x7f0707f2 +int dimen v2x_share_btn_width 0x7f0707f3 +int dimen v2x_video_window_height 0x7f0707f4 +int dimen v2x_video_window_height_content 0x7f0707f5 +int dimen vertical_margin 0x7f0707f6 +int dimen video_progress_dialog_margin_top 0x7f0707f7 +int dimen video_volume_dialog_margin_left 0x7f0707f8 +int dimen warning_distance_right 0x7f0707f9 +int drawable abc_ab_share_pack_mtrl_alpha 0x7f080001 +int drawable abc_action_bar_item_background_material 0x7f080002 +int drawable abc_btn_borderless_material 0x7f080003 +int drawable abc_btn_check_material 0x7f080004 +int drawable abc_btn_check_material_anim 0x7f080005 +int drawable abc_btn_check_to_on_mtrl_000 0x7f080006 +int drawable abc_btn_check_to_on_mtrl_015 0x7f080007 +int drawable abc_btn_colored_material 0x7f080008 +int drawable abc_btn_default_mtrl_shape 0x7f080009 +int drawable abc_btn_radio_material 0x7f08000a +int drawable abc_btn_radio_material_anim 0x7f08000b +int drawable abc_btn_radio_to_on_mtrl_000 0x7f08000c +int drawable abc_btn_radio_to_on_mtrl_015 0x7f08000d +int drawable abc_btn_switch_to_on_mtrl_00001 0x7f08000e +int drawable abc_btn_switch_to_on_mtrl_00012 0x7f08000f +int drawable abc_cab_background_internal_bg 0x7f080010 +int drawable abc_cab_background_top_material 0x7f080011 +int drawable abc_cab_background_top_mtrl_alpha 0x7f080012 +int drawable abc_control_background_material 0x7f080013 +int drawable abc_dialog_material_background 0x7f080014 +int drawable abc_edit_text_material 0x7f080015 +int drawable abc_ic_ab_back_material 0x7f080016 +int drawable abc_ic_arrow_drop_right_black_24dp 0x7f080017 +int drawable abc_ic_clear_material 0x7f080018 +int drawable abc_ic_commit_search_api_mtrl_alpha 0x7f080019 +int drawable abc_ic_go_search_api_material 0x7f08001a +int drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f08001b +int drawable abc_ic_menu_cut_mtrl_alpha 0x7f08001c +int drawable abc_ic_menu_overflow_material 0x7f08001d +int drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f08001e +int drawable abc_ic_menu_selectall_mtrl_alpha 0x7f08001f +int drawable abc_ic_menu_share_mtrl_alpha 0x7f080020 +int drawable abc_ic_search_api_material 0x7f080021 +int drawable abc_ic_star_black_16dp 0x7f080022 +int drawable abc_ic_star_black_36dp 0x7f080023 +int drawable abc_ic_star_black_48dp 0x7f080024 +int drawable abc_ic_star_half_black_16dp 0x7f080025 +int drawable abc_ic_star_half_black_36dp 0x7f080026 +int drawable abc_ic_star_half_black_48dp 0x7f080027 +int drawable abc_ic_voice_search_api_material 0x7f080028 +int drawable abc_item_background_holo_dark 0x7f080029 +int drawable abc_item_background_holo_light 0x7f08002a +int drawable abc_list_divider_material 0x7f08002b +int drawable abc_list_divider_mtrl_alpha 0x7f08002c +int drawable abc_list_focused_holo 0x7f08002d +int drawable abc_list_longpressed_holo 0x7f08002e +int drawable abc_list_pressed_holo_dark 0x7f08002f +int drawable abc_list_pressed_holo_light 0x7f080030 +int drawable abc_list_selector_background_transition_holo_dark 0x7f080031 +int drawable abc_list_selector_background_transition_holo_light 0x7f080032 +int drawable abc_list_selector_disabled_holo_dark 0x7f080033 +int drawable abc_list_selector_disabled_holo_light 0x7f080034 +int drawable abc_list_selector_holo_dark 0x7f080035 +int drawable abc_list_selector_holo_light 0x7f080036 +int drawable abc_menu_hardkey_panel_mtrl_mult 0x7f080037 +int drawable abc_popup_background_mtrl_mult 0x7f080038 +int drawable abc_ratingbar_indicator_material 0x7f080039 +int drawable abc_ratingbar_material 0x7f08003a +int drawable abc_ratingbar_small_material 0x7f08003b +int drawable abc_scrubber_control_off_mtrl_alpha 0x7f08003c +int drawable abc_scrubber_control_to_pressed_mtrl_000 0x7f08003d +int drawable abc_scrubber_control_to_pressed_mtrl_005 0x7f08003e +int drawable abc_scrubber_primary_mtrl_alpha 0x7f08003f +int drawable abc_scrubber_track_mtrl_alpha 0x7f080040 +int drawable abc_seekbar_thumb_material 0x7f080041 +int drawable abc_seekbar_tick_mark_material 0x7f080042 +int drawable abc_seekbar_track_material 0x7f080043 +int drawable abc_spinner_mtrl_am_alpha 0x7f080044 +int drawable abc_spinner_textfield_background_material 0x7f080045 +int drawable abc_star_black_48dp 0x7f080046 +int drawable abc_star_half_black_48dp 0x7f080047 +int drawable abc_switch_thumb_material 0x7f080048 +int drawable abc_switch_track_mtrl_alpha 0x7f080049 +int drawable abc_tab_indicator_material 0x7f08004a +int drawable abc_tab_indicator_mtrl_alpha 0x7f08004b +int drawable abc_text_cursor_material 0x7f08004c +int drawable abc_text_select_handle_left_mtrl 0x7f08004d +int drawable abc_text_select_handle_left_mtrl_dark 0x7f08004e +int drawable abc_text_select_handle_left_mtrl_light 0x7f08004f +int drawable abc_text_select_handle_middle_mtrl 0x7f080050 +int drawable abc_text_select_handle_middle_mtrl_dark 0x7f080051 +int drawable abc_text_select_handle_middle_mtrl_light 0x7f080052 +int drawable abc_text_select_handle_right_mtrl 0x7f080053 +int drawable abc_text_select_handle_right_mtrl_dark 0x7f080054 +int drawable abc_text_select_handle_right_mtrl_light 0x7f080055 +int drawable abc_textfield_activated_mtrl_alpha 0x7f080056 +int drawable abc_textfield_default_mtrl_alpha 0x7f080057 +int drawable abc_textfield_search_activated_mtrl_alpha 0x7f080058 +int drawable abc_textfield_search_default_mtrl_alpha 0x7f080059 +int drawable abc_textfield_search_material 0x7f08005a +int drawable abc_vector_test 0x7f08005b +int drawable auto 0x7f08005c +int drawable avd_hide_password 0x7f08005d +int drawable avd_show_password 0x7f08005e +int drawable bg 0x7f08005f +int drawable bg_adas_dispatch 0x7f080060 +int drawable bg_adas_dispatch_affirm 0x7f080061 +int drawable bg_count_down 0x7f080062 +int drawable bg_fatigue_driving 0x7f080063 +int drawable bg_jj_pressed 0x7f080064 +int drawable bg_map_marker_blue 0x7f080065 +int drawable bg_map_marker_blue_dark 0x7f080066 +int drawable bg_map_marker_blue_info 0x7f080067 +int drawable bg_map_marker_dark_blue_info 0x7f080068 +int drawable bg_map_marker_dark_green_info 0x7f080069 +int drawable bg_map_marker_green 0x7f08006a +int drawable bg_map_marker_green_dark 0x7f08006b +int drawable bg_map_marker_green_info 0x7f08006c +int drawable bg_map_marker_grey_info 0x7f08006d +int drawable bg_map_marker_oragne 0x7f08006e +int drawable bg_map_marker_orange_info 0x7f08006f +int drawable bg_map_marker_purple 0x7f080070 +int drawable bg_map_marker_purple_info 0x7f080071 +int drawable bg_map_marker_red 0x7f080072 +int drawable bg_map_marker_red_info 0x7f080073 +int drawable bg_map_marker_yellow_info 0x7f080074 +int drawable bg_menu_n 0x7f080075 +int drawable bg_menu_p 0x7f080076 +int drawable bg_module_small_map_view_border 0x7f080077 +int drawable bg_pressed 0x7f080078 +int drawable bg_search_edit 0x7f080079 +int drawable bg_shape_reverse_triangle_blue 0x7f08007a +int drawable bg_shape_reverse_triangle_dark_blue 0x7f08007b +int drawable bg_shape_reverse_triangle_dark_green 0x7f08007c +int drawable bg_shape_reverse_triangle_green 0x7f08007d +int drawable bg_shape_reverse_triangle_orange 0x7f08007e +int drawable bg_shape_reverse_triangle_purple 0x7f08007f +int drawable bg_shape_reverse_triangle_red 0x7f080080 +int drawable bg_shape_reverse_yellow 0x7f080081 +int drawable bg_v2x_cancel_help 0x7f080082 +int drawable bg_v2x_event_bg 0x7f080083 +int drawable bg_v2x_event_description 0x7f080084 +int drawable bg_v2x_event_list_item 0x7f080085 +int drawable bg_v2x_event_live_show 0x7f080086 +int drawable bg_v2x_event_type_blue 0x7f080087 +int drawable bg_v2x_event_type_gray 0x7f080088 +int drawable bg_v2x_event_type_green 0x7f080089 +int drawable bg_v2x_event_type_orange 0x7f08008a +int drawable bg_v2x_event_type_orange_vr 0x7f08008b +int drawable bg_v2x_event_type_read 0x7f08008c +int drawable bg_v2x_event_type_red_vr 0x7f08008d +int drawable bg_v2x_go_to_share 0x7f08008e +int drawable bg_v2x_red_two_round_vr 0x7f08008f +int drawable bg_v2x_refresh 0x7f080090 +int drawable bg_v2x_surrounding_event_list_item 0x7f080091 +int drawable bg_waring_limiting_velocity 0x7f080092 +int drawable bg_waring_traffic_light_vr 0x7f080093 +int drawable bg_warning_bg 0x7f080094 +int drawable black 0x7f080095 +int drawable brvah_sample_footer_loading 0x7f080096 +int drawable brvah_sample_footer_loading_progress 0x7f080097 +int drawable btn 0x7f080098 +int drawable btn_bg 0x7f080099 +int drawable btn_checkbox_checked_mtrl 0x7f08009a +int drawable btn_checkbox_checked_to_unchecked_mtrl_animation 0x7f08009b +int drawable btn_checkbox_unchecked_mtrl 0x7f08009c +int drawable btn_checkbox_unchecked_to_checked_mtrl_animation 0x7f08009d +int drawable btn_day 0x7f08009e +int drawable btn_day_press 0x7f08009f +int drawable btn_guidance_selecter 0x7f0800a0 +int drawable btn_keyboard_key_ics 0x7f0800a1 +int drawable btn_night 0x7f0800a2 +int drawable btn_night_press 0x7f0800a3 +int drawable btn_p 0x7f0800a4 +int drawable btn_radio_off_mtrl 0x7f0800a5 +int drawable btn_radio_off_to_on_mtrl_animation 0x7f0800a6 +int drawable btn_radio_on_mtrl 0x7f0800a7 +int drawable btn_radio_on_to_off_mtrl_animation 0x7f0800a8 +int drawable btn_selecter 0x7f0800a9 +int drawable btn_selecter_day 0x7f0800aa +int drawable btn_selecter_night 0x7f0800ab +int drawable btn_selecter_s 0x7f0800ac +int drawable btn_show_bg 0x7f0800ad +int drawable btn_text_color 0x7f0800ae +int drawable button_selectordialog_gray 0x7f0800af +int drawable camera_gradient_shadow_bg 0x7f0800b0 +int drawable camera_unusual 0x7f0800b1 +int drawable camera_usual 0x7f0800b2 +int drawable check_button 0x7f0800b3 +int drawable check_car_nor 0x7f0800b4 +int drawable check_chage_color 0x7f0800b5 +int drawable check_detail 0x7f0800b6 +int drawable check_dialog_back 0x7f0800b7 +int drawable check_error_image 0x7f0800b8 +int drawable check_item_left_shape 0x7f0800b9 +int drawable check_list_item_back 0x7f0800ba +int drawable check_little_btn 0x7f0800bb +int drawable check_little_btn_green 0x7f0800bc +int drawable check_progress 0x7f0800bd +int drawable check_reboot 0x7f0800be +int drawable check_recycler_shape 0x7f0800bf +int drawable check_right 0x7f0800c0 +int drawable check_scan_first 0x7f0800c1 +int drawable check_scan_second 0x7f0800c2 +int drawable check_scan_tips 0x7f0800c3 +int drawable check_shut_down 0x7f0800c4 +int drawable check_tip_image 0x7f0800c5 +int drawable check_top_item_left_shape 0x7f0800c6 +int drawable check_top_item_no_line_shape 0x7f0800c7 +int drawable check_top_item_shape 0x7f0800c8 +int drawable check_wrong 0x7f0800c9 +int drawable close_icon 0x7f0800ca +int drawable common_marker_bottom_floor 0x7f0800cb +int drawable custom_info_bubble 0x7f0800cc +int drawable dark_clore_close 0x7f0800cd +int drawable dark_color_close 0x7f0800ce +int drawable debug_icon_feedback 0x7f0800cf +int drawable debug_icon_nor 0x7f0800d0 +int drawable debug_setting_edit_bg 0x7f0800d1 +int drawable design_bottom_navigation_item_background 0x7f0800d2 +int drawable design_fab_background 0x7f0800d3 +int drawable design_ic_visibility 0x7f0800d4 +int drawable design_ic_visibility_off 0x7f0800d5 +int drawable design_password_eye 0x7f0800d6 +int drawable design_snackbar_background 0x7f0800d7 +int drawable divider_line 0x7f0800d8 +int drawable editbox_bkg 0x7f0800d9 +int drawable empty_drawable 0x7f0800da +int drawable exo_controls_fastforward 0x7f0800db +int drawable exo_controls_next 0x7f0800dc +int drawable exo_controls_pause 0x7f0800dd +int drawable exo_controls_play 0x7f0800de +int drawable exo_controls_previous 0x7f0800df +int drawable exo_controls_rewind 0x7f0800e0 +int drawable exo_edit_mode_logo 0x7f0800e1 +int drawable flex_divider 0x7f0800e2 +int drawable gray 0x7f0800e3 +int drawable gray2 0x7f0800e4 +int drawable gray3 0x7f0800e5 +int drawable gray4 0x7f0800e6 +int drawable green 0x7f0800e7 +int drawable guidance_speed_bg 0x7f0800e8 +int drawable guidance_speed_p_bg 0x7f0800e9 +int drawable ic_amap_navi_cursor 0x7f0800ea +int drawable ic_back 0x7f0800eb +int drawable ic_back_true 0x7f0800ec +int drawable ic_can_config 0x7f0800ed +int drawable ic_can_config_true 0x7f0800ee +int drawable ic_clock_black_24dp 0x7f0800ef +int drawable ic_data_preview 0x7f0800f0 +int drawable ic_data_preview_true 0x7f0800f1 +int drawable ic_keyboard_arrow_left_white_36dp 0x7f0800f2 +int drawable ic_keyboard_black_24dp 0x7f0800f3 +int drawable ic_launcher_background 0x7f0800f4 +int drawable ic_map_textview_bg 0x7f0800f5 +int drawable ic_mic 0x7f0800f6 +int drawable ic_mic_no_enabled 0x7f0800f7 +int drawable ic_mic_true 0x7f0800f8 +int drawable ic_minimality 0x7f0800f9 +int drawable ic_minimality_true 0x7f0800fa +int drawable ic_mtrl_checked_circle 0x7f0800fb +int drawable ic_mtrl_chip_checked_black 0x7f0800fc +int drawable ic_mtrl_chip_checked_circle 0x7f0800fd +int drawable ic_mtrl_chip_close_circle 0x7f0800fe +int drawable ic_navi_start 0x7f0800ff +int drawable ic_navi_target 0x7f080100 +int drawable ic_panel_route_select 0x7f080101 +int drawable ic_panel_route_select_down 0x7f080102 +int drawable ic_reverse_triangle 0x7f080103 +int drawable ic_search_input 0x7f080104 +int drawable ic_settings 0x7f080105 +int drawable ic_settings_true 0x7f080106 +int drawable ic_share_black_24dp 0x7f080107 +int drawable ic_start 0x7f080108 +int drawable ic_start_true 0x7f080109 +int drawable ic_stop 0x7f08010a +int drawable ic_stop_true 0x7f08010b +int drawable icon_ad 0x7f08010c +int drawable icon_ap_badcase_check 0x7f08010d +int drawable icon_ap_badcase_default 0x7f08010e +int drawable icon_autopilot_status 0x7f08010f +int drawable icon_autopilot_status_disabled 0x7f080110 +int drawable icon_back 0x7f080111 +int drawable icon_camera_nor 0x7f080112 +int drawable icon_camera_selected 0x7f080113 +int drawable icon_car_ambulance 0x7f080114 +int drawable icon_car_ap_badcase_entrance 0x7f080115 +int drawable icon_car_for_help 0x7f080116 +int drawable icon_car_gray 0x7f080117 +int drawable icon_car_police 0x7f080118 +int drawable icon_car_red 0x7f080119 +int drawable icon_close_nor 0x7f08011a +int drawable icon_default_user_head 0x7f08011b +int drawable icon_down 0x7f08011c +int drawable icon_downloading 0x7f08011d +int drawable icon_event_panel_more 0x7f08011e +int drawable icon_gray_back_heart 0x7f08011f +int drawable icon_heart_choose 0x7f080120 +int drawable icon_heart_like 0x7f080121 +int drawable icon_heart_like_bg 0x7f080122 +int drawable icon_heart_like_for_gray_back 0x7f080123 +int drawable icon_heart_second 0x7f080124 +int drawable icon_heart_second_other 0x7f080125 +int drawable icon_heart_unchoose 0x7f080126 +int drawable icon_heart_unchoose_other 0x7f080127 +int drawable icon_heart_unlike 0x7f080128 +int drawable icon_illegal_parking 0x7f080129 +int drawable icon_illegal_parking_vr 0x7f08012a +int drawable icon_latest_version 0x7f08012b +int drawable icon_live_load_error 0x7f08012c +int drawable icon_map_marker_4s 0x7f08012d +int drawable icon_map_marker_book 0x7f08012e +int drawable icon_map_marker_car_gray 0x7f08012f +int drawable icon_map_marker_car_gray_selected 0x7f080130 +int drawable icon_map_marker_car_type2 0x7f080131 +int drawable icon_map_marker_car_type_110 0x7f080132 +int drawable icon_map_marker_car_type_119 0x7f080133 +int drawable icon_map_marker_car_type_120 0x7f080134 +int drawable icon_map_marker_car_type_bus 0x7f080135 +int drawable icon_map_marker_car_type_taxi 0x7f080136 +int drawable icon_map_marker_living 0x7f080137 +int drawable icon_map_marker_living_white 0x7f080138 +int drawable icon_map_marker_location_blue 0x7f080139 +int drawable icon_map_marker_location_yellow 0x7f08013a +int drawable icon_map_marker_location_yellow_vr 0x7f08013b +int drawable icon_map_marker_misic 0x7f08013c +int drawable icon_map_marker_news 0x7f08013d +int drawable icon_map_marker_pondingl 0x7f08013e +int drawable icon_map_marker_pondingl2 0x7f08013f +int drawable icon_map_marker_pondingl2_white 0x7f080140 +int drawable icon_map_marker_refuel 0x7f080141 +int drawable icon_map_marker_road_block_off 0x7f080142 +int drawable icon_map_marker_road_block_off2 0x7f080143 +int drawable icon_map_marker_road_block_off2_white 0x7f080144 +int drawable icon_map_marker_road_block_up 0x7f080145 +int drawable icon_map_marker_road_block_up2 0x7f080146 +int drawable icon_map_marker_road_block_up2_white 0x7f080147 +int drawable icon_map_marker_road_check 0x7f080148 +int drawable icon_map_marker_road_check2 0x7f080149 +int drawable icon_map_marker_road_check2_white 0x7f08014a +int drawable icon_map_marker_road_work 0x7f08014b +int drawable icon_map_marker_road_work2 0x7f08014c +int drawable icon_map_marker_road_work2_white 0x7f08014d +int drawable icon_map_marker_shear_news 0x7f08014e +int drawable icon_map_marker_shop 0x7f08014f +int drawable icon_map_marker_shop_discount 0x7f080150 +int drawable icon_module_small_map_four_corners 0x7f080151 +int drawable icon_pad 0x7f080152 +int drawable icon_parking_p 0x7f080153 +int drawable icon_play 0x7f080154 +int drawable icon_report_err 0x7f080155 +int drawable icon_report_err_press 0x7f080156 +int drawable icon_report_true 0x7f080157 +int drawable icon_report_true_press 0x7f080158 +int drawable icon_rideo_nor 0x7f080159 +int drawable icon_right 0x7f08015a +int drawable icon_route_ending 0x7f08015b +int drawable icon_share_empty 0x7f08015c +int drawable icon_signal 0x7f08015d +int drawable icon_space 0x7f08015e +int drawable icon_talk 0x7f08015f +int drawable icon_tools_nor 0x7f080160 +int drawable icon_upgrade_failed 0x7f080161 +int drawable icon_upgradeable 0x7f080162 +int drawable icon_upgrading 0x7f080163 +int drawable icon_waring_traffic_light_green_vr 0x7f080164 +int drawable icon_waring_traffic_light_red_vr 0x7f080165 +int drawable icon_waring_traffic_light_yellow_vr 0x7f080166 +int drawable icon_warning_v2x_abnormal_vehicle 0x7f080167 +int drawable icon_warning_v2x_blind_area_collision 0x7f080168 +int drawable icon_warning_v2x_collision_warning 0x7f080169 +int drawable icon_warning_v2x_congestion 0x7f08016a +int drawable icon_warning_v2x_emergency_brake 0x7f08016b +int drawable icon_warning_v2x_give_way 0x7f08016c +int drawable icon_warning_v2x_hump_bridge 0x7f08016d +int drawable icon_warning_v2x_motorcycle_collision 0x7f08016e +int drawable icon_warning_v2x_no_parking 0x7f08016f +int drawable icon_warning_v2x_optimal_route 0x7f080170 +int drawable icon_warning_v2x_over_speed 0x7f080171 +int drawable icon_warning_v2x_pedestrian_crossing 0x7f080172 +int drawable icon_warning_v2x_reverse_overtaking 0x7f080173 +int drawable icon_warning_v2x_road_construction 0x7f080174 +int drawable icon_warning_v2x_road_dangerous 0x7f080175 +int drawable icon_warning_v2x_roundaboutpng 0x7f080176 +int drawable icon_warning_v2x_school 0x7f080177 +int drawable icon_warning_v2x_special_vehicle_access 0x7f080178 +int drawable icon_warning_v2x_test_section 0x7f080179 +int drawable icon_warning_v2x_traffic_light_gray 0x7f08017a +int drawable icon_warning_v2x_traffic_light_green 0x7f08017b +int drawable icon_warning_v2x_traffic_light_red 0x7f08017c +int drawable icon_warning_v2x_traffic_light_yellow 0x7f08017d +int drawable icon_warning_v2x_traffic_lights_green 0x7f08017e +int drawable icon_warning_v2x_traffic_lights_red 0x7f08017f +int drawable icon_warning_v2x_tramcar 0x7f080180 +int drawable icon_warning_v2x_turn_left_sharp 0x7f080181 +int drawable icon_warning_v2x_turn_right_sharp 0x7f080182 +int drawable icon_warning_v2x_vehicle_control 0x7f080183 +int drawable icon_warning_v2x_vip_turn_light 0x7f080184 +int drawable input_cursor 0x7f080185 +int drawable jiaojiguang_usual 0x7f080186 +int drawable keyboard_background_holo 0x7f080187 +int drawable keyboard_blue 0x7f080188 +int drawable keyboard_white 0x7f080189 +int drawable leak_canary_count_background 0x7f08018a +int drawable leak_canary_dump 0x7f08018b +int drawable leak_canary_gray_fill 0x7f08018c +int drawable leak_canary_icon 0x7f08018d +int drawable leak_canary_icon_foreground 0x7f08018e +int drawable leak_canary_info 0x7f08018f +int drawable leak_canary_info_rectangle 0x7f080190 +int drawable leak_canary_leak 0x7f080191 +int drawable leak_canary_primary_button 0x7f080192 +int drawable leak_canary_secondary_button 0x7f080193 +int drawable leak_canary_tab_background 0x7f080194 +int drawable leak_canary_tab_selector_ripple 0x7f080195 +int drawable leak_canary_toast_background 0x7f080196 +int drawable leak_canary_tv_icon 0x7f080197 +int drawable line_v 0x7f080198 +int drawable list_line 0x7f080199 +int drawable listview_bg_dark 0x7f08019a +int drawable lock 0x7f08019b +int drawable log_debug_dialog_bg 0x7f08019c +int drawable log_debug_retry_btn_bg 0x7f08019d +int drawable log_debug_start_btn_bg 0x7f08019e +int drawable log_debug_stop_btn_bg 0x7f08019f +int drawable log_filter_background 0x7f0801a0 +int drawable luyouqi_unusual 0x7f0801a1 +int drawable luyouqi_usual 0x7f0801a2 +int drawable main_bitmap_splash_bg 0x7f0801a3 +int drawable main_bitmap_splash_icon 0x7f0801a4 +int drawable main_splash_bg 0x7f0801a5 +int drawable map_api_ic_current_location2 0x7f0801a6 +int drawable map_api_ic_current_location2_cursor 0x7f0801a7 +int drawable mapcolor 0x7f0801a8 +int drawable mapscale 0x7f0801a9 +int drawable marker_blue 0x7f0801aa +int drawable material_cursor_drawable 0x7f0801ab +int drawable material_ic_calendar_black_24dp 0x7f0801ac +int drawable material_ic_clear_black_24dp 0x7f0801ad +int drawable material_ic_edit_black_24dp 0x7f0801ae +int drawable material_ic_keyboard_arrow_left_black_24dp 0x7f0801af +int drawable material_ic_keyboard_arrow_next_black_24dp 0x7f0801b0 +int drawable material_ic_keyboard_arrow_previous_black_24dp 0x7f0801b1 +int drawable material_ic_keyboard_arrow_right_black_24dp 0x7f0801b2 +int drawable material_ic_menu_arrow_down_black_24dp 0x7f0801b3 +int drawable material_ic_menu_arrow_up_black_24dp 0x7f0801b4 +int drawable menu_left_btn_p 0x7f0801b5 +int drawable module_arrow_left_nor 0x7f0801b6 +int drawable module_arrow_left_select_nor 0x7f0801b7 +int drawable module_arrow_right_nor 0x7f0801b8 +int drawable module_arrow_right_select_nor 0x7f0801b9 +int drawable module_blank_nor 0x7f0801ba +int drawable module_camera_normal_traffic 0x7f0801bb +int drawable module_camera_real_time_traffic 0x7f0801bc +int drawable module_carchatting_aicloud_incoming 0x7f0801bd +int drawable module_carchatting_vr_calling_bg 0x7f0801be +int drawable module_common_close_selector 0x7f0801bf +int drawable module_common_close_selector_vr 0x7f0801c0 +int drawable module_common_default_user_head 0x7f0801c1 +int drawable module_common_ic_rc_accident3 0x7f0801c2 +int drawable module_common_ic_rc_accident3_white 0x7f0801c3 +int drawable module_common_ic_rc_dark_frog2 0x7f0801c4 +int drawable module_common_ic_rc_dark_frog2_white 0x7f0801c5 +int drawable module_common_ic_rc_freeze2 0x7f0801c6 +int drawable module_common_ic_rc_freeze2_white 0x7f0801c7 +int drawable module_common_ic_rc_illegal_park 0x7f0801c8 +int drawable module_common_ic_rc_illegal_park_white 0x7f0801c9 +int drawable module_common_ic_rc_parking2 0x7f0801ca +int drawable module_common_icon_close 0x7f0801cb +int drawable module_common_icon_close_press 0x7f0801cc +int drawable module_common_icon_close_vr 0x7f0801cd +int drawable module_common_icon_like_selected_vr 0x7f0801ce +int drawable module_common_icon_like_vr 0x7f0801cf +int drawable module_common_icon_map_marker_4s 0x7f0801d0 +int drawable module_common_icon_map_marker_living 0x7f0801d1 +int drawable module_common_icon_map_marker_living_white 0x7f0801d2 +int drawable module_common_icon_map_marker_pondingl2 0x7f0801d3 +int drawable module_common_icon_map_marker_pondingl2_white 0x7f0801d4 +int drawable module_common_icon_map_marker_refuel 0x7f0801d5 +int drawable module_common_icon_map_marker_road_block_off2 0x7f0801d6 +int drawable module_common_icon_map_marker_road_block_off2_white 0x7f0801d7 +int drawable module_common_icon_map_marker_road_block_up2 0x7f0801d8 +int drawable module_common_icon_map_marker_road_block_up2_white 0x7f0801d9 +int drawable module_common_icon_map_marker_road_check2 0x7f0801da +int drawable module_common_icon_map_marker_road_check2_white 0x7f0801db +int drawable module_common_icon_map_marker_road_work2 0x7f0801dc +int drawable module_common_icon_map_marker_road_work2_white 0x7f0801dd +int drawable module_common_icon_map_marker_shear_news 0x7f0801de +int drawable module_common_icon_map_marker_shop 0x7f0801df +int drawable module_common_icon_map_marker_shop_discount 0x7f0801e0 +int drawable module_common_icon_seek_help 0x7f0801e1 +int drawable module_common_icon_unlike_selected_vr 0x7f0801e2 +int drawable module_common_icon_unlike_vr 0x7f0801e3 +int drawable module_common_like_vr 0x7f0801e4 +int drawable module_common_my_location_bg 0x7f0801e5 +int drawable module_common_selector_call 0x7f0801e6 +int drawable module_common_unlike_vr 0x7f0801e7 +int drawable module_commons_dialog_bg 0x7f0801e8 +int drawable module_commons_dialog_left_bg 0x7f0801e9 +int drawable module_commons_dialog_right_bg 0x7f0801ea +int drawable module_commons_heart_ratingbar_drawable 0x7f0801eb +int drawable module_commons_shape_dlg_round_bkg 0x7f0801ec +int drawable module_commons_shape_left_btn_bkg 0x7f0801ed +int drawable module_commons_shape_right_btn_bkg 0x7f0801ee +int drawable module_commons_toast_bkg 0x7f0801ef +int drawable module_dw_common_corner_bkg_light 0x7f0801f0 +int drawable module_ext_check 0x7f0801f1 +int drawable module_ext_drawable_shadow_bg 0x7f0801f2 +int drawable module_ext_shadow_bkg 0x7f0801f3 +int drawable module_ext_shadow_bkg_pressed 0x7f0801f4 +int drawable module_hmi_autopilot_status_bg 0x7f0801f5 +int drawable module_hmi_autopilot_status_checked_bg 0x7f0801f6 +int drawable module_hmi_autopilot_status_disabled_bg 0x7f0801f7 +int drawable module_hmi_autopilot_status_enable_bg 0x7f0801f8 +int drawable module_hmi_warning_bkg_bottom 0x7f0801f9 +int drawable module_hmi_warning_bkg_left 0x7f0801fa +int drawable module_hmi_warning_bkg_right 0x7f0801fb +int drawable module_hmi_warning_bkg_top 0x7f0801fc +int drawable module_light_nor 0x7f0801fd +int drawable module_main_dw_left_frame_bkg 0x7f0801fe +int drawable module_main_dw_top_frame_bkg 0x7f0801ff +int drawable module_main_launcher_bg 0x7f080200 +int drawable module_main_warning_bkg_bottom 0x7f080201 +int drawable module_main_warning_bkg_left 0x7f080202 +int drawable module_main_warning_bkg_right 0x7f080203 +int drawable module_main_warning_bkg_top 0x7f080204 +int drawable module_map_amap_my_location_icon 0x7f080205 +int drawable module_push_clear_bg 0x7f080206 +int drawable module_push_close 0x7f080207 +int drawable module_push_content_background 0x7f080208 +int drawable module_push_decrease_timer_bkg 0x7f080209 +int drawable module_push_dialog_check_background 0x7f08020a +int drawable module_push_dialog_close 0x7f08020b +int drawable module_push_item_background 0x7f08020c +int drawable module_push_item_background_origin 0x7f08020d +int drawable module_push_item_background_p 0x7f08020e +int drawable module_push_left_button 0x7f08020f +int drawable module_push_message_background 0x7f080210 +int drawable module_push_recycler_item_background 0x7f080211 +int drawable module_push_right_button 0x7f080212 +int drawable module_push_ui_delay_background 0x7f080213 +int drawable module_push_ui_ic_message2 0x7f080214 +int drawable module_service_dispatch_cars_affirm_bg 0x7f080215 +int drawable module_service_dispatch_cars_bg 0x7f080216 +int drawable module_service_dispatch_cars_cancel_bg 0x7f080217 +int drawable module_service_dispatch_timer_bg 0x7f080218 +int drawable module_service_ic_call 0x7f080219 +int drawable module_service_ic_rc_accident 0x7f08021a +int drawable module_service_ic_rc_accident2 0x7f08021b +int drawable module_service_ic_rc_accident3 0x7f08021c +int drawable module_service_ic_rc_accident3_white 0x7f08021d +int drawable module_service_ic_rc_dark_frog 0x7f08021e +int drawable module_service_ic_rc_dark_frog2 0x7f08021f +int drawable module_service_ic_rc_dark_frog2_white 0x7f080220 +int drawable module_service_ic_rc_freeze 0x7f080221 +int drawable module_service_ic_rc_freeze2 0x7f080222 +int drawable module_service_ic_rc_freeze2_white 0x7f080223 +int drawable module_service_ic_rc_illegal_park 0x7f080224 +int drawable module_service_ic_rc_illegal_park_white 0x7f080225 +int drawable module_service_ic_rc_parking 0x7f080226 +int drawable module_service_ic_rc_parking2 0x7f080227 +int drawable module_service_ic_rc_road_slippery 0x7f080228 +int drawable module_service_ic_rc_road_slippery_light 0x7f080229 +int drawable module_service_ic_seek_helping 0x7f08022a +int drawable module_service_left_corner_bg 0x7f08022b +int drawable module_service_right_corner_bg 0x7f08022c +int drawable module_services_driver_info_window_bkg 0x7f08022d +int drawable module_services_driver_type_blue_info 0x7f08022e +int drawable module_services_driver_type_green_info 0x7f08022f +int drawable module_services_driver_type_red_info 0x7f080230 +int drawable module_services_info_window_cursor 0x7f080231 +int drawable module_services_marker_bkg 0x7f080232 +int drawable module_services_marker_vr_bkg 0x7f080233 +int drawable module_services_marker_vr_bkg_checked 0x7f080234 +int drawable module_services_online_car_panel_background 0x7f080235 +int drawable module_services_online_car_panel_empty_icon 0x7f080236 +int drawable module_shadow_left_nor 0x7f080237 +int drawable module_shadow_right_nor 0x7f080238 +int drawable module_small_map_view_border 0x7f080239 +int drawable module_small_map_view_border_north 0x7f08023a +int drawable module_small_map_view_dir_end 0x7f08023b +int drawable module_small_map_view_dir_start 0x7f08023c +int drawable module_small_map_view_end 0x7f08023d +int drawable module_small_map_view_my_location_logo 0x7f08023e +int drawable module_small_map_view_start 0x7f08023f +int drawable module_switch_map_angle 0x7f080240 +int drawable module_switch_map_bg 0x7f080241 +int drawable module_turn_light_bg 0x7f080242 +int drawable module_v2x_shadow_bkg 0x7f080243 +int drawable module_v2x_suddenly_break 0x7f080244 +int drawable module_v2x_vr_close 0x7f080245 +int drawable mogo_image_accident_small 0x7f080246 +int drawable mogo_image_blank_nor 0x7f080247 +int drawable mogo_image_daolushigong_nor 0x7f080248 +int drawable mogo_image_daolushigong_small 0x7f080249 +int drawable mogo_image_fenglu_nor 0x7f08024a +int drawable mogo_image_fenglu_small 0x7f08024b +int drawable mogo_image_jiaotongjiancha_nor 0x7f08024c +int drawable mogo_image_jiaotongjiancha_small 0x7f08024d +int drawable mogo_image_jiaotongshigu_nor 0x7f08024e +int drawable mogo_image_jiebing_nor 0x7f08024f +int drawable mogo_image_jiebing_small 0x7f080250 +int drawable mogo_image_jishui_nor 0x7f080251 +int drawable mogo_image_jishui_small 0x7f080252 +int drawable mogo_image_nongwu_nor 0x7f080253 +int drawable mogo_image_nongwu_small 0x7f080254 +int drawable mogo_image_shishilukuang_small 0x7f080255 +int drawable mogo_image_shishlukuang_nor 0x7f080256 +int drawable mogo_image_yongdu_nor 0x7f080257 +int drawable mogo_image_yongdu_small 0x7f080258 +int drawable mogo_slogan 0x7f080259 +int drawable mtrl_dialog_background 0x7f08025a +int drawable mtrl_dropdown_arrow 0x7f08025b +int drawable mtrl_ic_arrow_drop_down 0x7f08025c +int drawable mtrl_ic_arrow_drop_up 0x7f08025d +int drawable mtrl_ic_cancel 0x7f08025e +int drawable mtrl_ic_error 0x7f08025f +int drawable mtrl_navigation_bar_item_background 0x7f080260 +int drawable mtrl_popupmenu_background 0x7f080261 +int drawable mtrl_popupmenu_background_dark 0x7f080262 +int drawable mtrl_tabs_default_indicator 0x7f080263 +int drawable navi_tmcbar_bg 0x7f080264 +int drawable navigation_empty_icon 0x7f080265 +int drawable notice_banner_default 0x7f080266 +int drawable notice_banner_icon_video 0x7f080267 +int drawable notice_connect 0x7f080268 +int drawable notice_dialog_check_background 0x7f080269 +int drawable notice_item_background 0x7f08026a +int drawable notice_player_ic_circle_nor 0x7f08026b +int drawable notice_push_item_background 0x7f08026c +int drawable notice_seekbar_style 0x7f08026d +int drawable notice_traffic_placeholder 0x7f08026e +int drawable notice_unsuccess_image 0x7f08026f +int drawable notice_unsuccess_traffic 0x7f080270 +int drawable notice_video_after_pause 0x7f080271 +int drawable notice_video_pause 0x7f080272 +int drawable notice_video_play 0x7f080273 +int drawable notification_action_background 0x7f080274 +int drawable notification_bg 0x7f080275 +int drawable notification_bg_low 0x7f080276 +int drawable notification_bg_low_normal 0x7f080277 +int drawable notification_bg_low_pressed 0x7f080278 +int drawable notification_bg_normal 0x7f080279 +int drawable notification_bg_normal_pressed 0x7f08027a +int drawable notification_icon_background 0x7f08027b +int drawable notification_template_icon_bg 0x7f08027c +int drawable notification_template_icon_low_bg 0x7f08027d +int drawable notification_tile_bg 0x7f08027e +int drawable notify_panel_notification_icon_bg 0x7f08027f +int drawable obu_state_blue 0x7f080280 +int drawable obu_state_green 0x7f080281 +int drawable obu_state_red 0x7f080282 +int drawable obu_state_yellow 0x7f080283 +int drawable obu_unusual 0x7f080284 +int drawable oub_usual 0x7f080285 +int drawable pad_unusual 0x7f080286 +int drawable panel_channellist_detail 0x7f080287 +int drawable panel_menu_selector 0x7f080288 +int drawable panel_route_selecter 0x7f080289 +int drawable panel_route_selecter_p 0x7f08028a +int drawable panel_search_btn_selector 0x7f08028b +int drawable panel_search_indicator_selector 0x7f08028c +int drawable panel_search_voice_selector 0x7f08028d +int drawable panel_sharetrf_bg_pressed 0x7f08028e +int drawable pilot_speed_bg 0x7f08028f +int drawable pilot_speed_high_light_bg 0x7f080290 +int drawable placeholder 0x7f080291 +int drawable progress_bg 0x7f080292 +int drawable progressbar 0x7f080293 +int drawable radio_btn_bg 0x7f080294 +int drawable radio_button_background 0x7f080295 +int drawable radio_button_background_left 0x7f080296 +int drawable radio_button_background_middle 0x7f080297 +int drawable radio_button_background_right 0x7f080298 +int drawable radio_button_checked_background 0x7f080299 +int drawable radio_button_checked_background_left 0x7f08029a +int drawable radio_button_checked_background_middle 0x7f08029b +int drawable radio_button_checked_background_right 0x7f08029c +int drawable radio_button_normal_background 0x7f08029d +int drawable radio_button_normal_background_left 0x7f08029e +int drawable radio_button_normal_background_middle 0x7f08029f +int drawable radio_button_normal_background_right 0x7f0802a0 +int drawable rect_dark 0x7f0802a1 +int drawable rect_light 0x7f0802a2 +int drawable result_color 0x7f0802a3 +int drawable rtk_unusual 0x7f0802a4 +int drawable rtk_usual 0x7f0802a5 +int drawable scan_tip_line 0x7f0802a6 +int drawable seagreen 0x7f0802a7 +int drawable selector_back 0x7f0802a8 +int drawable selector_btn_play 0x7f0802a9 +int drawable selector_call_btn_normal 0x7f0802aa +int drawable selector_call_btn_pressed 0x7f0802ab +int drawable selector_can 0x7f0802ac +int drawable selector_data_preview 0x7f0802ad +int drawable selector_live_btn 0x7f0802ae +int drawable selector_live_btn_vr 0x7f0802af +int drawable selector_mic 0x7f0802b0 +int drawable selector_minimality 0x7f0802b1 +int drawable selector_nav_btn 0x7f0802b2 +int drawable selector_nav_history 0x7f0802b3 +int drawable selector_obu_state 0x7f0802b4 +int drawable selector_settings 0x7f0802b5 +int drawable selector_start 0x7f0802b6 +int drawable selector_state 0x7f0802b7 +int drawable selector_stop 0x7f0802b8 +int drawable selector_talk_btn 0x7f0802b9 +int drawable selector_talk_btn_vr 0x7f0802ba +int drawable selector_text_color 0x7f0802bb +int drawable service_car_panel_details_normal 0x7f0802bc +int drawable service_car_panel_details_pressed 0x7f0802bd +int drawable setting_toggle_button_background 0x7f0802be +int drawable shadow_bottom 0x7f0802bf +int drawable shadow_left 0x7f0802c0 +int drawable shadow_line 0x7f0802c1 +int drawable shadow_line2 0x7f0802c2 +int drawable shadow_progress 0x7f0802c3 +int drawable shadow_right 0x7f0802c4 +int drawable shape_blue_trans 0x7f0802c5 +int drawable shape_react_blue_grident 0x7f0802c6 +int drawable shape_react_gray_grident 0x7f0802c7 +int drawable shape_round_gray 0x7f0802c8 +int drawable sr 0x7f0802c9 +int drawable stat_sys_download 0x7f0802ca +int drawable state_blue 0x7f0802cb +int drawable state_default 0x7f0802cc +int drawable state_green 0x7f0802cd +int drawable state_red 0x7f0802ce +int drawable state_yellow 0x7f0802cf +int drawable sy 0x7f0802d0 +int drawable test_custom_background 0x7f0802d1 +int drawable text_bg 0x7f0802d2 +int drawable textblue 0x7f0802d3 +int drawable tooltip_frame_dark 0x7f0802d4 +int drawable tooltip_frame_light 0x7f0802d5 +int drawable transparent_background 0x7f0802d6 +int drawable transparent_drawable 0x7f0802d7 +int drawable turnlight_background 0x7f0802d8 +int drawable unlock 0x7f0802d9 +int drawable utils_toast_bg 0x7f0802da +int drawable v2x_alert_window_bg 0x7f0802db +int drawable v2x_alert_window_live_bg 0x7f0802dc +int drawable v2x_back_image 0x7f0802dd +int drawable v2x_bg_big_image_dark 0x7f0802de +int drawable v2x_bg_pop_up 0x7f0802df +int drawable v2x_bg_video_tip_vr 0x7f0802e0 +int drawable v2x_bkg_dark_light_same 0x7f0802e1 +int drawable v2x_drawable_event_message_bkg 0x7f0802e2 +int drawable v2x_event_icon_daohang_vr 0x7f0802e3 +int drawable v2x_event_icon_live 0x7f0802e4 +int drawable v2x_event_icon_live_press 0x7f0802e5 +int drawable v2x_event_icon_live_vr 0x7f0802e6 +int drawable v2x_event_icon_nav 0x7f0802e7 +int drawable v2x_event_icon_nav_press 0x7f0802e8 +int drawable v2x_event_icon_talk 0x7f0802e9 +int drawable v2x_event_icon_talk_press 0x7f0802ea +int drawable v2x_event_icon_talk_vr 0x7f0802eb +int drawable v2x_event_icon_tel_vr 0x7f0802ec +int drawable v2x_event_icon_zan 0x7f0802ed +int drawable v2x_front_warning_bg 0x7f0802ee +int drawable v2x_icon_ahead_car_brake 0x7f0802ef +int drawable v2x_icon_car_collide_warning 0x7f0802f0 +int drawable v2x_icon_daolushigong_vr 0x7f0802f1 +int drawable v2x_icon_event_live_top 0x7f0802f2 +int drawable v2x_icon_event_play 0x7f0802f3 +int drawable v2x_icon_fenglu_vr 0x7f0802f4 +int drawable v2x_icon_help_navi 0x7f0802f5 +int drawable v2x_icon_jiaotongjiancha_vr 0x7f0802f6 +int drawable v2x_icon_jiaotongshigu_vr 0x7f0802f7 +int drawable v2x_icon_jiebing_vr 0x7f0802f8 +int drawable v2x_icon_jishui_vr 0x7f0802f9 +int drawable v2x_icon_live_logo 0x7f0802fa +int drawable v2x_icon_nongwu_vr 0x7f0802fb +int drawable v2x_icon_obu_optimal_speed 0x7f0802fc +int drawable v2x_icon_obu_rush_red_light 0x7f0802fd +int drawable v2x_icon_obu_traffic_light 0x7f0802fe +int drawable v2x_icon_obu_urgency_collision 0x7f0802ff +int drawable v2x_icon_route 0x7f080300 +int drawable v2x_icon_unlike_animation_vr 0x7f080301 +int drawable v2x_icon_yongdu_vr 0x7f080302 +int drawable v2x_map_marker_blue_info 0x7f080303 +int drawable v2x_map_marker_driver_type_blue_info 0x7f080304 +int drawable v2x_map_marker_driver_type_green_info 0x7f080305 +int drawable v2x_map_marker_driver_type_red_info 0x7f080306 +int drawable v2x_nav_normal 0x7f080307 +int drawable v2x_nav_select 0x7f080308 +int drawable v2x_obu_green_point 0x7f080309 +int drawable v2x_obu_traffic_light_pop 0x7f08030a +int drawable v2x_optimal_route_warning 0x7f08030b +int drawable v2x_panel_color_bg 0x7f08030c +int drawable v2x_park_car_port_bg 0x7f08030d +int drawable v2x_park_title_bg 0x7f08030e +int drawable v2x_refresh_button_bg 0x7f08030f +int drawable v2x_road_front_car_warning 0x7f080310 +int drawable v2x_road_front_m_warning 0x7f080311 +int drawable v2x_road_front_p_warning 0x7f080312 +int drawable v2x_selector_icon_report_err 0x7f080313 +int drawable v2x_selector_icon_report_true 0x7f080314 +int drawable v2x_shadow_shape_view 0x7f080315 +int drawable v2x_shape_bg_count_down_corner_14 0x7f080316 +int drawable v2x_shape_reverse_triangle_blue 0x7f080317 +int drawable v2x_share_item_like 0x7f080318 +int drawable v2x_share_item_unlike 0x7f080319 +int drawable v2x_stop_line 0x7f08031a +int drawable v2x_surrounding_bottom_bg 0x7f08031b +int drawable v2x_tip_bg 0x7f08031c +int drawable v2x_to_nav 0x7f08031d +int drawable v2x_to_nav_nomal 0x7f08031e +int drawable v2x_to_nav_pressed 0x7f08031f +int drawable v2x_video_pause 0x7f080320 +int drawable v2x_vip_identification_vr 0x7f080321 +int drawable v_to_x_event_ugc_fenglu 0x7f080322 +int drawable v_to_x_event_ugc_shigu 0x7f080323 +int drawable v_to_x_event_ugc_yongdu 0x7f080324 +int drawable v_to_x_marker_1 0x7f080325 +int drawable v_to_x_marker_11 0x7f080326 +int drawable v_to_x_marker_16 0x7f080327 +int drawable v_to_x_marker_2 0x7f080328 +int drawable v_to_x_marker_3 0x7f080329 +int drawable v_to_x_marker_5 0x7f08032a +int drawable v_to_x_marker_6 0x7f08032b +int drawable v_to_x_marker_7 0x7f08032c +int drawable v_to_x_marker_8 0x7f08032d +int drawable v_to_x_marker_9 0x7f08032e +int drawable v_to_x_marker_car_blue 0x7f08032f +int drawable v_to_x_marker_car_green 0x7f080330 +int drawable v_to_x_marker_car_live_vedio 0x7f080331 +int drawable v_to_x_marker_car_red 0x7f080332 +int drawable v_to_x_marker_express 0x7f080333 +int drawable v_to_x_marker_taxi 0x7f080334 +int drawable v_to_x_warning_car_orange 0x7f080335 +int drawable v_to_x_warning_car_red 0x7f080336 +int drawable v_to_x_warning_circle_orange_00011 0x7f080337 +int drawable v_to_x_warning_circle_orange_00012 0x7f080338 +int drawable v_to_x_warning_circle_orange_00013 0x7f080339 +int drawable v_to_x_warning_circle_orange_00014 0x7f08033a +int drawable v_to_x_warning_circle_orange_00015 0x7f08033b +int drawable v_to_x_warning_circle_orange_00016 0x7f08033c +int drawable v_to_x_warning_circle_orange_00017 0x7f08033d +int drawable v_to_x_warning_circle_orange_00018 0x7f08033e +int drawable v_to_x_warning_circle_orange_00019 0x7f08033f +int drawable v_to_x_warning_circle_orange_00020 0x7f080340 +int drawable v_to_x_warning_circle_orange_00021 0x7f080341 +int drawable v_to_x_warning_circle_orange_00022 0x7f080342 +int drawable v_to_x_warning_circle_orange_00023 0x7f080343 +int drawable v_to_x_warning_circle_orange_00024 0x7f080344 +int drawable v_to_x_warning_circle_orange_00025 0x7f080345 +int drawable v_to_x_warning_circle_orange_00026 0x7f080346 +int drawable v_to_x_warning_circle_orange_00027 0x7f080347 +int drawable v_to_x_warning_circle_orange_00028 0x7f080348 +int drawable v_to_x_warning_circle_orange_00029 0x7f080349 +int drawable v_to_x_warning_circle_orange_00030 0x7f08034a +int drawable v_to_x_warning_circle_orange_00031 0x7f08034b +int drawable v_to_x_warning_circle_orange_00032 0x7f08034c +int drawable v_to_x_warning_circle_orange_00033 0x7f08034d +int drawable v_to_x_warning_circle_orange_00034 0x7f08034e +int drawable v_to_x_warning_circle_orange_00035 0x7f08034f +int drawable v_to_x_warning_circle_orange_00036 0x7f080350 +int drawable v_to_x_warning_circle_orange_00037 0x7f080351 +int drawable v_to_x_warning_circle_orange_00038 0x7f080352 +int drawable v_to_x_warning_circle_orange_00039 0x7f080353 +int drawable v_to_x_warning_circle_orange_00040 0x7f080354 +int drawable v_to_x_warning_circle_orange_00041 0x7f080355 +int drawable v_to_x_warning_circle_orange_00042 0x7f080356 +int drawable v_to_x_warning_circle_orange_00043 0x7f080357 +int drawable v_to_x_warning_circle_orange_00044 0x7f080358 +int drawable v_to_x_warning_circle_orange_00045 0x7f080359 +int drawable v_to_x_warning_circle_orange_00046 0x7f08035a +int drawable v_to_x_warning_circle_orange_00047 0x7f08035b +int drawable v_to_x_warning_circle_orange_00048 0x7f08035c +int drawable v_to_x_warning_circle_red_00011 0x7f08035d +int drawable v_to_x_warning_circle_red_00012 0x7f08035e +int drawable v_to_x_warning_circle_red_00013 0x7f08035f +int drawable v_to_x_warning_circle_red_00014 0x7f080360 +int drawable v_to_x_warning_circle_red_00015 0x7f080361 +int drawable v_to_x_warning_circle_red_00016 0x7f080362 +int drawable v_to_x_warning_circle_red_00017 0x7f080363 +int drawable v_to_x_warning_circle_red_00018 0x7f080364 +int drawable v_to_x_warning_circle_red_00019 0x7f080365 +int drawable v_to_x_warning_circle_red_00020 0x7f080366 +int drawable v_to_x_warning_circle_red_00021 0x7f080367 +int drawable v_to_x_warning_circle_red_00022 0x7f080368 +int drawable v_to_x_warning_circle_red_00023 0x7f080369 +int drawable v_to_x_warning_circle_red_00024 0x7f08036a +int drawable v_to_x_warning_circle_red_00025 0x7f08036b +int drawable v_to_x_warning_circle_red_00026 0x7f08036c +int drawable v_to_x_warning_circle_red_00027 0x7f08036d +int drawable v_to_x_warning_circle_red_00028 0x7f08036e +int drawable v_to_x_warning_circle_red_00029 0x7f08036f +int drawable v_to_x_warning_circle_red_00030 0x7f080370 +int drawable v_to_x_warning_circle_red_00031 0x7f080371 +int drawable v_to_x_warning_circle_red_00032 0x7f080372 +int drawable v_to_x_warning_circle_red_00033 0x7f080373 +int drawable v_to_x_warning_circle_red_00034 0x7f080374 +int drawable v_to_x_warning_circle_red_00035 0x7f080375 +int drawable v_to_x_warning_circle_red_00036 0x7f080376 +int drawable v_to_x_warning_circle_red_00037 0x7f080377 +int drawable v_to_x_warning_circle_red_00038 0x7f080378 +int drawable v_to_x_warning_circle_red_00039 0x7f080379 +int drawable v_to_x_warning_circle_red_00040 0x7f08037a +int drawable v_to_x_warning_circle_red_00041 0x7f08037b +int drawable v_to_x_warning_circle_red_00042 0x7f08037c +int drawable v_to_x_warning_circle_red_00043 0x7f08037d +int drawable v_to_x_warning_circle_red_00044 0x7f08037e +int drawable v_to_x_warning_circle_red_00045 0x7f08037f +int drawable v_to_x_warning_circle_red_00046 0x7f080380 +int drawable v_to_x_warning_circle_red_00047 0x7f080381 +int drawable v_to_x_warning_circle_red_00048 0x7f080382 +int drawable version_latest_background 0x7f080383 +int drawable version_upgrade_tips_background 0x7f080384 +int drawable version_upgradeable_background 0x7f080385 +int drawable version_upgrading_background 0x7f080386 +int drawable video_back 0x7f080387 +int drawable video_backward_icon 0x7f080388 +int drawable video_brightness_6_white_36dp 0x7f080389 +int drawable video_click_error_selector 0x7f08038a +int drawable video_click_pause_selector 0x7f08038b +int drawable video_click_play_selector 0x7f08038c +int drawable video_dialog_progress 0x7f08038d +int drawable video_dialog_progress_bg 0x7f08038e +int drawable video_enlarge 0x7f08038f +int drawable video_error_normal 0x7f080390 +int drawable video_error_pressed 0x7f080391 +int drawable video_forward_icon 0x7f080392 +int drawable video_jump_btn_bg 0x7f080393 +int drawable video_loading 0x7f080394 +int drawable video_loading_bg 0x7f080395 +int drawable video_pause 0x7f080396 +int drawable video_pause_normal 0x7f080397 +int drawable video_pause_pressed 0x7f080398 +int drawable video_play 0x7f080399 +int drawable video_play_normal 0x7f08039a +int drawable video_play_pressed 0x7f08039b +int drawable video_progress 0x7f08039c +int drawable video_seek_progress 0x7f08039d +int drawable video_seek_thumb 0x7f08039e +int drawable video_seek_thumb_normal 0x7f08039f +int drawable video_seek_thumb_pressed 0x7f0803a0 +int drawable video_shrink 0x7f0803a1 +int drawable video_small_close 0x7f0803a2 +int drawable video_title_bg 0x7f0803a3 +int drawable video_volume_icon 0x7f0803a4 +int drawable video_volume_progress_bg 0x7f0803a5 +int drawable white 0x7f0803a6 +int drawable white1 0x7f0803a7 +int drawable white2 0x7f0803a8 +int drawable wu1 0x7f0803a9 +int drawable wu2 0x7f0803aa +int drawable yi_biao_pan_bg_nor 0x7f0803ab +int drawable yi_biao_pan_bg_speeding 0x7f0803ac +int drawable yingyan 0x7f0803ad +int drawable zhujiguang_unusual 0x7f0803ae +int drawable zhujiguang_usual 0x7f0803af +int drawable zxing_scanline 0x7f0803b0 +int id BOTTOM_END 0x7f0b0001 +int id BOTTOM_START 0x7f0b0002 +int id BaseQuickAdapter_databinding_support 0x7f0b0003 +int id BaseQuickAdapter_dragging_support 0x7f0b0004 +int id BaseQuickAdapter_swiping_support 0x7f0b0005 +int id BaseQuickAdapter_viewholder_support 0x7f0b0006 +int id Full 0x7f0b0007 +int id Half 0x7f0b0008 +int id LinearLayout1 0x7f0b0009 +int id NO_DEBUG 0x7f0b000a +int id SHOW_ALL 0x7f0b000b +int id SHOW_PATH 0x7f0b000c +int id SHOW_PROGRESS 0x7f0b000d +int id TOP_END 0x7f0b000e +int id TOP_START 0x7f0b000f +int id aMapNaviView 0x7f0b0010 +int id accelerate 0x7f0b0011 +int id accept_traffic 0x7f0b0012 +int id accessibility_action_clickable_span 0x7f0b0013 +int id accessibility_custom_action_0 0x7f0b0014 +int id accessibility_custom_action_1 0x7f0b0015 +int id accessibility_custom_action_10 0x7f0b0016 +int id accessibility_custom_action_11 0x7f0b0017 +int id accessibility_custom_action_12 0x7f0b0018 +int id accessibility_custom_action_13 0x7f0b0019 +int id accessibility_custom_action_14 0x7f0b001a +int id accessibility_custom_action_15 0x7f0b001b +int id accessibility_custom_action_16 0x7f0b001c +int id accessibility_custom_action_17 0x7f0b001d +int id accessibility_custom_action_18 0x7f0b001e +int id accessibility_custom_action_19 0x7f0b001f +int id accessibility_custom_action_2 0x7f0b0020 +int id accessibility_custom_action_20 0x7f0b0021 +int id accessibility_custom_action_21 0x7f0b0022 +int id accessibility_custom_action_22 0x7f0b0023 +int id accessibility_custom_action_23 0x7f0b0024 +int id accessibility_custom_action_24 0x7f0b0025 +int id accessibility_custom_action_25 0x7f0b0026 +int id accessibility_custom_action_26 0x7f0b0027 +int id accessibility_custom_action_27 0x7f0b0028 +int id accessibility_custom_action_28 0x7f0b0029 +int id accessibility_custom_action_29 0x7f0b002a +int id accessibility_custom_action_3 0x7f0b002b +int id accessibility_custom_action_30 0x7f0b002c +int id accessibility_custom_action_31 0x7f0b002d +int id accessibility_custom_action_4 0x7f0b002e +int id accessibility_custom_action_5 0x7f0b002f +int id accessibility_custom_action_6 0x7f0b0030 +int id accessibility_custom_action_7 0x7f0b0031 +int id accessibility_custom_action_8 0x7f0b0032 +int id accessibility_custom_action_9 0x7f0b0033 +int id action0 0x7f0b0034 +int id actionDown 0x7f0b0035 +int id actionDownUp 0x7f0b0036 +int id actionUp 0x7f0b0037 +int id action_bar 0x7f0b0038 +int id action_bar_activity_content 0x7f0b0039 +int id action_bar_container 0x7f0b003a +int id action_bar_root 0x7f0b003b +int id action_bar_spinner 0x7f0b003c +int id action_bar_subtitle 0x7f0b003d +int id action_bar_title 0x7f0b003e +int id action_container 0x7f0b003f +int id action_context_bar 0x7f0b0040 +int id action_divider 0x7f0b0041 +int id action_image 0x7f0b0042 +int id action_menu_divider 0x7f0b0043 +int id action_menu_presenter 0x7f0b0044 +int id action_mode_bar 0x7f0b0045 +int id action_mode_bar_stub 0x7f0b0046 +int id action_mode_close_button 0x7f0b0047 +int id action_text 0x7f0b0048 +int id actions 0x7f0b0049 +int id activity_chooser_view_content 0x7f0b004a +int id adCircularProgressView 0x7f0b004b +int id ad_full_id 0x7f0b004c +int id ad_small_id 0x7f0b004d +int id ad_time 0x7f0b004e +int id add 0x7f0b004f +int id alertTitle 0x7f0b0050 +int id aligned 0x7f0b0051 +int id allStates 0x7f0b0052 +int id animateToEnd 0x7f0b0053 +int id animateToStart 0x7f0b0054 +int id animationImage 0x7f0b0055 +int id animationLayout 0x7f0b0056 +int id antiClockwise 0x7f0b0057 +int id anticipate 0x7f0b0058 +int id any 0x7f0b0059 +int id appVersionInfoLayout 0x7f0b005a +int id app_video_brightness 0x7f0b005b +int id app_video_brightness_box 0x7f0b005c +int id app_video_brightness_icon 0x7f0b005d +int id arc 0x7f0b005e +int id asConfigured 0x7f0b005f +int id async 0x7f0b0060 +int id auto 0x7f0b0061 +int id autoComplete 0x7f0b0062 +int id autoCompleteToEnd 0x7f0b0063 +int id autoCompleteToStart 0x7f0b0064 +int id auto_layout 0x7f0b0065 +int id auto_risk_state 0x7f0b0066 +int id autopilotIPDivider 0x7f0b0067 +int id autopilotInfoDivider 0x7f0b0068 +int id autopilotSpeedDivider 0x7f0b0069 +int id autopilot_badcase_record 0x7f0b006a +int id back 0x7f0b006b +int id backId 0x7f0b006c +int id back_image 0x7f0b006d +int id back_tiny 0x7f0b006e +int id barrier 0x7f0b006f +int id baseline 0x7f0b0070 +int id bestChoice 0x7f0b0071 +int id bg 0x7f0b0072 +int id bkg 0x7f0b0073 +int id blocking 0x7f0b0074 +int id blue_block 0x7f0b0075 +int id bottom 0x7f0b0076 +int id bottomBg 0x7f0b0077 +int id bottom_progressbar 0x7f0b0078 +int id bounce 0x7f0b0079 +int id box_bkg 0x7f0b007a +int id box_custom 0x7f0b007b +int id box_info 0x7f0b007c +int id box_progress 0x7f0b007d +int id brakeView 0x7f0b007e +int id btnAdasDataWarn 0x7f0b007f +int id btnBack 0x7f0b0080 +int id btnClearRoadEvent 0x7f0b0081 +int id btnDisconnectIpc 0x7f0b0082 +int id btnDrawBicycle 0x7f0b0083 +int id btnDrawBus 0x7f0b0084 +int id btnDrawMotorcycle 0x7f0b0085 +int id btnDrawObuTrolley 0x7f0b0086 +int id btnDrawPedestrian 0x7f0b0087 +int id btnDrawTrolley 0x7f0b0088 +int id btnDrawTruck 0x7f0b0089 +int id btnDrawUnknown 0x7f0b008a +int id btnForceClearNotice 0x7f0b008b +int id btnFrontCarLiveEvent 0x7f0b008c +int id btnHidePanels 0x7f0b008d +int id btnOpenObuFusion 0x7f0b008e +int id btnRecordPackage 0x7f0b008f +int id btnRefresh 0x7f0b0090 +int id btnRetryFlow 0x7f0b0091 +int id btnSetAutopilotIP 0x7f0b0092 +int id btnSetAutopilotSpeed 0x7f0b0093 +int id btnSetObuIP 0x7f0b0094 +int id btnShear 0x7f0b0095 +int id btnShowOrHidePanels 0x7f0b0096 +int id btnStart 0x7f0b0097 +int id btnStop 0x7f0b0098 +int id btnSystemRestart 0x7f0b0099 +int id btnSystemUpgrade 0x7f0b009a +int id btnTriggerAnimationEvent 0x7f0b009b +int id btnTriggerCallUserInfo 0x7f0b009c +int id btnTriggerCongestedRouteRecommendation 0x7f0b009d +int id btnTriggerDoubleFlash 0x7f0b009e +int id btnTriggerEventUgc 0x7f0b009f +int id btnTriggerFatigueDrivingEvent 0x7f0b00a0 +int id btnTriggerObstacleDetour 0x7f0b00a1 +int id btnTriggerOpen 0x7f0b00a2 +int id btnTriggerParkEvent 0x7f0b00a3 +int id btnTriggerPedestrianWarning 0x7f0b00a4 +int id btnTriggerPushEvent 0x7f0b00a5 +int id btnTriggerPushLiveCarEvent 0x7f0b00a6 +int id btnTriggerRearDangerousVehicles 0x7f0b00a7 +int id btnTriggerRearVIPCarTip 0x7f0b00a8 +int id btnTriggerRecommendRouteEvent 0x7f0b00a9 +int id btnTriggerReverseVehicleRoutePrediction 0x7f0b00aa +int id btnTriggerRoadEvent 0x7f0b00ab +int id btnTriggerSeekHelpEvent 0x7f0b00ac +int id btnTriggerTrafficSearch 0x7f0b00ad +int id btnTriggerVIPLightChange 0x7f0b00ae +int id btnTriggerVR 0x7f0b00af +int id btnTriggerVehicleBrakes 0x7f0b00b0 +int id btnTriggerWarningEvent 0x7f0b00b1 +int id btnXINGLiveEvent 0x7f0b00b2 +int id btn_audition 0x7f0b00b3 +int id btn_back 0x7f0b00b4 +int id btn_bottom 0x7f0b00b5 +int id btn_c 0x7f0b00b6 +int id btn_clean 0x7f0b00b7 +int id btn_connect 0x7f0b00b8 +int id btn_data_preview 0x7f0b00b9 +int id btn_dest 0x7f0b00ba +int id btn_export 0x7f0b00bb +int id btn_list 0x7f0b00bc +int id btn_maximize 0x7f0b00bd +int id btn_mic 0x7f0b00be +int id btn_minimality 0x7f0b00bf +int id btn_navi 0x7f0b00c0 +int id btn_pos 0x7f0b00c1 +int id btn_selectNegative 0x7f0b00c2 +int id btn_selectPositive 0x7f0b00c3 +int id btn_settings 0x7f0b00c4 +int id btn_start 0x7f0b00c5 +int id btn_top 0x7f0b00c6 +int id btn_tu 0x7f0b00c7 +int id btn_zoom_city 0x7f0b00c8 +int id btn_zoom_country 0x7f0b00c9 +int id btn_zoom_in 0x7f0b00ca +int id btn_zoom_out 0x7f0b00cb +int id btn_zoom_provincial 0x7f0b00cc +int id btn_zoom_road 0x7f0b00cd +int id buffer 0x7f0b00ce +int id buttonPanel 0x7f0b00cf +int id button_wrap 0x7f0b00d0 +int id camera 0x7f0b00d1 +int id camera_begind 0x7f0b00d2 +int id camera_begind_txt 0x7f0b00d3 +int id camera_front_txt 0x7f0b00d4 +int id can_parent 0x7f0b00d5 +int id cancel 0x7f0b00d6 +int id cancel_action 0x7f0b00d7 +int id cancel_button 0x7f0b00d8 +int id cancel_info_list_button 0x7f0b00d9 +int id carcorderPreview 0x7f0b00da +int id carryVelocity 0x7f0b00db +int id cbAdasAutoPilot 0x7f0b00dc +int id cbAdasDataTrack 0x7f0b00dd +int id cbAdasLog 0x7f0b00de +int id cbAdasTrajectory 0x7f0b00df +int id cbAdasVehicle 0x7f0b00e0 +int id cbBusLog 0x7f0b00e1 +int id cbDevaLog 0x7f0b00e2 +int id cbHmiLog 0x7f0b00e3 +int id cbMapLog 0x7f0b00e4 +int id cbNetworkLog 0x7f0b00e5 +int id cbObuLog 0x7f0b00e6 +int id cbOldRouteLog 0x7f0b00e7 +int id cbTaxiLog 0x7f0b00e8 +int id cbTaxiPLog 0x7f0b00e9 +int id cbV2xLog 0x7f0b00ea +int id center 0x7f0b00eb +int id centerCrop 0x7f0b00ec +int id centerInside 0x7f0b00ed +int id center_empty 0x7f0b00ee +int id chain 0x7f0b00ef +int id changesight_back_btn 0x7f0b00f0 +int id changesight_cross_btn 0x7f0b00f1 +int id changesight_far_btn 0x7f0b00f2 +int id changesight_top_btn 0x7f0b00f3 +int id check 0x7f0b00f4 +int id checkLayout 0x7f0b00f5 +int id checkSystemView 0x7f0b00f6 +int id check_button 0x7f0b00f7 +int id check_detail 0x7f0b00f8 +int id check_image 0x7f0b00f9 +int id check_info_title 0x7f0b00fa +int id check_list 0x7f0b00fb +int id check_list_recycler 0x7f0b00fc +int id check_progress 0x7f0b00fd +int id check_progress_text 0x7f0b00fe +int id check_text_view 0x7f0b00ff +int id check_tip_image 0x7f0b0100 +int id check_title 0x7f0b0101 +int id check_title_item 0x7f0b0102 +int id check_view 0x7f0b0103 +int id checkbox 0x7f0b0104 +int id checked 0x7f0b0105 +int id chip 0x7f0b0106 +int id chip1 0x7f0b0107 +int id chip2 0x7f0b0108 +int id chip3 0x7f0b0109 +int id chip_group 0x7f0b010a +int id chronometer 0x7f0b010b +int id circle 0x7f0b010c +int id circle_center 0x7f0b010d +int id clAutopilotStatus 0x7f0b010e +int id clCheckSystem 0x7f0b010f +int id clHistoryList 0x7f0b0110 +int id clHmiContainer 0x7f0b0111 +int id clLoadError 0x7f0b0112 +int id clMarkerContent 0x7f0b0113 +int id clMarkerTopView 0x7f0b0114 +int id clPanelContainer 0x7f0b0115 +int id clTrafficLight 0x7f0b0116 +int id clVipIdentification 0x7f0b0117 +int id cl_special_effect 0x7f0b0118 +int id clamp 0x7f0b0119 +int id clear_text 0x7f0b011a +int id clockwise 0x7f0b011b +int id close 0x7f0b011c +int id closest 0x7f0b011d +int id column 0x7f0b011e +int id column_reverse 0x7f0b011f +int id confirm_button 0x7f0b0120 +int id constraint 0x7f0b0121 +int id container 0x7f0b0122 +int id content 0x7f0b0123 +int id contentPanel 0x7f0b0124 +int id contiguous 0x7f0b0125 +int id continuousVelocity 0x7f0b0126 +int id controlCenterLayout 0x7f0b0127 +int id coordinator 0x7f0b0128 +int id cos 0x7f0b0129 +int id counterclockwise 0x7f0b012a +int id ctvGreenTrafficLight 0x7f0b012b +int id ctvRedTrafficLight 0x7f0b012c +int id ctvYellowTrafficLight 0x7f0b012d +int id current 0x7f0b012e +int id currentState 0x7f0b012f +int id cus_polygon 0x7f0b0130 +int id custom 0x7f0b0131 +int id customPanel 0x7f0b0132 +int id customRatingBar 0x7f0b0133 +int id cut 0x7f0b0134 +int id dataBinding 0x7f0b0135 +int id date_picker_actions 0x7f0b0136 +int id db 0x7f0b0137 +int id db_unit 0x7f0b0138 +int id debug 0x7f0b0139 +int id decelerate 0x7f0b013a +int id decelerateAndComplete 0x7f0b013b +int id decor_content_parent 0x7f0b013c +int id default_activity_button 0x7f0b013d +int id deltaRelative 0x7f0b013e +int id description 0x7f0b013f +int id design_bottom_sheet 0x7f0b0140 +int id design_menu_item_action_area 0x7f0b0141 +int id design_menu_item_action_area_stub 0x7f0b0142 +int id design_menu_item_text 0x7f0b0143 +int id design_navigation_view 0x7f0b0144 +int id determinate 0x7f0b0145 +int id deviceBindLayout 0x7f0b0146 +int id dialog_button 0x7f0b0147 +int id disjoint 0x7f0b0148 +int id domainControllerLayout 0x7f0b0149 +int id dragAnticlockwise 0x7f0b014a +int id dragClockwise 0x7f0b014b +int id dragDown 0x7f0b014c +int id dragEnd 0x7f0b014d +int id dragLeft 0x7f0b014e +int id dragRight 0x7f0b014f +int id dragStart 0x7f0b0150 +int id dragUp 0x7f0b0151 +int id dropdown_menu 0x7f0b0152 +int id duration_image_tip 0x7f0b0153 +int id duration_progressbar 0x7f0b0154 +int id easeIn 0x7f0b0155 +int id easeInOut 0x7f0b0156 +int id easeOut 0x7f0b0157 +int id east 0x7f0b0158 +int id edit_password 0x7f0b0159 +int id edit_query 0x7f0b015a +int id edit_username 0x7f0b015b +int id elastic 0x7f0b015c +int id end 0x7f0b015d +int id endToStart 0x7f0b015e +int id end_padder 0x7f0b015f +int id error 0x7f0b0160 +int id errorTipImage 0x7f0b0161 +int id error_image 0x7f0b0162 +int id error_tip 0x7f0b0163 +int id error_tip_green 0x7f0b0164 +int id error_title 0x7f0b0165 +int id error_txt 0x7f0b0166 +int id error_view 0x7f0b0167 +int id et 0x7f0b0168 +int id etAutopilotIP 0x7f0b0169 +int id etInputRecordTime 0x7f0b016a +int id etInputSpeed 0x7f0b016b +int id etLogCatch 0x7f0b016c +int id etObuIP 0x7f0b016d +int id et_root 0x7f0b016e +int id event_share_load_status 0x7f0b016f +int id exo_artwork 0x7f0b0170 +int id exo_content_frame 0x7f0b0171 +int id exo_controller_placeholder 0x7f0b0172 +int id exo_duration 0x7f0b0173 +int id exo_ffwd 0x7f0b0174 +int id exo_next 0x7f0b0175 +int id exo_overlay 0x7f0b0176 +int id exo_pause 0x7f0b0177 +int id exo_play 0x7f0b0178 +int id exo_position 0x7f0b0179 +int id exo_prev 0x7f0b017a +int id exo_progress 0x7f0b017b +int id exo_rew 0x7f0b017c +int id exo_shutter 0x7f0b017d +int id exo_subtitles 0x7f0b017e +int id expand_activities_button 0x7f0b017f +int id expanded_menu 0x7f0b0180 +int id fade 0x7f0b0181 +int id feed_back_badcase_job 0x7f0b0182 +int id feed_back_badcase_tag 0x7f0b0183 +int id feed_back_badcase_taskid_tag 0x7f0b0184 +int id feedback 0x7f0b0185 +int id fill 0x7f0b0186 +int id filled 0x7f0b0187 +int id fit 0x7f0b0188 +int id fitBottomStart 0x7f0b0189 +int id fitCenter 0x7f0b018a +int id fitEnd 0x7f0b018b +int id fitStart 0x7f0b018c +int id fitXY 0x7f0b018d +int id fixed 0x7f0b018e +int id fixed_height 0x7f0b018f +int id fixed_width 0x7f0b0190 +int id flLogControl 0x7f0b0191 +int id flTestPanel 0x7f0b0192 +int id flTestPanelShunNormal 0x7f0b0193 +int id flTestPanelShunYi 0x7f0b0194 +int id flTestPanelVR 0x7f0b0195 +int id flV2XWarningView 0x7f0b0196 +int id flVipIdentificationView 0x7f0b0197 +int id fl_cars 0x7f0b0198 +int id flex 0x7f0b0199 +int id flex_end 0x7f0b019a +int id flex_start 0x7f0b019b +int id flip 0x7f0b019c +int id floating 0x7f0b019d +int id focusCrop 0x7f0b019e +int id forever 0x7f0b019f +int id fragment_container_view_tag 0x7f0b01a0 +int id front 0x7f0b01a1 +int id frost 0x7f0b01a2 +int id full_id 0x7f0b01a3 +int id fullscreen 0x7f0b01a4 +int id ghost_view 0x7f0b01a5 +int id ghost_view_holder 0x7f0b01a6 +int id glide_custom_view_target_tag 0x7f0b01a7 +int id gone 0x7f0b01a8 +int id group_divider 0x7f0b01a9 +int id guidance_btn_show_route_mode 0x7f0b01aa +int id guidance_enter_image 0x7f0b01ab +int id guidance_exit_image 0x7f0b01ac +int id guidance_iv_line 0x7f0b01ad +int id guidance_layout_next_road 0x7f0b01ae +int id guidance_layout_next_road_name 0x7f0b01af +int id guidance_layout_next_road_two_name 0x7f0b01b0 +int id guidance_layout_server_enter 0x7f0b01b1 +int id guidance_left 0x7f0b01b2 +int id guidance_progressBar 0x7f0b01b3 +int id guidance_server_image 0x7f0b01b4 +int id guidance_tv_progress 0x7f0b01b5 +int id guidance_tv_speed 0x7f0b01b6 +int id guideline 0x7f0b01b7 +int id guideline1 0x7f0b01b8 +int id hdMapControllerLayout 0x7f0b01b9 +int id header_title 0x7f0b01ba +int id hint 0x7f0b01bb +int id hmiControllerLayout 0x7f0b01bc +int id hmiWarningBottomImg 0x7f0b01bd +int id hmiWarningLeftImg 0x7f0b01be +int id hmiWarningRightImg 0x7f0b01bf +int id hmiWarningTopImg 0x7f0b01c0 +int id home 0x7f0b01c1 +int id honorRequest 0x7f0b01c2 +int id horizontal 0x7f0b01c3 +int id horizontal_only 0x7f0b01c4 +int id icon 0x7f0b01c5 +int id iconSwitch 0x7f0b01c6 +int id icon_auto 0x7f0b01c7 +int id icon_auto_title 0x7f0b01c8 +int id icon_group 0x7f0b01c9 +int id icon_ying 0x7f0b01ca +int id icon_ying_title 0x7f0b01cb +int id ignore 0x7f0b01cc +int id ignoreRequest 0x7f0b01cd +int id image 0x7f0b01ce +int id imageView 0x7f0b01cf +int id image_brake 0x7f0b01d0 +int id imgView 0x7f0b01d1 +int id img_traffic 0x7f0b01d2 +int id img_zoom_in 0x7f0b01d3 +int id img_zoom_out 0x7f0b01d4 +int id immediateStop 0x7f0b01d5 +int id included 0x7f0b01d6 +int id indeterminate 0x7f0b01d7 +int id index 0x7f0b01d8 +int id info 0x7f0b01d9 +int id infoW_title 0x7f0b01da +int id infoWindowLayer 0x7f0b01db +int id info_check_icon 0x7f0b01dc +int id info_result_tx 0x7f0b01dd +int id infow_content 0x7f0b01de +int id invisible 0x7f0b01df +int id inward 0x7f0b01e0 +int id ip 0x7f0b01e1 +int id italic 0x7f0b01e2 +int id item_group 0x7f0b01e3 +int id item_list 0x7f0b01e4 +int id item_touch_helper_previous_elevation 0x7f0b01e5 +int id item_video_cover 0x7f0b01e6 +int id ivAdStatus 0x7f0b01e7 +int id ivAdVersion 0x7f0b01e8 +int id ivBg 0x7f0b01e9 +int id ivCameraIcon 0x7f0b01ea +int id ivCar 0x7f0b01eb +int id ivCheckIcon 0x7f0b01ec +int id ivClose 0x7f0b01ed +int id ivCloseIcon 0x7f0b01ee +int id ivDebugFeedback 0x7f0b01ef +int id ivDebugPanel 0x7f0b01f0 +int id ivDialogBg 0x7f0b01f1 +int id ivEmptyView 0x7f0b01f2 +int id ivErrorIcon 0x7f0b01f3 +int id ivEventCallChart 0x7f0b01f4 +int id ivEventDistanceLogo 0x7f0b01f5 +int id ivEventEventNav 0x7f0b01f6 +int id ivEventHead 0x7f0b01f7 +int id ivEventImg 0x7f0b01f8 +int id ivEventLive 0x7f0b01f9 +int id ivEventPlay 0x7f0b01fa +int id ivEventReportErr 0x7f0b01fb +int id ivEventReportTrue 0x7f0b01fc +int id ivEventTypeIcon 0x7f0b01fd +int id ivEventZan 0x7f0b01fe +int id ivFaultHelpEventCall 0x7f0b01ff +int id ivFaultHelpEventNavi 0x7f0b0200 +int id ivFaultHelpHead 0x7f0b0201 +int id ivIcon 0x7f0b0202 +int id ivIconP 0x7f0b0203 +int id ivIllegalParkingLike 0x7f0b0204 +int id ivIllegalParkingUnLike 0x7f0b0205 +int id ivIllegalParkingUnpaLike 0x7f0b0206 +int id ivImg 0x7f0b0207 +int id ivLikeForGrayBack 0x7f0b0208 +int id ivMapBorder 0x7f0b0209 +int id ivMarkerTip 0x7f0b020a +int id ivObuTypeIcon 0x7f0b020b +int id ivPadStatus 0x7f0b020c +int id ivPadVersion 0x7f0b020d +int id ivReportHead 0x7f0b020e +int id ivReverseTriangle 0x7f0b020f +int id ivRoadCallChart 0x7f0b0210 +int id ivRoadEventLike 0x7f0b0211 +int id ivRoadEventNav 0x7f0b0212 +int id ivRoadReportErr 0x7f0b0213 +int id ivRoadReportTrue 0x7f0b0214 +int id ivSignalIcon 0x7f0b0215 +int id ivStatusIcon 0x7f0b0216 +int id ivToNav 0x7f0b0217 +int id ivToolsIcon 0x7f0b0218 +int id ivUserHead 0x7f0b0219 +int id ivVideoPlayingSign 0x7f0b021a +int id ivVipIdentification 0x7f0b021b +int id ivWaringIcon 0x7f0b021c +int id iv_back 0x7f0b021d +int id iv_camera_traffic 0x7f0b021e +int id iv_empty 0x7f0b021f +int id iv_event 0x7f0b0220 +int id iv_event_bg 0x7f0b0221 +int id iv_event_type 0x7f0b0222 +int id iv_guidance_3d_route_arrow 0x7f0b0223 +int id iv_guidance_3d_route_bg 0x7f0b0224 +int id iv_guidance_bind_car_arrow 0x7f0b0225 +int id iv_guidance_board_arrow 0x7f0b0226 +int id iv_guidance_board_bg 0x7f0b0227 +int id iv_guidance_enter_icon 0x7f0b0228 +int id iv_guidance_exit_icon 0x7f0b0229 +int id iv_guidance_lane_arrow 0x7f0b022a +int id iv_guidance_lane_bg 0x7f0b022b +int id iv_guidance_next_road 0x7f0b022c +int id iv_guidance_next_road_over_mileage 0x7f0b022d +int id iv_guidance_next_road_trun_mileage 0x7f0b022e +int id iv_guidance_next_turn 0x7f0b022f +int id iv_guidance_next_turn_over_mileage 0x7f0b0230 +int id iv_guidance_over_mileage 0x7f0b0231 +int id iv_guidance_server_icon 0x7f0b0232 +int id iv_logo 0x7f0b0233 +int id iv_play 0x7f0b0234 +int id iv_traffic 0x7f0b0235 +int id iv_wu1 0x7f0b0236 +int id iv_wu2 0x7f0b0237 +int id jiaoJiGuangBottom 0x7f0b0238 +int id jiaoJiGuangBottom_txt 0x7f0b0239 +int id jiaoJiGuangTop 0x7f0b023a +int id jiaoJiGuangTop_txt 0x7f0b023b +int id jumpToEnd 0x7f0b023c +int id jumpToStart 0x7f0b023d +int id jump_ad 0x7f0b023e +int id key_text_view 0x7f0b023f +int id labeled 0x7f0b0240 +int id largeLabel 0x7f0b0241 +int id layout 0x7f0b0242 +int id layout_bottom 0x7f0b0243 +int id layout_brake 0x7f0b0244 +int id layout_btn 0x7f0b0245 +int id layout_empty_data_show 0x7f0b0246 +int id layout_parent 0x7f0b0247 +int id layout_root 0x7f0b0248 +int id layout_surrounding_event 0x7f0b0249 +int id layout_top 0x7f0b024a +int id layout_zoom 0x7f0b024b +int id layout_zoom_control 0x7f0b024c +int id layout_zoom_value 0x7f0b024d +int id leak_canary_about_heap_dump_switch_button 0x7f0b024e +int id leak_canary_about_heap_dump_text 0x7f0b024f +int id leak_canary_about_text 0x7f0b0250 +int id leak_canary_bottom_navigation_bar 0x7f0b0251 +int id leak_canary_chip_library_leak 0x7f0b0252 +int id leak_canary_chip_new 0x7f0b0253 +int id leak_canary_count_text 0x7f0b0254 +int id leak_canary_dump_heap_now 0x7f0b0255 +int id leak_canary_explorer_list 0x7f0b0256 +int id leak_canary_explorer_title 0x7f0b0257 +int id leak_canary_header_text 0x7f0b0258 +int id leak_canary_heap_dump_leaks 0x7f0b0259 +int id leak_canary_heap_rendering 0x7f0b025a +int id leak_canary_import_heap_dump 0x7f0b025b +int id leak_canary_leak_text 0x7f0b025c +int id leak_canary_list 0x7f0b025d +int id leak_canary_loading 0x7f0b025e +int id leak_canary_main_container 0x7f0b025f +int id leak_canary_navigation_button_about 0x7f0b0260 +int id leak_canary_navigation_button_about_icon 0x7f0b0261 +int id leak_canary_navigation_button_heap_dumps 0x7f0b0262 +int id leak_canary_navigation_button_heap_dumps_icon 0x7f0b0263 +int id leak_canary_navigation_button_leaks 0x7f0b0264 +int id leak_canary_navigation_button_leaks_icon 0x7f0b0265 +int id leak_canary_notification_analysis_result 0x7f0b0266 +int id leak_canary_notification_analyzing_heap 0x7f0b0267 +int id leak_canary_notification_dumping_heap 0x7f0b0268 +int id leak_canary_notification_no_retained_object_on_tap 0x7f0b0269 +int id leak_canary_notification_on_screen_exit 0x7f0b026a +int id leak_canary_notification_retained_objects 0x7f0b026b +int id leak_canary_notification_write_permission 0x7f0b026c +int id leak_canary_row_connector 0x7f0b026d +int id leak_canary_row_small_text 0x7f0b026e +int id leak_canary_row_text 0x7f0b026f +int id leak_canary_row_title 0x7f0b0270 +int id leak_canary_search_button 0x7f0b0271 +int id leak_canary_single_leak_trace_row 0x7f0b0272 +int id leak_canary_spinner 0x7f0b0273 +int id leak_canary_stacktrace 0x7f0b0274 +int id leak_canary_time_text 0x7f0b0275 +int id leak_canary_toast_icon 0x7f0b0276 +int id left 0x7f0b0277 +int id leftImageView 0x7f0b0278 +int id leftToRight 0x7f0b0279 +int id left_nor_image 0x7f0b027a +int id left_select_image 0x7f0b027b +int id length 0x7f0b027c +int id lin_next_turn 0x7f0b027d +int id line1 0x7f0b027e +int id line3 0x7f0b027f +int id line_top 0x7f0b0280 +int id linear 0x7f0b0281 +int id listMode 0x7f0b0282 +int id list_item 0x7f0b0283 +int id list_item_title 0x7f0b0284 +int id list_layout_container 0x7f0b0285 +int id liveVideo 0x7f0b0286 +int id liveVideoClose 0x7f0b0287 +int id llEventMore 0x7f0b0288 +int id llIllegalParkingLike 0x7f0b0289 +int id llIllegalParkingUnLike 0x7f0b028a +int id llSpeedLayout 0x7f0b028b +int id llSpeedPosition 0x7f0b028c +int id ll_event 0x7f0b028d +int id ll_infowindow 0x7f0b028e +int id ll_loading 0x7f0b028f +int id ll_title 0x7f0b0290 +int id load_failed_image 0x7f0b0291 +int id load_more_load_complete_view 0x7f0b0292 +int id load_more_load_end_view 0x7f0b0293 +int id load_more_load_fail_view 0x7f0b0294 +int id load_more_loading_view 0x7f0b0295 +int id loading 0x7f0b0296 +int id loading_imageview 0x7f0b0297 +int id loading_iv 0x7f0b0298 +int id loading_liner_layout 0x7f0b0299 +int id loading_progress 0x7f0b029a +int id loading_text 0x7f0b029b +int id local_ip 0x7f0b029c +int id local_ip_view 0x7f0b029d +int id lock_screen 0x7f0b029e +int id log_content 0x7f0b029f +int id log_filter 0x7f0b02a0 +int id log_hint 0x7f0b02a1 +int id log_level_text 0x7f0b02a2 +int id log_list 0x7f0b02a3 +int id log_output_text 0x7f0b02a4 +int id log_page 0x7f0b02a5 +int id log_switcher 0x7f0b02a6 +int id logcatCenterLayout 0x7f0b02a7 +int id luyouqi 0x7f0b02a8 +int id luyouqi_txt 0x7f0b02a9 +int id lv_info 0x7f0b02aa +int id map_container 0x7f0b02ab +int id markerViewLayer 0x7f0b02ac +int id masked 0x7f0b02ad +int id match_constraint 0x7f0b02ae +int id match_parent 0x7f0b02af +int id material_clock_display 0x7f0b02b0 +int id material_clock_face 0x7f0b02b1 +int id material_clock_hand 0x7f0b02b2 +int id material_clock_period_am_button 0x7f0b02b3 +int id material_clock_period_pm_button 0x7f0b02b4 +int id material_clock_period_toggle 0x7f0b02b5 +int id material_hour_text_input 0x7f0b02b6 +int id material_hour_tv 0x7f0b02b7 +int id material_label 0x7f0b02b8 +int id material_minute_text_input 0x7f0b02b9 +int id material_minute_tv 0x7f0b02ba +int id material_textinput_timepicker 0x7f0b02bb +int id material_timepicker_cancel_button 0x7f0b02bc +int id material_timepicker_container 0x7f0b02bd +int id material_timepicker_edit_text 0x7f0b02be +int id material_timepicker_mode_button 0x7f0b02bf +int id material_timepicker_ok_button 0x7f0b02c0 +int id material_timepicker_view 0x7f0b02c1 +int id material_value_index 0x7f0b02c2 +int id media_actions 0x7f0b02c3 +int id menu_btn_bt 0x7f0b02c4 +int id menu_btn_clearmap 0x7f0b02c5 +int id menu_btn_common 0x7f0b02c6 +int id menu_btn_periphery 0x7f0b02c7 +int id menu_btn_periphery_search 0x7f0b02c8 +int id menu_btn_recent 0x7f0b02c9 +int id menu_btn_search 0x7f0b02ca +int id menu_btn_setting 0x7f0b02cb +int id menu_btn_show 0x7f0b02cc +int id menu_left_btn 0x7f0b02cd +int id menu_left_btns 0x7f0b02ce +int id menu_left_layout 0x7f0b02cf +int id message 0x7f0b02d0 +int id middle 0x7f0b02d1 +int id mini 0x7f0b02d2 +int id mirror 0x7f0b02d3 +int id module_adas_dispatch_remind_affirm 0x7f0b02d4 +int id module_adas_dispatch_remind_cancel 0x7f0b02d5 +int id module_adas_dispatch_remind_loc 0x7f0b02d6 +int id module_adas_dispatch_remind_timer 0x7f0b02d7 +int id module_carchatting_call_hangUp 0x7f0b02d8 +int id module_carchatting_call_head 0x7f0b02d9 +int id module_carchatting_call_nickname 0x7f0b02da +int id module_carchatting_call_time 0x7f0b02db +int id module_carchatting_incoming_answer 0x7f0b02dc +int id module_carchatting_incoming_hangUp 0x7f0b02dd +int id module_carchatting_rl_call_view 0x7f0b02de +int id module_carchatting_rl_incoming_view 0x7f0b02df +int id module_commons_marker_car_model 0x7f0b02e0 +int id module_commons_toast_left_drawable 0x7f0b02e1 +int id module_commons_toast_msg 0x7f0b02e2 +int id module_commons_wm_dialog_button_cancel 0x7f0b02e3 +int id module_commons_wm_dialog_button_ok 0x7f0b02e4 +int id module_commons_wm_dialog_content 0x7f0b02e5 +int id module_main_id_cover_up 0x7f0b02e6 +int id module_main_id_entrance_fragment_container 0x7f0b02e7 +int id module_main_id_floating_view 0x7f0b02e8 +int id module_main_id_map_fragment_container 0x7f0b02e9 +int id module_main_id_message_history_fragment_container 0x7f0b02ea +int id module_main_id_och_fragment 0x7f0b02eb +int id module_main_id_search_fragment 0x7f0b02ec +int id module_main_id_smp_fragment 0x7f0b02ed +int id module_main_id_waring_fragment 0x7f0b02ee +int id module_map_amap_my_location_bg_iv 0x7f0b02ef +int id module_map_amap_my_location_iv 0x7f0b02f0 +int id module_map_id_map 0x7f0b02f1 +int id module_push_app_icon 0x7f0b02f2 +int id module_push_app_icon_title 0x7f0b02f3 +int id module_push_button_left 0x7f0b02f4 +int id module_push_button_right 0x7f0b02f5 +int id module_push_buttons 0x7f0b02f6 +int id module_push_check 0x7f0b02f7 +int id module_push_content 0x7f0b02f8 +int id module_push_content_container 0x7f0b02f9 +int id module_push_dialog_acc_title 0x7f0b02fa +int id module_push_dialog_bottom_title 0x7f0b02fb +int id module_push_dialog_close 0x7f0b02fc +int id module_push_dialog_content 0x7f0b02fd +int id module_push_dialog_title 0x7f0b02fe +int id module_push_id_clear 0x7f0b02ff +int id module_push_id_close 0x7f0b0300 +int id module_push_id_not_data 0x7f0b0301 +int id module_push_id_recycler_view 0x7f0b0302 +int id module_push_id_title 0x7f0b0303 +int id module_push_image 0x7f0b0304 +int id module_push_item_app_icon 0x7f0b0305 +int id module_push_item_click 0x7f0b0306 +int id module_push_item_content 0x7f0b0307 +int id module_push_item_delete 0x7f0b0308 +int id module_push_item_image 0x7f0b0309 +int id module_push_item_time 0x7f0b030a +int id module_push_item_title 0x7f0b030b +int id module_push_line 0x7f0b030c +int id module_push_progress_bar_frame 0x7f0b030d +int id module_push_rl_content 0x7f0b030e +int id module_push_timer 0x7f0b030f +int id module_push_title 0x7f0b0310 +int id module_service_id_call 0x7f0b0311 +int id module_service_id_content 0x7f0b0312 +int id module_service_id_marker_content 0x7f0b0313 +int id module_service_id_tag 0x7f0b0314 +int id module_service_id_user_header 0x7f0b0315 +int id module_services_dispatch_dialog_confirm 0x7f0b0316 +int id module_services_dispatch_dialog_end_content 0x7f0b0317 +int id module_services_dispatch_dialog_flight_time 0x7f0b0318 +int id module_services_dispatch_dialog_start_content 0x7f0b0319 +int id module_services_dispatch_dialog_task_content 0x7f0b031a +int id module_services_dispatch_dialog_task_time 0x7f0b031b +int id module_services_dispatch_dialog_title 0x7f0b031c +int id module_switch_model_layout 0x7f0b031d +int id month_grid 0x7f0b031e +int id month_navigation_bar 0x7f0b031f +int id month_navigation_fragment_toggle 0x7f0b0320 +int id month_navigation_next 0x7f0b0321 +int id month_navigation_previous 0x7f0b0322 +int id month_title 0x7f0b0323 +int id motion_base 0x7f0b0324 +int id movePathView 0x7f0b0325 +int id mp3 0x7f0b0326 +int id mtrl_anchor_parent 0x7f0b0327 +int id mtrl_calendar_day_selector_frame 0x7f0b0328 +int id mtrl_calendar_days_of_week 0x7f0b0329 +int id mtrl_calendar_frame 0x7f0b032a +int id mtrl_calendar_main_pane 0x7f0b032b +int id mtrl_calendar_months 0x7f0b032c +int id mtrl_calendar_selection_frame 0x7f0b032d +int id mtrl_calendar_text_input_frame 0x7f0b032e +int id mtrl_calendar_year_selector_frame 0x7f0b032f +int id mtrl_card_checked_layer_id 0x7f0b0330 +int id mtrl_child_content_container 0x7f0b0331 +int id mtrl_internal_children_alpha_tag 0x7f0b0332 +int id mtrl_motion_snapshot_view 0x7f0b0333 +int id mtrl_picker_fullscreen 0x7f0b0334 +int id mtrl_picker_header 0x7f0b0335 +int id mtrl_picker_header_selection_text 0x7f0b0336 +int id mtrl_picker_header_title_and_selection 0x7f0b0337 +int id mtrl_picker_header_toggle 0x7f0b0338 +int id mtrl_picker_text_input_date 0x7f0b0339 +int id mtrl_picker_text_input_range_end 0x7f0b033a +int id mtrl_picker_text_input_range_start 0x7f0b033b +int id mtrl_picker_title_text 0x7f0b033c +int id mtrl_view_tag_bottom_padding 0x7f0b033d +int id multiply 0x7f0b033e +int id name 0x7f0b033f +int id name_text 0x7f0b0340 +int id navi_sdk_tmc_bar_container 0x7f0b0341 +int id navigation_bar_item_icon_view 0x7f0b0342 +int id navigation_bar_item_labels_group 0x7f0b0343 +int id navigation_bar_item_large_label_view 0x7f0b0344 +int id navigation_bar_item_small_label_view 0x7f0b0345 +int id navigation_header_container 0x7f0b0346 +int id network_loading_imageview 0x7f0b0347 +int id neverCompleteToEnd 0x7f0b0348 +int id neverCompleteToStart 0x7f0b0349 +int id next_icon 0x7f0b034a +int id noId 0x7f0b034b +int id noState 0x7f0b034c +int id no_share_image 0x7f0b034d +int id none 0x7f0b034e +int id normal 0x7f0b034f +int id north 0x7f0b0350 +int id notice_banner_line 0x7f0b0351 +int id notice_connect 0x7f0b0352 +int id notice_image 0x7f0b0353 +int id notice_push_banner_check 0x7f0b0354 +int id notice_push_content 0x7f0b0355 +int id notice_push_icon_video 0x7f0b0356 +int id notice_push_style_image 0x7f0b0357 +int id notice_push_title 0x7f0b0358 +int id notice_traffic_dialog_close 0x7f0b0359 +int id notice_traffic_dialog_title 0x7f0b035a +int id notice_video_layout 0x7f0b035b +int id notice_video_play 0x7f0b035c +int id notification_background 0x7f0b035d +int id notification_main_column 0x7f0b035e +int id notification_main_column_container 0x7f0b035f +int id nowrap 0x7f0b0360 +int id obu 0x7f0b0361 +int id obuControllerLayout 0x7f0b0362 +int id obuDivider 0x7f0b0363 +int id obuDivider2 0x7f0b0364 +int id obu_ip_view 0x7f0b0365 +int id obu_state 0x7f0b0366 +int id obu_top_txt 0x7f0b0367 +int id off 0x7f0b0368 +int id ok 0x7f0b0369 +int id on 0x7f0b036a +int id onAttachStateChangeListener 0x7f0b036b +int id onDateChanged 0x7f0b036c +int id orientation 0x7f0b036d +int id outline 0x7f0b036e +int id outward 0x7f0b036f +int id overshoot 0x7f0b0370 +int id packed 0x7f0b0371 +int id pad 0x7f0b0372 +int id pad_txt 0x7f0b0373 +int id panel_btn_gps 0x7f0b0374 +int id panel_guidance_right 0x7f0b0375 +int id panel_text_gps 0x7f0b0376 +int id parallax 0x7f0b0377 +int id parent 0x7f0b0378 +int id parentPanel 0x7f0b0379 +int id parentRelative 0x7f0b037a +int id parent_matrix 0x7f0b037b +int id password_toggle 0x7f0b037c +int id path 0x7f0b037d +int id pathId 0x7f0b037e +int id pathRelative 0x7f0b037f +int id pb 0x7f0b0380 +int id pcm 0x7f0b0381 +int id percent 0x7f0b0382 +int id pid_text 0x7f0b0383 +int id pin 0x7f0b0384 +int id play 0x7f0b0385 +int id poi_browse_btn_back 0x7f0b0386 +int id poi_browse_btn_exit 0x7f0b0387 +int id poi_browse_btn_next 0x7f0b0388 +int id poi_browse_btn_pre 0x7f0b0389 +int id poi_browse_btns 0x7f0b038a +int id position 0x7f0b038b +int id postLayout 0x7f0b038c +int id preview_layout 0x7f0b038d +int id progress 0x7f0b038e +int id progressBar 0x7f0b038f +int id progress_circular 0x7f0b0390 +int id progress_horizontal 0x7f0b0391 +int id pushVideoClose 0x7f0b0392 +int id query 0x7f0b0393 +int id r_16 0x7f0b0394 +int id r_16K 0x7f0b0395 +int id r_44K 0x7f0b0396 +int id r_8 0x7f0b0397 +int id r_8K 0x7f0b0398 +int id r_btn 0x7f0b0399 +int id radio 0x7f0b039a +int id radio_group 0x7f0b039b +int id rating_bar 0x7f0b039c +int id rbGpsProviderAndroid 0x7f0b039d +int id rbGpsProviderOBU 0x7f0b039e +int id rbGpsProviderRTK 0x7f0b039f +int id rbScenarioHistory 0x7f0b03a0 +int id rbShareEvents 0x7f0b03a1 +int id rbSurroundingEvent 0x7f0b03a2 +int id reason 0x7f0b03a3 +int id record 0x7f0b03a4 +int id recordPackageDivider 0x7f0b03a5 +int id rectangles 0x7f0b03a6 +int id recyclerView 0x7f0b03a7 +int id refresh_button 0x7f0b03a8 +int id refuse_traffic 0x7f0b03a9 +int id repeat 0x7f0b03aa +int id reportMsgLayout 0x7f0b03ab +int id reset_changesight 0x7f0b03ac +int id reverseSawtooth 0x7f0b03ad +int id rgGpsProvider 0x7f0b03ae +int id rgTabSelect 0x7f0b03af +int id rg_audio_format 0x7f0b03b0 +int id rg_encoding 0x7f0b03b1 +int id rg_routing_set 0x7f0b03b2 +int id rg_simple_rate 0x7f0b03b3 +int id right 0x7f0b03b4 +int id rightLinear 0x7f0b03b5 +int id rightToLeft 0x7f0b03b6 +int id right_icon 0x7f0b03b7 +int id right_nor_image 0x7f0b03b8 +int id right_select_image 0x7f0b03b9 +int id right_side 0x7f0b03ba +int id rlContent 0x7f0b03bb +int id rlRoadEventDetail 0x7f0b03bc +int id rlRoadEventImg 0x7f0b03bd +int id rlRoadEventList 0x7f0b03be +int id rlSmallMapBorder 0x7f0b03bf +int id roadVideoClose 0x7f0b03c0 +int id roadVideoView 0x7f0b03c1 +int id road_case_address 0x7f0b03c2 +int id road_case_liset_item 0x7f0b03c3 +int id road_case_share_list 0x7f0b03c4 +int id road_case_share_time 0x7f0b03c5 +int id road_case_style 0x7f0b03c6 +int id road_case_useful 0x7f0b03c7 +int id road_case_useful_num 0x7f0b03c8 +int id road_case_useless 0x7f0b03c9 +int id road_case_useless_num 0x7f0b03ca +int id round 0x7f0b03cb +int id rounded 0x7f0b03cc +int id route_select_ok 0x7f0b03cd +int id route_select_setting 0x7f0b03ce +int id route_select_sim_navi 0x7f0b03cf +int id route_select_start 0x7f0b03d0 +int id route_select_start_navi 0x7f0b03d1 +int id route_select_time 0x7f0b03d2 +int id route_set_end 0x7f0b03d3 +int id route_set_layout 0x7f0b03d4 +int id route_set_ok 0x7f0b03d5 +int id route_set_start 0x7f0b03d6 +int id route_set_waypoi 0x7f0b03d7 +int id routebook_child_item_info_ll 0x7f0b03d8 +int id routing_set_avoidhwy 0x7f0b03d9 +int id routing_set_avoidtoll 0x7f0b03da +int id routing_set_default 0x7f0b03db +int id routing_set_fast 0x7f0b03dc +int id routing_set_short 0x7f0b03dd +int id row 0x7f0b03de +int id row_index_key 0x7f0b03df +int id row_reverse 0x7f0b03e0 +int id rtk 0x7f0b03e1 +int id rtk_txt 0x7f0b03e2 +int id rv 0x7f0b03e3 +int id rvCameraList 0x7f0b03e4 +int id rvRoadEventList 0x7f0b03e5 +int id rv_take_over 0x7f0b03e6 +int id sKeyBoardView 0x7f0b03e7 +int id save_non_transition_alpha 0x7f0b03e8 +int id save_obu_ip 0x7f0b03e9 +int id save_overlay_view 0x7f0b03ea +int id sawtooth 0x7f0b03eb +int id scale 0x7f0b03ec +int id scan_car_image 0x7f0b03ed +int id scan_car_tips 0x7f0b03ee +int id scan_car_top_image 0x7f0b03ef +int id scan_line_image 0x7f0b03f0 +int id screen 0x7f0b03f1 +int id scrollIndicatorDown 0x7f0b03f2 +int id scrollIndicatorUp 0x7f0b03f3 +int id scrollView 0x7f0b03f4 +int id scrollable 0x7f0b03f5 +int id search_badge 0x7f0b03f6 +int id search_bar 0x7f0b03f7 +int id search_button 0x7f0b03f8 +int id search_close_btn 0x7f0b03f9 +int id search_edit_frame 0x7f0b03fa +int id search_go_btn 0x7f0b03fb +int id search_mag_icon 0x7f0b03fc +int id search_plate 0x7f0b03fd +int id search_src_text 0x7f0b03fe +int id search_voice_btn 0x7f0b03ff +int id select_dialog_listview 0x7f0b0400 +int id selected 0x7f0b0401 +int id selection_type 0x7f0b0402 +int id send 0x7f0b0403 +int id shadowView 0x7f0b0404 +int id shape_id 0x7f0b0405 +int id share_approve 0x7f0b0406 +int id share_approve_des 0x7f0b0407 +int id share_event_button 0x7f0b0408 +int id share_event_guide_des 0x7f0b0409 +int id share_event_null_des 0x7f0b040a +int id share_index_des 0x7f0b040b +int id share_num 0x7f0b040c +int id sharedValueSet 0x7f0b040d +int id sharedValueUnset 0x7f0b040e +int id shortcut 0x7f0b040f +int id shre_num_des 0x7f0b0410 +int id sim_navi_control 0x7f0b0411 +int id sim_navi_next 0x7f0b0412 +int id sim_navi_pre 0x7f0b0413 +int id sim_navi_start 0x7f0b0414 +int id sim_navi_text 0x7f0b0415 +int id sin 0x7f0b0416 +int id skipped 0x7f0b0417 +int id slide 0x7f0b0418 +int id smallLabel 0x7f0b0419 +int id smallMapDirectionView 0x7f0b041a +int id small_close 0x7f0b041b +int id small_id 0x7f0b041c +int id snackbar_action 0x7f0b041d +int id snackbar_text 0x7f0b041e +int id south 0x7f0b041f +int id space_around 0x7f0b0420 +int id space_between 0x7f0b0421 +int id space_evenly 0x7f0b0422 +int id spacer 0x7f0b0423 +int id special_effects_controller_view_tag 0x7f0b0424 +int id spinner1 0x7f0b0425 +int id spline 0x7f0b0426 +int id split_action_bar 0x7f0b0427 +int id spread 0x7f0b0428 +int id spread_inside 0x7f0b0429 +int id spring 0x7f0b042a +int id square 0x7f0b042b +int id src_atop 0x7f0b042c +int id src_in 0x7f0b042d +int id src_over 0x7f0b042e +int id standard 0x7f0b042f +int id start 0x7f0b0430 +int id startHorizontal 0x7f0b0431 +int id startToEnd 0x7f0b0432 +int id startVertical 0x7f0b0433 +int id start_for_traffic 0x7f0b0434 +int id state 0x7f0b0435 +int id staticLayout 0x7f0b0436 +int id staticPostLayout 0x7f0b0437 +int id statusCenterLayout 0x7f0b0438 +int id status_bar_latest_event_content 0x7f0b0439 +int id stop 0x7f0b043a +int id stretch 0x7f0b043b +int id submenuarrow 0x7f0b043c +int id submit_area 0x7f0b043d +int id supply 0x7f0b043e +int id surfaceView 0x7f0b043f +int id surface_container 0x7f0b0440 +int id surface_view 0x7f0b0441 +int id surrounding_detail_recycleview 0x7f0b0442 +int id surrounding_recycleview 0x7f0b0443 +int id surrounding_road_like 0x7f0b0444 +int id surrounding_road_type 0x7f0b0445 +int id surrounding_road_type_address 0x7f0b0446 +int id surrounding_road_unlike 0x7f0b0447 +int id surrounding_root 0x7f0b0448 +int id surrounding_time 0x7f0b0449 +int id surrounding_username 0x7f0b044a +int id svLayout 0x7f0b044b +int id svpPlayer 0x7f0b044c +int id systemVersionView 0x7f0b044d +int id tabMode 0x7f0b044e +int id tagEventEvaluate 0x7f0b044f +int id tagEventType 0x7f0b0450 +int id tag_accessibility_actions 0x7f0b0451 +int id tag_accessibility_clickable_spans 0x7f0b0452 +int id tag_accessibility_heading 0x7f0b0453 +int id tag_accessibility_pane_title 0x7f0b0454 +int id tag_click_time 0x7f0b0455 +int id tag_on_apply_window_listener 0x7f0b0456 +int id tag_on_receive_content_listener 0x7f0b0457 +int id tag_on_receive_content_mime_types 0x7f0b0458 +int id tag_screen_reader_focusable 0x7f0b0459 +int id tag_state_description 0x7f0b045a +int id tag_text 0x7f0b045b +int id tag_transition_group 0x7f0b045c +int id tag_unhandled_key_event_manager 0x7f0b045d +int id tag_unhandled_key_listeners 0x7f0b045e +int id tag_window_insets_animation_callback 0x7f0b045f +int id tbADASLog 0x7f0b0460 +int id tbAppVersionInfo 0x7f0b0461 +int id tbAutopilotStatusView 0x7f0b0462 +int id tbChangeAutoPilotStatus 0x7f0b0463 +int id tbChangeCurrentCarIcon 0x7f0b0464 +int id tbCheckStatusView 0x7f0b0465 +int id tbControlCenter 0x7f0b0466 +int id tbControlView 0x7f0b0467 +int id tbDeviceBind 0x7f0b0468 +int id tbDomainController 0x7f0b0469 +int id tbHdMapController 0x7f0b046a +int id tbHmiController 0x7f0b046b +int id tbIsDemoMode 0x7f0b046c +int id tbIsDrawAutopilotTrajectoryData 0x7f0b046d +int id tbIsDrawIdentifyData 0x7f0b046e +int id tbIsDrawUnknownIdentifyData 0x7f0b046f +int id tbLogCatch 0x7f0b0470 +int id tbLogDebugView 0x7f0b0471 +int id tbLogcatCenter 0x7f0b0472 +int id tbObuController 0x7f0b0473 +int id tbOpenBrakeLight 0x7f0b0474 +int id tbOpenLight 0x7f0b0475 +int id tbPerspectiveSwitchView 0x7f0b0476 +int id tbSelfLog 0x7f0b0477 +int id tbSpeedView 0x7f0b0478 +int id tbStatusCenter 0x7f0b0479 +int id test_checkbox_android_button_tint 0x7f0b047a +int id test_checkbox_app_button_tint 0x7f0b047b +int id test_radiobutton_android_button_tint 0x7f0b047c +int id test_radiobutton_app_button_tint 0x7f0b047d +int id text 0x7f0b047e +int id text2 0x7f0b047f +int id textSpacerNoButtons 0x7f0b0480 +int id textSpacerNoTitle 0x7f0b0481 +int id textSwitch 0x7f0b0482 +int id textView1 0x7f0b0483 +int id textWatcher 0x7f0b0484 +int id text_input_end_icon 0x7f0b0485 +int id text_input_error_icon 0x7f0b0486 +int id text_input_start_icon 0x7f0b0487 +int id text_tip 0x7f0b0488 +int id textinput_counter 0x7f0b0489 +int id textinput_error 0x7f0b048a +int id textinput_helper_text 0x7f0b048b +int id textinput_placeholder 0x7f0b048c +int id textinput_prefix_text 0x7f0b048d +int id textinput_suffix_text 0x7f0b048e +int id textureView 0x7f0b048f +int id texture_view 0x7f0b0490 +int id thumb 0x7f0b0491 +int id thumbImage 0x7f0b0492 +int id thumbnail_image 0x7f0b0493 +int id time 0x7f0b0494 +int id time_of_take_over 0x7f0b0495 +int id timestamp_text 0x7f0b0496 +int id title 0x7f0b0497 +int id titleDividerNoCustom 0x7f0b0498 +int id titleId 0x7f0b0499 +int id titleLayoutId 0x7f0b049a +int id title_bar 0x7f0b049b +int id title_for 0x7f0b049c +int id title_one 0x7f0b049d +int id title_template 0x7f0b049e +int id title_thr 0x7f0b049f +int id title_two 0x7f0b04a0 +int id tmcBarCar 0x7f0b04a1 +int id tmcBarTxt 0x7f0b04a2 +int id tmcBarView 0x7f0b04a3 +int id toolbar 0x7f0b04a4 +int id top 0x7f0b04a5 +int id topPanel 0x7f0b04a6 +int id topResource 0x7f0b04a7 +int id top_mask 0x7f0b04a8 +int id total 0x7f0b04a9 +int id touch_outside 0x7f0b04aa +int id traffic_info_recyclerView 0x7f0b04ab +int id traffic_middle_line 0x7f0b04ac +int id traffic_top_line 0x7f0b04ad +int id transition_current_scene 0x7f0b04ae +int id transition_layout_save 0x7f0b04af +int id transition_position 0x7f0b04b0 +int id transition_scene_layoutid_cache 0x7f0b04b1 +int id transition_transform 0x7f0b04b2 +int id triangle 0x7f0b04b3 +int id turnLightView 0x7f0b04b4 +int id turn_light_layout 0x7f0b04b5 +int id tvAcceleration 0x7f0b04b6 +int id tvAdVersionContent 0x7f0b04b7 +int id tvAdVersionTitle 0x7f0b04b8 +int id tvAddress 0x7f0b04b9 +int id tvAddressDistance 0x7f0b04ba +int id tvAndroidSystemVersion 0x7f0b04bb +int id tvAppVersionCode 0x7f0b04bc +int id tvAppVersionName 0x7f0b04bd +int id tvAutopilotConnectStatus 0x7f0b04be +int id tvAutopilotInfo 0x7f0b04bf +int id tvAutopilotProtocolVersionInfo 0x7f0b04c0 +int id tvCPUFrameworkInfo 0x7f0b04c1 +int id tvCameraInfo 0x7f0b04c2 +int id tvCameraTitle 0x7f0b04c3 +int id tvCarInfo 0x7f0b04c4 +int id tvCheck 0x7f0b04c5 +int id tvCheckReboot 0x7f0b04c6 +int id tvCheckShutDown 0x7f0b04c7 +int id tvCountDown 0x7f0b04c8 +int id tvDebug 0x7f0b04c9 +int id tvDebugFeedback 0x7f0b04ca +int id tvDialogContent 0x7f0b04cb +int id tvDialogLeft 0x7f0b04cc +int id tvDialogRight 0x7f0b04cd +int id tvDriverServerStartupStatus 0x7f0b04ce +int id tvErrorContent 0x7f0b04cf +int id tvEventAddress 0x7f0b04d0 +int id tvEventCount 0x7f0b04d1 +int id tvEventDistance 0x7f0b04d2 +int id tvEventStubClose 0x7f0b04d3 +int id tvEventTime 0x7f0b04d4 +int id tvEventTypeTitle 0x7f0b04d5 +int id tvEventUgcTitle 0x7f0b04d6 +int id tvFaultHelpDistance 0x7f0b04d7 +int id tvFaultHelpEventTime 0x7f0b04d8 +int id tvFaultHelpName 0x7f0b04d9 +int id tvGitBranchInfo 0x7f0b04da +int id tvGitHashInfo 0x7f0b04db +int id tvIPCMac 0x7f0b04dc +int id tvIdentifyInfo 0x7f0b04dd +int id tvIllegalNum 0x7f0b04de +int id tvImgTextContent 0x7f0b04df +int id tvInternetEnvironment 0x7f0b04e0 +int id tvIpcProtocolVersionInfo 0x7f0b04e1 +int id tvLimitingVelocity 0x7f0b04e2 +int id tvLocationEnabled 0x7f0b04e3 +int id tvLogDebugTitle 0x7f0b04e4 +int id tvLoggingNotice 0x7f0b04e5 +int id tvMarkerContent 0x7f0b04e6 +int id tvMessage 0x7f0b04e7 +int id tvMoGoMapVersion 0x7f0b04e8 +int id tvNoMoreDataTrip 0x7f0b04e9 +int id tvObuAppInfo 0x7f0b04ea +int id tvObuConnectStatus 0x7f0b04eb +int id tvObuDelay 0x7f0b04ec +int id tvObuDesc 0x7f0b04ed +int id tvObuHliInfo 0x7f0b04ee +int id tvObuInfo 0x7f0b04ef +int id tvObuSdkVersion 0x7f0b04f0 +int id tvObuType 0x7f0b04f1 +int id tvPadCopyrightId 0x7f0b04f2 +int id tvPadSn 0x7f0b04f3 +int id tvPadVersionContent 0x7f0b04f4 +int id tvPadVersionTitle 0x7f0b04f5 +int id tvPlateNumber 0x7f0b04f6 +int id tvRefreshButton 0x7f0b04f7 +int id tvReportActions 0x7f0b04f8 +int id tvReportCode 0x7f0b04f9 +int id tvReportLevel 0x7f0b04fa +int id tvReportMsg 0x7f0b04fb +int id tvReportNSec 0x7f0b04fc +int id tvReportResult 0x7f0b04fd +int id tvReportSec 0x7f0b04fe +int id tvReportSrc 0x7f0b04ff +int id tvRouteInfoSize 0x7f0b0500 +int id tvServerEnvironment 0x7f0b0501 +int id tvServerSocketStatus 0x7f0b0502 +int id tvSpeedTitle 0x7f0b0503 +int id tvStatusDes 0x7f0b0504 +int id tvSystemOperation 0x7f0b0505 +int id tvSystemVersion 0x7f0b0506 +int id tvTipContent 0x7f0b0507 +int id tvTrajectoryInfoSize 0x7f0b0508 +int id tvTrip 0x7f0b0509 +int id tvUniqueDeviceId 0x7f0b050a +int id tvUserMarker 0x7f0b050b +int id tvWaringContent 0x7f0b050c +int id tv_bindingcar_cancel 0x7f0b050d +int id tv_bindingcar_confirm 0x7f0b050e +int id tv_bindingcar_tips 0x7f0b050f +int id tv_bindingcar_title 0x7f0b0510 +int id tv_brake 0x7f0b0511 +int id tv_brief 0x7f0b0512 +int id tv_brief_detail 0x7f0b0513 +int id tv_cancel 0x7f0b0514 +int id tv_current 0x7f0b0515 +int id tv_dialog_cancel 0x7f0b0516 +int id tv_dialog_ok 0x7f0b0517 +int id tv_dis 0x7f0b0518 +int id tv_duration 0x7f0b0519 +int id tv_event 0x7f0b051a +int id tv_guidance_cur_road 0x7f0b051b +int id tv_guidance_enter_dis 0x7f0b051c +int id tv_guidance_exit_dis 0x7f0b051d +int id tv_guidance_next_export 0x7f0b051e +int id tv_guidance_next_road 0x7f0b051f +int id tv_guidance_next_road_two_name 0x7f0b0520 +int id tv_guidance_over_mileage 0x7f0b0521 +int id tv_guidance_over_time 0x7f0b0522 +int id tv_guidance_server_dis 0x7f0b0523 +int id tv_info_total 0x7f0b0524 +int id tv_line 0x7f0b0525 +int id tv_main_empty_1 0x7f0b0526 +int id tv_main_empty_2 0x7f0b0527 +int id tv_main_refresh 0x7f0b0528 +int id tv_main_share 0x7f0b0529 +int id tv_next_road 0x7f0b052a +int id tv_over_view 0x7f0b052b +int id tv_play 0x7f0b052c +int id tv_poitype 0x7f0b052d +int id tv_prompt 0x7f0b052e +int id tv_reboot_cancel 0x7f0b052f +int id tv_reboot_confirm 0x7f0b0530 +int id tv_reboot_tips 0x7f0b0531 +int id tv_reboot_title 0x7f0b0532 +int id tv_scale 0x7f0b0533 +int id tv_scale_bg 0x7f0b0534 +int id tv_snippet 0x7f0b0535 +int id tv_title 0x7f0b0536 +int id tv_to_bindingcar_cancel 0x7f0b0537 +int id tv_to_bindingcar_confirm 0x7f0b0538 +int id tv_top_refresh 0x7f0b0539 +int id tv_upgrade_cancel 0x7f0b053a +int id tv_upgrade_confirm 0x7f0b053b +int id tv_upgrade_content 0x7f0b053c +int id tv_upgrade_tip 0x7f0b053d +int id tv_upgrade_title 0x7f0b053e +int id txcVideoView 0x7f0b053f +int id txt_dialog_tip 0x7f0b0540 +int id txt_dialog_title 0x7f0b0541 +int id txt_info 0x7f0b0542 +int id txt_input 0x7f0b0543 +int id unchecked 0x7f0b0544 +int id uniform 0x7f0b0545 +int id unlabeled 0x7f0b0546 +int id unusual_title 0x7f0b0547 +int id up 0x7f0b0548 +int id usual_title 0x7f0b0549 +int id utvBottomIconView 0x7f0b054a +int id utvLeftIconView 0x7f0b054b +int id utvRightIconView 0x7f0b054c +int id utvTopIconView 0x7f0b054d +int id value_text_view 0x7f0b054e +int id verbose 0x7f0b054f +int id version 0x7f0b0550 +int id vertical 0x7f0b0551 +int id vertical_only 0x7f0b0552 +int id videoPlayer 0x7f0b0553 +int id video_player 0x7f0b0554 +int id viewAutopilotStatus 0x7f0b0555 +int id viewBottomLine 0x7f0b0556 +int id viewCheckReboot 0x7f0b0557 +int id viewCheckShutDown 0x7f0b0558 +int id viewCheckStatus 0x7f0b0559 +int id viewEmpty 0x7f0b055a +int id viewLimitingVelocity 0x7f0b055b +int id viewLinEnd 0x7f0b055c +int id viewLinStart 0x7f0b055d +int id viewPerspectiveSwitch 0x7f0b055e +int id viewShowDebugView 0x7f0b055f +int id viewSpeedChart 0x7f0b0560 +int id viewSystemVersion 0x7f0b0561 +int id viewTrafficLightVr 0x7f0b0562 +int id viewUpgradeTips 0x7f0b0563 +int id view_divider 0x7f0b0564 +int id view_horizontal_line 0x7f0b0565 +int id view_lifecycle_owner 0x7f0b0566 +int id view_offset_helper 0x7f0b0567 +int id view_transition 0x7f0b0568 +int id view_tree_lifecycle_owner 0x7f0b0569 +int id view_tree_saved_state_registry_owner 0x7f0b056a +int id view_tree_view_model_store_owner 0x7f0b056b +int id view_vertical_line 0x7f0b056c +int id visible 0x7f0b056d +int id visible_removing_fragment_view_tag 0x7f0b056e +int id volume_progressbar 0x7f0b056f +int id vpEventPanel 0x7f0b0570 +int id vsBadCaseToolsView 0x7f0b0571 +int id vvCarAnimation 0x7f0b0572 +int id warn 0x7f0b0573 +int id warning_content_text 0x7f0b0574 +int id warning_distance 0x7f0b0575 +int id warning_type_image 0x7f0b0576 +int id wav 0x7f0b0577 +int id west 0x7f0b0578 +int id widget_container 0x7f0b0579 +int id window_video_play 0x7f0b057a +int id withinBounds 0x7f0b057b +int id words_count 0x7f0b057c +int id wrap 0x7f0b057d +int id wrap_content 0x7f0b057e +int id wrap_content_constrained 0x7f0b057f +int id wrap_reverse 0x7f0b0580 +int id x86_support 0x7f0b0581 +int id x_left 0x7f0b0582 +int id x_right 0x7f0b0583 +int id yesId 0x7f0b0584 +int id ying_layout 0x7f0b0585 +int id ying_risk_state 0x7f0b0586 +int id zero_corner_chip 0x7f0b0587 +int id zhujiguang 0x7f0b0588 +int id zhujiguang_txt 0x7f0b0589 +int integer abc_config_activityDefaultDur 0x7f0c0001 +int integer abc_config_activityShortDur 0x7f0c0002 +int integer app_bar_elevation_anim_duration 0x7f0c0003 +int integer bottom_sheet_slide_duration 0x7f0c0004 +int integer cancel_button_image_alpha 0x7f0c0005 +int integer config_tooltipAnimTime 0x7f0c0006 +int integer design_snackbar_text_max_lines 0x7f0c0007 +int integer design_tab_indicator_anim_duration_ms 0x7f0c0008 +int integer hide_password_duration 0x7f0c0009 +int integer keyCode_0 0x7f0c000a +int integer keyCode_1 0x7f0c000b +int integer keyCode_1002 0x7f0c000c +int integer keyCode_1003 0x7f0c000d +int integer keyCode_1004 0x7f0c000e +int integer keyCode_1005 0x7f0c000f +int integer keyCode_2 0x7f0c0010 +int integer keyCode_3 0x7f0c0011 +int integer keyCode_4 0x7f0c0012 +int integer keyCode_5 0x7f0c0013 +int integer keyCode_6 0x7f0c0014 +int integer keyCode_7 0x7f0c0015 +int integer keyCode_8 0x7f0c0016 +int integer keyCode_9 0x7f0c0017 +int integer keyCode_a 0x7f0c0018 +int integer keyCode_b 0x7f0c0019 +int integer keyCode_c 0x7f0c001a +int integer keyCode_d 0x7f0c001b +int integer keyCode_del 0x7f0c001c +int integer keyCode_e 0x7f0c001d +int integer keyCode_f 0x7f0c001e +int integer keyCode_g 0x7f0c001f +int integer keyCode_h 0x7f0c0020 +int integer keyCode_heng 0x7f0c0021 +int integer keyCode_i 0x7f0c0022 +int integer keyCode_input_type 0x7f0c0023 +int integer keyCode_j 0x7f0c0024 +int integer keyCode_k 0x7f0c0025 +int integer keyCode_keboard_style 0x7f0c0026 +int integer keyCode_l 0x7f0c0027 +int integer keyCode_m 0x7f0c0028 +int integer keyCode_n 0x7f0c0029 +int integer keyCode_o 0x7f0c002a +int integer keyCode_ok 0x7f0c002b +int integer keyCode_p 0x7f0c002c +int integer keyCode_q 0x7f0c002d +int integer keyCode_r 0x7f0c002e +int integer keyCode_s 0x7f0c002f +int integer keyCode_search 0x7f0c0030 +int integer keyCode_t 0x7f0c0031 +int integer keyCode_u 0x7f0c0032 +int integer keyCode_v 0x7f0c0033 +int integer keyCode_w 0x7f0c0034 +int integer keyCode_x 0x7f0c0035 +int integer keyCode_xing 0x7f0c0036 +int integer keyCode_y 0x7f0c0037 +int integer keyCode_z 0x7f0c0038 +int integer material_motion_duration_long_1 0x7f0c0039 +int integer material_motion_duration_long_2 0x7f0c003a +int integer material_motion_duration_medium_1 0x7f0c003b +int integer material_motion_duration_medium_2 0x7f0c003c +int integer material_motion_duration_short_1 0x7f0c003d +int integer material_motion_duration_short_2 0x7f0c003e +int integer material_motion_path 0x7f0c003f +int integer mtrl_badge_max_character_count 0x7f0c0040 +int integer mtrl_btn_anim_delay_ms 0x7f0c0041 +int integer mtrl_btn_anim_duration_ms 0x7f0c0042 +int integer mtrl_calendar_header_orientation 0x7f0c0043 +int integer mtrl_calendar_selection_text_lines 0x7f0c0044 +int integer mtrl_calendar_year_selector_span 0x7f0c0045 +int integer mtrl_card_anim_delay_ms 0x7f0c0046 +int integer mtrl_card_anim_duration_ms 0x7f0c0047 +int integer mtrl_chip_anim_duration 0x7f0c0048 +int integer mtrl_tab_indicator_anim_duration_ms 0x7f0c0049 +int integer show_password_duration 0x7f0c004a +int integer status_bar_notification_info_maxnum 0x7f0c004b +int interpolator btn_checkbox_checked_mtrl_animation_interpolator_0 0x7f0d0001 +int interpolator btn_checkbox_checked_mtrl_animation_interpolator_1 0x7f0d0002 +int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_0 0x7f0d0003 +int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_1 0x7f0d0004 +int interpolator btn_radio_to_off_mtrl_animation_interpolator_0 0x7f0d0005 +int interpolator btn_radio_to_on_mtrl_animation_interpolator_0 0x7f0d0006 +int interpolator fast_out_slow_in 0x7f0d0007 +int interpolator mtrl_fast_out_linear_in 0x7f0d0008 +int interpolator mtrl_fast_out_slow_in 0x7f0d0009 +int interpolator mtrl_linear 0x7f0d000a +int interpolator mtrl_linear_out_slow_in 0x7f0d000b +int layout abc_action_bar_title_item 0x7f0e0001 +int layout abc_action_bar_up_container 0x7f0e0002 +int layout abc_action_menu_item_layout 0x7f0e0003 +int layout abc_action_menu_layout 0x7f0e0004 +int layout abc_action_mode_bar 0x7f0e0005 +int layout abc_action_mode_close_item_material 0x7f0e0006 +int layout abc_activity_chooser_view 0x7f0e0007 +int layout abc_activity_chooser_view_list_item 0x7f0e0008 +int layout abc_alert_dialog_button_bar_material 0x7f0e0009 +int layout abc_alert_dialog_material 0x7f0e000a +int layout abc_alert_dialog_title_material 0x7f0e000b +int layout abc_cascading_menu_item_layout 0x7f0e000c +int layout abc_dialog_title_material 0x7f0e000d +int layout abc_expanded_menu_layout 0x7f0e000e +int layout abc_list_menu_item_checkbox 0x7f0e000f +int layout abc_list_menu_item_icon 0x7f0e0010 +int layout abc_list_menu_item_layout 0x7f0e0011 +int layout abc_list_menu_item_radio 0x7f0e0012 +int layout abc_popup_menu_header_item_layout 0x7f0e0013 +int layout abc_popup_menu_item_layout 0x7f0e0014 +int layout abc_screen_content_include 0x7f0e0015 +int layout abc_screen_simple 0x7f0e0016 +int layout abc_screen_simple_overlay_action_mode 0x7f0e0017 +int layout abc_screen_toolbar 0x7f0e0018 +int layout abc_search_dropdown_item_icons_2line 0x7f0e0019 +int layout abc_search_view 0x7f0e001a +int layout abc_select_dialog_material 0x7f0e001b +int layout abc_tooltip 0x7f0e001c +int layout activity_beta_active_alert 0x7f0e001d +int layout activity_check 0x7f0e001e +int layout activity_data_preview 0x7f0e001f +int layout activity_log 0x7f0e0020 +int layout activity_login_sftp 0x7f0e0021 +int layout activity_settings 0x7f0e0022 +int layout activity_simulate 0x7f0e0023 +int layout brvah_quick_view_load_more 0x7f0e0024 +int layout camera_item_v2x_live_video 0x7f0e0025 +int layout camera_push_live_video 0x7f0e0026 +int layout camera_view_video_layout_normal 0x7f0e0027 +int layout check_dialog 0x7f0e0028 +int layout check_hardware 0x7f0e0029 +int layout check_info_adapter 0x7f0e002a +int layout check_info_list 0x7f0e002b +int layout check_info_title_item 0x7f0e002c +int layout check_list 0x7f0e002d +int layout check_recycler_footer 0x7f0e002e +int layout check_titel 0x7f0e002f +int layout custom_dialog 0x7f0e0030 +int layout design_bottom_navigation_item 0x7f0e0031 +int layout design_bottom_sheet_dialog 0x7f0e0032 +int layout design_layout_snackbar 0x7f0e0033 +int layout design_layout_snackbar_include 0x7f0e0034 +int layout design_layout_tab_icon 0x7f0e0035 +int layout design_layout_tab_text 0x7f0e0036 +int layout design_menu_item_action_area 0x7f0e0037 +int layout design_navigation_item 0x7f0e0038 +int layout design_navigation_item_header 0x7f0e0039 +int layout design_navigation_item_separator 0x7f0e003a +int layout design_navigation_item_subheader 0x7f0e003b +int layout design_navigation_menu 0x7f0e003c +int layout design_navigation_menu_item 0x7f0e003d +int layout design_text_input_end_icon 0x7f0e003e +int layout design_text_input_start_icon 0x7f0e003f +int layout dialog_ad_upgrade 0x7f0e0040 +int layout dialog_camera 0x7f0e0041 +int layout dialog_can_config 0x7f0e0042 +int layout dialog_docker_reboot 0x7f0e0043 +int layout dialog_log 0x7f0e0044 +int layout dialog_log_debug 0x7f0e0045 +int layout dialog_modify_bindingcar 0x7f0e0046 +int layout dialog_navi_notice 0x7f0e0047 +int layout dialog_routing_set 0x7f0e0048 +int layout dialog_select 0x7f0e0049 +int layout dialog_tip 0x7f0e004a +int layout dialog_to_bindingcar 0x7f0e004b +int layout dialog_v2x_seek_help 0x7f0e004c +int layout dialog_wait 0x7f0e004d +int layout exo_playback_control_view 0x7f0e004e +int layout exo_simple_player_view 0x7f0e004f +int layout footer_nomore_view 0x7f0e0050 +int layout fragment_hmi 0x7f0e0051 +int layout item 0x7f0e0052 +int layout item_camera_info 0x7f0e0053 +int layout item_data 0x7f0e0054 +int layout item_log 0x7f0e0055 +int layout item_notice_video 0x7f0e0056 +int layout item_notice_video_small 0x7f0e0057 +int layout item_radio_btn 0x7f0e0058 +int layout item_v2x_crossroad_live_video 0x7f0e0059 +int layout item_v2x_event_detail 0x7f0e005a +int layout item_v2x_event_detail_vr 0x7f0e005b +int layout item_v2x_event_share_load_more 0x7f0e005c +int layout item_v2x_event_ugc 0x7f0e005d +int layout item_v2x_fatigue_driving 0x7f0e005e +int layout item_v2x_fault_help 0x7f0e005f +int layout item_v2x_fault_help_vr 0x7f0e0060 +int layout item_v2x_illegal_parking 0x7f0e0061 +int layout item_v2x_illegal_parking_vr 0x7f0e0062 +int layout item_v2x_live_video 0x7f0e0063 +int layout item_v2x_live_video_vr 0x7f0e0064 +int layout item_v2x_push_event_detail 0x7f0e0065 +int layout item_v2x_push_live_video 0x7f0e0066 +int layout item_v2x_push_live_video_vr 0x7f0e0067 +int layout item_v2x_recommend_route 0x7f0e0068 +int layout item_v2x_road_live_car_detail 0x7f0e0069 +int layout item_v2x_road_live_car_detail_vr 0x7f0e006a +int layout item_v2x_scennario_history 0x7f0e006b +int layout item_v2x_scennario_history_other_help 0x7f0e006c +int layout item_v2x_see_crossroad_live_video 0x7f0e006d +int layout item_v2x_see_frontcar_live_video 0x7f0e006e +int layout item_v2x_see_frontcar_live_video_vr 0x7f0e006f +int layout layout_badcase_collect 0x7f0e0070 +int layout layout_badcase_item 0x7f0e0071 +int layout layout_custom_info 0x7f0e0072 +int layout layout_fb 0x7f0e0073 +int layout layout_fb_badcase 0x7f0e0074 +int layout layout_float 0x7f0e0075 +int layout layout_map_auto_view 0x7f0e0076 +int layout layout_marker_infowindow_layer 0x7f0e0077 +int layout layout_normal_info_window_style 0x7f0e0078 +int layout layout_panel_btn_top_right 0x7f0e0079 +int layout layout_panel_guidance 0x7f0e007a +int layout leak_canary_about_screen 0x7f0e007b +int layout leak_canary_heap_analysis_failure_screen 0x7f0e007c +int layout leak_canary_heap_dump_leak_title 0x7f0e007d +int layout leak_canary_heap_dump_toast 0x7f0e007e +int layout leak_canary_heap_dumps_screen 0x7f0e007f +int layout leak_canary_heap_render 0x7f0e0080 +int layout leak_canary_hprof_explorer 0x7f0e0081 +int layout leak_canary_leak_activity 0x7f0e0082 +int layout leak_canary_leak_chips 0x7f0e0083 +int layout leak_canary_leak_header 0x7f0e0084 +int layout leak_canary_leak_row 0x7f0e0085 +int layout leak_canary_leak_screen 0x7f0e0086 +int layout leak_canary_list 0x7f0e0087 +int layout leak_canary_ref_row 0x7f0e0088 +int layout leak_canary_simple_row 0x7f0e0089 +int layout listitem_device 0x7f0e008a +int layout log_title_bar 0x7f0e008b +int layout log_view 0x7f0e008c +int layout material_chip_input_combo 0x7f0e008d +int layout material_clock_display 0x7f0e008e +int layout material_clock_display_divider 0x7f0e008f +int layout material_clock_period_toggle 0x7f0e0090 +int layout material_clock_period_toggle_land 0x7f0e0091 +int layout material_clockface_textview 0x7f0e0092 +int layout material_clockface_view 0x7f0e0093 +int layout material_radial_view_group 0x7f0e0094 +int layout material_textinput_timepicker 0x7f0e0095 +int layout material_time_chip 0x7f0e0096 +int layout material_time_input 0x7f0e0097 +int layout material_timepicker 0x7f0e0098 +int layout material_timepicker_dialog 0x7f0e0099 +int layout material_timepicker_textinput_display 0x7f0e009a +int layout modeules_commons_layout_custom_ratingbar 0x7f0e009b +int layout modudle_camera_layout_info 0x7f0e009c +int layout modudle_services_marker_info_window_layout 0x7f0e009d +int layout modudle_services_marker_layout 0x7f0e009e +int layout modudle_services_marker_layout_info 0x7f0e009f +int layout modudle_services_marker_vr_layout 0x7f0e00a0 +int layout module_car_chatting_launcher_calling_hawk_eye_view 0x7f0e00a1 +int layout module_car_chatting_launcher_incoming_hawk_eye_view 0x7f0e00a2 +int layout module_common_my_location 0x7f0e00a3 +int layout module_common_warning_marker_bottom 0x7f0e00a4 +int layout module_common_warning_marker_front 0x7f0e00a5 +int layout module_commons_layout_car 0x7f0e00a6 +int layout module_commons_layout_toast 0x7f0e00a7 +int layout module_commons_layout_toast_with_left_drawable 0x7f0e00a8 +int layout module_commons_layout_wm_dialog 0x7f0e00a9 +int layout module_dialog_adas_dispatch_airport 0x7f0e00aa +int layout module_dialog_adas_dispatch_cars 0x7f0e00ab +int layout module_event_panel_fragment_surrounding 0x7f0e00ac +int layout module_fragment_surrounding_event_item 0x7f0e00ad +int layout module_hmi_warning_v2x 0x7f0e00ae +int layout module_main_activity_main 0x7f0e00af +int layout module_main_fragement_placeholder 0x7f0e00b0 +int layout module_map_fragment_map 0x7f0e00b1 +int layout module_push_dialog_check 0x7f0e00b2 +int layout module_push_item 0x7f0e00b3 +int layout module_push_item_origin 0x7f0e00b4 +int layout module_push_item_vertical 0x7f0e00b5 +int layout module_push_message_hisotry_fragment 0x7f0e00b6 +int layout module_push_message_item 0x7f0e00b7 +int layout module_small_map_fragment 0x7f0e00b8 +int layout module_small_map_view 0x7f0e00b9 +int layout module_v2x_event_panel_fragment_event_panel 0x7f0e00ba +int layout module_v2x_event_panel_fragment_scenario_history 0x7f0e00bb +int layout module_v2x_event_share_description 0x7f0e00bc +int layout module_v2x_event_share_empty 0x7f0e00bd +int layout module_v2x_event_share_item 0x7f0e00be +int layout module_v2x_event_share_recylerview 0x7f0e00bf +int layout module_v2x_event_surrounding_detail_item 0x7f0e00c0 +int layout mtrl_alert_dialog 0x7f0e00c1 +int layout mtrl_alert_dialog_actions 0x7f0e00c2 +int layout mtrl_alert_dialog_title 0x7f0e00c3 +int layout mtrl_alert_select_dialog_item 0x7f0e00c4 +int layout mtrl_alert_select_dialog_multichoice 0x7f0e00c5 +int layout mtrl_alert_select_dialog_singlechoice 0x7f0e00c6 +int layout mtrl_calendar_day 0x7f0e00c7 +int layout mtrl_calendar_day_of_week 0x7f0e00c8 +int layout mtrl_calendar_days_of_week 0x7f0e00c9 +int layout mtrl_calendar_horizontal 0x7f0e00ca +int layout mtrl_calendar_month 0x7f0e00cb +int layout mtrl_calendar_month_labeled 0x7f0e00cc +int layout mtrl_calendar_month_navigation 0x7f0e00cd +int layout mtrl_calendar_months 0x7f0e00ce +int layout mtrl_calendar_vertical 0x7f0e00cf +int layout mtrl_calendar_year 0x7f0e00d0 +int layout mtrl_layout_snackbar 0x7f0e00d1 +int layout mtrl_layout_snackbar_include 0x7f0e00d2 +int layout mtrl_navigation_rail_item 0x7f0e00d3 +int layout mtrl_picker_actions 0x7f0e00d4 +int layout mtrl_picker_dialog 0x7f0e00d5 +int layout mtrl_picker_fullscreen 0x7f0e00d6 +int layout mtrl_picker_header_dialog 0x7f0e00d7 +int layout mtrl_picker_header_fullscreen 0x7f0e00d8 +int layout mtrl_picker_header_selection_text 0x7f0e00d9 +int layout mtrl_picker_header_title_text 0x7f0e00da +int layout mtrl_picker_header_toggle 0x7f0e00db +int layout mtrl_picker_text_input_date 0x7f0e00dc +int layout mtrl_picker_text_input_date_range 0x7f0e00dd +int layout navi_control_btn 0x7f0e00de +int layout network_loading_item 0x7f0e00df +int layout network_ttnet_inner_debug_activity 0x7f0e00e0 +int layout notice_dialog_check_with_accessory 0x7f0e00e1 +int layout notice_dialog_traffic_police 0x7f0e00e2 +int layout notice_module_dialog_check 0x7f0e00e3 +int layout notice_push_top_banner 0x7f0e00e4 +int layout notice_traffice_info_list_adapter 0x7f0e00e5 +int layout notice_video_card_layout 0x7f0e00e6 +int layout notification_action 0x7f0e00e7 +int layout notification_action_tombstone 0x7f0e00e8 +int layout notification_media_action 0x7f0e00e9 +int layout notification_media_cancel_action 0x7f0e00ea +int layout notification_template_big_media 0x7f0e00eb +int layout notification_template_big_media_custom 0x7f0e00ec +int layout notification_template_big_media_narrow 0x7f0e00ed +int layout notification_template_big_media_narrow_custom 0x7f0e00ee +int layout notification_template_custom_big 0x7f0e00ef +int layout notification_template_icon_group 0x7f0e00f0 +int layout notification_template_lines_media 0x7f0e00f1 +int layout notification_template_media 0x7f0e00f2 +int layout notification_template_media_custom 0x7f0e00f3 +int layout notification_template_part_chronometer 0x7f0e00f4 +int layout notification_template_part_time 0x7f0e00f5 +int layout notification_v2x_msg_vr 0x7f0e00f6 +int layout panel_btn_car 0x7f0e00f7 +int layout panel_btn_cars 0x7f0e00f8 +int layout panel_btn_left 0x7f0e00f9 +int layout panel_btn_location 0x7f0e00fa +int layout panel_btn_logo 0x7f0e00fb +int layout panel_btn_scale 0x7f0e00fc +int layout panel_btn_zoom 0x7f0e00fd +int layout panel_btn_zoom_ctrl 0x7f0e00fe +int layout panel_guidance 0x7f0e00ff +int layout panel_polygon 0x7f0e0100 +int layout panel_route_select 0x7f0e0101 +int layout panel_route_set 0x7f0e0102 +int layout panel_traffic_sign 0x7f0e0103 +int layout routebook_child_item 0x7f0e0104 +int layout select_dialog_item_material 0x7f0e0105 +int layout select_dialog_multichoice_material 0x7f0e0106 +int layout select_dialog_singlechoice_material 0x7f0e0107 +int layout support_simple_spinner_dropdown_item 0x7f0e0108 +int layout test_action_chip 0x7f0e0109 +int layout test_chip_zero_corner_radius 0x7f0e010a +int layout test_design_checkbox 0x7f0e010b +int layout test_design_radiobutton 0x7f0e010c +int layout test_navigation_bar_item_layout 0x7f0e010d +int layout test_reflow_chipgroup 0x7f0e010e +int layout test_toolbar 0x7f0e010f +int layout test_toolbar_custom_background 0x7f0e0110 +int layout test_toolbar_elevation 0x7f0e0111 +int layout test_toolbar_surface 0x7f0e0112 +int layout text_view_with_line_height_from_appearance 0x7f0e0113 +int layout text_view_with_line_height_from_layout 0x7f0e0114 +int layout text_view_with_line_height_from_style 0x7f0e0115 +int layout text_view_with_theme_line_height 0x7f0e0116 +int layout text_view_without_line_height 0x7f0e0117 +int layout tooltip 0x7f0e0118 +int layout utils_toast_view 0x7f0e0119 +int layout v2x_front_target_info_view 0x7f0e011a +int layout v2x_road_front_warning_vr 0x7f0e011b +int layout v2x_road_video_plyer_layout 0x7f0e011c +int layout v2x_road_video_plyer_layout_vr 0x7f0e011d +int layout video_brightness 0x7f0e011e +int layout video_layout_ad 0x7f0e011f +int layout video_layout_custom 0x7f0e0120 +int layout video_layout_normal 0x7f0e0121 +int layout video_layout_sample_ad 0x7f0e0122 +int layout video_layout_standard 0x7f0e0123 +int layout video_progress_dialog 0x7f0e0124 +int layout video_volume_dialog 0x7f0e0125 +int layout view_ap_badcase_entrance 0x7f0e0126 +int layout view_auto_pilot_check 0x7f0e0127 +int layout view_autopilot_status 0x7f0e0128 +int layout view_brake_light_status 0x7f0e0129 +int layout view_camera_list 0x7f0e012a +int layout view_carcorder_preview 0x7f0e012b +int layout view_check_status 0x7f0e012c +int layout view_check_system 0x7f0e012d +int layout view_debug_setting 0x7f0e012e +int layout view_event_panel_history_count 0x7f0e012f +int layout view_heart_like 0x7f0e0130 +int layout view_heart_like_gray_back 0x7f0e0131 +int layout view_heart_like_vr 0x7f0e0132 +int layout view_heart_unlike 0x7f0e0133 +int layout view_heart_unlike_vr 0x7f0e0134 +int layout view_history_empty 0x7f0e0135 +int layout view_limiting_speed_vr 0x7f0e0136 +int layout view_marker_car 0x7f0e0137 +int layout view_marker_car_info 0x7f0e0138 +int layout view_marker_event_car 0x7f0e0139 +int layout view_marker_event_road 0x7f0e013a +int layout view_over_view 0x7f0e013b +int layout view_perspective_switch 0x7f0e013c +int layout view_system_version 0x7f0e013d +int layout view_traffic_button 0x7f0e013e +int layout view_traffic_light_vr 0x7f0e013f +int layout view_trafficbar 0x7f0e0140 +int layout view_turn_light_status 0x7f0e0141 +int layout view_v2x_optimal_speed_marker 0x7f0e0142 +int layout view_video_layout_normal 0x7f0e0143 +int layout view_video_layout_see_crossroad 0x7f0e0144 +int layout view_video_layout_see_live 0x7f0e0145 +int layout view_vip_identification 0x7f0e0146 +int layout view_zoom 0x7f0e0147 +int layout vr_window_top_tips 0x7f0e0148 +int layout window_animation 0x7f0e0149 +int layout window_carforhelp_detail 0x7f0e014a +int layout window_fault_help 0x7f0e014b +int layout window_push_event_detail 0x7f0e014c +int layout window_road_video_layout 0x7f0e014d +int layout window_road_video_layout_vr 0x7f0e014e +int layout window_see_carlive_video 0x7f0e014f +int layout window_see_carlive_video_vr 0x7f0e0150 +int layout window_see_crossroadlive_video 0x7f0e0151 +int layout window_simple_obu_event_detail_vr 0x7f0e0152 +int layout window_test_console 0x7f0e0153 +int layout wm_logging_notice 0x7f0e0154 +int mipmap arrow 0x7f100001 +int mipmap bg_main 0x7f100002 +int mipmap divider_mapbutton 0x7f100003 +int mipmap dot 0x7f100004 +int mipmap gray_dot 0x7f100005 +int mipmap green_dot 0x7f100006 +int mipmap ic_arrow_left_pressed 0x7f100007 +int mipmap ic_ch 0x7f100008 +int mipmap ic_launcher 0x7f100009 +int mipmap ic_search_btn_down 0x7f10000a +int mipmap ic_search_btn_up 0x7f10000b +int mipmap ic_search_voice_down 0x7f10000c +int mipmap ic_search_voice_up 0x7f10000d +int mipmap ic_show_map_n 0x7f10000e +int mipmap ic_show_map_p 0x7f10000f +int mipmap icon1001 0x7f100010 +int mipmap icon1002 0x7f100011 +int mipmap icon1003 0x7f100012 +int mipmap icon1004 0x7f100013 +int mipmap icon1005 0x7f100014 +int mipmap icon1006 0x7f100015 +int mipmap icon1007 0x7f100016 +int mipmap icon1008 0x7f100017 +int mipmap icon1009 0x7f100018 +int mipmap icon1010 0x7f100019 +int mipmap icon1011 0x7f10001a +int mipmap icon1012 0x7f10001b +int mipmap icon1013 0x7f10001c +int mipmap icon1014 0x7f10001d +int mipmap icon1015 0x7f10001e +int mipmap icon1022 0x7f10001f +int mipmap icon1027 0x7f100020 +int mipmap icon1028 0x7f100021 +int mipmap icon1029 0x7f100022 +int mipmap icon1035 0x7f100023 +int mipmap icon1042 0x7f100024 +int mipmap icon1043 0x7f100025 +int mipmap icon1044 0x7f100026 +int mipmap icon1501 0x7f100027 +int mipmap icon1502 0x7f100028 +int mipmap icon1503 0x7f100029 +int mipmap icon_car 0x7f10002a +int mipmap icon_collect 0x7f10002b +int mipmap icon_collect_s 0x7f10002c +int mipmap icon_day 0x7f10002d +int mipmap icon_direction 0x7f10002e +int mipmap icon_loading 0x7f10002f +int mipmap icon_loc_day 0x7f100030 +int mipmap icon_loc_night 0x7f100031 +int mipmap icon_location 0x7f100032 +int mipmap icon_location_day 0x7f100033 +int mipmap icon_location_night 0x7f100034 +int mipmap icon_night 0x7f100035 +int mipmap icon_pause_night 0x7f100036 +int mipmap icon_play_night 0x7f100037 +int mipmap icon_sim_navi_car 0x7f100038 +int mipmap icon_sim_navi_next 0x7f100039 +int mipmap icon_sim_navi_pause 0x7f10003a +int mipmap icon_sim_navi_pre 0x7f10003b +int mipmap icon_sim_navi_start 0x7f10003c +int mipmap icon_traffic_close_day 0x7f10003d +int mipmap icon_traffic_close_night 0x7f10003e +int mipmap icon_traffic_open_day 0x7f10003f +int mipmap icon_traffic_open_night 0x7f100040 +int mipmap icon_zoom_in_day 0x7f100041 +int mipmap icon_zoom_in_night 0x7f100042 +int mipmap icon_zoom_out_day 0x7f100043 +int mipmap icon_zoom_out_night 0x7f100044 +int mipmap img_error 0x7f100045 +int mipmap img_error_dark 0x7f100046 +int mipmap img_finish 0x7f100047 +int mipmap img_finish_dark 0x7f100048 +int mipmap img_warning 0x7f100049 +int mipmap img_warning_dark 0x7f10004a +int mipmap l0 0x7f10004b +int mipmap l1 0x7f10004c +int mipmap l2 0x7f10004d +int mipmap l3 0x7f10004e +int mipmap l4 0x7f10004f +int mipmap l5 0x7f100050 +int mipmap l6 0x7f100051 +int mipmap l7 0x7f100052 +int mipmap l8 0x7f100053 +int mipmap l9 0x7f100054 +int mipmap leak_canary_icon 0x7f100055 +int mipmap map_custom_mogo_self_car_2d 0x7f100056 +int mipmap map_custom_self_car 0x7f100057 +int mipmap map_custom_self_car_day 0x7f100058 +int mipmap map_custom_self_car_night 0x7f100059 +int mipmap mapdir 0x7f10005a +int mipmap marker_blue 0x7f10005b +int mipmap marker_red 0x7f10005c +int mipmap menu_left_btn_icon_in 0x7f10005d +int mipmap menu_left_btn_icon_out 0x7f10005e +int mipmap mk_car 0x7f10005f +int mipmap module_callchatting_launcher_incoming_answer 0x7f100060 +int mipmap module_callchatting_launcher_incoming_hangup 0x7f100061 +int mipmap module_carchatting_hawk_eye_default_head_img 0x7f100062 +int mipmap module_carchatting_launcher_calling_hangup 0x7f100063 +int mipmap n0 0x7f100064 +int mipmap n1 0x7f100065 +int mipmap n2 0x7f100066 +int mipmap n3 0x7f100067 +int mipmap n4 0x7f100068 +int mipmap n5 0x7f100069 +int mipmap n6 0x7f10006a +int mipmap n7 0x7f10006b +int mipmap n8 0x7f10006c +int mipmap n9 0x7f10006d +int mipmap navi_gps_set 0x7f10006e +int mipmap navi_gpssv 0x7f10006f +int mipmap navi_s_1 0x7f100070 +int mipmap navi_s_10 0x7f100071 +int mipmap navi_s_11 0x7f100072 +int mipmap navi_s_12 0x7f100073 +int mipmap navi_s_13 0x7f100074 +int mipmap navi_s_14 0x7f100075 +int mipmap navi_s_15 0x7f100076 +int mipmap navi_s_2 0x7f100077 +int mipmap navi_s_22 0x7f100078 +int mipmap navi_s_27 0x7f100079 +int mipmap navi_s_28 0x7f10007a +int mipmap navi_s_29 0x7f10007b +int mipmap navi_s_3 0x7f10007c +int mipmap navi_s_35 0x7f10007d +int mipmap navi_s_4 0x7f10007e +int mipmap navi_s_42 0x7f10007f +int mipmap navi_s_43 0x7f100080 +int mipmap navi_s_44 0x7f100081 +int mipmap navi_s_5 0x7f100082 +int mipmap navi_s_501 0x7f100083 +int mipmap navi_s_502 0x7f100084 +int mipmap navi_s_503 0x7f100085 +int mipmap navi_s_6 0x7f100086 +int mipmap navi_s_7 0x7f100087 +int mipmap navi_s_8 0x7f100088 +int mipmap navi_s_9 0x7f100089 +int mipmap navi_tmcbar_cursor 0x7f10008a +int mipmap panel_search_indicator_p 0x7f10008b +int mipmap panel_search_indicator_s 0x7f10008c +int mipmap poires 0x7f10008d +int mipmap poires_a 0x7f10008e +int mipmap poires_b 0x7f10008f +int mipmap poires_c 0x7f100090 +int mipmap poires_d 0x7f100091 +int mipmap poires_e 0x7f100092 +int mipmap poires_f 0x7f100093 +int mipmap poires_g 0x7f100094 +int mipmap poires_his 0x7f100095 +int mipmap routebook_icon1001 0x7f100096 +int mipmap sector 0x7f100097 +int mipmap stat_sys_download_anim0 0x7f100098 +int mipmap stat_sys_download_anim1 0x7f100099 +int mipmap stat_sys_download_anim2 0x7f10009a +int mipmap stat_sys_download_anim3 0x7f10009b +int mipmap stat_sys_download_anim4 0x7f10009c +int mipmap stat_sys_download_anim5 0x7f10009d +int mipmap sym_keyboard_delete 0x7f10009e +int mipmap traffic_sign_1 0x7f10009f +int mipmap traffic_sign_10 0x7f1000a0 +int mipmap traffic_sign_11 0x7f1000a1 +int mipmap traffic_sign_12 0x7f1000a2 +int mipmap traffic_sign_13 0x7f1000a3 +int mipmap traffic_sign_2 0x7f1000a4 +int mipmap traffic_sign_20 0x7f1000a5 +int mipmap traffic_sign_22 0x7f1000a6 +int mipmap traffic_sign_23 0x7f1000a7 +int mipmap traffic_sign_24 0x7f1000a8 +int mipmap traffic_sign_25 0x7f1000a9 +int mipmap traffic_sign_26 0x7f1000aa +int mipmap traffic_sign_27 0x7f1000ab +int mipmap traffic_sign_28 0x7f1000ac +int mipmap traffic_sign_3 0x7f1000ad +int mipmap traffic_sign_31 0x7f1000ae +int mipmap traffic_sign_32 0x7f1000af +int mipmap traffic_sign_33 0x7f1000b0 +int mipmap traffic_sign_34 0x7f1000b1 +int mipmap traffic_sign_35 0x7f1000b2 +int mipmap traffic_sign_36 0x7f1000b3 +int mipmap traffic_sign_37 0x7f1000b4 +int mipmap traffic_sign_38 0x7f1000b5 +int mipmap traffic_sign_39 0x7f1000b6 +int mipmap traffic_sign_4 0x7f1000b7 +int mipmap traffic_sign_40 0x7f1000b8 +int mipmap traffic_sign_41 0x7f1000b9 +int mipmap traffic_sign_42 0x7f1000ba +int mipmap traffic_sign_43 0x7f1000bb +int mipmap traffic_sign_44 0x7f1000bc +int mipmap traffic_sign_45 0x7f1000bd +int mipmap traffic_sign_5 0x7f1000be +int mipmap traffic_sign_6 0x7f1000bf +int mipmap traffic_sign_7 0x7f1000c0 +int mipmap traffic_sign_8 0x7f1000c1 +int mipmap traffic_sign_9 0x7f1000c2 +int mipmap ui_menu_clear 0x7f1000c3 +int mipmap ui_menu_exit 0x7f1000c4 +int mipmap ui_navigate 0x7f1000c5 +int mipmap water 0x7f1000c6 +int mipmap yellow_dot 0x7f1000c7 +int mipmap zoom_in_day 0x7f1000c8 +int mipmap zoom_in_night 0x7f1000c9 +int mipmap zoom_out_day 0x7f1000ca +int mipmap zoom_out_night 0x7f1000cb +int plurals leak_canary_distinct_leaks 0x7f120001 +int plurals leak_canary_group_screen_title 0x7f120002 +int plurals mtrl_badge_content_description 0x7f120003 +int raw beep 0x7f130001 +int raw call 0x7f130002 +int raw camera_click 0x7f130003 +int raw car 0x7f130004 +int raw chuzuche 0x7f130005 +int raw fangkuang 0x7f130006 +int raw guangquan 0x7f130007 +int raw illegal_park_data 0x7f130008 +int raw jiantou 0x7f130009 +int raw putonghua_f1 0x7f13000a +int raw putonghua_f2 0x7f13000b +int raw putonghua_f3 0x7f13000c +int raw putonghua_f4 0x7f13000d +int raw putonghua_f5 0x7f13000e +int raw putonghua_f6 0x7f13000f +int raw qfpz 0x7f130010 +int raw scenario_fatigue_driving_data 0x7f130011 +int raw scenario_push_animation_event_data 0x7f130012 +int raw scenario_push_cross_crash 0x7f130013 +int raw scenario_push_event_data 0x7f130014 +int raw scenario_push_live_event_data 0x7f130015 +int raw scenario_push_vr_hehind_vip_data 0x7f130016 +int raw scenario_push_vr_reverse_car_data 0x7f130017 +int raw scenario_road_event_data 0x7f130018 +int raw scenario_seek_help 0x7f130019 +int raw scenario_warning_event_data_left 0x7f13001a +int raw scenario_warning_event_data_pedestrians 0x7f13001b +int raw scenario_warning_event_data_right 0x7f13001c +int raw shexiangtou 0x7f13001d +int raw shu 0x7f13001e +int raw special_vehicle 0x7f13001f +int raw stopline 0x7f130020 +int raw taxi 0x7f130021 +int raw test_coordinates 0x7f130022 +int raw test_coordinates2 0x7f130023 +int raw test_data_v2x_zuiyouluxian 0x7f130024 +int raw theme 0x7f130025 +int raw traffic_daba 0x7f130026 +int raw traffic_kache 0x7f130027 +int raw traffic_motuoche 0x7f130028 +int raw traffic_people 0x7f130029 +int raw traffic_tachexiaoche 0x7f13002a +int raw traffic_unkonwn 0x7f13002b +int raw traffic_zixingche 0x7f13002c +int raw v2x_daolujiebing 0x7f13002d +int raw v2x_daolujishui 0x7f13002e +int raw v2x_daolushigong 0x7f13002f +int raw v2x_guzhangqiuzhu 0x7f130030 +int raw v2x_jiaotongjiancha 0x7f130031 +int raw v2x_nongwu 0x7f130032 +int raw v2x_shigong_warning 0x7f130033 +int raw v2x_shigu 0x7f130034 +int raw v2x_shishilukuang 0x7f130035 +int raw v2x_yongdu 0x7f130036 +int raw xiaobache 0x7f130037 +int raw ziche 0x7f130038 +int string Angle1 0x7f140001 +int string Angle2 0x7f140002 +int string Angle3 0x7f140003 +int string Disclaimer 0x7f140004 +int string DisclaimerInfo 0x7f140005 +int string High 0x7f140006 +int string Initial 0x7f140007 +int string N_A 0x7f140008 +int string Speed 0x7f140009 +int string TrackType_audio 0x7f14000a +int string TrackType_metadata 0x7f14000b +int string TrackType_subtitle 0x7f14000c +int string TrackType_timedtext 0x7f14000d +int string TrackType_unknown 0x7f14000e +int string TrackType_video 0x7f14000f +int string VideoView_ar_16_9_fit_parent 0x7f140010 +int string VideoView_ar_4_3_fit_parent 0x7f140011 +int string VideoView_ar_aspect_fill_parent 0x7f140012 +int string VideoView_ar_aspect_fit_parent 0x7f140013 +int string VideoView_ar_aspect_wrap_content 0x7f140014 +int string VideoView_ar_match_parent 0x7f140015 +int string VideoView_error_button 0x7f140016 +int string VideoView_error_text_invalid_progressive_playback 0x7f140017 +int string VideoView_error_text_unknown 0x7f140018 +int string VideoView_info_text_video_not_supported 0x7f140019 +int string VideoView_player_AndroidMediaPlayer 0x7f14001a +int string VideoView_player_IjkExoMediaPlayer 0x7f14001b +int string VideoView_player_IjkMediaPlayer 0x7f14001c +int string VideoView_player_none 0x7f14001d +int string VideoView_render_none 0x7f14001e +int string VideoView_render_surface_view 0x7f14001f +int string VideoView_render_texture_view 0x7f140020 +int string a_cache 0x7f140021 +int string abc_action_bar_home_description 0x7f140022 +int string abc_action_bar_up_description 0x7f140023 +int string abc_action_menu_overflow_description 0x7f140024 +int string abc_action_mode_done 0x7f140025 +int string abc_activity_chooser_view_see_all 0x7f140026 +int string abc_activitychooserview_choose_application 0x7f140027 +int string abc_capital_off 0x7f140028 +int string abc_capital_on 0x7f140029 +int string abc_font_family_body_1_material 0x7f14002a +int string abc_font_family_body_2_material 0x7f14002b +int string abc_font_family_button_material 0x7f14002c +int string abc_font_family_caption_material 0x7f14002d +int string abc_font_family_display_1_material 0x7f14002e +int string abc_font_family_display_2_material 0x7f14002f +int string abc_font_family_display_3_material 0x7f140030 +int string abc_font_family_display_4_material 0x7f140031 +int string abc_font_family_headline_material 0x7f140032 +int string abc_font_family_menu_material 0x7f140033 +int string abc_font_family_subhead_material 0x7f140034 +int string abc_font_family_title_material 0x7f140035 +int string abc_menu_alt_shortcut_label 0x7f140036 +int string abc_menu_ctrl_shortcut_label 0x7f140037 +int string abc_menu_delete_shortcut_label 0x7f140038 +int string abc_menu_enter_shortcut_label 0x7f140039 +int string abc_menu_function_shortcut_label 0x7f14003a +int string abc_menu_meta_shortcut_label 0x7f14003b +int string abc_menu_shift_shortcut_label 0x7f14003c +int string abc_menu_space_shortcut_label 0x7f14003d +int string abc_menu_sym_shortcut_label 0x7f14003e +int string abc_prepend_shortcut_label 0x7f14003f +int string abc_search_hint 0x7f140040 +int string abc_searchview_description_clear 0x7f140041 +int string abc_searchview_description_query 0x7f140042 +int string abc_searchview_description_search 0x7f140043 +int string abc_searchview_description_submit 0x7f140044 +int string abc_searchview_description_voice 0x7f140045 +int string abc_shareactionprovider_share_with 0x7f140046 +int string abc_shareactionprovider_share_with_application 0x7f140047 +int string abc_toolbar_collapse_description 0x7f140048 +int string add_ch_toast 0x7f140049 +int string age_prompt 0x7f14004a +int string androidx_startup 0x7f14004b +int string app 0x7f14004c +int string app_name 0x7f14004d +int string appbar_scrolling_view_behavior 0x7f14004e +int string application_upgrade 0x7f14004f +int string application_upgrade_confirm 0x7f140050 +int string application_upgrade_tips 0x7f140051 +int string aspeed 0x7f140052 +int string bindingcar_title 0x7f140053 +int string bit_rate 0x7f140054 +int string bottom_sheet_behavior 0x7f140055 +int string bottomsheet_action_expand_halfway 0x7f140056 +int string brvah_load_complete 0x7f140057 +int string brvah_load_end 0x7f140058 +int string brvah_load_failed 0x7f140059 +int string brvah_loading 0x7f14005a +int string camera 0x7f14005b +int string cancel 0x7f14005c +int string cancelBtn 0x7f14005d +int string ch_name_illegal 0x7f14005e +int string ch_name_null 0x7f14005f +int string ch_name_presence 0x7f140060 +int string change_ch_name 0x7f140061 +int string character_counter_content_description 0x7f140062 +int string character_counter_overflowed_content_description 0x7f140063 +int string character_counter_pattern 0x7f140064 +int string check_system_operation 0x7f140065 +int string check_system_reboot 0x7f140066 +int string check_system_reboot_tips 0x7f140067 +int string check_system_reboot_title 0x7f140068 +int string check_system_shut_down 0x7f140069 +int string check_system_version 0x7f14006a +int string check_vehicle_detection 0x7f14006b +int string check_vehicle_speed_setting 0x7f14006c +int string chip_text 0x7f14006d +int string clear_text_end_icon_content_description 0x7f14006e +int string close 0x7f14006f +int string comment_err 0x7f140070 +int string comment_suc 0x7f140071 +int string confirm 0x7f140072 +int string crash_dialog_comment_prompt 0x7f140073 +int string crash_dialog_text 0x7f140074 +int string crash_dialog_title 0x7f140075 +int string current_system_version 0x7f140076 +int string debug_panel 0x7f140077 +int string debug_panel_fb 0x7f140078 +int string dialog_title 0x7f140079 +int string downloadMap 0x7f14007a +int string drivetime 0x7f14007b +int string email_sensitive_words_error 0x7f14007c +int string error_icon_content_description 0x7f14007d +int string exit 0x7f14007e +int string exo_controls_fastforward_description 0x7f14007f +int string exo_controls_next_description 0x7f140080 +int string exo_controls_pause_description 0x7f140081 +int string exo_controls_play_description 0x7f140082 +int string exo_controls_previous_description 0x7f140083 +int string exo_controls_rewind_description 0x7f140084 +int string exo_controls_stop_description 0x7f140085 +int string exposed_dropdown_menu_content_description 0x7f140086 +int string fab_transformation_scrim_behavior 0x7f140087 +int string fab_transformation_sheet_behavior 0x7f140088 +int string file_not_support 0x7f140089 +int string fps 0x7f14008a +int string freqOfspeedDown 0x7f14008b +int string freqOfspeedUp 0x7f14008c +int string freqOfturn 0x7f14008d +int string greater_than_ 0x7f14008e +int string heading 0x7f14008f +int string hide_bottom_view_on_scroll_behavior 0x7f140090 +int string highestspeed 0x7f140091 +int string highspeedtime 0x7f140092 +int string hottime 0x7f140093 +int string hours_ago 0x7f140094 +int string icon_content_description 0x7f140095 +int string idlingtime 0x7f140096 +int string ijkplayer_dummy 0x7f140097 +int string infowindow_snippet 0x7f140098 +int string infowindow_title 0x7f140099 +int string input_null 0x7f14009a +int string input_too_long 0x7f14009b +int string input_user_name 0x7f14009c +int string item_view_role_description 0x7f14009d +int string jump_ad 0x7f14009e +int string just_now 0x7f14009f +int string keyLable_0 0x7f1400a0 +int string keyLable_1 0x7f1400a1 +int string keyLable_12 0x7f1400a2 +int string keyLable_13 0x7f1400a3 +int string keyLable_14 0x7f1400a4 +int string keyLable_2 0x7f1400a5 +int string keyLable_3 0x7f1400a6 +int string keyLable_4 0x7f1400a7 +int string keyLable_5 0x7f1400a8 +int string keyLable_6 0x7f1400a9 +int string keyLable_7 0x7f1400aa +int string keyLable_8 0x7f1400ab +int string keyLable_9 0x7f1400ac +int string keyLable_a 0x7f1400ad +int string keyLable_b 0x7f1400ae +int string keyLable_c 0x7f1400af +int string keyLable_d 0x7f1400b0 +int string keyLable_del 0x7f1400b1 +int string keyLable_e 0x7f1400b2 +int string keyLable_f 0x7f1400b3 +int string keyLable_g 0x7f1400b4 +int string keyLable_h 0x7f1400b5 +int string keyLable_heng 0x7f1400b6 +int string keyLable_i 0x7f1400b7 +int string keyLable_input_type_bihua 0x7f1400b8 +int string keyLable_input_type_jianpin 0x7f1400b9 +int string keyLable_input_type_quanpin 0x7f1400ba +int string keyLable_j 0x7f1400bb +int string keyLable_k 0x7f1400bc +int string keyLable_keboard_style_qwerty 0x7f1400bd +int string keyLable_keboard_style_t9 0x7f1400be +int string keyLable_l 0x7f1400bf +int string keyLable_ll 0x7f1400c0 +int string keyLable_m 0x7f1400c1 +int string keyLable_n 0x7f1400c2 +int string keyLable_o 0x7f1400c3 +int string keyLable_ok 0x7f1400c4 +int string keyLable_p 0x7f1400c5 +int string keyLable_q 0x7f1400c6 +int string keyLable_r 0x7f1400c7 +int string keyLable_s 0x7f1400c8 +int string keyLable_search 0x7f1400c9 +int string keyLable_t 0x7f1400ca +int string keyLable_u 0x7f1400cb +int string keyLable_v 0x7f1400cc +int string keyLable_w 0x7f1400cd +int string keyLable_x 0x7f1400ce +int string keyLable_xing 0x7f1400cf +int string keyLable_y 0x7f1400d0 +int string keyLable_z 0x7f1400d1 +int string l 0x7f1400d2 +int string leak_canary_about_enable_heap_dump 0x7f1400d3 +int string leak_canary_about_enable_heap_dump_textOff 0x7f1400d4 +int string leak_canary_about_enable_heap_dump_textOn 0x7f1400d5 +int string leak_canary_about_menu 0x7f1400d6 +int string leak_canary_about_message 0x7f1400d7 +int string leak_canary_about_title 0x7f1400d8 +int string leak_canary_analysis_deleted_title 0x7f1400d9 +int string leak_canary_analysis_failed 0x7f1400da +int string leak_canary_analysis_success_notification 0x7f1400db +int string leak_canary_class_has_leaked 0x7f1400dc +int string leak_canary_delete 0x7f1400dd +int string leak_canary_delete_all 0x7f1400de +int string leak_canary_delete_all_leaks_title 0x7f1400df +int string leak_canary_display_activity_label 0x7f1400e0 +int string leak_canary_dump_heap 0x7f1400e1 +int string leak_canary_explore_heap_dump 0x7f1400e2 +int string leak_canary_explorer_search_classes 0x7f1400e3 +int string leak_canary_failure_clipdata_label 0x7f1400e4 +int string leak_canary_failure_copied 0x7f1400e5 +int string leak_canary_generating_hq_bitmap_toast_failure_notice 0x7f1400e6 +int string leak_canary_generating_hq_bitmap_toast_notice 0x7f1400e7 +int string leak_canary_go_to_heap_analysis 0x7f1400e8 +int string leak_canary_group_list_time_label 0x7f1400e9 +int string leak_canary_heap_analysis_list_screen_title 0x7f1400ea +int string leak_canary_heap_analysis_success_screen_row_time_format 0x7f1400eb +int string leak_canary_heap_dump_disabled_by_app 0x7f1400ec +int string leak_canary_heap_dump_disabled_from_ui 0x7f1400ed +int string leak_canary_heap_dump_disabled_running_tests 0x7f1400ee +int string leak_canary_heap_dump_disabled_text 0x7f1400ef +int string leak_canary_heap_dump_enabled_text 0x7f1400f0 +int string leak_canary_heap_dump_not_installed_text 0x7f1400f1 +int string leak_canary_heap_dump_screen_title 0x7f1400f2 +int string leak_canary_help_title 0x7f1400f3 +int string leak_canary_import_from_title 0x7f1400f4 +int string leak_canary_import_hprof_file 0x7f1400f5 +int string leak_canary_leak_clipdata_label 0x7f1400f6 +int string leak_canary_leak_copied 0x7f1400f7 +int string leak_canary_leak_missing_browser_error 0x7f1400f8 +int string leak_canary_leak_not_found 0x7f1400f9 +int string leak_canary_loading_title 0x7f1400fa +int string leak_canary_notification_analysing 0x7f1400fb +int string leak_canary_notification_channel_low 0x7f1400fc +int string leak_canary_notification_channel_result 0x7f1400fd +int string leak_canary_notification_dumping 0x7f1400fe +int string leak_canary_notification_foreground_text 0x7f1400ff +int string leak_canary_notification_message 0x7f140100 +int string leak_canary_notification_no_retained_object_content 0x7f140101 +int string leak_canary_notification_no_retained_object_title 0x7f140102 +int string leak_canary_notification_retained_debugger_attached 0x7f140103 +int string leak_canary_notification_retained_dump_failed 0x7f140104 +int string leak_canary_notification_retained_dump_wait 0x7f140105 +int string leak_canary_notification_retained_title 0x7f140106 +int string leak_canary_notification_retained_visible 0x7f140107 +int string leak_canary_options_menu_generate_hq_bitmap 0x7f140108 +int string leak_canary_options_menu_permission_toast 0x7f140109 +int string leak_canary_options_menu_render_heap_dump 0x7f14010a +int string leak_canary_permission_not_granted 0x7f14010b +int string leak_canary_permission_notification_text 0x7f14010c +int string leak_canary_permission_notification_title 0x7f14010d +int string leak_canary_share_heap_dump_bitmap_screen_title 0x7f14010e +int string leak_canary_share_with 0x7f14010f +int string leak_canary_shortcut_label 0x7f140110 +int string leak_canary_stackoverflow_share 0x7f140111 +int string leak_canary_storage_permission_activity_label 0x7f140112 +int string leak_canary_test_class_name 0x7f140113 +int string leak_canary_toast_heap_dump 0x7f140114 +int string leak_canary_tv_analysis_failure 0x7f140115 +int string leak_canary_tv_analysis_success 0x7f140116 +int string leak_canary_tv_toast_retained_objects 0x7f140117 +int string load_cost 0x7f140118 +int string location_err 0x7f140119 +int string log_btn_back_top 0x7f14011a +int string log_btn_clean 0x7f14011b +int string log_btn_export 0x7f14011c +int string log_btn_to_bottom 0x7f14011d +int string log_info 0x7f14011e +int string log_info_debug 0x7f14011f +int string log_info_edt_hint 0x7f140120 +int string log_info_error 0x7f140121 +int string log_info_info 0x7f140122 +int string log_info_verbose 0x7f140123 +int string log_info_warn 0x7f140124 +int string log_min 0x7f140125 +int string log_text_loading 0x7f140126 +int string lowspeedtime 0x7f140127 +int string material_clock_display_divider 0x7f140128 +int string material_clock_toggle_content_description 0x7f140129 +int string material_hour_selection 0x7f14012a +int string material_hour_suffix 0x7f14012b +int string material_minute_selection 0x7f14012c +int string material_minute_suffix 0x7f14012d +int string material_motion_easing_accelerated 0x7f14012e +int string material_motion_easing_decelerated 0x7f14012f +int string material_motion_easing_emphasized 0x7f140130 +int string material_motion_easing_linear 0x7f140131 +int string material_motion_easing_standard 0x7f140132 +int string material_slider_range_end 0x7f140133 +int string material_slider_range_start 0x7f140134 +int string material_timepicker_am 0x7f140135 +int string material_timepicker_clock_mode_description 0x7f140136 +int string material_timepicker_hour 0x7f140137 +int string material_timepicker_minute 0x7f140138 +int string material_timepicker_pm 0x7f140139 +int string material_timepicker_select_time 0x7f14013a +int string material_timepicker_text_input_mode_description 0x7f14013b +int string media_information 0x7f14013c +int string menu_more 0x7f14013d +int string menu_settings 0x7f14013e +int string mi__selected_audio_track 0x7f14013f +int string mi__selected_subtitle_track 0x7f140140 +int string mi__selected_video_track 0x7f140141 +int string mi_bit_rate 0x7f140142 +int string mi_channels 0x7f140143 +int string mi_codec 0x7f140144 +int string mi_frame_rate 0x7f140145 +int string mi_language 0x7f140146 +int string mi_length 0x7f140147 +int string mi_media 0x7f140148 +int string mi_pixel_format 0x7f140149 +int string mi_player 0x7f14014a +int string mi_profile_level 0x7f14014b +int string mi_resolution 0x7f14014c +int string mi_sample_rate 0x7f14014d +int string mi_stream_fmt1 0x7f14014e +int string mi_type 0x7f14014f +int string midspeedtime 0x7f140150 +int string minutes_ago 0x7f140151 +int string modify_binding_car 0x7f140152 +int string module_car_chat_matching_wait 0x7f140153 +int string module_commons_button_cancel 0x7f140154 +int string module_commons_button_ok 0x7f140155 +int string module_commons_exit_navi_content 0x7f140156 +int string module_map_model_faster 0x7f140157 +int string module_map_model_normal 0x7f140158 +int string module_push_check 0x7f140159 +int string module_push_str_clear 0x7f14015a +int string module_push_str_delete 0x7f14015b +int string module_push_str_not_data 0x7f14015c +int string module_service_launcher_card_info 0x7f14015d +int string module_service_launcher_card_tips 0x7f14015e +int string module_services_dispatch_cars_affirm 0x7f14015f +int string module_services_dispatch_cars_cancel 0x7f140160 +int string module_services_dispatch_cars_remind_content 0x7f140161 +int string module_services_dispatch_cars_remind_title 0x7f140162 +int string module_services_dispatch_dialog_affirm 0x7f140163 +int string module_services_dispatch_dialog_end_loc 0x7f140164 +int string module_services_dispatch_dialog_flight_info 0x7f140165 +int string module_services_dispatch_dialog_start_loc 0x7f140166 +int string module_services_dispatch_dialog_task_info 0x7f140167 +int string module_services_dispatch_dialog_task_time 0x7f140168 +int string module_services_dispatch_dialog_title 0x7f140169 +int string motice_push_check 0x7f14016a +int string mtrl_badge_numberless_content_description 0x7f14016b +int string mtrl_chip_close_icon_content_description 0x7f14016c +int string mtrl_exceed_max_badge_number_content_description 0x7f14016d +int string mtrl_exceed_max_badge_number_suffix 0x7f14016e +int string mtrl_picker_a11y_next_month 0x7f14016f +int string mtrl_picker_a11y_prev_month 0x7f140170 +int string mtrl_picker_announce_current_selection 0x7f140171 +int string mtrl_picker_cancel 0x7f140172 +int string mtrl_picker_confirm 0x7f140173 +int string mtrl_picker_date_header_selected 0x7f140174 +int string mtrl_picker_date_header_title 0x7f140175 +int string mtrl_picker_date_header_unselected 0x7f140176 +int string mtrl_picker_day_of_week_column_header 0x7f140177 +int string mtrl_picker_invalid_format 0x7f140178 +int string mtrl_picker_invalid_format_example 0x7f140179 +int string mtrl_picker_invalid_format_use 0x7f14017a +int string mtrl_picker_invalid_range 0x7f14017b +int string mtrl_picker_navigate_to_year_description 0x7f14017c +int string mtrl_picker_out_of_range 0x7f14017d +int string mtrl_picker_range_header_only_end_selected 0x7f14017e +int string mtrl_picker_range_header_only_start_selected 0x7f14017f +int string mtrl_picker_range_header_selected 0x7f140180 +int string mtrl_picker_range_header_title 0x7f140181 +int string mtrl_picker_range_header_unselected 0x7f140182 +int string mtrl_picker_save 0x7f140183 +int string mtrl_picker_text_input_date_hint 0x7f140184 +int string mtrl_picker_text_input_date_range_end_hint 0x7f140185 +int string mtrl_picker_text_input_date_range_start_hint 0x7f140186 +int string mtrl_picker_text_input_day_abbr 0x7f140187 +int string mtrl_picker_text_input_month_abbr 0x7f140188 +int string mtrl_picker_text_input_year_abbr 0x7f140189 +int string mtrl_picker_toggle_to_calendar_input_mode 0x7f14018a +int string mtrl_picker_toggle_to_day_selection 0x7f14018b +int string mtrl_picker_toggle_to_text_input_mode 0x7f14018c +int string mtrl_picker_toggle_to_year_selection 0x7f14018d +int string net_err 0x7f14018e +int string net_timeout 0x7f14018f +int string nickname_sensitive_words_error 0x7f140190 +int string no 0x7f140191 +int string no_ch 0x7f140192 +int string no_device 0x7f140193 +int string no_net 0x7f140194 +int string no_sd 0x7f140195 +int string no_url 0x7f140196 +int string nullInitial 0x7f140197 +int string panel_Traffic_jam_number 0x7f140198 +int string panel_down_channel 0x7f140199 +int string panel_down_dest 0x7f14019a +int string panel_down_dest_select 0x7f14019b +int string panel_down_mute 0x7f14019c +int string panel_down_share 0x7f14019d +int string panel_search_btn 0x7f14019e +int string panel_search_voice 0x7f14019f +int string panel_seperator 0x7f1401a0 +int string panel_share_trf_accident 0x7f1401a1 +int string panel_share_trf_event 0x7f1401a2 +int string panel_share_trf_police 0x7f1401a3 +int string panel_share_trf_road 0x7f1401a4 +int string password_toggle_content_description 0x7f1401a5 +int string path_password_eye 0x7f1401a6 +int string path_password_eye_mask_strike_through 0x7f1401a7 +int string path_password_eye_mask_visible 0x7f1401a8 +int string path_password_strike_through 0x7f1401a9 +int string permission_audio 0x7f1401aa +int string permission_audio_recording_reason 0x7f1401ab +int string permission_audio_recording_request 0x7f1401ac +int string permission_audio_streaming_reason 0x7f1401ad +int string permission_audio_streaming_request 0x7f1401ae +int string permission_camera 0x7f1401af +int string permission_camera_finish 0x7f1401b0 +int string permission_camera_reason 0x7f1401b1 +int string permission_camera_request 0x7f1401b2 +int string permission_ext_storage 0x7f1401b3 +int string permission_ext_storage_finish 0x7f1401b4 +int string permission_ext_storage_reason 0x7f1401b5 +int string permission_ext_storage_request 0x7f1401b6 +int string permission_hardware_id_request 0x7f1401b7 +int string permission_location 0x7f1401b8 +int string permission_location_finish 0x7f1401b9 +int string permission_location_reason 0x7f1401ba +int string permission_location_request 0x7f1401bb +int string permission_network 0x7f1401bc +int string permission_network_finish 0x7f1401bd +int string permission_network_reason 0x7f1401be +int string permission_network_request 0x7f1401bf +int string permission_title 0x7f1401c0 +int string planet_prompt 0x7f1401c1 +int string r 0x7f1401c2 +int string re_input_user_name 0x7f1401c3 +int string recent 0x7f1401c4 +int string recommended_Parking 0x7f1401c5 +int string recommended_route 0x7f1401c6 +int string refresh 0x7f1401c7 +int string reg_err 0x7f1401c8 +int string sample 0x7f1401c9 +int string search_menu_title 0x7f1401ca +int string seek_cost 0x7f1401cb +int string seek_load_cost 0x7f1401cc +int string select 0x7f1401cd +int string sendBtn 0x7f1401ce +int string serv_err 0x7f1401cf +int string settings 0x7f1401d0 +int string sex_prompt 0x7f1401d1 +int string show_info 0x7f1401d2 +int string starttime 0x7f1401d3 +int string status_bar_notification_info_overflow 0x7f1401d4 +int string stoptime 0x7f1401d5 +int string strNetworkTipsCancelBtn 0x7f1401d6 +int string strNetworkTipsConfirmBtn 0x7f1401d7 +int string strNetworkTipsMessage 0x7f1401d8 +int string strNetworkTipsTitle 0x7f1401d9 +int string strNotificationClickToContinue 0x7f1401da +int string strNotificationClickToInstall 0x7f1401db +int string strNotificationClickToRetry 0x7f1401dc +int string strNotificationClickToView 0x7f1401dd +int string strNotificationDownloadError 0x7f1401de +int string strNotificationDownloadSucc 0x7f1401df +int string strNotificationDownloading 0x7f1401e0 +int string strNotificationHaveNewVersion 0x7f1401e1 +int string strToastCheckUpgradeError 0x7f1401e2 +int string strToastCheckingUpgrade 0x7f1401e3 +int string strToastYourAreTheLatestVersion 0x7f1401e4 +int string strUpgradeDialogCancelBtn 0x7f1401e5 +int string strUpgradeDialogContinueBtn 0x7f1401e6 +int string strUpgradeDialogFeatureLabel 0x7f1401e7 +int string strUpgradeDialogFileSizeLabel 0x7f1401e8 +int string strUpgradeDialogInstallBtn 0x7f1401e9 +int string strUpgradeDialogRetryBtn 0x7f1401ea +int string strUpgradeDialogUpdateTimeLabel 0x7f1401eb +int string strUpgradeDialogUpgradeBtn 0x7f1401ec +int string strUpgradeDialogVersionLabel 0x7f1401ed +int string tcp_speed 0x7f1401ee +int string tips_not_wifi 0x7f1401ef +int string tips_not_wifi_cancel 0x7f1401f0 +int string tips_not_wifi_confirm 0x7f1401f1 +int string title_activity_map 0x7f1401f2 +int string to_binding_car 0x7f1401f3 +int string toggle_player 0x7f1401f4 +int string toggle_ratio 0x7f1401f5 +int string toggle_render 0x7f1401f6 +int string totaltime 0x7f1401f7 +int string tracks 0x7f1401f8 +int string ui_cancel 0x7f1401f9 +int string ui_exit 0x7f1401fa +int string ui_finish 0x7f1401fb +int string ui_ok 0x7f1401fc +int string updat_err 0x7f1401fd +int string updat_suc 0x7f1401fe +int string update_server 0x7f1401ff +int string user_name_error 0x7f140200 +int string user_name_presence 0x7f140201 +int string v2x_front_live_url_null 0x7f140202 +int string v2x_help_speed_txt 0x7f140203 +int string v2x_recommond_route_size 0x7f140204 +int string v2x_report_pop_submit_txt 0x7f140205 +int string v2x_report_pop_thank_txt 0x7f140206 +int string v2x_specific_live_url_null 0x7f140207 +int string v2x_surrounding_detail_top_brief 0x7f140208 +int string v2x_surrounding_go_to_share 0x7f140209 +int string v2x_surrounding_refresh 0x7f14020a +int string v2x_surrounding_top_brief 0x7f14020b +int string v2x_voice_see_crossroad_live 0x7f14020c +int string v2x_voice_see_crossroad_live_error 0x7f14020d +int string v2x_voice_see_front_car_live 0x7f14020e +int string v2x_voice_see_front_car_live_error 0x7f14020f +int string v_cache 0x7f140210 +int string vdec 0x7f140211 +int string vehicle_GONE 0x7f140212 +int string vehicle_VISIBLE 0x7f140213 +int string yes 0x7f140214 +int style ActivityTranslucent 0x7f150001 +int style AlertDialog_AppCompat 0x7f150002 +int style AlertDialog_AppCompat_Light 0x7f150003 +int style AndroidThemeColorAccentYellow 0x7f150004 +int style Animation_AppCompat_Dialog 0x7f150005 +int style Animation_AppCompat_DropDownUp 0x7f150006 +int style Animation_AppCompat_Tooltip 0x7f150007 +int style Animation_Design_BottomSheetDialog 0x7f150008 +int style Animation_MaterialComponents_BottomSheetDialog 0x7f150009 +int style AppBaseTheme 0x7f15000a +int style AppTheme 0x7f15000b +int style AppTheme_AppBarOverlay 0x7f15000c +int style AppTheme_NoActionBar 0x7f15000d +int style AppTheme_PopupOverlay 0x7f15000e +int style BaseFloatDialogStyle 0x7f15000f +int style Base_AlertDialog_AppCompat 0x7f150010 +int style Base_AlertDialog_AppCompat_Light 0x7f150011 +int style Base_Animation_AppCompat_Dialog 0x7f150012 +int style Base_Animation_AppCompat_DropDownUp 0x7f150013 +int style Base_Animation_AppCompat_Tooltip 0x7f150014 +int style Base_CardView 0x7f150015 +int style Base_DialogWindowTitleBackground_AppCompat 0x7f150016 +int style Base_DialogWindowTitle_AppCompat 0x7f150017 +int style Base_MaterialAlertDialog_MaterialComponents_Title_Icon 0x7f150018 +int style Base_MaterialAlertDialog_MaterialComponents_Title_Panel 0x7f150019 +int style Base_MaterialAlertDialog_MaterialComponents_Title_Text 0x7f15001a +int style Base_TextAppearance_AppCompat 0x7f15001b +int style Base_TextAppearance_AppCompat_Body1 0x7f15001c +int style Base_TextAppearance_AppCompat_Body2 0x7f15001d +int style Base_TextAppearance_AppCompat_Button 0x7f15001e +int style Base_TextAppearance_AppCompat_Caption 0x7f15001f +int style Base_TextAppearance_AppCompat_Display1 0x7f150020 +int style Base_TextAppearance_AppCompat_Display2 0x7f150021 +int style Base_TextAppearance_AppCompat_Display3 0x7f150022 +int style Base_TextAppearance_AppCompat_Display4 0x7f150023 +int style Base_TextAppearance_AppCompat_Headline 0x7f150024 +int style Base_TextAppearance_AppCompat_Inverse 0x7f150025 +int style Base_TextAppearance_AppCompat_Large 0x7f150026 +int style Base_TextAppearance_AppCompat_Large_Inverse 0x7f150027 +int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f150028 +int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f150029 +int style Base_TextAppearance_AppCompat_Medium 0x7f15002a +int style Base_TextAppearance_AppCompat_Medium_Inverse 0x7f15002b +int style Base_TextAppearance_AppCompat_Menu 0x7f15002c +int style Base_TextAppearance_AppCompat_SearchResult 0x7f15002d +int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x7f15002e +int style Base_TextAppearance_AppCompat_SearchResult_Title 0x7f15002f +int style Base_TextAppearance_AppCompat_Small 0x7f150030 +int style Base_TextAppearance_AppCompat_Small_Inverse 0x7f150031 +int style Base_TextAppearance_AppCompat_Subhead 0x7f150032 +int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x7f150033 +int style Base_TextAppearance_AppCompat_Title 0x7f150034 +int style Base_TextAppearance_AppCompat_Title_Inverse 0x7f150035 +int style Base_TextAppearance_AppCompat_Tooltip 0x7f150036 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f150037 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f150038 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f150039 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f15003a +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f15003b +int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f15003c +int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f15003d +int style Base_TextAppearance_AppCompat_Widget_Button 0x7f15003e +int style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f15003f +int style Base_TextAppearance_AppCompat_Widget_Button_Colored 0x7f150040 +int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x7f150041 +int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x7f150042 +int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f150043 +int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f150044 +int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f150045 +int style Base_TextAppearance_AppCompat_Widget_Switch 0x7f150046 +int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f150047 +int style Base_TextAppearance_MaterialComponents_Badge 0x7f150048 +int style Base_TextAppearance_MaterialComponents_Button 0x7f150049 +int style Base_TextAppearance_MaterialComponents_Headline6 0x7f15004a +int style Base_TextAppearance_MaterialComponents_Subtitle2 0x7f15004b +int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f15004c +int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f15004d +int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f15004e +int style Base_ThemeOverlay_AppCompat 0x7f15004f +int style Base_ThemeOverlay_AppCompat_ActionBar 0x7f150050 +int style Base_ThemeOverlay_AppCompat_Dark 0x7f150051 +int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x7f150052 +int style Base_ThemeOverlay_AppCompat_Dialog 0x7f150053 +int style Base_ThemeOverlay_AppCompat_Dialog_Alert 0x7f150054 +int style Base_ThemeOverlay_AppCompat_Light 0x7f150055 +int style Base_ThemeOverlay_MaterialComponents_Dialog 0x7f150056 +int style Base_ThemeOverlay_MaterialComponents_Dialog_Alert 0x7f150057 +int style Base_ThemeOverlay_MaterialComponents_Dialog_Alert_Framework 0x7f150058 +int style Base_ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework 0x7f150059 +int style Base_ThemeOverlay_MaterialComponents_MaterialAlertDialog 0x7f15005a +int style Base_Theme_AppCompat 0x7f15005b +int style Base_Theme_AppCompat_CompactMenu 0x7f15005c +int style Base_Theme_AppCompat_Dialog 0x7f15005d +int style Base_Theme_AppCompat_DialogWhenLarge 0x7f15005e +int style Base_Theme_AppCompat_Dialog_Alert 0x7f15005f +int style Base_Theme_AppCompat_Dialog_FixedSize 0x7f150060 +int style Base_Theme_AppCompat_Dialog_MinWidth 0x7f150061 +int style Base_Theme_AppCompat_Light 0x7f150062 +int style Base_Theme_AppCompat_Light_DarkActionBar 0x7f150063 +int style Base_Theme_AppCompat_Light_Dialog 0x7f150064 +int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x7f150065 +int style Base_Theme_AppCompat_Light_Dialog_Alert 0x7f150066 +int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x7f150067 +int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x7f150068 +int style Base_Theme_MaterialComponents 0x7f150069 +int style Base_Theme_MaterialComponents_Bridge 0x7f15006a +int style Base_Theme_MaterialComponents_CompactMenu 0x7f15006b +int style Base_Theme_MaterialComponents_Dialog 0x7f15006c +int style Base_Theme_MaterialComponents_DialogWhenLarge 0x7f15006d +int style Base_Theme_MaterialComponents_Dialog_Alert 0x7f15006e +int style Base_Theme_MaterialComponents_Dialog_Bridge 0x7f15006f +int style Base_Theme_MaterialComponents_Dialog_FixedSize 0x7f150070 +int style Base_Theme_MaterialComponents_Dialog_MinWidth 0x7f150071 +int style Base_Theme_MaterialComponents_Light 0x7f150072 +int style Base_Theme_MaterialComponents_Light_Bridge 0x7f150073 +int style Base_Theme_MaterialComponents_Light_DarkActionBar 0x7f150074 +int style Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge 0x7f150075 +int style Base_Theme_MaterialComponents_Light_Dialog 0x7f150076 +int style Base_Theme_MaterialComponents_Light_DialogWhenLarge 0x7f150077 +int style Base_Theme_MaterialComponents_Light_Dialog_Alert 0x7f150078 +int style Base_Theme_MaterialComponents_Light_Dialog_Bridge 0x7f150079 +int style Base_Theme_MaterialComponents_Light_Dialog_FixedSize 0x7f15007a +int style Base_Theme_MaterialComponents_Light_Dialog_MinWidth 0x7f15007b +int style Base_V11_ThemeOverlay_AppCompat_Dialog 0x7f15007c +int style Base_V11_Theme_AppCompat_Dialog 0x7f15007d +int style Base_V11_Theme_AppCompat_Light_Dialog 0x7f15007e +int style Base_V12_Widget_AppCompat_AutoCompleteTextView 0x7f15007f +int style Base_V12_Widget_AppCompat_EditText 0x7f150080 +int style Base_V14_ThemeOverlay_MaterialComponents_BottomSheetDialog 0x7f150081 +int style Base_V14_ThemeOverlay_MaterialComponents_Dialog 0x7f150082 +int style Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert 0x7f150083 +int style Base_V14_ThemeOverlay_MaterialComponents_MaterialAlertDialog 0x7f150084 +int style Base_V14_Theme_MaterialComponents 0x7f150085 +int style Base_V14_Theme_MaterialComponents_Bridge 0x7f150086 +int style Base_V14_Theme_MaterialComponents_Dialog 0x7f150087 +int style Base_V14_Theme_MaterialComponents_Dialog_Bridge 0x7f150088 +int style Base_V14_Theme_MaterialComponents_Light 0x7f150089 +int style Base_V14_Theme_MaterialComponents_Light_Bridge 0x7f15008a +int style Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge 0x7f15008b +int style Base_V14_Theme_MaterialComponents_Light_Dialog 0x7f15008c +int style Base_V14_Theme_MaterialComponents_Light_Dialog_Bridge 0x7f15008d +int style Base_V21_ThemeOverlay_AppCompat_Dialog 0x7f15008e +int style Base_V21_ThemeOverlay_MaterialComponents_BottomSheetDialog 0x7f15008f +int style Base_V21_Theme_AppCompat 0x7f150090 +int style Base_V21_Theme_AppCompat_Dialog 0x7f150091 +int style Base_V21_Theme_AppCompat_Light 0x7f150092 +int style Base_V21_Theme_AppCompat_Light_Dialog 0x7f150093 +int style Base_V21_Theme_MaterialComponents 0x7f150094 +int style Base_V21_Theme_MaterialComponents_Dialog 0x7f150095 +int style Base_V21_Theme_MaterialComponents_Light 0x7f150096 +int style Base_V21_Theme_MaterialComponents_Light_Dialog 0x7f150097 +int style Base_V22_Theme_AppCompat 0x7f150098 +int style Base_V22_Theme_AppCompat_Light 0x7f150099 +int style Base_V23_Theme_AppCompat 0x7f15009a +int style Base_V23_Theme_AppCompat_Light 0x7f15009b +int style Base_V26_Theme_AppCompat 0x7f15009c +int style Base_V26_Theme_AppCompat_Light 0x7f15009d +int style Base_V26_Widget_AppCompat_Toolbar 0x7f15009e +int style Base_V28_Theme_AppCompat 0x7f15009f +int style Base_V28_Theme_AppCompat_Light 0x7f1500a0 +int style Base_V7_ThemeOverlay_AppCompat_Dialog 0x7f1500a1 +int style Base_V7_Theme_AppCompat 0x7f1500a2 +int style Base_V7_Theme_AppCompat_Dialog 0x7f1500a3 +int style Base_V7_Theme_AppCompat_Light 0x7f1500a4 +int style Base_V7_Theme_AppCompat_Light_Dialog 0x7f1500a5 +int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x7f1500a6 +int style Base_V7_Widget_AppCompat_EditText 0x7f1500a7 +int style Base_V7_Widget_AppCompat_Toolbar 0x7f1500a8 +int style Base_Widget_AppCompat_ActionBar 0x7f1500a9 +int style Base_Widget_AppCompat_ActionBar_Solid 0x7f1500aa +int style Base_Widget_AppCompat_ActionBar_TabBar 0x7f1500ab +int style Base_Widget_AppCompat_ActionBar_TabText 0x7f1500ac +int style Base_Widget_AppCompat_ActionBar_TabView 0x7f1500ad +int style Base_Widget_AppCompat_ActionButton 0x7f1500ae +int style Base_Widget_AppCompat_ActionButton_CloseMode 0x7f1500af +int style Base_Widget_AppCompat_ActionButton_Overflow 0x7f1500b0 +int style Base_Widget_AppCompat_ActionMode 0x7f1500b1 +int style Base_Widget_AppCompat_ActivityChooserView 0x7f1500b2 +int style Base_Widget_AppCompat_AutoCompleteTextView 0x7f1500b3 +int style Base_Widget_AppCompat_Button 0x7f1500b4 +int style Base_Widget_AppCompat_ButtonBar 0x7f1500b5 +int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x7f1500b6 +int style Base_Widget_AppCompat_Button_Borderless 0x7f1500b7 +int style Base_Widget_AppCompat_Button_Borderless_Colored 0x7f1500b8 +int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f1500b9 +int style Base_Widget_AppCompat_Button_Colored 0x7f1500ba +int style Base_Widget_AppCompat_Button_Small 0x7f1500bb +int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x7f1500bc +int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x7f1500bd +int style Base_Widget_AppCompat_CompoundButton_Switch 0x7f1500be +int style Base_Widget_AppCompat_DrawerArrowToggle 0x7f1500bf +int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x7f1500c0 +int style Base_Widget_AppCompat_DropDownItem_Spinner 0x7f1500c1 +int style Base_Widget_AppCompat_EditText 0x7f1500c2 +int style Base_Widget_AppCompat_ImageButton 0x7f1500c3 +int style Base_Widget_AppCompat_Light_ActionBar 0x7f1500c4 +int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x7f1500c5 +int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x7f1500c6 +int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x7f1500c7 +int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f1500c8 +int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x7f1500c9 +int style Base_Widget_AppCompat_Light_PopupMenu 0x7f1500ca +int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x7f1500cb +int style Base_Widget_AppCompat_ListMenuView 0x7f1500cc +int style Base_Widget_AppCompat_ListPopupWindow 0x7f1500cd +int style Base_Widget_AppCompat_ListView 0x7f1500ce +int style Base_Widget_AppCompat_ListView_DropDown 0x7f1500cf +int style Base_Widget_AppCompat_ListView_Menu 0x7f1500d0 +int style Base_Widget_AppCompat_PopupMenu 0x7f1500d1 +int style Base_Widget_AppCompat_PopupMenu_Overflow 0x7f1500d2 +int style Base_Widget_AppCompat_PopupWindow 0x7f1500d3 +int style Base_Widget_AppCompat_ProgressBar 0x7f1500d4 +int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x7f1500d5 +int style Base_Widget_AppCompat_RatingBar 0x7f1500d6 +int style Base_Widget_AppCompat_RatingBar_Indicator 0x7f1500d7 +int style Base_Widget_AppCompat_RatingBar_Small 0x7f1500d8 +int style Base_Widget_AppCompat_SearchView 0x7f1500d9 +int style Base_Widget_AppCompat_SearchView_ActionBar 0x7f1500da +int style Base_Widget_AppCompat_SeekBar 0x7f1500db +int style Base_Widget_AppCompat_SeekBar_Discrete 0x7f1500dc +int style Base_Widget_AppCompat_Spinner 0x7f1500dd +int style Base_Widget_AppCompat_Spinner_Underlined 0x7f1500de +int style Base_Widget_AppCompat_TextView 0x7f1500df +int style Base_Widget_AppCompat_TextView_SpinnerItem 0x7f1500e0 +int style Base_Widget_AppCompat_Toolbar 0x7f1500e1 +int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x7f1500e2 +int style Base_Widget_Design_TabLayout 0x7f1500e3 +int style Base_Widget_MaterialComponents_AutoCompleteTextView 0x7f1500e4 +int style Base_Widget_MaterialComponents_CheckedTextView 0x7f1500e5 +int style Base_Widget_MaterialComponents_Chip 0x7f1500e6 +int style Base_Widget_MaterialComponents_MaterialCalendar_NavigationButton 0x7f1500e7 +int style Base_Widget_MaterialComponents_PopupMenu 0x7f1500e8 +int style Base_Widget_MaterialComponents_PopupMenu_ContextMenu 0x7f1500e9 +int style Base_Widget_MaterialComponents_PopupMenu_ListPopupWindow 0x7f1500ea +int style Base_Widget_MaterialComponents_PopupMenu_Overflow 0x7f1500eb +int style Base_Widget_MaterialComponents_Slider 0x7f1500ec +int style Base_Widget_MaterialComponents_Snackbar 0x7f1500ed +int style Base_Widget_MaterialComponents_TextInputEditText 0x7f1500ee +int style Base_Widget_MaterialComponents_TextInputLayout 0x7f1500ef +int style Base_Widget_MaterialComponents_TextView 0x7f1500f0 +int style Bottom 0x7f1500f1 +int style CardView 0x7f1500f2 +int style CardView_Dark 0x7f1500f3 +int style CardView_Light 0x7f1500f4 +int style CircularProgress 0x7f1500f5 +int style DebugSettingText 0x7f1500f6 +int style DialogActivityTheme 0x7f1500f7 +int style DialogTransparentStyle 0x7f1500f8 +int style Dialog_Fullscreen 0x7f1500f9 +int style EmptyTheme 0x7f1500fa +int style ExoMediaButton 0x7f1500fb +int style ExoMediaButton_FastForward 0x7f1500fc +int style ExoMediaButton_Next 0x7f1500fd +int style ExoMediaButton_Pause 0x7f1500fe +int style ExoMediaButton_Play 0x7f1500ff +int style ExoMediaButton_Previous 0x7f150100 +int style ExoMediaButton_Rewind 0x7f150101 +int style Input 0x7f150102 +int style Main 0x7f150103 +int style MainAnimation 0x7f150104 +int style MaterialAlertDialog_MaterialComponents 0x7f150105 +int style MaterialAlertDialog_MaterialComponents_Body_Text 0x7f150106 +int style MaterialAlertDialog_MaterialComponents_Picker_Date_Calendar 0x7f150107 +int style MaterialAlertDialog_MaterialComponents_Picker_Date_Spinner 0x7f150108 +int style MaterialAlertDialog_MaterialComponents_Title_Icon 0x7f150109 +int style MaterialAlertDialog_MaterialComponents_Title_Icon_CenterStacked 0x7f15010a +int style MaterialAlertDialog_MaterialComponents_Title_Panel 0x7f15010b +int style MaterialAlertDialog_MaterialComponents_Title_Panel_CenterStacked 0x7f15010c +int style MaterialAlertDialog_MaterialComponents_Title_Text 0x7f15010d +int style MaterialAlertDialog_MaterialComponents_Title_Text_CenterStacked 0x7f15010e +int style ModulePushMessageTheme 0x7f15010f +int style Platform_AppCompat 0x7f150110 +int style Platform_AppCompat_Light 0x7f150111 +int style Platform_MaterialComponents 0x7f150112 +int style Platform_MaterialComponents_Dialog 0x7f150113 +int style Platform_MaterialComponents_Light 0x7f150114 +int style Platform_MaterialComponents_Light_Dialog 0x7f150115 +int style Platform_ThemeOverlay_AppCompat 0x7f150116 +int style Platform_ThemeOverlay_AppCompat_Dark 0x7f150117 +int style Platform_ThemeOverlay_AppCompat_Light 0x7f150118 +int style Platform_V11_AppCompat 0x7f150119 +int style Platform_V11_AppCompat_Light 0x7f15011a +int style Platform_V14_AppCompat 0x7f15011b +int style Platform_V14_AppCompat_Light 0x7f15011c +int style Platform_V21_AppCompat 0x7f15011d +int style Platform_V21_AppCompat_Light 0x7f15011e +int style Platform_V25_AppCompat 0x7f15011f +int style Platform_V25_AppCompat_Light 0x7f150120 +int style Platform_Widget_AppCompat_Spinner 0x7f150121 +int style RadioBtnStyle 0x7f150122 +int style RadioButton 0x7f150123 +int style RadioButton_Left 0x7f150124 +int style RadioButton_Middle 0x7f150125 +int style RadioButton_Right 0x7f150126 +int style RtlOverlay_DialogWindowTitle_AppCompat 0x7f150127 +int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x7f150128 +int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x7f150129 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x7f15012a +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x7f15012b +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut 0x7f15012c +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow 0x7f15012d +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x7f15012e +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title 0x7f15012f +int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x7f150130 +int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x7f150131 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x7f150132 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x7f150133 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x7f150134 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x7f150135 +int style RtlUnderlay_Widget_AppCompat_ActionButton 0x7f150136 +int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x7f150137 +int style ShapeAppearanceOverlay 0x7f150138 +int style ShapeAppearanceOverlay_BottomLeftDifferentCornerSize 0x7f150139 +int style ShapeAppearanceOverlay_BottomRightCut 0x7f15013a +int style ShapeAppearanceOverlay_Cut 0x7f15013b +int style ShapeAppearanceOverlay_DifferentCornerSize 0x7f15013c +int style ShapeAppearanceOverlay_MaterialComponents_BottomSheet 0x7f15013d +int style ShapeAppearanceOverlay_MaterialComponents_Chip 0x7f15013e +int style ShapeAppearanceOverlay_MaterialComponents_ExtendedFloatingActionButton 0x7f15013f +int style ShapeAppearanceOverlay_MaterialComponents_FloatingActionButton 0x7f150140 +int style ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day 0x7f150141 +int style ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Window_Fullscreen 0x7f150142 +int style ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Year 0x7f150143 +int style ShapeAppearanceOverlay_MaterialComponents_TextInputLayout_FilledBox 0x7f150144 +int style ShapeAppearanceOverlay_TopLeftCut 0x7f150145 +int style ShapeAppearanceOverlay_TopRightDifferentCornerSize 0x7f150146 +int style ShapeAppearance_MaterialComponents 0x7f150147 +int style ShapeAppearance_MaterialComponents_LargeComponent 0x7f150148 +int style ShapeAppearance_MaterialComponents_MediumComponent 0x7f150149 +int style ShapeAppearance_MaterialComponents_SmallComponent 0x7f15014a +int style ShapeAppearance_MaterialComponents_Test 0x7f15014b +int style ShapeAppearance_MaterialComponents_Tooltip 0x7f15014c +int style TestStyleWithLineHeight 0x7f15014d +int style TestStyleWithLineHeightAppearance 0x7f15014e +int style TestStyleWithThemeLineHeightAttribute 0x7f15014f +int style TestStyleWithoutLineHeight 0x7f150150 +int style TestThemeWithLineHeight 0x7f150151 +int style TestThemeWithLineHeightDisabled 0x7f150152 +int style Test_ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day 0x7f150153 +int style Test_Theme_MaterialComponents_MaterialCalendar 0x7f150154 +int style Test_Widget_MaterialComponents_MaterialCalendar 0x7f150155 +int style Test_Widget_MaterialComponents_MaterialCalendar_Day 0x7f150156 +int style Test_Widget_MaterialComponents_MaterialCalendar_Day_Selected 0x7f150157 +int style Text 0x7f150158 +int style TextAppearance_AppCompat 0x7f150159 +int style TextAppearance_AppCompat_Body1 0x7f15015a +int style TextAppearance_AppCompat_Body2 0x7f15015b +int style TextAppearance_AppCompat_Button 0x7f15015c +int style TextAppearance_AppCompat_Caption 0x7f15015d +int style TextAppearance_AppCompat_Display1 0x7f15015e +int style TextAppearance_AppCompat_Display2 0x7f15015f +int style TextAppearance_AppCompat_Display3 0x7f150160 +int style TextAppearance_AppCompat_Display4 0x7f150161 +int style TextAppearance_AppCompat_Headline 0x7f150162 +int style TextAppearance_AppCompat_Inverse 0x7f150163 +int style TextAppearance_AppCompat_Large 0x7f150164 +int style TextAppearance_AppCompat_Large_Inverse 0x7f150165 +int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f150166 +int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f150167 +int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f150168 +int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f150169 +int style TextAppearance_AppCompat_Medium 0x7f15016a +int style TextAppearance_AppCompat_Medium_Inverse 0x7f15016b +int style TextAppearance_AppCompat_Menu 0x7f15016c +int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f15016d +int style TextAppearance_AppCompat_SearchResult_Title 0x7f15016e +int style TextAppearance_AppCompat_Small 0x7f15016f +int style TextAppearance_AppCompat_Small_Inverse 0x7f150170 +int style TextAppearance_AppCompat_Subhead 0x7f150171 +int style TextAppearance_AppCompat_Subhead_Inverse 0x7f150172 +int style TextAppearance_AppCompat_Title 0x7f150173 +int style TextAppearance_AppCompat_Title_Inverse 0x7f150174 +int style TextAppearance_AppCompat_Tooltip 0x7f150175 +int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f150176 +int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f150177 +int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f150178 +int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f150179 +int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f15017a +int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f15017b +int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f15017c +int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f15017d +int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f15017e +int style TextAppearance_AppCompat_Widget_Button 0x7f15017f +int style TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f150180 +int style TextAppearance_AppCompat_Widget_Button_Colored 0x7f150181 +int style TextAppearance_AppCompat_Widget_Button_Inverse 0x7f150182 +int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f150183 +int style TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f150184 +int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f150185 +int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f150186 +int style TextAppearance_AppCompat_Widget_Switch 0x7f150187 +int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f150188 +int style TextAppearance_Compat_Notification 0x7f150189 +int style TextAppearance_Compat_Notification_Info 0x7f15018a +int style TextAppearance_Compat_Notification_Info_Media 0x7f15018b +int style TextAppearance_Compat_Notification_Line2 0x7f15018c +int style TextAppearance_Compat_Notification_Line2_Media 0x7f15018d +int style TextAppearance_Compat_Notification_Media 0x7f15018e +int style TextAppearance_Compat_Notification_Time 0x7f15018f +int style TextAppearance_Compat_Notification_Time_Media 0x7f150190 +int style TextAppearance_Compat_Notification_Title 0x7f150191 +int style TextAppearance_Compat_Notification_Title_Media 0x7f150192 +int style TextAppearance_Design_CollapsingToolbar_Expanded 0x7f150193 +int style TextAppearance_Design_Counter 0x7f150194 +int style TextAppearance_Design_Counter_Overflow 0x7f150195 +int style TextAppearance_Design_Error 0x7f150196 +int style TextAppearance_Design_HelperText 0x7f150197 +int style TextAppearance_Design_Hint 0x7f150198 +int style TextAppearance_Design_Placeholder 0x7f150199 +int style TextAppearance_Design_Prefix 0x7f15019a +int style TextAppearance_Design_Snackbar_Message 0x7f15019b +int style TextAppearance_Design_Suffix 0x7f15019c +int style TextAppearance_Design_Tab 0x7f15019d +int style TextAppearance_MaterialComponents_Badge 0x7f15019e +int style TextAppearance_MaterialComponents_Body1 0x7f15019f +int style TextAppearance_MaterialComponents_Body2 0x7f1501a0 +int style TextAppearance_MaterialComponents_Button 0x7f1501a1 +int style TextAppearance_MaterialComponents_Caption 0x7f1501a2 +int style TextAppearance_MaterialComponents_Chip 0x7f1501a3 +int style TextAppearance_MaterialComponents_Headline1 0x7f1501a4 +int style TextAppearance_MaterialComponents_Headline2 0x7f1501a5 +int style TextAppearance_MaterialComponents_Headline3 0x7f1501a6 +int style TextAppearance_MaterialComponents_Headline4 0x7f1501a7 +int style TextAppearance_MaterialComponents_Headline5 0x7f1501a8 +int style TextAppearance_MaterialComponents_Headline6 0x7f1501a9 +int style TextAppearance_MaterialComponents_Overline 0x7f1501aa +int style TextAppearance_MaterialComponents_Subtitle1 0x7f1501ab +int style TextAppearance_MaterialComponents_Subtitle2 0x7f1501ac +int style TextAppearance_MaterialComponents_TimePicker_Title 0x7f1501ad +int style TextAppearance_MaterialComponents_Tooltip 0x7f1501ae +int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f1501af +int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f1501b0 +int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f1501b1 +int style ThemeOverlayColorAccentRed 0x7f1501b2 +int style ThemeOverlay_AppCompat 0x7f1501b3 +int style ThemeOverlay_AppCompat_ActionBar 0x7f1501b4 +int style ThemeOverlay_AppCompat_Dark 0x7f1501b5 +int style ThemeOverlay_AppCompat_Dark_ActionBar 0x7f1501b6 +int style ThemeOverlay_AppCompat_DayNight 0x7f1501b7 +int style ThemeOverlay_AppCompat_DayNight_ActionBar 0x7f1501b8 +int style ThemeOverlay_AppCompat_Dialog 0x7f1501b9 +int style ThemeOverlay_AppCompat_Dialog_Alert 0x7f1501ba +int style ThemeOverlay_AppCompat_Light 0x7f1501bb +int style ThemeOverlay_Design_TextInputEditText 0x7f1501bc +int style ThemeOverlay_MaterialComponents 0x7f1501bd +int style ThemeOverlay_MaterialComponents_ActionBar 0x7f1501be +int style ThemeOverlay_MaterialComponents_ActionBar_Primary 0x7f1501bf +int style ThemeOverlay_MaterialComponents_ActionBar_Surface 0x7f1501c0 +int style ThemeOverlay_MaterialComponents_AutoCompleteTextView 0x7f1501c1 +int style ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox 0x7f1501c2 +int style ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox_Dense 0x7f1501c3 +int style ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox 0x7f1501c4 +int style ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense 0x7f1501c5 +int style ThemeOverlay_MaterialComponents_BottomAppBar_Primary 0x7f1501c6 +int style ThemeOverlay_MaterialComponents_BottomAppBar_Surface 0x7f1501c7 +int style ThemeOverlay_MaterialComponents_BottomSheetDialog 0x7f1501c8 +int style ThemeOverlay_MaterialComponents_Dark 0x7f1501c9 +int style ThemeOverlay_MaterialComponents_Dark_ActionBar 0x7f1501ca +int style ThemeOverlay_MaterialComponents_DayNight_BottomSheetDialog 0x7f1501cb +int style ThemeOverlay_MaterialComponents_Dialog 0x7f1501cc +int style ThemeOverlay_MaterialComponents_Dialog_Alert 0x7f1501cd +int style ThemeOverlay_MaterialComponents_Dialog_Alert_Framework 0x7f1501ce +int style ThemeOverlay_MaterialComponents_Light 0x7f1501cf +int style ThemeOverlay_MaterialComponents_Light_BottomSheetDialog 0x7f1501d0 +int style ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework 0x7f1501d1 +int style ThemeOverlay_MaterialComponents_MaterialAlertDialog 0x7f1501d2 +int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Centered 0x7f1501d3 +int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date 0x7f1501d4 +int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Calendar 0x7f1501d5 +int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text 0x7f1501d6 +int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text_Day 0x7f1501d7 +int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Spinner 0x7f1501d8 +int style ThemeOverlay_MaterialComponents_MaterialCalendar 0x7f1501d9 +int style ThemeOverlay_MaterialComponents_MaterialCalendar_Fullscreen 0x7f1501da +int style ThemeOverlay_MaterialComponents_TextInputEditText 0x7f1501db +int style ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox 0x7f1501dc +int style ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense 0x7f1501dd +int style ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox 0x7f1501de +int style ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense 0x7f1501df +int style ThemeOverlay_MaterialComponents_TimePicker 0x7f1501e0 +int style ThemeOverlay_MaterialComponents_TimePicker_Display 0x7f1501e1 +int style ThemeOverlay_MaterialComponents_Toolbar_Primary 0x7f1501e2 +int style ThemeOverlay_MaterialComponents_Toolbar_Surface 0x7f1501e3 +int style Theme_AppCompat 0x7f1501e4 +int style Theme_AppCompat_CompactMenu 0x7f1501e5 +int style Theme_AppCompat_DayNight 0x7f1501e6 +int style Theme_AppCompat_DayNight_DarkActionBar 0x7f1501e7 +int style Theme_AppCompat_DayNight_Dialog 0x7f1501e8 +int style Theme_AppCompat_DayNight_DialogWhenLarge 0x7f1501e9 +int style Theme_AppCompat_DayNight_Dialog_Alert 0x7f1501ea +int style Theme_AppCompat_DayNight_Dialog_MinWidth 0x7f1501eb +int style Theme_AppCompat_DayNight_NoActionBar 0x7f1501ec +int style Theme_AppCompat_Dialog 0x7f1501ed +int style Theme_AppCompat_DialogWhenLarge 0x7f1501ee +int style Theme_AppCompat_Dialog_Alert 0x7f1501ef +int style Theme_AppCompat_Dialog_MinWidth 0x7f1501f0 +int style Theme_AppCompat_Empty 0x7f1501f1 +int style Theme_AppCompat_Light 0x7f1501f2 +int style Theme_AppCompat_Light_DarkActionBar 0x7f1501f3 +int style Theme_AppCompat_Light_Dialog 0x7f1501f4 +int style Theme_AppCompat_Light_DialogWhenLarge 0x7f1501f5 +int style Theme_AppCompat_Light_Dialog_Alert 0x7f1501f6 +int style Theme_AppCompat_Light_Dialog_MinWidth 0x7f1501f7 +int style Theme_AppCompat_Light_NoActionBar 0x7f1501f8 +int style Theme_AppCompat_NoActionBar 0x7f1501f9 +int style Theme_Design 0x7f1501fa +int style Theme_Design_BottomSheetDialog 0x7f1501fb +int style Theme_Design_Light 0x7f1501fc +int style Theme_Design_Light_BottomSheetDialog 0x7f1501fd +int style Theme_Design_Light_NoActionBar 0x7f1501fe +int style Theme_Design_NoActionBar 0x7f1501ff +int style Theme_MaterialComponents 0x7f150200 +int style Theme_MaterialComponents_BottomSheetDialog 0x7f150201 +int style Theme_MaterialComponents_Bridge 0x7f150202 +int style Theme_MaterialComponents_CompactMenu 0x7f150203 +int style Theme_MaterialComponents_DayNight 0x7f150204 +int style Theme_MaterialComponents_DayNight_BottomSheetDialog 0x7f150205 +int style Theme_MaterialComponents_DayNight_Bridge 0x7f150206 +int style Theme_MaterialComponents_DayNight_DarkActionBar 0x7f150207 +int style Theme_MaterialComponents_DayNight_DarkActionBar_Bridge 0x7f150208 +int style Theme_MaterialComponents_DayNight_Dialog 0x7f150209 +int style Theme_MaterialComponents_DayNight_DialogWhenLarge 0x7f15020a +int style Theme_MaterialComponents_DayNight_Dialog_Alert 0x7f15020b +int style Theme_MaterialComponents_DayNight_Dialog_Alert_Bridge 0x7f15020c +int style Theme_MaterialComponents_DayNight_Dialog_Bridge 0x7f15020d +int style Theme_MaterialComponents_DayNight_Dialog_FixedSize 0x7f15020e +int style Theme_MaterialComponents_DayNight_Dialog_FixedSize_Bridge 0x7f15020f +int style Theme_MaterialComponents_DayNight_Dialog_MinWidth 0x7f150210 +int style Theme_MaterialComponents_DayNight_Dialog_MinWidth_Bridge 0x7f150211 +int style Theme_MaterialComponents_DayNight_NoActionBar 0x7f150212 +int style Theme_MaterialComponents_DayNight_NoActionBar_Bridge 0x7f150213 +int style Theme_MaterialComponents_Dialog 0x7f150214 +int style Theme_MaterialComponents_DialogWhenLarge 0x7f150215 +int style Theme_MaterialComponents_Dialog_Alert 0x7f150216 +int style Theme_MaterialComponents_Dialog_Alert_Bridge 0x7f150217 +int style Theme_MaterialComponents_Dialog_Bridge 0x7f150218 +int style Theme_MaterialComponents_Dialog_FixedSize 0x7f150219 +int style Theme_MaterialComponents_Dialog_FixedSize_Bridge 0x7f15021a +int style Theme_MaterialComponents_Dialog_MinWidth 0x7f15021b +int style Theme_MaterialComponents_Dialog_MinWidth_Bridge 0x7f15021c +int style Theme_MaterialComponents_Light 0x7f15021d +int style Theme_MaterialComponents_Light_BarSize 0x7f15021e +int style Theme_MaterialComponents_Light_BottomSheetDialog 0x7f15021f +int style Theme_MaterialComponents_Light_Bridge 0x7f150220 +int style Theme_MaterialComponents_Light_DarkActionBar 0x7f150221 +int style Theme_MaterialComponents_Light_DarkActionBar_Bridge 0x7f150222 +int style Theme_MaterialComponents_Light_Dialog 0x7f150223 +int style Theme_MaterialComponents_Light_DialogWhenLarge 0x7f150224 +int style Theme_MaterialComponents_Light_Dialog_Alert 0x7f150225 +int style Theme_MaterialComponents_Light_Dialog_Alert_Bridge 0x7f150226 +int style Theme_MaterialComponents_Light_Dialog_Bridge 0x7f150227 +int style Theme_MaterialComponents_Light_Dialog_FixedSize 0x7f150228 +int style Theme_MaterialComponents_Light_Dialog_FixedSize_Bridge 0x7f150229 +int style Theme_MaterialComponents_Light_Dialog_MinWidth 0x7f15022a +int style Theme_MaterialComponents_Light_Dialog_MinWidth_Bridge 0x7f15022b +int style Theme_MaterialComponents_Light_LargeTouch 0x7f15022c +int style Theme_MaterialComponents_Light_NoActionBar 0x7f15022d +int style Theme_MaterialComponents_Light_NoActionBar_Bridge 0x7f15022e +int style Theme_MaterialComponents_NoActionBar 0x7f15022f +int style Theme_MaterialComponents_NoActionBar_Bridge 0x7f150230 +int style TitleBig 0x7f150231 +int style White 0x7f150232 +int style Widget_AppCompat_ActionBar 0x7f150233 +int style Widget_AppCompat_ActionBar_Solid 0x7f150234 +int style Widget_AppCompat_ActionBar_TabBar 0x7f150235 +int style Widget_AppCompat_ActionBar_TabText 0x7f150236 +int style Widget_AppCompat_ActionBar_TabView 0x7f150237 +int style Widget_AppCompat_ActionButton 0x7f150238 +int style Widget_AppCompat_ActionButton_CloseMode 0x7f150239 +int style Widget_AppCompat_ActionButton_Overflow 0x7f15023a +int style Widget_AppCompat_ActionMode 0x7f15023b +int style Widget_AppCompat_ActivityChooserView 0x7f15023c +int style Widget_AppCompat_AutoCompleteTextView 0x7f15023d +int style Widget_AppCompat_Button 0x7f15023e +int style Widget_AppCompat_ButtonBar 0x7f15023f +int style Widget_AppCompat_ButtonBar_AlertDialog 0x7f150240 +int style Widget_AppCompat_Button_Borderless 0x7f150241 +int style Widget_AppCompat_Button_Borderless_Colored 0x7f150242 +int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f150243 +int style Widget_AppCompat_Button_Colored 0x7f150244 +int style Widget_AppCompat_Button_Small 0x7f150245 +int style Widget_AppCompat_CompoundButton_CheckBox 0x7f150246 +int style Widget_AppCompat_CompoundButton_RadioButton 0x7f150247 +int style Widget_AppCompat_CompoundButton_Switch 0x7f150248 +int style Widget_AppCompat_DrawerArrowToggle 0x7f150249 +int style Widget_AppCompat_DropDownItem_Spinner 0x7f15024a +int style Widget_AppCompat_EditText 0x7f15024b +int style Widget_AppCompat_ImageButton 0x7f15024c +int style Widget_AppCompat_Light_ActionBar 0x7f15024d +int style Widget_AppCompat_Light_ActionBar_Solid 0x7f15024e +int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f15024f +int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f150250 +int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f150251 +int style Widget_AppCompat_Light_ActionBar_TabText 0x7f150252 +int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f150253 +int style Widget_AppCompat_Light_ActionBar_TabView 0x7f150254 +int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f150255 +int style Widget_AppCompat_Light_ActionButton 0x7f150256 +int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f150257 +int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f150258 +int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f150259 +int style Widget_AppCompat_Light_ActivityChooserView 0x7f15025a +int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f15025b +int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f15025c +int style Widget_AppCompat_Light_ListPopupWindow 0x7f15025d +int style Widget_AppCompat_Light_ListView_DropDown 0x7f15025e +int style Widget_AppCompat_Light_PopupMenu 0x7f15025f +int style Widget_AppCompat_Light_PopupMenu_Overflow 0x7f150260 +int style Widget_AppCompat_Light_SearchView 0x7f150261 +int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f150262 +int style Widget_AppCompat_ListMenuView 0x7f150263 +int style Widget_AppCompat_ListPopupWindow 0x7f150264 +int style Widget_AppCompat_ListView 0x7f150265 +int style Widget_AppCompat_ListView_DropDown 0x7f150266 +int style Widget_AppCompat_ListView_Menu 0x7f150267 +int style Widget_AppCompat_PopupMenu 0x7f150268 +int style Widget_AppCompat_PopupMenu_Overflow 0x7f150269 +int style Widget_AppCompat_PopupWindow 0x7f15026a +int style Widget_AppCompat_ProgressBar 0x7f15026b +int style Widget_AppCompat_ProgressBar_Horizontal 0x7f15026c +int style Widget_AppCompat_RatingBar 0x7f15026d +int style Widget_AppCompat_RatingBar_Indicator 0x7f15026e +int style Widget_AppCompat_RatingBar_Small 0x7f15026f +int style Widget_AppCompat_SearchView 0x7f150270 +int style Widget_AppCompat_SearchView_ActionBar 0x7f150271 +int style Widget_AppCompat_SeekBar 0x7f150272 +int style Widget_AppCompat_SeekBar_Discrete 0x7f150273 +int style Widget_AppCompat_Spinner 0x7f150274 +int style Widget_AppCompat_Spinner_DropDown 0x7f150275 +int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f150276 +int style Widget_AppCompat_Spinner_Underlined 0x7f150277 +int style Widget_AppCompat_TextView 0x7f150278 +int style Widget_AppCompat_TextView_SpinnerItem 0x7f150279 +int style Widget_AppCompat_Toolbar 0x7f15027a +int style Widget_AppCompat_Toolbar_Button_Navigation 0x7f15027b +int style Widget_Compat_NotificationActionContainer 0x7f15027c +int style Widget_Compat_NotificationActionText 0x7f15027d +int style Widget_Design_AppBarLayout 0x7f15027e +int style Widget_Design_BottomNavigationView 0x7f15027f +int style Widget_Design_BottomSheet_Modal 0x7f150280 +int style Widget_Design_CollapsingToolbar 0x7f150281 +int style Widget_Design_FloatingActionButton 0x7f150282 +int style Widget_Design_NavigationView 0x7f150283 +int style Widget_Design_ScrimInsetsFrameLayout 0x7f150284 +int style Widget_Design_Snackbar 0x7f150285 +int style Widget_Design_TabLayout 0x7f150286 +int style Widget_Design_TextInputEditText 0x7f150287 +int style Widget_Design_TextInputLayout 0x7f150288 +int style Widget_MaterialComponents_ActionBar_Primary 0x7f150289 +int style Widget_MaterialComponents_ActionBar_PrimarySurface 0x7f15028a +int style Widget_MaterialComponents_ActionBar_Solid 0x7f15028b +int style Widget_MaterialComponents_ActionBar_Surface 0x7f15028c +int style Widget_MaterialComponents_AppBarLayout_Primary 0x7f15028d +int style Widget_MaterialComponents_AppBarLayout_PrimarySurface 0x7f15028e +int style Widget_MaterialComponents_AppBarLayout_Surface 0x7f15028f +int style Widget_MaterialComponents_AutoCompleteTextView_FilledBox 0x7f150290 +int style Widget_MaterialComponents_AutoCompleteTextView_FilledBox_Dense 0x7f150291 +int style Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox 0x7f150292 +int style Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense 0x7f150293 +int style Widget_MaterialComponents_Badge 0x7f150294 +int style Widget_MaterialComponents_BottomAppBar 0x7f150295 +int style Widget_MaterialComponents_BottomAppBar_Colored 0x7f150296 +int style Widget_MaterialComponents_BottomAppBar_PrimarySurface 0x7f150297 +int style Widget_MaterialComponents_BottomNavigationView 0x7f150298 +int style Widget_MaterialComponents_BottomNavigationView_Colored 0x7f150299 +int style Widget_MaterialComponents_BottomNavigationView_PrimarySurface 0x7f15029a +int style Widget_MaterialComponents_BottomSheet 0x7f15029b +int style Widget_MaterialComponents_BottomSheet_Modal 0x7f15029c +int style Widget_MaterialComponents_Button 0x7f15029d +int style Widget_MaterialComponents_Button_Icon 0x7f15029e +int style Widget_MaterialComponents_Button_OutlinedButton 0x7f15029f +int style Widget_MaterialComponents_Button_OutlinedButton_Icon 0x7f1502a0 +int style Widget_MaterialComponents_Button_TextButton 0x7f1502a1 +int style Widget_MaterialComponents_Button_TextButton_Dialog 0x7f1502a2 +int style Widget_MaterialComponents_Button_TextButton_Dialog_Flush 0x7f1502a3 +int style Widget_MaterialComponents_Button_TextButton_Dialog_Icon 0x7f1502a4 +int style Widget_MaterialComponents_Button_TextButton_Icon 0x7f1502a5 +int style Widget_MaterialComponents_Button_TextButton_Snackbar 0x7f1502a6 +int style Widget_MaterialComponents_Button_UnelevatedButton 0x7f1502a7 +int style Widget_MaterialComponents_Button_UnelevatedButton_Icon 0x7f1502a8 +int style Widget_MaterialComponents_CardView 0x7f1502a9 +int style Widget_MaterialComponents_CheckedTextView 0x7f1502aa +int style Widget_MaterialComponents_ChipGroup 0x7f1502ab +int style Widget_MaterialComponents_Chip_Action 0x7f1502ac +int style Widget_MaterialComponents_Chip_Choice 0x7f1502ad +int style Widget_MaterialComponents_Chip_Entry 0x7f1502ae +int style Widget_MaterialComponents_Chip_Filter 0x7f1502af +int style Widget_MaterialComponents_CircularProgressIndicator 0x7f1502b0 +int style Widget_MaterialComponents_CircularProgressIndicator_ExtraSmall 0x7f1502b1 +int style Widget_MaterialComponents_CircularProgressIndicator_Medium 0x7f1502b2 +int style Widget_MaterialComponents_CircularProgressIndicator_Small 0x7f1502b3 +int style Widget_MaterialComponents_CollapsingToolbar 0x7f1502b4 +int style Widget_MaterialComponents_CompoundButton_CheckBox 0x7f1502b5 +int style Widget_MaterialComponents_CompoundButton_RadioButton 0x7f1502b6 +int style Widget_MaterialComponents_CompoundButton_Switch 0x7f1502b7 +int style Widget_MaterialComponents_ExtendedFloatingActionButton 0x7f1502b8 +int style Widget_MaterialComponents_ExtendedFloatingActionButton_Icon 0x7f1502b9 +int style Widget_MaterialComponents_FloatingActionButton 0x7f1502ba +int style Widget_MaterialComponents_Light_ActionBar_Solid 0x7f1502bb +int style Widget_MaterialComponents_LinearProgressIndicator 0x7f1502bc +int style Widget_MaterialComponents_MaterialButtonToggleGroup 0x7f1502bd +int style Widget_MaterialComponents_MaterialCalendar 0x7f1502be +int style Widget_MaterialComponents_MaterialCalendar_Day 0x7f1502bf +int style Widget_MaterialComponents_MaterialCalendar_DayTextView 0x7f1502c0 +int style Widget_MaterialComponents_MaterialCalendar_Day_Invalid 0x7f1502c1 +int style Widget_MaterialComponents_MaterialCalendar_Day_Selected 0x7f1502c2 +int style Widget_MaterialComponents_MaterialCalendar_Day_Today 0x7f1502c3 +int style Widget_MaterialComponents_MaterialCalendar_Fullscreen 0x7f1502c4 +int style Widget_MaterialComponents_MaterialCalendar_HeaderCancelButton 0x7f1502c5 +int style Widget_MaterialComponents_MaterialCalendar_HeaderConfirmButton 0x7f1502c6 +int style Widget_MaterialComponents_MaterialCalendar_HeaderDivider 0x7f1502c7 +int style Widget_MaterialComponents_MaterialCalendar_HeaderLayout 0x7f1502c8 +int style Widget_MaterialComponents_MaterialCalendar_HeaderSelection 0x7f1502c9 +int style Widget_MaterialComponents_MaterialCalendar_HeaderSelection_Fullscreen 0x7f1502ca +int style Widget_MaterialComponents_MaterialCalendar_HeaderTitle 0x7f1502cb +int style Widget_MaterialComponents_MaterialCalendar_HeaderToggleButton 0x7f1502cc +int style Widget_MaterialComponents_MaterialCalendar_Item 0x7f1502cd +int style Widget_MaterialComponents_MaterialCalendar_MonthNavigationButton 0x7f1502ce +int style Widget_MaterialComponents_MaterialCalendar_MonthTextView 0x7f1502cf +int style Widget_MaterialComponents_MaterialCalendar_Year 0x7f1502d0 +int style Widget_MaterialComponents_MaterialCalendar_YearNavigationButton 0x7f1502d1 +int style Widget_MaterialComponents_MaterialCalendar_Year_Selected 0x7f1502d2 +int style Widget_MaterialComponents_MaterialCalendar_Year_Today 0x7f1502d3 +int style Widget_MaterialComponents_NavigationRailView 0x7f1502d4 +int style Widget_MaterialComponents_NavigationRailView_Colored 0x7f1502d5 +int style Widget_MaterialComponents_NavigationRailView_Colored_Compact 0x7f1502d6 +int style Widget_MaterialComponents_NavigationRailView_Compact 0x7f1502d7 +int style Widget_MaterialComponents_NavigationRailView_PrimarySurface 0x7f1502d8 +int style Widget_MaterialComponents_NavigationView 0x7f1502d9 +int style Widget_MaterialComponents_PopupMenu 0x7f1502da +int style Widget_MaterialComponents_PopupMenu_ContextMenu 0x7f1502db +int style Widget_MaterialComponents_PopupMenu_ListPopupWindow 0x7f1502dc +int style Widget_MaterialComponents_PopupMenu_Overflow 0x7f1502dd +int style Widget_MaterialComponents_ProgressIndicator 0x7f1502de +int style Widget_MaterialComponents_ShapeableImageView 0x7f1502df +int style Widget_MaterialComponents_Slider 0x7f1502e0 +int style Widget_MaterialComponents_Snackbar 0x7f1502e1 +int style Widget_MaterialComponents_Snackbar_FullWidth 0x7f1502e2 +int style Widget_MaterialComponents_Snackbar_TextView 0x7f1502e3 +int style Widget_MaterialComponents_TabLayout 0x7f1502e4 +int style Widget_MaterialComponents_TabLayout_Colored 0x7f1502e5 +int style Widget_MaterialComponents_TabLayout_PrimarySurface 0x7f1502e6 +int style Widget_MaterialComponents_TextInputEditText_FilledBox 0x7f1502e7 +int style Widget_MaterialComponents_TextInputEditText_FilledBox_Dense 0x7f1502e8 +int style Widget_MaterialComponents_TextInputEditText_OutlinedBox 0x7f1502e9 +int style Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense 0x7f1502ea +int style Widget_MaterialComponents_TextInputLayout_FilledBox 0x7f1502eb +int style Widget_MaterialComponents_TextInputLayout_FilledBox_Dense 0x7f1502ec +int style Widget_MaterialComponents_TextInputLayout_FilledBox_Dense_ExposedDropdownMenu 0x7f1502ed +int style Widget_MaterialComponents_TextInputLayout_FilledBox_ExposedDropdownMenu 0x7f1502ee +int style Widget_MaterialComponents_TextInputLayout_OutlinedBox 0x7f1502ef +int style Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense 0x7f1502f0 +int style Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense_ExposedDropdownMenu 0x7f1502f1 +int style Widget_MaterialComponents_TextInputLayout_OutlinedBox_ExposedDropdownMenu 0x7f1502f2 +int style Widget_MaterialComponents_TextView 0x7f1502f3 +int style Widget_MaterialComponents_TimePicker 0x7f1502f4 +int style Widget_MaterialComponents_TimePicker_Button 0x7f1502f5 +int style Widget_MaterialComponents_TimePicker_Clock 0x7f1502f6 +int style Widget_MaterialComponents_TimePicker_Display 0x7f1502f7 +int style Widget_MaterialComponents_TimePicker_Display_TextInputEditText 0x7f1502f8 +int style Widget_MaterialComponents_TimePicker_ImageButton 0x7f1502f9 +int style Widget_MaterialComponents_TimePicker_ImageButton_ShapeAppearance 0x7f1502fa +int style Widget_MaterialComponents_Toolbar 0x7f1502fb +int style Widget_MaterialComponents_Toolbar_Primary 0x7f1502fc +int style Widget_MaterialComponents_Toolbar_PrimarySurface 0x7f1502fd +int style Widget_MaterialComponents_Toolbar_Surface 0x7f1502fe +int style Widget_MaterialComponents_Tooltip 0x7f1502ff +int style Widget_Support_CoordinatorLayout 0x7f150300 +int style check_progressBar_scale 0x7f150301 +int style customHeartHeartRatingBarStyle 0x7f150302 +int style customTabLayoutTextAppearance 0x7f150303 +int style darkMode 0x7f150304 +int style leak_canary_LeakCanary_Base 0x7f150305 +int style leak_canary_Theme_Transparent 0x7f150306 +int style leak_canary_Widget_ActionBar 0x7f150307 +int style lightMode 0x7f150308 +int style noCheckboxStyle 0x7f150309 +int style noRadioButtonStyle 0x7f15030a +int style rb_map_nav 0x7f15030b +int style register_Dialog_Fullscreen 0x7f15030c +int style title 0x7f15030d +int style video_popup_toast_anim 0x7f15030e +int style video_style_dialog_progress 0x7f15030f +int style video_vertical_progressBar 0x7f150310 +int[] styleable ActionBar { 0x7f040050, 0x7f040058, 0x7f040059, 0x7f040106, 0x7f040107, 0x7f040108, 0x7f040109, 0x7f04010a, 0x7f04010b, 0x7f040143, 0x7f040156, 0x7f040157, 0x7f040181, 0x7f0401de, 0x7f0401e5, 0x7f0401ec, 0x7f0401ed, 0x7f0401f0, 0x7f040201, 0x7f040213, 0x7f040296, 0x7f0402fc, 0x7f040334, 0x7f040344, 0x7f040345, 0x7f0403d1, 0x7f0403d5, 0x7f04043e, 0x7f04044a } +int styleable ActionBar_background 0 +int styleable ActionBar_backgroundSplit 1 +int styleable ActionBar_backgroundStacked 2 +int styleable ActionBar_contentInsetEnd 3 +int styleable ActionBar_contentInsetEndWithActions 4 +int styleable ActionBar_contentInsetLeft 5 +int styleable ActionBar_contentInsetRight 6 +int styleable ActionBar_contentInsetStart 7 +int styleable ActionBar_contentInsetStartWithNavigation 8 +int styleable ActionBar_customNavigationLayout 9 +int styleable ActionBar_displayOptions 10 +int styleable ActionBar_divider 11 +int styleable ActionBar_elevation 12 +int styleable ActionBar_height 13 +int styleable ActionBar_hideOnContentScroll 14 +int styleable ActionBar_homeAsUpIndicator 15 +int styleable ActionBar_homeLayout 16 +int styleable ActionBar_icon 17 +int styleable ActionBar_indeterminateProgressStyle 18 +int styleable ActionBar_itemPadding 19 +int styleable ActionBar_logo 20 +int styleable ActionBar_navigationMode 21 +int styleable ActionBar_popupTheme 22 +int styleable ActionBar_progressBarPadding 23 +int styleable ActionBar_progressBarStyle 24 +int styleable ActionBar_subtitle 25 +int styleable ActionBar_subtitleTextStyle 26 +int styleable ActionBar_title 27 +int styleable ActionBar_titleTextStyle 28 +int[] styleable ActionBarLayout { 0x10100b3 } +int styleable ActionBarLayout_android_layout_gravity 0 +int[] styleable ActionMenuItemView { 0x101013f } +int styleable ActionMenuItemView_android_minWidth 0 +int[] styleable ActionMenuView { } +int[] styleable ActionMode { 0x7f040050, 0x7f040058, 0x7f0400e0, 0x7f0401de, 0x7f0403d5, 0x7f04044a } +int styleable ActionMode_background 0 +int styleable ActionMode_backgroundSplit 1 +int styleable ActionMode_closeItemLayout 2 +int styleable ActionMode_height 3 +int styleable ActionMode_subtitleTextStyle 4 +int styleable ActionMode_titleTextStyle 5 +int[] styleable ActivityChooserView { 0x7f040195, 0x7f040207 } +int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 0 +int styleable ActivityChooserView_initialActivityCount 1 +int[] styleable AlertDialog { 0x10100f2, 0x7f04008e, 0x7f04008f, 0x7f04028b, 0x7f04028c, 0x7f0402f8, 0x7f0403a5, 0x7f0403a9 } +int styleable AlertDialog_android_layout 0 +int styleable AlertDialog_buttonIconDimen 1 +int styleable AlertDialog_buttonPanelSideLayout 2 +int styleable AlertDialog_listItemLayout 3 +int styleable AlertDialog_listLayout 4 +int styleable AlertDialog_multiChoiceItemLayout 5 +int styleable AlertDialog_showTitle 6 +int styleable AlertDialog_singleChoiceItemLayout 7 +int[] styleable AnimatedStateListDrawableCompat { 0x1010196, 0x101011c, 0x101030c, 0x101030d, 0x1010195, 0x1010194 } +int styleable AnimatedStateListDrawableCompat_android_constantSize 0 +int styleable AnimatedStateListDrawableCompat_android_dither 1 +int styleable AnimatedStateListDrawableCompat_android_enterFadeDuration 2 +int styleable AnimatedStateListDrawableCompat_android_exitFadeDuration 3 +int styleable AnimatedStateListDrawableCompat_android_variablePadding 4 +int styleable AnimatedStateListDrawableCompat_android_visible 5 +int[] styleable AnimatedStateListDrawableItem { 0x1010199, 0x10100d0 } +int styleable AnimatedStateListDrawableItem_android_drawable 0 +int styleable AnimatedStateListDrawableItem_android_id 1 +int[] styleable AnimatedStateListDrawableTransition { 0x1010199, 0x101044a, 0x101044b, 0x1010449 } +int styleable AnimatedStateListDrawableTransition_android_drawable 0 +int styleable AnimatedStateListDrawableTransition_android_fromId 1 +int styleable AnimatedStateListDrawableTransition_android_reversible 2 +int styleable AnimatedStateListDrawableTransition_android_toId 3 +int[] styleable AppBarLayout { 0x10100d4, 0x1010540, 0x101048f, 0x7f040181, 0x7f040196, 0x7f040281, 0x7f040282, 0x7f0403ca } +int styleable AppBarLayout_android_background 0 +int styleable AppBarLayout_android_keyboardNavigationCluster 1 +int styleable AppBarLayout_android_touchscreenBlocksFocus 2 +int styleable AppBarLayout_elevation 3 +int styleable AppBarLayout_expanded 4 +int styleable AppBarLayout_liftOnScroll 5 +int styleable AppBarLayout_liftOnScrollTargetViewId 6 +int styleable AppBarLayout_statusBarForeground 7 +int[] styleable AppBarLayoutStates { 0x7f0403c4, 0x7f0403c5, 0x7f0403c7, 0x7f0403c8 } +int styleable AppBarLayoutStates_state_collapsed 0 +int styleable AppBarLayoutStates_state_collapsible 1 +int styleable AppBarLayoutStates_state_liftable 2 +int styleable AppBarLayoutStates_state_lifted 3 +int[] styleable AppBarLayout_Layout { 0x7f04027c, 0x7f04027d } +int styleable AppBarLayout_Layout_layout_scrollFlags 0 +int styleable AppBarLayout_Layout_layout_scrollInterpolator 1 +int[] styleable AppCompatImageView { 0x1010119, 0x7f0403bb, 0x7f04043c, 0x7f04043d } +int styleable AppCompatImageView_android_src 0 +int styleable AppCompatImageView_srcCompat 1 +int styleable AppCompatImageView_tint 2 +int styleable AppCompatImageView_tintMode 3 +int[] styleable AppCompatSeekBar { 0x1010142, 0x7f040438, 0x7f040439, 0x7f04043a } +int styleable AppCompatSeekBar_android_thumb 0 +int styleable AppCompatSeekBar_tickMark 1 +int styleable AppCompatSeekBar_tickMarkTint 2 +int styleable AppCompatSeekBar_tickMarkTintMode 3 +int[] styleable AppCompatTextHelper { 0x101016e, 0x1010393, 0x101016f, 0x1010170, 0x1010392, 0x101016d, 0x1010034 } +int styleable AppCompatTextHelper_android_drawableBottom 0 +int styleable AppCompatTextHelper_android_drawableEnd 1 +int styleable AppCompatTextHelper_android_drawableLeft 2 +int styleable AppCompatTextHelper_android_drawableRight 3 +int styleable AppCompatTextHelper_android_drawableStart 4 +int styleable AppCompatTextHelper_android_drawableTop 5 +int styleable AppCompatTextHelper_android_textAppearance 6 +int[] styleable AppCompatTextView { 0x1010034, 0x7f040048, 0x7f040049, 0x7f04004a, 0x7f04004b, 0x7f04004c, 0x7f040168, 0x7f040169, 0x7f04016a, 0x7f04016b, 0x7f04016d, 0x7f04016e, 0x7f04016f, 0x7f040170, 0x7f0401b2, 0x7f0401ca, 0x7f0401d3, 0x7f04022d, 0x7f040284, 0x7f0403fe, 0x7f040420 } +int styleable AppCompatTextView_android_textAppearance 0 +int styleable AppCompatTextView_autoSizeMaxTextSize 1 +int styleable AppCompatTextView_autoSizeMinTextSize 2 +int styleable AppCompatTextView_autoSizePresetSizes 3 +int styleable AppCompatTextView_autoSizeStepGranularity 4 +int styleable AppCompatTextView_autoSizeTextType 5 +int styleable AppCompatTextView_drawableBottomCompat 6 +int styleable AppCompatTextView_drawableEndCompat 7 +int styleable AppCompatTextView_drawableLeftCompat 8 +int styleable AppCompatTextView_drawableRightCompat 9 +int styleable AppCompatTextView_drawableStartCompat 10 +int styleable AppCompatTextView_drawableTint 11 +int styleable AppCompatTextView_drawableTintMode 12 +int styleable AppCompatTextView_drawableTopCompat 13 +int styleable AppCompatTextView_firstBaselineToTopHeight 14 +int styleable AppCompatTextView_fontFamily 15 +int styleable AppCompatTextView_fontVariationSettings 16 +int styleable AppCompatTextView_lastBaselineToBottomHeight 17 +int styleable AppCompatTextView_lineHeight 18 +int styleable AppCompatTextView_textAllCaps 19 +int styleable AppCompatTextView_textLocale 20 +int[] styleable AppCompatTheme { 0x7f040008, 0x7f040009, 0x7f04000a, 0x7f04000b, 0x7f04000c, 0x7f04000d, 0x7f04000e, 0x7f04000f, 0x7f040010, 0x7f040011, 0x7f040012, 0x7f040013, 0x7f040014, 0x7f040016, 0x7f040017, 0x7f040018, 0x7f040019, 0x7f04001a, 0x7f04001b, 0x7f04001c, 0x7f04001d, 0x7f04001e, 0x7f04001f, 0x7f040020, 0x7f040021, 0x7f040022, 0x7f040023, 0x7f040024, 0x7f040025, 0x7f040026, 0x7f040027, 0x7f040028, 0x7f04002c, 0x7f040032, 0x7f040033, 0x7f040034, 0x7f040035, 0x10100ae, 0x1010057, 0x7f040047, 0x7f040073, 0x7f040087, 0x7f040088, 0x7f040089, 0x7f04008a, 0x7f04008b, 0x7f040090, 0x7f040091, 0x7f0400a8, 0x7f0400b1, 0x7f0400e8, 0x7f0400e9, 0x7f0400ea, 0x7f0400eb, 0x7f0400ec, 0x7f0400ed, 0x7f0400ee, 0x7f0400f5, 0x7f0400f6, 0x7f0400fc, 0x7f040115, 0x7f040152, 0x7f040153, 0x7f040154, 0x7f04015b, 0x7f04015d, 0x7f040172, 0x7f040173, 0x7f040176, 0x7f040177, 0x7f040178, 0x7f0401ec, 0x7f0401fb, 0x7f040287, 0x7f040288, 0x7f040289, 0x7f04028a, 0x7f04028d, 0x7f04028e, 0x7f04028f, 0x7f040290, 0x7f040291, 0x7f040292, 0x7f040293, 0x7f040294, 0x7f040295, 0x7f040315, 0x7f040316, 0x7f040317, 0x7f040333, 0x7f040335, 0x7f04034c, 0x7f04034e, 0x7f04034f, 0x7f040350, 0x7f04038d, 0x7f04038e, 0x7f04038f, 0x7f040390, 0x7f0403b3, 0x7f0403b4, 0x7f0403dd, 0x7f040409, 0x7f04040b, 0x7f04040c, 0x7f04040d, 0x7f04040f, 0x7f040410, 0x7f040411, 0x7f040412, 0x7f04041a, 0x7f04041b, 0x7f04044c, 0x7f04044d, 0x7f04044e, 0x7f04044f, 0x7f040477, 0x7f040485, 0x7f040486, 0x7f040487, 0x7f040488, 0x7f040489, 0x7f04048a, 0x7f04048b, 0x7f04048c, 0x7f04048d, 0x7f04048e } +int styleable AppCompatTheme_actionBarDivider 0 +int styleable AppCompatTheme_actionBarItemBackground 1 +int styleable AppCompatTheme_actionBarPopupTheme 2 +int styleable AppCompatTheme_actionBarSize 3 +int styleable AppCompatTheme_actionBarSplitStyle 4 +int styleable AppCompatTheme_actionBarStyle 5 +int styleable AppCompatTheme_actionBarTabBarStyle 6 +int styleable AppCompatTheme_actionBarTabStyle 7 +int styleable AppCompatTheme_actionBarTabTextStyle 8 +int styleable AppCompatTheme_actionBarTheme 9 +int styleable AppCompatTheme_actionBarWidgetTheme 10 +int styleable AppCompatTheme_actionButtonStyle 11 +int styleable AppCompatTheme_actionDropDownStyle 12 +int styleable AppCompatTheme_actionMenuTextAppearance 13 +int styleable AppCompatTheme_actionMenuTextColor 14 +int styleable AppCompatTheme_actionModeBackground 15 +int styleable AppCompatTheme_actionModeCloseButtonStyle 16 +int styleable AppCompatTheme_actionModeCloseContentDescription 17 +int styleable AppCompatTheme_actionModeCloseDrawable 18 +int styleable AppCompatTheme_actionModeCopyDrawable 19 +int styleable AppCompatTheme_actionModeCutDrawable 20 +int styleable AppCompatTheme_actionModeFindDrawable 21 +int styleable AppCompatTheme_actionModePasteDrawable 22 +int styleable AppCompatTheme_actionModePopupWindowStyle 23 +int styleable AppCompatTheme_actionModeSelectAllDrawable 24 +int styleable AppCompatTheme_actionModeShareDrawable 25 +int styleable AppCompatTheme_actionModeSplitBackground 26 +int styleable AppCompatTheme_actionModeStyle 27 +int styleable AppCompatTheme_actionModeTheme 28 +int styleable AppCompatTheme_actionModeWebSearchDrawable 29 +int styleable AppCompatTheme_actionOverflowButtonStyle 30 +int styleable AppCompatTheme_actionOverflowMenuStyle 31 +int styleable AppCompatTheme_activityChooserViewStyle 32 +int styleable AppCompatTheme_alertDialogButtonGroupStyle 33 +int styleable AppCompatTheme_alertDialogCenterButtons 34 +int styleable AppCompatTheme_alertDialogStyle 35 +int styleable AppCompatTheme_alertDialogTheme 36 +int styleable AppCompatTheme_android_windowAnimationStyle 37 +int styleable AppCompatTheme_android_windowIsFloating 38 +int styleable AppCompatTheme_autoCompleteTextViewStyle 39 +int styleable AppCompatTheme_borderlessButtonStyle 40 +int styleable AppCompatTheme_buttonBarButtonStyle 41 +int styleable AppCompatTheme_buttonBarNegativeButtonStyle 42 +int styleable AppCompatTheme_buttonBarNeutralButtonStyle 43 +int styleable AppCompatTheme_buttonBarPositiveButtonStyle 44 +int styleable AppCompatTheme_buttonBarStyle 45 +int styleable AppCompatTheme_buttonStyle 46 +int styleable AppCompatTheme_buttonStyleSmall 47 +int styleable AppCompatTheme_checkboxStyle 48 +int styleable AppCompatTheme_checkedTextViewStyle 49 +int styleable AppCompatTheme_colorAccent 50 +int styleable AppCompatTheme_colorBackgroundFloating 51 +int styleable AppCompatTheme_colorButtonNormal 52 +int styleable AppCompatTheme_colorControlActivated 53 +int styleable AppCompatTheme_colorControlHighlight 54 +int styleable AppCompatTheme_colorControlNormal 55 +int styleable AppCompatTheme_colorError 56 +int styleable AppCompatTheme_colorPrimary 57 +int styleable AppCompatTheme_colorPrimaryDark 58 +int styleable AppCompatTheme_colorSwitchThumbNormal 59 +int styleable AppCompatTheme_controlBackground 60 +int styleable AppCompatTheme_dialogCornerRadius 61 +int styleable AppCompatTheme_dialogPreferredPadding 62 +int styleable AppCompatTheme_dialogTheme 63 +int styleable AppCompatTheme_dividerHorizontal 64 +int styleable AppCompatTheme_dividerVertical 65 +int styleable AppCompatTheme_dropDownListViewStyle 66 +int styleable AppCompatTheme_dropdownListPreferredItemHeight 67 +int styleable AppCompatTheme_editTextBackground 68 +int styleable AppCompatTheme_editTextColor 69 +int styleable AppCompatTheme_editTextStyle 70 +int styleable AppCompatTheme_homeAsUpIndicator 71 +int styleable AppCompatTheme_imageButtonStyle 72 +int styleable AppCompatTheme_listChoiceBackgroundIndicator 73 +int styleable AppCompatTheme_listChoiceIndicatorMultipleAnimated 74 +int styleable AppCompatTheme_listChoiceIndicatorSingleAnimated 75 +int styleable AppCompatTheme_listDividerAlertDialog 76 +int styleable AppCompatTheme_listMenuViewStyle 77 +int styleable AppCompatTheme_listPopupWindowStyle 78 +int styleable AppCompatTheme_listPreferredItemHeight 79 +int styleable AppCompatTheme_listPreferredItemHeightLarge 80 +int styleable AppCompatTheme_listPreferredItemHeightSmall 81 +int styleable AppCompatTheme_listPreferredItemPaddingEnd 82 +int styleable AppCompatTheme_listPreferredItemPaddingLeft 83 +int styleable AppCompatTheme_listPreferredItemPaddingRight 84 +int styleable AppCompatTheme_listPreferredItemPaddingStart 85 +int styleable AppCompatTheme_panelBackground 86 +int styleable AppCompatTheme_panelMenuListTheme 87 +int styleable AppCompatTheme_panelMenuListWidth 88 +int styleable AppCompatTheme_popupMenuStyle 89 +int styleable AppCompatTheme_popupWindowStyle 90 +int styleable AppCompatTheme_radioButtonStyle 91 +int styleable AppCompatTheme_ratingBarStyle 92 +int styleable AppCompatTheme_ratingBarStyleIndicator 93 +int styleable AppCompatTheme_ratingBarStyleSmall 94 +int styleable AppCompatTheme_searchViewStyle 95 +int styleable AppCompatTheme_seekBarStyle 96 +int styleable AppCompatTheme_selectableItemBackground 97 +int styleable AppCompatTheme_selectableItemBackgroundBorderless 98 +int styleable AppCompatTheme_spinnerDropDownItemStyle 99 +int styleable AppCompatTheme_spinnerStyle 100 +int styleable AppCompatTheme_switchStyle 101 +int styleable AppCompatTheme_textAppearanceLargePopupMenu 102 +int styleable AppCompatTheme_textAppearanceListItem 103 +int styleable AppCompatTheme_textAppearanceListItemSecondary 104 +int styleable AppCompatTheme_textAppearanceListItemSmall 105 +int styleable AppCompatTheme_textAppearancePopupMenuHeader 106 +int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 107 +int styleable AppCompatTheme_textAppearanceSearchResultTitle 108 +int styleable AppCompatTheme_textAppearanceSmallPopupMenu 109 +int styleable AppCompatTheme_textColorAlertDialogListItem 110 +int styleable AppCompatTheme_textColorSearchUrl 111 +int styleable AppCompatTheme_toolbarNavigationButtonStyle 112 +int styleable AppCompatTheme_toolbarStyle 113 +int styleable AppCompatTheme_tooltipForegroundColor 114 +int styleable AppCompatTheme_tooltipFrameBackground 115 +int styleable AppCompatTheme_viewInflaterClass 116 +int styleable AppCompatTheme_windowActionBar 117 +int styleable AppCompatTheme_windowActionBarOverlay 118 +int styleable AppCompatTheme_windowActionModeOverlay 119 +int styleable AppCompatTheme_windowFixedHeightMajor 120 +int styleable AppCompatTheme_windowFixedHeightMinor 121 +int styleable AppCompatTheme_windowFixedWidthMajor 122 +int styleable AppCompatTheme_windowFixedWidthMinor 123 +int styleable AppCompatTheme_windowMinWidthMajor 124 +int styleable AppCompatTheme_windowMinWidthMinor 125 +int styleable AppCompatTheme_windowNoTitle 126 +int[] styleable AspectRatioFrameLayout { 0x7f04035d } +int styleable AspectRatioFrameLayout_resize_mode 0 +int[] styleable AutoScannerView { 0x7f040084, 0x7f040085, 0x7f040298, 0x7f040383, 0x7f0403a3, 0x7f040452, 0x7f040453, 0x7f040467, 0x7f040468, 0x7f040469 } +int styleable AutoScannerView_btmText 0 +int styleable AutoScannerView_btmTextSize 1 +int styleable AutoScannerView_maskColor 2 +int styleable AutoScannerView_scanline 3 +int styleable AutoScannerView_showRectLine 4 +int styleable AutoScannerView_topText 5 +int styleable AutoScannerView_topTextSize 6 +int styleable AutoScannerView_triAngleColor 7 +int styleable AutoScannerView_triAngleLength 8 +int styleable AutoScannerView_triAngleWidth 9 +int[] styleable Badge { 0x7f040051, 0x7f04005c, 0x7f04005e, 0x7f0401ee, 0x7f0402b8, 0x7f040301, 0x7f040475 } +int styleable Badge_backgroundColor 0 +int styleable Badge_badgeGravity 1 +int styleable Badge_badgeTextColor 2 +int styleable Badge_horizontalOffset 3 +int styleable Badge_maxCharacterCount 4 +int styleable Badge_number 5 +int styleable Badge_verticalOffset 6 +int[] styleable BaseProgressIndicator { 0x1010139, 0x7f0401e3, 0x7f040202, 0x7f0402c4, 0x7f040399, 0x7f04039b, 0x7f040459, 0x7f04045c, 0x7f04045e } +int styleable BaseProgressIndicator_android_indeterminate 0 +int styleable BaseProgressIndicator_hideAnimationBehavior 1 +int styleable BaseProgressIndicator_indicatorColor 2 +int styleable BaseProgressIndicator_minHideDelay 3 +int styleable BaseProgressIndicator_showAnimationBehavior 4 +int styleable BaseProgressIndicator_showDelay 5 +int styleable BaseProgressIndicator_trackColor 6 +int styleable BaseProgressIndicator_trackCornerRadius 7 +int styleable BaseProgressIndicator_trackThickness 8 +int[] styleable BottomAppBar { 0x7f04005a, 0x7f040181, 0x7f0401a2, 0x7f0401a3, 0x7f0401a4, 0x7f0401a5, 0x7f0401a6, 0x7f0401e6, 0x7f04030e, 0x7f040310, 0x7f040311 } +int styleable BottomAppBar_backgroundTint 0 +int styleable BottomAppBar_elevation 1 +int styleable BottomAppBar_fabAlignmentMode 2 +int styleable BottomAppBar_fabAnimationMode 3 +int styleable BottomAppBar_fabCradleMargin 4 +int styleable BottomAppBar_fabCradleRoundedCornerRadius 5 +int styleable BottomAppBar_fabCradleVerticalOffset 6 +int styleable BottomAppBar_hideOnScroll 7 +int styleable BottomAppBar_paddingBottomSystemWindowInsets 8 +int styleable BottomAppBar_paddingLeftSystemWindowInsets 9 +int styleable BottomAppBar_paddingRightSystemWindowInsets 10 +int[] styleable BottomNavigationView { 0x7f04005a, 0x7f040181, 0x7f04020b, 0x7f04020e, 0x7f040210, 0x7f040211, 0x7f040214, 0x7f040220, 0x7f040221, 0x7f040222, 0x7f04022c, 0x7f0402c0 } +int styleable BottomNavigationView_backgroundTint 0 +int styleable BottomNavigationView_elevation 1 +int styleable BottomNavigationView_itemBackground 2 +int styleable BottomNavigationView_itemHorizontalTranslationEnabled 3 +int styleable BottomNavigationView_itemIconSize 4 +int styleable BottomNavigationView_itemIconTint 5 +int styleable BottomNavigationView_itemRippleColor 6 +int styleable BottomNavigationView_itemTextAppearanceActive 7 +int styleable BottomNavigationView_itemTextAppearanceInactive 8 +int styleable BottomNavigationView_itemTextColor 9 +int styleable BottomNavigationView_labelVisibilityMode 10 +int styleable BottomNavigationView_menu 11 +int[] styleable BottomSheetBehavior_Layout { 0x1010440, 0x101011f, 0x7f04005a, 0x7f040066, 0x7f040067, 0x7f040068, 0x7f040069, 0x7f04006a, 0x7f04006c, 0x7f04006d, 0x7f04006e, 0x7f0401d9, 0x7f04030e, 0x7f040310, 0x7f040311, 0x7f040314, 0x7f040394, 0x7f040397 } +int styleable BottomSheetBehavior_Layout_android_elevation 0 +int styleable BottomSheetBehavior_Layout_android_maxWidth 1 +int styleable BottomSheetBehavior_Layout_backgroundTint 2 +int styleable BottomSheetBehavior_Layout_behavior_draggable 3 +int styleable BottomSheetBehavior_Layout_behavior_expandedOffset 4 +int styleable BottomSheetBehavior_Layout_behavior_fitToContents 5 +int styleable BottomSheetBehavior_Layout_behavior_halfExpandedRatio 6 +int styleable BottomSheetBehavior_Layout_behavior_hideable 7 +int styleable BottomSheetBehavior_Layout_behavior_peekHeight 8 +int styleable BottomSheetBehavior_Layout_behavior_saveFlags 9 +int styleable BottomSheetBehavior_Layout_behavior_skipCollapsed 10 +int styleable BottomSheetBehavior_Layout_gestureInsetBottomIgnored 11 +int styleable BottomSheetBehavior_Layout_paddingBottomSystemWindowInsets 12 +int styleable BottomSheetBehavior_Layout_paddingLeftSystemWindowInsets 13 +int styleable BottomSheetBehavior_Layout_paddingRightSystemWindowInsets 14 +int styleable BottomSheetBehavior_Layout_paddingTopSystemWindowInsets 15 +int styleable BottomSheetBehavior_Layout_shapeAppearance 16 +int styleable BottomSheetBehavior_Layout_shapeAppearanceOverlay 17 +int[] styleable ButtonBarContainerTheme { 0x7f040087, 0x7f04008b } +int styleable ButtonBarContainerTheme_buttonBarButtonStyle 0 +int styleable ButtonBarContainerTheme_buttonBarStyle 1 +int[] styleable ButtonBarLayout { 0x7f040038 } +int styleable ButtonBarLayout_allowStacking 0 +int[] styleable CameraBridgeViewBase { 0x7f040094, 0x7f0403a6 } +int styleable CameraBridgeViewBase_camera_id 0 +int styleable CameraBridgeViewBase_show_fps 1 +int[] styleable CardView { 0x1010140, 0x101013f, 0x7f040095, 0x7f040096, 0x7f040097, 0x7f040099, 0x7f04009a, 0x7f04009b, 0x7f04010c, 0x7f04010d, 0x7f04010f, 0x7f040110, 0x7f040112 } +int styleable CardView_android_minHeight 0 +int styleable CardView_android_minWidth 1 +int styleable CardView_cardBackgroundColor 2 +int styleable CardView_cardCornerRadius 3 +int styleable CardView_cardElevation 4 +int styleable CardView_cardMaxElevation 5 +int styleable CardView_cardPreventCornerOverlap 6 +int styleable CardView_cardUseCompatPadding 7 +int styleable CardView_contentPadding 8 +int styleable CardView_contentPaddingBottom 9 +int styleable CardView_contentPaddingLeft 10 +int styleable CardView_contentPaddingRight 11 +int styleable CardView_contentPaddingTop 12 +int[] styleable Carousel { 0x7f04009d, 0x7f04009e, 0x7f04009f, 0x7f0400a0, 0x7f0400a1, 0x7f0400a2, 0x7f0400a3, 0x7f0400a4, 0x7f0400a5, 0x7f0400a6 } +int styleable Carousel_carousel_backwardTransition 0 +int styleable Carousel_carousel_emptyViewsBehavior 1 +int styleable Carousel_carousel_firstView 2 +int styleable Carousel_carousel_forwardTransition 3 +int styleable Carousel_carousel_infinite 4 +int styleable Carousel_carousel_nextState 5 +int styleable Carousel_carousel_previousState 6 +int styleable Carousel_carousel_touchUpMode 7 +int styleable Carousel_carousel_touchUp_dampeningFactor 8 +int styleable Carousel_carousel_touchUp_velocityThreshold 9 +int[] styleable Chip { 0x10101e5, 0x10100ab, 0x101011f, 0x101014f, 0x1010034, 0x1010098, 0x1010095, 0x7f0400ab, 0x7f0400ac, 0x7f0400af, 0x7f0400b0, 0x7f0400b2, 0x7f0400b3, 0x7f0400b4, 0x7f0400b6, 0x7f0400b7, 0x7f0400b8, 0x7f0400b9, 0x7f0400ba, 0x7f0400bb, 0x7f0400bc, 0x7f0400c1, 0x7f0400c2, 0x7f0400c3, 0x7f0400c5, 0x7f0400d9, 0x7f0400da, 0x7f0400db, 0x7f0400dc, 0x7f0400dd, 0x7f0400de, 0x7f0400df, 0x7f04018d, 0x7f0401e4, 0x7f0401f1, 0x7f0401f5, 0x7f040362, 0x7f040394, 0x7f040397, 0x7f0403a1, 0x7f04041c, 0x7f040425 } +int styleable Chip_android_checkable 0 +int styleable Chip_android_ellipsize 1 +int styleable Chip_android_maxWidth 2 +int styleable Chip_android_text 3 +int styleable Chip_android_textAppearance 4 +int styleable Chip_android_textColor 5 +int styleable Chip_android_textSize 6 +int styleable Chip_checkedIcon 7 +int styleable Chip_checkedIconEnabled 8 +int styleable Chip_checkedIconTint 9 +int styleable Chip_checkedIconVisible 10 +int styleable Chip_chipBackgroundColor 11 +int styleable Chip_chipCornerRadius 12 +int styleable Chip_chipEndPadding 13 +int styleable Chip_chipIcon 14 +int styleable Chip_chipIconEnabled 15 +int styleable Chip_chipIconSize 16 +int styleable Chip_chipIconTint 17 +int styleable Chip_chipIconVisible 18 +int styleable Chip_chipMinHeight 19 +int styleable Chip_chipMinTouchTargetSize 20 +int styleable Chip_chipStartPadding 21 +int styleable Chip_chipStrokeColor 22 +int styleable Chip_chipStrokeWidth 23 +int styleable Chip_chipSurfaceColor 24 +int styleable Chip_closeIcon 25 +int styleable Chip_closeIconEnabled 26 +int styleable Chip_closeIconEndPadding 27 +int styleable Chip_closeIconSize 28 +int styleable Chip_closeIconStartPadding 29 +int styleable Chip_closeIconTint 30 +int styleable Chip_closeIconVisible 31 +int styleable Chip_ensureMinTouchTargetSize 32 +int styleable Chip_hideMotionSpec 33 +int styleable Chip_iconEndPadding 34 +int styleable Chip_iconStartPadding 35 +int styleable Chip_rippleColor 36 +int styleable Chip_shapeAppearance 37 +int styleable Chip_shapeAppearanceOverlay 38 +int styleable Chip_showMotionSpec 39 +int styleable Chip_textEndPadding 40 +int styleable Chip_textStartPadding 41 +int[] styleable ChipGroup { 0x7f0400aa, 0x7f0400bd, 0x7f0400be, 0x7f0400bf, 0x7f040391, 0x7f0403aa, 0x7f0403ab } +int styleable ChipGroup_checkedChip 0 +int styleable ChipGroup_chipSpacing 1 +int styleable ChipGroup_chipSpacingHorizontal 2 +int styleable ChipGroup_chipSpacingVertical 3 +int styleable ChipGroup_selectionRequired 4 +int styleable ChipGroup_singleLine 5 +int styleable ChipGroup_singleSelection 6 +int[] styleable CircleImageView { 0x7f0400cd, 0x7f0400ce, 0x7f0400cf, 0x7f0400d0 } +int styleable CircleImageView_civ_border_color 0 +int styleable CircleImageView_civ_border_overlay 1 +int styleable CircleImageView_civ_border_width 2 +int styleable CircleImageView_civ_circle_background_color 3 +int[] styleable CircularProgressDrawable { 0x7f040129, 0x7f04012a, 0x7f04012b, 0x7f04012c, 0x7f04012d, 0x7f04012e, 0x7f04012f, 0x7f040130, 0x7f040131, 0x7f040132, 0x7f040133, 0x7f040134, 0x7f040135, 0x7f040136, 0x7f040137, 0x7f040138, 0x7f040139, 0x7f040346 } +int styleable CircularProgressDrawable_cpd_inAnimDuration 0 +int styleable CircularProgressDrawable_cpd_inStepColors 1 +int styleable CircularProgressDrawable_cpd_inStepPercent 2 +int styleable CircularProgressDrawable_cpd_initialAngle 3 +int styleable CircularProgressDrawable_cpd_keepDuration 4 +int styleable CircularProgressDrawable_cpd_maxSweepAngle 5 +int styleable CircularProgressDrawable_cpd_minSweepAngle 6 +int styleable CircularProgressDrawable_cpd_outAnimDuration 7 +int styleable CircularProgressDrawable_cpd_padding 8 +int styleable CircularProgressDrawable_cpd_reverse 9 +int styleable CircularProgressDrawable_cpd_rotateDuration 10 +int styleable CircularProgressDrawable_cpd_strokeColor 11 +int styleable CircularProgressDrawable_cpd_strokeColors 12 +int styleable CircularProgressDrawable_cpd_strokeSecondaryColor 13 +int styleable CircularProgressDrawable_cpd_strokeSize 14 +int styleable CircularProgressDrawable_cpd_transformDuration 15 +int styleable CircularProgressDrawable_cpd_transformInterpolator 16 +int styleable CircularProgressDrawable_pv_progressMode 17 +int[] styleable CircularProgressIndicator { 0x7f040203, 0x7f040205, 0x7f040206 } +int styleable CircularProgressIndicator_indicatorDirectionCircular 0 +int styleable CircularProgressIndicator_indicatorInset 1 +int styleable CircularProgressIndicator_indicatorSize 2 +int[] styleable CircularProgressView { 0x7f04004e, 0x7f04004f, 0x7f04033c, 0x7f04033d, 0x7f04033e, 0x7f04033f, 0x7f040340 } +int styleable CircularProgressView_backColor 0 +int styleable CircularProgressView_backWidth 1 +int styleable CircularProgressView_progColor 2 +int styleable CircularProgressView_progFirstColor 3 +int styleable CircularProgressView_progStartColor 4 +int styleable CircularProgressView_progWidth 5 +int styleable CircularProgressView_progress 6 +int[] styleable ClockFaceView { 0x7f0400d5, 0x7f0400d8 } +int styleable ClockFaceView_clockFaceBackgroundColor 0 +int styleable ClockFaceView_clockNumberTextColor 1 +int[] styleable ClockHandView { 0x7f0400d6, 0x7f0402b0, 0x7f040392 } +int styleable ClockHandView_clockHandColor 0 +int styleable ClockHandView_materialCircleRadius 1 +int styleable ClockHandView_selectorSize 2 +int[] styleable CollapsingToolbarLayout { 0x7f0400e4, 0x7f0400e5, 0x7f040113, 0x7f040198, 0x7f040199, 0x7f04019a, 0x7f04019b, 0x7f04019c, 0x7f04019d, 0x7f04019e, 0x7f0401a1, 0x7f0401d5, 0x7f0402bc, 0x7f040384, 0x7f040386, 0x7f0403cb, 0x7f04043e, 0x7f040440, 0x7f040441, 0x7f04044b } +int styleable CollapsingToolbarLayout_collapsedTitleGravity 0 +int styleable CollapsingToolbarLayout_collapsedTitleTextAppearance 1 +int styleable CollapsingToolbarLayout_contentScrim 2 +int styleable CollapsingToolbarLayout_expandedTitleGravity 3 +int styleable CollapsingToolbarLayout_expandedTitleMargin 4 +int styleable CollapsingToolbarLayout_expandedTitleMarginBottom 5 +int styleable CollapsingToolbarLayout_expandedTitleMarginEnd 6 +int styleable CollapsingToolbarLayout_expandedTitleMarginStart 7 +int styleable CollapsingToolbarLayout_expandedTitleMarginTop 8 +int styleable CollapsingToolbarLayout_expandedTitleTextAppearance 9 +int styleable CollapsingToolbarLayout_extraMultilineHeightEnabled 10 +int styleable CollapsingToolbarLayout_forceApplySystemWindowInsetTop 11 +int styleable CollapsingToolbarLayout_maxLines 12 +int styleable CollapsingToolbarLayout_scrimAnimationDuration 13 +int styleable CollapsingToolbarLayout_scrimVisibleHeightTrigger 14 +int styleable CollapsingToolbarLayout_statusBarScrim 15 +int styleable CollapsingToolbarLayout_title 16 +int styleable CollapsingToolbarLayout_titleCollapseMode 17 +int styleable CollapsingToolbarLayout_titleEnabled 18 +int styleable CollapsingToolbarLayout_toolbarId 19 +int[] styleable CollapsingToolbarLayout_Layout { 0x7f040236, 0x7f040237 } +int styleable CollapsingToolbarLayout_Layout_layout_collapseMode 0 +int styleable CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier 1 +int[] styleable ColorStateListItem { 0x7f040039, 0x101031f, 0x10101a5 } +int styleable ColorStateListItem_alpha 0 +int styleable ColorStateListItem_android_alpha 1 +int styleable ColorStateListItem_android_color 2 +int[] styleable CompoundButton { 0x1010107, 0x7f04008c, 0x7f040092, 0x7f040093 } +int styleable CompoundButton_android_button 0 +int styleable CompoundButton_buttonCompat 1 +int styleable CompoundButton_buttonTint 2 +int styleable CompoundButton_buttonTintMode 3 +int[] styleable Constraint { 0x101031f, 0x1010440, 0x10100d0, 0x10100f5, 0x10100fa, 0x10103b6, 0x10100f7, 0x10100f9, 0x10103b5, 0x10100f8, 0x10100f4, 0x1010120, 0x101011f, 0x1010140, 0x101013f, 0x10100c4, 0x1010326, 0x1010327, 0x1010328, 0x1010324, 0x1010325, 0x1010320, 0x1010321, 0x1010322, 0x1010323, 0x10103fa, 0x10100dc, 0x7f04003c, 0x7f04003d, 0x7f04003e, 0x7f040061, 0x7f040062, 0x7f040063, 0x7f0400a7, 0x7f040101, 0x7f040102, 0x7f040167, 0x7f0401b6, 0x7f0401b7, 0x7f0401b8, 0x7f0401b9, 0x7f0401ba, 0x7f0401bb, 0x7f0401bc, 0x7f0401bd, 0x7f0401be, 0x7f0401bf, 0x7f0401c0, 0x7f0401c1, 0x7f0401c2, 0x7f0401c4, 0x7f0401c5, 0x7f0401c6, 0x7f0401c7, 0x7f0401c8, 0x7f040238, 0x7f040239, 0x7f04023a, 0x7f04023b, 0x7f04023c, 0x7f04023d, 0x7f04023e, 0x7f04023f, 0x7f040240, 0x7f040241, 0x7f040242, 0x7f040243, 0x7f040244, 0x7f040245, 0x7f040246, 0x7f040247, 0x7f040248, 0x7f040249, 0x7f04024a, 0x7f04024b, 0x7f04024c, 0x7f04024d, 0x7f04024e, 0x7f04024f, 0x7f040250, 0x7f040251, 0x7f040252, 0x7f040253, 0x7f040254, 0x7f040255, 0x7f040256, 0x7f040257, 0x7f040258, 0x7f040259, 0x7f04025a, 0x7f04025b, 0x7f04025c, 0x7f04025d, 0x7f04025e, 0x7f04025f, 0x7f040260, 0x7f040261, 0x7f040262, 0x7f040263, 0x7f040264, 0x7f040265, 0x7f040267, 0x7f040268, 0x7f04026c, 0x7f04026d, 0x7f04026e, 0x7f04026f, 0x7f040270, 0x7f040271, 0x7f040272, 0x7f040275, 0x7f04027f, 0x7f0402f2, 0x7f0402f3, 0x7f04031d, 0x7f040324, 0x7f040331, 0x7f040347, 0x7f040348, 0x7f040349, 0x7f040461, 0x7f040463, 0x7f040465, 0x7f04047c } +int styleable Constraint_android_alpha 0 +int styleable Constraint_android_elevation 1 +int styleable Constraint_android_id 2 +int styleable Constraint_android_layout_height 3 +int styleable Constraint_android_layout_marginBottom 4 +int styleable Constraint_android_layout_marginEnd 5 +int styleable Constraint_android_layout_marginLeft 6 +int styleable Constraint_android_layout_marginRight 7 +int styleable Constraint_android_layout_marginStart 8 +int styleable Constraint_android_layout_marginTop 9 +int styleable Constraint_android_layout_width 10 +int styleable Constraint_android_maxHeight 11 +int styleable Constraint_android_maxWidth 12 +int styleable Constraint_android_minHeight 13 +int styleable Constraint_android_minWidth 14 +int styleable Constraint_android_orientation 15 +int styleable Constraint_android_rotation 16 +int styleable Constraint_android_rotationX 17 +int styleable Constraint_android_rotationY 18 +int styleable Constraint_android_scaleX 19 +int styleable Constraint_android_scaleY 20 +int styleable Constraint_android_transformPivotX 21 +int styleable Constraint_android_transformPivotY 22 +int styleable Constraint_android_translationX 23 +int styleable Constraint_android_translationY 24 +int styleable Constraint_android_translationZ 25 +int styleable Constraint_android_visibility 26 +int styleable Constraint_animateCircleAngleTo 27 +int styleable Constraint_animateRelativeTo 28 +int styleable Constraint_animate_relativeTo 29 +int styleable Constraint_barrierAllowsGoneWidgets 30 +int styleable Constraint_barrierDirection 31 +int styleable Constraint_barrierMargin 32 +int styleable Constraint_chainUseRtl 33 +int styleable Constraint_constraint_referenced_ids 34 +int styleable Constraint_constraint_referenced_tags 35 +int styleable Constraint_drawPath 36 +int styleable Constraint_flow_firstHorizontalBias 37 +int styleable Constraint_flow_firstHorizontalStyle 38 +int styleable Constraint_flow_firstVerticalBias 39 +int styleable Constraint_flow_firstVerticalStyle 40 +int styleable Constraint_flow_horizontalAlign 41 +int styleable Constraint_flow_horizontalBias 42 +int styleable Constraint_flow_horizontalGap 43 +int styleable Constraint_flow_horizontalStyle 44 +int styleable Constraint_flow_lastHorizontalBias 45 +int styleable Constraint_flow_lastHorizontalStyle 46 +int styleable Constraint_flow_lastVerticalBias 47 +int styleable Constraint_flow_lastVerticalStyle 48 +int styleable Constraint_flow_maxElementsWrap 49 +int styleable Constraint_flow_verticalAlign 50 +int styleable Constraint_flow_verticalBias 51 +int styleable Constraint_flow_verticalGap 52 +int styleable Constraint_flow_verticalStyle 53 +int styleable Constraint_flow_wrapMode 54 +int styleable Constraint_layout_constrainedHeight 55 +int styleable Constraint_layout_constrainedWidth 56 +int styleable Constraint_layout_constraintBaseline_creator 57 +int styleable Constraint_layout_constraintBaseline_toBaselineOf 58 +int styleable Constraint_layout_constraintBaseline_toBottomOf 59 +int styleable Constraint_layout_constraintBaseline_toTopOf 60 +int styleable Constraint_layout_constraintBottom_creator 61 +int styleable Constraint_layout_constraintBottom_toBottomOf 62 +int styleable Constraint_layout_constraintBottom_toTopOf 63 +int styleable Constraint_layout_constraintCircle 64 +int styleable Constraint_layout_constraintCircleAngle 65 +int styleable Constraint_layout_constraintCircleRadius 66 +int styleable Constraint_layout_constraintDimensionRatio 67 +int styleable Constraint_layout_constraintEnd_toEndOf 68 +int styleable Constraint_layout_constraintEnd_toStartOf 69 +int styleable Constraint_layout_constraintGuide_begin 70 +int styleable Constraint_layout_constraintGuide_end 71 +int styleable Constraint_layout_constraintGuide_percent 72 +int styleable Constraint_layout_constraintHeight 73 +int styleable Constraint_layout_constraintHeight_default 74 +int styleable Constraint_layout_constraintHeight_max 75 +int styleable Constraint_layout_constraintHeight_min 76 +int styleable Constraint_layout_constraintHeight_percent 77 +int styleable Constraint_layout_constraintHorizontal_bias 78 +int styleable Constraint_layout_constraintHorizontal_chainStyle 79 +int styleable Constraint_layout_constraintHorizontal_weight 80 +int styleable Constraint_layout_constraintLeft_creator 81 +int styleable Constraint_layout_constraintLeft_toLeftOf 82 +int styleable Constraint_layout_constraintLeft_toRightOf 83 +int styleable Constraint_layout_constraintRight_creator 84 +int styleable Constraint_layout_constraintRight_toLeftOf 85 +int styleable Constraint_layout_constraintRight_toRightOf 86 +int styleable Constraint_layout_constraintStart_toEndOf 87 +int styleable Constraint_layout_constraintStart_toStartOf 88 +int styleable Constraint_layout_constraintTag 89 +int styleable Constraint_layout_constraintTop_creator 90 +int styleable Constraint_layout_constraintTop_toBottomOf 91 +int styleable Constraint_layout_constraintTop_toTopOf 92 +int styleable Constraint_layout_constraintVertical_bias 93 +int styleable Constraint_layout_constraintVertical_chainStyle 94 +int styleable Constraint_layout_constraintVertical_weight 95 +int styleable Constraint_layout_constraintWidth 96 +int styleable Constraint_layout_constraintWidth_default 97 +int styleable Constraint_layout_constraintWidth_max 98 +int styleable Constraint_layout_constraintWidth_min 99 +int styleable Constraint_layout_constraintWidth_percent 100 +int styleable Constraint_layout_editor_absoluteX 101 +int styleable Constraint_layout_editor_absoluteY 102 +int styleable Constraint_layout_goneMarginBaseline 103 +int styleable Constraint_layout_goneMarginBottom 104 +int styleable Constraint_layout_goneMarginEnd 105 +int styleable Constraint_layout_goneMarginLeft 106 +int styleable Constraint_layout_goneMarginRight 107 +int styleable Constraint_layout_goneMarginStart 108 +int styleable Constraint_layout_goneMarginTop 109 +int styleable Constraint_layout_marginBaseline 110 +int styleable Constraint_layout_wrapBehaviorInParent 111 +int styleable Constraint_motionProgress 112 +int styleable Constraint_motionStagger 113 +int styleable Constraint_pathMotionArc 114 +int styleable Constraint_pivotAnchor 115 +int styleable Constraint_polarRelativeTo 116 +int styleable Constraint_quantizeMotionInterpolator 117 +int styleable Constraint_quantizeMotionPhase 118 +int styleable Constraint_quantizeMotionSteps 119 +int styleable Constraint_transformPivotTarget 120 +int styleable Constraint_transitionEasing 121 +int styleable Constraint_transitionPathRotate 122 +int styleable Constraint_visibilityMode 123 +int[] styleable ConstraintLayout_Layout { 0x1010440, 0x10100f5, 0x10100f6, 0x10100fa, 0x10103b6, 0x101053b, 0x10100f7, 0x10100f9, 0x10103b5, 0x10100f8, 0x101053c, 0x10100f4, 0x1010120, 0x101011f, 0x1010140, 0x101013f, 0x10100c4, 0x10100d5, 0x10100d9, 0x10103b4, 0x10100d6, 0x10100d8, 0x10103b3, 0x10100d7, 0x10100dc, 0x7f040061, 0x7f040062, 0x7f040063, 0x7f0400a7, 0x7f0400c8, 0x7f0400c9, 0x7f0400ca, 0x7f0400cb, 0x7f0400cc, 0x7f0400fe, 0x7f040101, 0x7f040102, 0x7f0401b6, 0x7f0401b7, 0x7f0401b8, 0x7f0401b9, 0x7f0401ba, 0x7f0401bb, 0x7f0401bc, 0x7f0401bd, 0x7f0401be, 0x7f0401bf, 0x7f0401c0, 0x7f0401c1, 0x7f0401c2, 0x7f0401c4, 0x7f0401c5, 0x7f0401c6, 0x7f0401c7, 0x7f0401c8, 0x7f04022f, 0x7f040238, 0x7f040239, 0x7f04023a, 0x7f04023b, 0x7f04023c, 0x7f04023d, 0x7f04023e, 0x7f04023f, 0x7f040240, 0x7f040241, 0x7f040242, 0x7f040243, 0x7f040244, 0x7f040245, 0x7f040246, 0x7f040247, 0x7f040248, 0x7f040249, 0x7f04024a, 0x7f04024b, 0x7f04024c, 0x7f04024d, 0x7f04024e, 0x7f04024f, 0x7f040250, 0x7f040251, 0x7f040252, 0x7f040253, 0x7f040254, 0x7f040255, 0x7f040256, 0x7f040257, 0x7f040258, 0x7f040259, 0x7f04025a, 0x7f04025b, 0x7f04025c, 0x7f04025d, 0x7f04025e, 0x7f04025f, 0x7f040260, 0x7f040261, 0x7f040262, 0x7f040263, 0x7f040264, 0x7f040265, 0x7f040267, 0x7f040268, 0x7f04026c, 0x7f04026d, 0x7f04026e, 0x7f04026f, 0x7f040270, 0x7f040271, 0x7f040272, 0x7f040275, 0x7f04027a, 0x7f04027f } +int styleable ConstraintLayout_Layout_android_elevation 0 +int styleable ConstraintLayout_Layout_android_layout_height 1 +int styleable ConstraintLayout_Layout_android_layout_margin 2 +int styleable ConstraintLayout_Layout_android_layout_marginBottom 3 +int styleable ConstraintLayout_Layout_android_layout_marginEnd 4 +int styleable ConstraintLayout_Layout_android_layout_marginHorizontal 5 +int styleable ConstraintLayout_Layout_android_layout_marginLeft 6 +int styleable ConstraintLayout_Layout_android_layout_marginRight 7 +int styleable ConstraintLayout_Layout_android_layout_marginStart 8 +int styleable ConstraintLayout_Layout_android_layout_marginTop 9 +int styleable ConstraintLayout_Layout_android_layout_marginVertical 10 +int styleable ConstraintLayout_Layout_android_layout_width 11 +int styleable ConstraintLayout_Layout_android_maxHeight 12 +int styleable ConstraintLayout_Layout_android_maxWidth 13 +int styleable ConstraintLayout_Layout_android_minHeight 14 +int styleable ConstraintLayout_Layout_android_minWidth 15 +int styleable ConstraintLayout_Layout_android_orientation 16 +int styleable ConstraintLayout_Layout_android_padding 17 +int styleable ConstraintLayout_Layout_android_paddingBottom 18 +int styleable ConstraintLayout_Layout_android_paddingEnd 19 +int styleable ConstraintLayout_Layout_android_paddingLeft 20 +int styleable ConstraintLayout_Layout_android_paddingRight 21 +int styleable ConstraintLayout_Layout_android_paddingStart 22 +int styleable ConstraintLayout_Layout_android_paddingTop 23 +int styleable ConstraintLayout_Layout_android_visibility 24 +int styleable ConstraintLayout_Layout_barrierAllowsGoneWidgets 25 +int styleable ConstraintLayout_Layout_barrierDirection 26 +int styleable ConstraintLayout_Layout_barrierMargin 27 +int styleable ConstraintLayout_Layout_chainUseRtl 28 +int styleable ConstraintLayout_Layout_circularflow_angles 29 +int styleable ConstraintLayout_Layout_circularflow_defaultAngle 30 +int styleable ConstraintLayout_Layout_circularflow_defaultRadius 31 +int styleable ConstraintLayout_Layout_circularflow_radiusInDP 32 +int styleable ConstraintLayout_Layout_circularflow_viewCenter 33 +int styleable ConstraintLayout_Layout_constraintSet 34 +int styleable ConstraintLayout_Layout_constraint_referenced_ids 35 +int styleable ConstraintLayout_Layout_constraint_referenced_tags 36 +int styleable ConstraintLayout_Layout_flow_firstHorizontalBias 37 +int styleable ConstraintLayout_Layout_flow_firstHorizontalStyle 38 +int styleable ConstraintLayout_Layout_flow_firstVerticalBias 39 +int styleable ConstraintLayout_Layout_flow_firstVerticalStyle 40 +int styleable ConstraintLayout_Layout_flow_horizontalAlign 41 +int styleable ConstraintLayout_Layout_flow_horizontalBias 42 +int styleable ConstraintLayout_Layout_flow_horizontalGap 43 +int styleable ConstraintLayout_Layout_flow_horizontalStyle 44 +int styleable ConstraintLayout_Layout_flow_lastHorizontalBias 45 +int styleable ConstraintLayout_Layout_flow_lastHorizontalStyle 46 +int styleable ConstraintLayout_Layout_flow_lastVerticalBias 47 +int styleable ConstraintLayout_Layout_flow_lastVerticalStyle 48 +int styleable ConstraintLayout_Layout_flow_maxElementsWrap 49 +int styleable ConstraintLayout_Layout_flow_verticalAlign 50 +int styleable ConstraintLayout_Layout_flow_verticalBias 51 +int styleable ConstraintLayout_Layout_flow_verticalGap 52 +int styleable ConstraintLayout_Layout_flow_verticalStyle 53 +int styleable ConstraintLayout_Layout_flow_wrapMode 54 +int styleable ConstraintLayout_Layout_layoutDescription 55 +int styleable ConstraintLayout_Layout_layout_constrainedHeight 56 +int styleable ConstraintLayout_Layout_layout_constrainedWidth 57 +int styleable ConstraintLayout_Layout_layout_constraintBaseline_creator 58 +int styleable ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf 59 +int styleable ConstraintLayout_Layout_layout_constraintBaseline_toBottomOf 60 +int styleable ConstraintLayout_Layout_layout_constraintBaseline_toTopOf 61 +int styleable ConstraintLayout_Layout_layout_constraintBottom_creator 62 +int styleable ConstraintLayout_Layout_layout_constraintBottom_toBottomOf 63 +int styleable ConstraintLayout_Layout_layout_constraintBottom_toTopOf 64 +int styleable ConstraintLayout_Layout_layout_constraintCircle 65 +int styleable ConstraintLayout_Layout_layout_constraintCircleAngle 66 +int styleable ConstraintLayout_Layout_layout_constraintCircleRadius 67 +int styleable ConstraintLayout_Layout_layout_constraintDimensionRatio 68 +int styleable ConstraintLayout_Layout_layout_constraintEnd_toEndOf 69 +int styleable ConstraintLayout_Layout_layout_constraintEnd_toStartOf 70 +int styleable ConstraintLayout_Layout_layout_constraintGuide_begin 71 +int styleable ConstraintLayout_Layout_layout_constraintGuide_end 72 +int styleable ConstraintLayout_Layout_layout_constraintGuide_percent 73 +int styleable ConstraintLayout_Layout_layout_constraintHeight 74 +int styleable ConstraintLayout_Layout_layout_constraintHeight_default 75 +int styleable ConstraintLayout_Layout_layout_constraintHeight_max 76 +int styleable ConstraintLayout_Layout_layout_constraintHeight_min 77 +int styleable ConstraintLayout_Layout_layout_constraintHeight_percent 78 +int styleable ConstraintLayout_Layout_layout_constraintHorizontal_bias 79 +int styleable ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle 80 +int styleable ConstraintLayout_Layout_layout_constraintHorizontal_weight 81 +int styleable ConstraintLayout_Layout_layout_constraintLeft_creator 82 +int styleable ConstraintLayout_Layout_layout_constraintLeft_toLeftOf 83 +int styleable ConstraintLayout_Layout_layout_constraintLeft_toRightOf 84 +int styleable ConstraintLayout_Layout_layout_constraintRight_creator 85 +int styleable ConstraintLayout_Layout_layout_constraintRight_toLeftOf 86 +int styleable ConstraintLayout_Layout_layout_constraintRight_toRightOf 87 +int styleable ConstraintLayout_Layout_layout_constraintStart_toEndOf 88 +int styleable ConstraintLayout_Layout_layout_constraintStart_toStartOf 89 +int styleable ConstraintLayout_Layout_layout_constraintTag 90 +int styleable ConstraintLayout_Layout_layout_constraintTop_creator 91 +int styleable ConstraintLayout_Layout_layout_constraintTop_toBottomOf 92 +int styleable ConstraintLayout_Layout_layout_constraintTop_toTopOf 93 +int styleable ConstraintLayout_Layout_layout_constraintVertical_bias 94 +int styleable ConstraintLayout_Layout_layout_constraintVertical_chainStyle 95 +int styleable ConstraintLayout_Layout_layout_constraintVertical_weight 96 +int styleable ConstraintLayout_Layout_layout_constraintWidth 97 +int styleable ConstraintLayout_Layout_layout_constraintWidth_default 98 +int styleable ConstraintLayout_Layout_layout_constraintWidth_max 99 +int styleable ConstraintLayout_Layout_layout_constraintWidth_min 100 +int styleable ConstraintLayout_Layout_layout_constraintWidth_percent 101 +int styleable ConstraintLayout_Layout_layout_editor_absoluteX 102 +int styleable ConstraintLayout_Layout_layout_editor_absoluteY 103 +int styleable ConstraintLayout_Layout_layout_goneMarginBaseline 104 +int styleable ConstraintLayout_Layout_layout_goneMarginBottom 105 +int styleable ConstraintLayout_Layout_layout_goneMarginEnd 106 +int styleable ConstraintLayout_Layout_layout_goneMarginLeft 107 +int styleable ConstraintLayout_Layout_layout_goneMarginRight 108 +int styleable ConstraintLayout_Layout_layout_goneMarginStart 109 +int styleable ConstraintLayout_Layout_layout_goneMarginTop 110 +int styleable ConstraintLayout_Layout_layout_marginBaseline 111 +int styleable ConstraintLayout_Layout_layout_optimizationLevel 112 +int styleable ConstraintLayout_Layout_layout_wrapBehaviorInParent 113 +int[] styleable ConstraintLayout_ReactiveGuide { 0x7f040351, 0x7f040352, 0x7f040353, 0x7f040354 } +int styleable ConstraintLayout_ReactiveGuide_reactiveGuide_animateChange 0 +int styleable ConstraintLayout_ReactiveGuide_reactiveGuide_applyToAllConstraintSets 1 +int styleable ConstraintLayout_ReactiveGuide_reactiveGuide_applyToConstraintSet 2 +int styleable ConstraintLayout_ReactiveGuide_reactiveGuide_valueId 3 +int[] styleable ConstraintLayout_placeholder { 0x7f040104, 0x7f04032a } +int styleable ConstraintLayout_placeholder_content 0 +int styleable ConstraintLayout_placeholder_placeholder_emptyVisibility 1 +int[] styleable ConstraintOverride { 0x101031f, 0x1010440, 0x10100d0, 0x10100f5, 0x10100fa, 0x10103b6, 0x10100f7, 0x10100f9, 0x10103b5, 0x10100f8, 0x10100f4, 0x1010120, 0x101011f, 0x1010140, 0x101013f, 0x10100c4, 0x1010326, 0x1010327, 0x1010328, 0x1010324, 0x1010325, 0x1010320, 0x1010321, 0x1010322, 0x1010323, 0x10103fa, 0x10100dc, 0x7f04003c, 0x7f04003d, 0x7f040061, 0x7f040062, 0x7f040063, 0x7f0400a7, 0x7f040101, 0x7f040167, 0x7f0401b6, 0x7f0401b7, 0x7f0401b8, 0x7f0401b9, 0x7f0401ba, 0x7f0401bb, 0x7f0401bc, 0x7f0401bd, 0x7f0401be, 0x7f0401bf, 0x7f0401c0, 0x7f0401c1, 0x7f0401c2, 0x7f0401c4, 0x7f0401c5, 0x7f0401c6, 0x7f0401c7, 0x7f0401c8, 0x7f040238, 0x7f040239, 0x7f04023a, 0x7f04023e, 0x7f040242, 0x7f040243, 0x7f040244, 0x7f040247, 0x7f040248, 0x7f040249, 0x7f04024a, 0x7f04024b, 0x7f04024c, 0x7f04024d, 0x7f04024e, 0x7f04024f, 0x7f040250, 0x7f040251, 0x7f040252, 0x7f040255, 0x7f04025a, 0x7f04025b, 0x7f04025e, 0x7f04025f, 0x7f040260, 0x7f040261, 0x7f040262, 0x7f040263, 0x7f040264, 0x7f040265, 0x7f040267, 0x7f040268, 0x7f04026c, 0x7f04026d, 0x7f04026e, 0x7f04026f, 0x7f040270, 0x7f040271, 0x7f040272, 0x7f040275, 0x7f04027f, 0x7f0402f2, 0x7f0402f3, 0x7f0402f4, 0x7f04031d, 0x7f040324, 0x7f040331, 0x7f040347, 0x7f040348, 0x7f040349, 0x7f040461, 0x7f040463, 0x7f040465, 0x7f04047c } +int styleable ConstraintOverride_android_alpha 0 +int styleable ConstraintOverride_android_elevation 1 +int styleable ConstraintOverride_android_id 2 +int styleable ConstraintOverride_android_layout_height 3 +int styleable ConstraintOverride_android_layout_marginBottom 4 +int styleable ConstraintOverride_android_layout_marginEnd 5 +int styleable ConstraintOverride_android_layout_marginLeft 6 +int styleable ConstraintOverride_android_layout_marginRight 7 +int styleable ConstraintOverride_android_layout_marginStart 8 +int styleable ConstraintOverride_android_layout_marginTop 9 +int styleable ConstraintOverride_android_layout_width 10 +int styleable ConstraintOverride_android_maxHeight 11 +int styleable ConstraintOverride_android_maxWidth 12 +int styleable ConstraintOverride_android_minHeight 13 +int styleable ConstraintOverride_android_minWidth 14 +int styleable ConstraintOverride_android_orientation 15 +int styleable ConstraintOverride_android_rotation 16 +int styleable ConstraintOverride_android_rotationX 17 +int styleable ConstraintOverride_android_rotationY 18 +int styleable ConstraintOverride_android_scaleX 19 +int styleable ConstraintOverride_android_scaleY 20 +int styleable ConstraintOverride_android_transformPivotX 21 +int styleable ConstraintOverride_android_transformPivotY 22 +int styleable ConstraintOverride_android_translationX 23 +int styleable ConstraintOverride_android_translationY 24 +int styleable ConstraintOverride_android_translationZ 25 +int styleable ConstraintOverride_android_visibility 26 +int styleable ConstraintOverride_animateCircleAngleTo 27 +int styleable ConstraintOverride_animateRelativeTo 28 +int styleable ConstraintOverride_barrierAllowsGoneWidgets 29 +int styleable ConstraintOverride_barrierDirection 30 +int styleable ConstraintOverride_barrierMargin 31 +int styleable ConstraintOverride_chainUseRtl 32 +int styleable ConstraintOverride_constraint_referenced_ids 33 +int styleable ConstraintOverride_drawPath 34 +int styleable ConstraintOverride_flow_firstHorizontalBias 35 +int styleable ConstraintOverride_flow_firstHorizontalStyle 36 +int styleable ConstraintOverride_flow_firstVerticalBias 37 +int styleable ConstraintOverride_flow_firstVerticalStyle 38 +int styleable ConstraintOverride_flow_horizontalAlign 39 +int styleable ConstraintOverride_flow_horizontalBias 40 +int styleable ConstraintOverride_flow_horizontalGap 41 +int styleable ConstraintOverride_flow_horizontalStyle 42 +int styleable ConstraintOverride_flow_lastHorizontalBias 43 +int styleable ConstraintOverride_flow_lastHorizontalStyle 44 +int styleable ConstraintOverride_flow_lastVerticalBias 45 +int styleable ConstraintOverride_flow_lastVerticalStyle 46 +int styleable ConstraintOverride_flow_maxElementsWrap 47 +int styleable ConstraintOverride_flow_verticalAlign 48 +int styleable ConstraintOverride_flow_verticalBias 49 +int styleable ConstraintOverride_flow_verticalGap 50 +int styleable ConstraintOverride_flow_verticalStyle 51 +int styleable ConstraintOverride_flow_wrapMode 52 +int styleable ConstraintOverride_layout_constrainedHeight 53 +int styleable ConstraintOverride_layout_constrainedWidth 54 +int styleable ConstraintOverride_layout_constraintBaseline_creator 55 +int styleable ConstraintOverride_layout_constraintBottom_creator 56 +int styleable ConstraintOverride_layout_constraintCircleAngle 57 +int styleable ConstraintOverride_layout_constraintCircleRadius 58 +int styleable ConstraintOverride_layout_constraintDimensionRatio 59 +int styleable ConstraintOverride_layout_constraintGuide_begin 60 +int styleable ConstraintOverride_layout_constraintGuide_end 61 +int styleable ConstraintOverride_layout_constraintGuide_percent 62 +int styleable ConstraintOverride_layout_constraintHeight 63 +int styleable ConstraintOverride_layout_constraintHeight_default 64 +int styleable ConstraintOverride_layout_constraintHeight_max 65 +int styleable ConstraintOverride_layout_constraintHeight_min 66 +int styleable ConstraintOverride_layout_constraintHeight_percent 67 +int styleable ConstraintOverride_layout_constraintHorizontal_bias 68 +int styleable ConstraintOverride_layout_constraintHorizontal_chainStyle 69 +int styleable ConstraintOverride_layout_constraintHorizontal_weight 70 +int styleable ConstraintOverride_layout_constraintLeft_creator 71 +int styleable ConstraintOverride_layout_constraintRight_creator 72 +int styleable ConstraintOverride_layout_constraintTag 73 +int styleable ConstraintOverride_layout_constraintTop_creator 74 +int styleable ConstraintOverride_layout_constraintVertical_bias 75 +int styleable ConstraintOverride_layout_constraintVertical_chainStyle 76 +int styleable ConstraintOverride_layout_constraintVertical_weight 77 +int styleable ConstraintOverride_layout_constraintWidth 78 +int styleable ConstraintOverride_layout_constraintWidth_default 79 +int styleable ConstraintOverride_layout_constraintWidth_max 80 +int styleable ConstraintOverride_layout_constraintWidth_min 81 +int styleable ConstraintOverride_layout_constraintWidth_percent 82 +int styleable ConstraintOverride_layout_editor_absoluteX 83 +int styleable ConstraintOverride_layout_editor_absoluteY 84 +int styleable ConstraintOverride_layout_goneMarginBaseline 85 +int styleable ConstraintOverride_layout_goneMarginBottom 86 +int styleable ConstraintOverride_layout_goneMarginEnd 87 +int styleable ConstraintOverride_layout_goneMarginLeft 88 +int styleable ConstraintOverride_layout_goneMarginRight 89 +int styleable ConstraintOverride_layout_goneMarginStart 90 +int styleable ConstraintOverride_layout_goneMarginTop 91 +int styleable ConstraintOverride_layout_marginBaseline 92 +int styleable ConstraintOverride_layout_wrapBehaviorInParent 93 +int styleable ConstraintOverride_motionProgress 94 +int styleable ConstraintOverride_motionStagger 95 +int styleable ConstraintOverride_motionTarget 96 +int styleable ConstraintOverride_pathMotionArc 97 +int styleable ConstraintOverride_pivotAnchor 98 +int styleable ConstraintOverride_polarRelativeTo 99 +int styleable ConstraintOverride_quantizeMotionInterpolator 100 +int styleable ConstraintOverride_quantizeMotionPhase 101 +int styleable ConstraintOverride_quantizeMotionSteps 102 +int styleable ConstraintOverride_transformPivotTarget 103 +int styleable ConstraintOverride_transitionEasing 104 +int styleable ConstraintOverride_transitionPathRotate 105 +int styleable ConstraintOverride_visibilityMode 106 +int[] styleable ConstraintSet { 0x7f040002, 0x101031f, 0x1010440, 0x10100d0, 0x10100f5, 0x10100fa, 0x10103b6, 0x10100f7, 0x10100f9, 0x10103b5, 0x10100f8, 0x10100f4, 0x1010120, 0x101011f, 0x1010140, 0x101013f, 0x10100c4, 0x10101b5, 0x10101b6, 0x1010326, 0x1010327, 0x1010328, 0x1010324, 0x1010325, 0x1010320, 0x1010321, 0x1010322, 0x1010323, 0x10103fa, 0x10100dc, 0x7f04003c, 0x7f04003d, 0x7f04003e, 0x7f040061, 0x7f040062, 0x7f040063, 0x7f0400a7, 0x7f040101, 0x7f040102, 0x7f040151, 0x7f040167, 0x7f0401b6, 0x7f0401b7, 0x7f0401b8, 0x7f0401b9, 0x7f0401ba, 0x7f0401bb, 0x7f0401bc, 0x7f0401bd, 0x7f0401be, 0x7f0401bf, 0x7f0401c0, 0x7f0401c1, 0x7f0401c2, 0x7f0401c4, 0x7f0401c5, 0x7f0401c6, 0x7f0401c7, 0x7f0401c8, 0x7f040238, 0x7f040239, 0x7f04023a, 0x7f04023b, 0x7f04023c, 0x7f04023d, 0x7f04023e, 0x7f04023f, 0x7f040240, 0x7f040241, 0x7f040242, 0x7f040243, 0x7f040244, 0x7f040245, 0x7f040246, 0x7f040247, 0x7f040248, 0x7f040249, 0x7f04024b, 0x7f04024c, 0x7f04024d, 0x7f04024e, 0x7f04024f, 0x7f040250, 0x7f040251, 0x7f040252, 0x7f040253, 0x7f040254, 0x7f040255, 0x7f040256, 0x7f040257, 0x7f040258, 0x7f040259, 0x7f04025a, 0x7f04025b, 0x7f04025c, 0x7f04025d, 0x7f04025e, 0x7f04025f, 0x7f040260, 0x7f040262, 0x7f040263, 0x7f040264, 0x7f040265, 0x7f040267, 0x7f040268, 0x7f04026c, 0x7f04026d, 0x7f04026e, 0x7f04026f, 0x7f040270, 0x7f040271, 0x7f040272, 0x7f040275, 0x7f04027f, 0x7f0402f2, 0x7f0402f3, 0x7f04031d, 0x7f040324, 0x7f040331, 0x7f040349, 0x7f040463, 0x7f040465 } +int styleable ConstraintSet_ConstraintRotate 0 +int styleable ConstraintSet_android_alpha 1 +int styleable ConstraintSet_android_elevation 2 +int styleable ConstraintSet_android_id 3 +int styleable ConstraintSet_android_layout_height 4 +int styleable ConstraintSet_android_layout_marginBottom 5 +int styleable ConstraintSet_android_layout_marginEnd 6 +int styleable ConstraintSet_android_layout_marginLeft 7 +int styleable ConstraintSet_android_layout_marginRight 8 +int styleable ConstraintSet_android_layout_marginStart 9 +int styleable ConstraintSet_android_layout_marginTop 10 +int styleable ConstraintSet_android_layout_width 11 +int styleable ConstraintSet_android_maxHeight 12 +int styleable ConstraintSet_android_maxWidth 13 +int styleable ConstraintSet_android_minHeight 14 +int styleable ConstraintSet_android_minWidth 15 +int styleable ConstraintSet_android_orientation 16 +int styleable ConstraintSet_android_pivotX 17 +int styleable ConstraintSet_android_pivotY 18 +int styleable ConstraintSet_android_rotation 19 +int styleable ConstraintSet_android_rotationX 20 +int styleable ConstraintSet_android_rotationY 21 +int styleable ConstraintSet_android_scaleX 22 +int styleable ConstraintSet_android_scaleY 23 +int styleable ConstraintSet_android_transformPivotX 24 +int styleable ConstraintSet_android_transformPivotY 25 +int styleable ConstraintSet_android_translationX 26 +int styleable ConstraintSet_android_translationY 27 +int styleable ConstraintSet_android_translationZ 28 +int styleable ConstraintSet_android_visibility 29 +int styleable ConstraintSet_animateCircleAngleTo 30 +int styleable ConstraintSet_animateRelativeTo 31 +int styleable ConstraintSet_animate_relativeTo 32 +int styleable ConstraintSet_barrierAllowsGoneWidgets 33 +int styleable ConstraintSet_barrierDirection 34 +int styleable ConstraintSet_barrierMargin 35 +int styleable ConstraintSet_chainUseRtl 36 +int styleable ConstraintSet_constraint_referenced_ids 37 +int styleable ConstraintSet_constraint_referenced_tags 38 +int styleable ConstraintSet_deriveConstraintsFrom 39 +int styleable ConstraintSet_drawPath 40 +int styleable ConstraintSet_flow_firstHorizontalBias 41 +int styleable ConstraintSet_flow_firstHorizontalStyle 42 +int styleable ConstraintSet_flow_firstVerticalBias 43 +int styleable ConstraintSet_flow_firstVerticalStyle 44 +int styleable ConstraintSet_flow_horizontalAlign 45 +int styleable ConstraintSet_flow_horizontalBias 46 +int styleable ConstraintSet_flow_horizontalGap 47 +int styleable ConstraintSet_flow_horizontalStyle 48 +int styleable ConstraintSet_flow_lastHorizontalBias 49 +int styleable ConstraintSet_flow_lastHorizontalStyle 50 +int styleable ConstraintSet_flow_lastVerticalBias 51 +int styleable ConstraintSet_flow_lastVerticalStyle 52 +int styleable ConstraintSet_flow_maxElementsWrap 53 +int styleable ConstraintSet_flow_verticalAlign 54 +int styleable ConstraintSet_flow_verticalBias 55 +int styleable ConstraintSet_flow_verticalGap 56 +int styleable ConstraintSet_flow_verticalStyle 57 +int styleable ConstraintSet_flow_wrapMode 58 +int styleable ConstraintSet_layout_constrainedHeight 59 +int styleable ConstraintSet_layout_constrainedWidth 60 +int styleable ConstraintSet_layout_constraintBaseline_creator 61 +int styleable ConstraintSet_layout_constraintBaseline_toBaselineOf 62 +int styleable ConstraintSet_layout_constraintBaseline_toBottomOf 63 +int styleable ConstraintSet_layout_constraintBaseline_toTopOf 64 +int styleable ConstraintSet_layout_constraintBottom_creator 65 +int styleable ConstraintSet_layout_constraintBottom_toBottomOf 66 +int styleable ConstraintSet_layout_constraintBottom_toTopOf 67 +int styleable ConstraintSet_layout_constraintCircle 68 +int styleable ConstraintSet_layout_constraintCircleAngle 69 +int styleable ConstraintSet_layout_constraintCircleRadius 70 +int styleable ConstraintSet_layout_constraintDimensionRatio 71 +int styleable ConstraintSet_layout_constraintEnd_toEndOf 72 +int styleable ConstraintSet_layout_constraintEnd_toStartOf 73 +int styleable ConstraintSet_layout_constraintGuide_begin 74 +int styleable ConstraintSet_layout_constraintGuide_end 75 +int styleable ConstraintSet_layout_constraintGuide_percent 76 +int styleable ConstraintSet_layout_constraintHeight_default 77 +int styleable ConstraintSet_layout_constraintHeight_max 78 +int styleable ConstraintSet_layout_constraintHeight_min 79 +int styleable ConstraintSet_layout_constraintHeight_percent 80 +int styleable ConstraintSet_layout_constraintHorizontal_bias 81 +int styleable ConstraintSet_layout_constraintHorizontal_chainStyle 82 +int styleable ConstraintSet_layout_constraintHorizontal_weight 83 +int styleable ConstraintSet_layout_constraintLeft_creator 84 +int styleable ConstraintSet_layout_constraintLeft_toLeftOf 85 +int styleable ConstraintSet_layout_constraintLeft_toRightOf 86 +int styleable ConstraintSet_layout_constraintRight_creator 87 +int styleable ConstraintSet_layout_constraintRight_toLeftOf 88 +int styleable ConstraintSet_layout_constraintRight_toRightOf 89 +int styleable ConstraintSet_layout_constraintStart_toEndOf 90 +int styleable ConstraintSet_layout_constraintStart_toStartOf 91 +int styleable ConstraintSet_layout_constraintTag 92 +int styleable ConstraintSet_layout_constraintTop_creator 93 +int styleable ConstraintSet_layout_constraintTop_toBottomOf 94 +int styleable ConstraintSet_layout_constraintTop_toTopOf 95 +int styleable ConstraintSet_layout_constraintVertical_bias 96 +int styleable ConstraintSet_layout_constraintVertical_chainStyle 97 +int styleable ConstraintSet_layout_constraintVertical_weight 98 +int styleable ConstraintSet_layout_constraintWidth_default 99 +int styleable ConstraintSet_layout_constraintWidth_max 100 +int styleable ConstraintSet_layout_constraintWidth_min 101 +int styleable ConstraintSet_layout_constraintWidth_percent 102 +int styleable ConstraintSet_layout_editor_absoluteX 103 +int styleable ConstraintSet_layout_editor_absoluteY 104 +int styleable ConstraintSet_layout_goneMarginBaseline 105 +int styleable ConstraintSet_layout_goneMarginBottom 106 +int styleable ConstraintSet_layout_goneMarginEnd 107 +int styleable ConstraintSet_layout_goneMarginLeft 108 +int styleable ConstraintSet_layout_goneMarginRight 109 +int styleable ConstraintSet_layout_goneMarginStart 110 +int styleable ConstraintSet_layout_goneMarginTop 111 +int styleable ConstraintSet_layout_marginBaseline 112 +int styleable ConstraintSet_layout_wrapBehaviorInParent 113 +int styleable ConstraintSet_motionProgress 114 +int styleable ConstraintSet_motionStagger 115 +int styleable ConstraintSet_pathMotionArc 116 +int styleable ConstraintSet_pivotAnchor 117 +int styleable ConstraintSet_polarRelativeTo 118 +int styleable ConstraintSet_quantizeMotionSteps 119 +int styleable ConstraintSet_transitionEasing 120 +int styleable ConstraintSet_transitionPathRotate 121 +int[] styleable CoordinatorLayout { 0x7f040229, 0x7f0403c9 } +int styleable CoordinatorLayout_keylines 0 +int styleable CoordinatorLayout_statusBarBackground 1 +int[] styleable CoordinatorLayout_Layout { 0x10100b3, 0x7f040233, 0x7f040234, 0x7f040235, 0x7f040266, 0x7f040273, 0x7f040274 } +int styleable CoordinatorLayout_Layout_android_layout_gravity 0 +int styleable CoordinatorLayout_Layout_layout_anchor 1 +int styleable CoordinatorLayout_Layout_layout_anchorGravity 2 +int styleable CoordinatorLayout_Layout_layout_behavior 3 +int styleable CoordinatorLayout_Layout_layout_dodgeInsetEdges 4 +int styleable CoordinatorLayout_Layout_layout_insetEdge 5 +int styleable CoordinatorLayout_Layout_layout_keyline 6 +int[] styleable CustomAttribute { 0x7f040045, 0x7f04013d, 0x7f04013e, 0x7f04013f, 0x7f040140, 0x7f040141, 0x7f040142, 0x7f040144, 0x7f040145, 0x7f040146, 0x7f0402c2 } +int styleable CustomAttribute_attributeName 0 +int styleable CustomAttribute_customBoolean 1 +int styleable CustomAttribute_customColorDrawableValue 2 +int styleable CustomAttribute_customColorValue 3 +int styleable CustomAttribute_customDimension 4 +int styleable CustomAttribute_customFloatValue 5 +int styleable CustomAttribute_customIntegerValue 6 +int styleable CustomAttribute_customPixelDimension 7 +int styleable CustomAttribute_customReference 8 +int styleable CustomAttribute_customStringValue 9 +int styleable CustomAttribute_methodName 10 +int[] styleable CustomCircleImageView { 0x7f0400cd, 0x7f0400ce, 0x7f0400cf, 0x7f0400d1 } +int styleable CustomCircleImageView_civ_border_color 0 +int styleable CustomCircleImageView_civ_border_overlay 1 +int styleable CustomCircleImageView_civ_border_width 2 +int styleable CustomCircleImageView_civ_fill_color 3 +int[] styleable CustomRatingBar { 0x7f040004, 0x7f0400d4, 0x7f040179, 0x7f04017a, 0x7f04017b, 0x7f04017c, 0x7f04017d, 0x7f04017e, 0x7f04017f, 0x7f040180, 0x7f0403cc } +int styleable CustomRatingBar_OtherHeartImg 0 +int styleable CustomRatingBar_clickable 1 +int styleable CustomRatingBar_elenmentCount 2 +int styleable CustomRatingBar_elenmentEmpty 3 +int styleable CustomRatingBar_elenmentFill 4 +int styleable CustomRatingBar_elenmentHarf 5 +int styleable CustomRatingBar_elenmentHeight 6 +int styleable CustomRatingBar_elenmentPadding 7 +int styleable CustomRatingBar_elenmentStep 8 +int styleable CustomRatingBar_elenmentWidth 9 +int styleable CustomRatingBar_stepSize 10 +int[] styleable DefaultTimeBar { 0x7f040030, 0x7f040031, 0x7f040060, 0x7f040086, 0x7f04032f, 0x7f040387, 0x7f040388, 0x7f040389, 0x7f04038a, 0x7f040457, 0x7f04046e } +int styleable DefaultTimeBar_ad_marker_color 0 +int styleable DefaultTimeBar_ad_marker_width 1 +int styleable DefaultTimeBar_bar_height 2 +int styleable DefaultTimeBar_buffered_color 3 +int styleable DefaultTimeBar_played_color 4 +int styleable DefaultTimeBar_scrubber_color 5 +int styleable DefaultTimeBar_scrubber_disabled_size 6 +int styleable DefaultTimeBar_scrubber_dragged_size 7 +int styleable DefaultTimeBar_scrubber_enabled_size 8 +int styleable DefaultTimeBar_touch_target_height 9 +int styleable DefaultTimeBar_unplayed_color 10 +int[] styleable DiscreteScrollView { 0x7f040174 } +int styleable DiscreteScrollView_dsv_orientation 0 +int[] styleable DrawerArrowToggle { 0x7f040043, 0x7f040044, 0x7f04005f, 0x7f0400e7, 0x7f04016c, 0x7f0401d8, 0x7f0403b2, 0x7f04042c } +int styleable DrawerArrowToggle_arrowHeadLength 0 +int styleable DrawerArrowToggle_arrowShaftLength 1 +int styleable DrawerArrowToggle_barLength 2 +int styleable DrawerArrowToggle_color 3 +int styleable DrawerArrowToggle_drawableSize 4 +int styleable DrawerArrowToggle_gapBetweenBars 5 +int styleable DrawerArrowToggle_spinBars 6 +int styleable DrawerArrowToggle_thickness 7 +int[] styleable ExtendedFloatingActionButton { 0x7f0400e3, 0x7f040181, 0x7f04019f, 0x7f0401e4, 0x7f0403a1, 0x7f0403a8 } +int styleable ExtendedFloatingActionButton_collapsedSize 0 +int styleable ExtendedFloatingActionButton_elevation 1 +int styleable ExtendedFloatingActionButton_extendMotionSpec 2 +int styleable ExtendedFloatingActionButton_hideMotionSpec 3 +int styleable ExtendedFloatingActionButton_showMotionSpec 4 +int styleable ExtendedFloatingActionButton_shrinkMotionSpec 5 +int[] styleable ExtendedFloatingActionButton_Behavior_Layout { 0x7f040064, 0x7f040065 } +int styleable ExtendedFloatingActionButton_Behavior_Layout_behavior_autoHide 0 +int styleable ExtendedFloatingActionButton_Behavior_Layout_behavior_autoShrink 1 +int[] styleable FlexboxLayout { 0x7f040036, 0x7f040037, 0x7f040158, 0x7f040159, 0x7f04015a, 0x7f0401b3, 0x7f0401b4, 0x7f040223, 0x7f0402bb, 0x7f04039c, 0x7f04039d, 0x7f04039e } +int styleable FlexboxLayout_alignContent 0 +int styleable FlexboxLayout_alignItems 1 +int styleable FlexboxLayout_dividerDrawable 2 +int styleable FlexboxLayout_dividerDrawableHorizontal 3 +int styleable FlexboxLayout_dividerDrawableVertical 4 +int styleable FlexboxLayout_flexDirection 5 +int styleable FlexboxLayout_flexWrap 6 +int styleable FlexboxLayout_justifyContent 7 +int styleable FlexboxLayout_maxLine 8 +int styleable FlexboxLayout_showDivider 9 +int styleable FlexboxLayout_showDividerHorizontal 10 +int styleable FlexboxLayout_showDividerVertical 11 +int[] styleable FlexboxLayout_Layout { 0x7f040232, 0x7f040269, 0x7f04026a, 0x7f04026b, 0x7f040276, 0x7f040277, 0x7f040278, 0x7f040279, 0x7f04027b, 0x7f04027e } +int styleable FlexboxLayout_Layout_layout_alignSelf 0 +int styleable FlexboxLayout_Layout_layout_flexBasisPercent 1 +int styleable FlexboxLayout_Layout_layout_flexGrow 2 +int styleable FlexboxLayout_Layout_layout_flexShrink 3 +int styleable FlexboxLayout_Layout_layout_maxHeight 4 +int styleable FlexboxLayout_Layout_layout_maxWidth 5 +int styleable FlexboxLayout_Layout_layout_minHeight 6 +int styleable FlexboxLayout_Layout_layout_minWidth 7 +int styleable FlexboxLayout_Layout_layout_order 8 +int styleable FlexboxLayout_Layout_layout_wrapBefore 9 +int[] styleable FloatingActionButton { 0x101000e, 0x7f04005a, 0x7f04005b, 0x7f040072, 0x7f040181, 0x7f04018d, 0x7f0401a7, 0x7f0401a8, 0x7f0401e4, 0x7f0401ef, 0x7f0402ba, 0x7f04033b, 0x7f040362, 0x7f040394, 0x7f040397, 0x7f0403a1, 0x7f040470 } +int styleable FloatingActionButton_android_enabled 0 +int styleable FloatingActionButton_backgroundTint 1 +int styleable FloatingActionButton_backgroundTintMode 2 +int styleable FloatingActionButton_borderWidth 3 +int styleable FloatingActionButton_elevation 4 +int styleable FloatingActionButton_ensureMinTouchTargetSize 5 +int styleable FloatingActionButton_fabCustomSize 6 +int styleable FloatingActionButton_fabSize 7 +int styleable FloatingActionButton_hideMotionSpec 8 +int styleable FloatingActionButton_hoveredFocusedTranslationZ 9 +int styleable FloatingActionButton_maxImageSize 10 +int styleable FloatingActionButton_pressedTranslationZ 11 +int styleable FloatingActionButton_rippleColor 12 +int styleable FloatingActionButton_shapeAppearance 13 +int styleable FloatingActionButton_shapeAppearanceOverlay 14 +int styleable FloatingActionButton_showMotionSpec 15 +int styleable FloatingActionButton_useCompatPadding 16 +int[] styleable FloatingActionButton_Behavior_Layout { 0x7f040064 } +int styleable FloatingActionButton_Behavior_Layout_behavior_autoHide 0 +int[] styleable FlowLayout { 0x7f04021c, 0x7f040285 } +int styleable FlowLayout_itemSpacing 0 +int styleable FlowLayout_lineSpacing 1 +int[] styleable FontFamily { 0x7f0401cb, 0x7f0401cc, 0x7f0401cd, 0x7f0401ce, 0x7f0401cf, 0x7f0401d0, 0x7f0401d1 } +int styleable FontFamily_fontProviderAuthority 0 +int styleable FontFamily_fontProviderCerts 1 +int styleable FontFamily_fontProviderFetchStrategy 2 +int styleable FontFamily_fontProviderFetchTimeout 3 +int styleable FontFamily_fontProviderPackage 4 +int styleable FontFamily_fontProviderQuery 5 +int styleable FontFamily_fontProviderSystemFontFamily 6 +int[] styleable FontFamilyFont { 0x1010532, 0x101053f, 0x1010570, 0x1010533, 0x101056f, 0x7f0401c9, 0x7f0401d2, 0x7f0401d3, 0x7f0401d4, 0x7f04046d } +int styleable FontFamilyFont_android_font 0 +int styleable FontFamilyFont_android_fontStyle 1 +int styleable FontFamilyFont_android_fontVariationSettings 2 +int styleable FontFamilyFont_android_fontWeight 3 +int styleable FontFamilyFont_android_ttcIndex 4 +int styleable FontFamilyFont_font 5 +int styleable FontFamilyFont_fontStyle 6 +int styleable FontFamilyFont_fontVariationSettings 7 +int styleable FontFamilyFont_fontWeight 8 +int styleable FontFamilyFont_ttcIndex 9 +int[] styleable ForegroundLinearLayout { 0x1010109, 0x1010200, 0x7f0401d6 } +int styleable ForegroundLinearLayout_android_foreground 0 +int styleable ForegroundLinearLayout_android_foregroundGravity 1 +int styleable ForegroundLinearLayout_foregroundInsidePadding 2 +int[] styleable Fragment { 0x10100d0, 0x1010003, 0x10100d1 } +int styleable Fragment_android_id 0 +int styleable Fragment_android_name 1 +int styleable Fragment_android_tag 2 +int[] styleable FragmentContainerView { 0x1010003, 0x10100d1 } +int styleable FragmentContainerView_android_name 0 +int styleable FragmentContainerView_android_tag 1 +int[] styleable GenericDraweeHierarchy { 0x7f04002e, 0x7f040052, 0x7f0401a9, 0x7f0401aa, 0x7f0401ab, 0x7f04030c, 0x7f040325, 0x7f040326, 0x7f04033a, 0x7f040341, 0x7f040342, 0x7f040343, 0x7f04035e, 0x7f04035f, 0x7f040371, 0x7f040372, 0x7f040373, 0x7f040374, 0x7f040375, 0x7f040378, 0x7f040379, 0x7f04037a, 0x7f04037b, 0x7f04037c, 0x7f04037d, 0x7f04037e, 0x7f04037f, 0x7f040380, 0x7f040476 } +int styleable GenericDraweeHierarchy_actualImageScaleType 0 +int styleable GenericDraweeHierarchy_backgroundImage 1 +int styleable GenericDraweeHierarchy_fadeDuration 2 +int styleable GenericDraweeHierarchy_failureImage 3 +int styleable GenericDraweeHierarchy_failureImageScaleType 4 +int styleable GenericDraweeHierarchy_overlayImage 5 +int styleable GenericDraweeHierarchy_placeholderImage 6 +int styleable GenericDraweeHierarchy_placeholderImageScaleType 7 +int styleable GenericDraweeHierarchy_pressedStateOverlayImage 8 +int styleable GenericDraweeHierarchy_progressBarAutoRotateInterval 9 +int styleable GenericDraweeHierarchy_progressBarImage 10 +int styleable GenericDraweeHierarchy_progressBarImageScaleType 11 +int styleable GenericDraweeHierarchy_retryImage 12 +int styleable GenericDraweeHierarchy_retryImageScaleType 13 +int styleable GenericDraweeHierarchy_roundAsCircle 14 +int styleable GenericDraweeHierarchy_roundBottomEnd 15 +int styleable GenericDraweeHierarchy_roundBottomLeft 16 +int styleable GenericDraweeHierarchy_roundBottomRight 17 +int styleable GenericDraweeHierarchy_roundBottomStart 18 +int styleable GenericDraweeHierarchy_roundTopEnd 19 +int styleable GenericDraweeHierarchy_roundTopLeft 20 +int styleable GenericDraweeHierarchy_roundTopRight 21 +int styleable GenericDraweeHierarchy_roundTopStart 22 +int styleable GenericDraweeHierarchy_roundWithOverlayColor 23 +int styleable GenericDraweeHierarchy_roundedCornerRadius 24 +int styleable GenericDraweeHierarchy_roundingBorderColor 25 +int styleable GenericDraweeHierarchy_roundingBorderPadding 26 +int styleable GenericDraweeHierarchy_roundingBorderWidth 27 +int styleable GenericDraweeHierarchy_viewAspectRatio 28 +int[] styleable GradientColor { 0x101020b, 0x10101a2, 0x10101a3, 0x101019e, 0x1010512, 0x1010513, 0x10101a4, 0x101019d, 0x1010510, 0x1010511, 0x1010201, 0x10101a1 } +int styleable GradientColor_android_centerColor 0 +int styleable GradientColor_android_centerX 1 +int styleable GradientColor_android_centerY 2 +int styleable GradientColor_android_endColor 3 +int styleable GradientColor_android_endX 4 +int styleable GradientColor_android_endY 5 +int styleable GradientColor_android_gradientRadius 6 +int styleable GradientColor_android_startColor 7 +int styleable GradientColor_android_startX 8 +int styleable GradientColor_android_startY 9 +int styleable GradientColor_android_tileMode 10 +int styleable GradientColor_android_type 11 +int[] styleable GradientColorItem { 0x10101a5, 0x1010514 } +int styleable GradientColorItem_android_color 0 +int styleable GradientColorItem_android_offset 1 +int[] styleable HeartLikeView { 0x7f0403a0 } +int styleable HeartLikeView_showGrayBack 0 +int[] styleable ImageFilterView { 0x7f04003b, 0x7f04006f, 0x7f040083, 0x7f040114, 0x7f04013a, 0x7f0401fc, 0x7f0401fd, 0x7f0401fe, 0x7f0401ff, 0x7f04030b, 0x7f040370, 0x7f040377, 0x7f040381, 0x7f04047e } +int styleable ImageFilterView_altSrc 0 +int styleable ImageFilterView_blendSrc 1 +int styleable ImageFilterView_brightness 2 +int styleable ImageFilterView_contrast 3 +int styleable ImageFilterView_crossfade 4 +int styleable ImageFilterView_imagePanX 5 +int styleable ImageFilterView_imagePanY 6 +int styleable ImageFilterView_imageRotate 7 +int styleable ImageFilterView_imageZoom 8 +int styleable ImageFilterView_overlay 9 +int styleable ImageFilterView_round 10 +int styleable ImageFilterView_roundPercent 11 +int styleable ImageFilterView_saturation 12 +int styleable ImageFilterView_warmth 13 +int[] styleable Insets { 0x7f04030e, 0x7f040310, 0x7f040311, 0x7f040314 } +int styleable Insets_paddingBottomSystemWindowInsets 0 +int styleable Insets_paddingLeftSystemWindowInsets 1 +int styleable Insets_paddingRightSystemWindowInsets 2 +int styleable Insets_paddingTopSystemWindowInsets 3 +int[] styleable KeyAttribute { 0x101031f, 0x1010440, 0x1010326, 0x1010327, 0x1010328, 0x1010324, 0x1010325, 0x1010320, 0x1010321, 0x1010322, 0x1010323, 0x10103fa, 0x7f04013c, 0x7f0401d7, 0x7f0402f2, 0x7f0402f4, 0x7f040461, 0x7f040463, 0x7f040465 } +int styleable KeyAttribute_android_alpha 0 +int styleable KeyAttribute_android_elevation 1 +int styleable KeyAttribute_android_rotation 2 +int styleable KeyAttribute_android_rotationX 3 +int styleable KeyAttribute_android_rotationY 4 +int styleable KeyAttribute_android_scaleX 5 +int styleable KeyAttribute_android_scaleY 6 +int styleable KeyAttribute_android_transformPivotX 7 +int styleable KeyAttribute_android_transformPivotY 8 +int styleable KeyAttribute_android_translationX 9 +int styleable KeyAttribute_android_translationY 10 +int styleable KeyAttribute_android_translationZ 11 +int styleable KeyAttribute_curveFit 12 +int styleable KeyAttribute_framePosition 13 +int styleable KeyAttribute_motionProgress 14 +int styleable KeyAttribute_motionTarget 15 +int styleable KeyAttribute_transformPivotTarget 16 +int styleable KeyAttribute_transitionEasing 17 +int styleable KeyAttribute_transitionPathRotate 18 +int[] styleable KeyCycle { 0x101031f, 0x1010440, 0x1010326, 0x1010327, 0x1010328, 0x1010324, 0x1010325, 0x1010322, 0x1010323, 0x10103fa, 0x7f04013c, 0x7f0401d7, 0x7f0402f2, 0x7f0402f4, 0x7f040463, 0x7f040465, 0x7f040480, 0x7f040481, 0x7f040482, 0x7f040483, 0x7f040484 } +int styleable KeyCycle_android_alpha 0 +int styleable KeyCycle_android_elevation 1 +int styleable KeyCycle_android_rotation 2 +int styleable KeyCycle_android_rotationX 3 +int styleable KeyCycle_android_rotationY 4 +int styleable KeyCycle_android_scaleX 5 +int styleable KeyCycle_android_scaleY 6 +int styleable KeyCycle_android_translationX 7 +int styleable KeyCycle_android_translationY 8 +int styleable KeyCycle_android_translationZ 9 +int styleable KeyCycle_curveFit 10 +int styleable KeyCycle_framePosition 11 +int styleable KeyCycle_motionProgress 12 +int styleable KeyCycle_motionTarget 13 +int styleable KeyCycle_transitionEasing 14 +int styleable KeyCycle_transitionPathRotate 15 +int styleable KeyCycle_waveOffset 16 +int styleable KeyCycle_wavePeriod 17 +int styleable KeyCycle_wavePhase 18 +int styleable KeyCycle_waveShape 19 +int styleable KeyCycle_waveVariesBy 20 +int[] styleable KeyFrame { } +int[] styleable KeyFramesAcceleration { } +int[] styleable KeyFramesVelocity { } +int[] styleable KeyPosition { 0x7f04013c, 0x7f040167, 0x7f0401d7, 0x7f040225, 0x7f0402f4, 0x7f04031d, 0x7f04031f, 0x7f040320, 0x7f040321, 0x7f040322, 0x7f0403ac, 0x7f040463 } +int styleable KeyPosition_curveFit 0 +int styleable KeyPosition_drawPath 1 +int styleable KeyPosition_framePosition 2 +int styleable KeyPosition_keyPositionType 3 +int styleable KeyPosition_motionTarget 4 +int styleable KeyPosition_pathMotionArc 5 +int styleable KeyPosition_percentHeight 6 +int styleable KeyPosition_percentWidth 7 +int styleable KeyPosition_percentX 8 +int styleable KeyPosition_percentY 9 +int styleable KeyPosition_sizePercent 10 +int styleable KeyPosition_transitionEasing 11 +int[] styleable KeyTimeCycle { 0x101031f, 0x1010440, 0x1010326, 0x1010327, 0x1010328, 0x1010324, 0x1010325, 0x1010322, 0x1010323, 0x10103fa, 0x7f04013c, 0x7f0401d7, 0x7f0402f2, 0x7f0402f4, 0x7f040463, 0x7f040465, 0x7f04047f, 0x7f040480, 0x7f040481, 0x7f040482, 0x7f040483 } +int styleable KeyTimeCycle_android_alpha 0 +int styleable KeyTimeCycle_android_elevation 1 +int styleable KeyTimeCycle_android_rotation 2 +int styleable KeyTimeCycle_android_rotationX 3 +int styleable KeyTimeCycle_android_rotationY 4 +int styleable KeyTimeCycle_android_scaleX 5 +int styleable KeyTimeCycle_android_scaleY 6 +int styleable KeyTimeCycle_android_translationX 7 +int styleable KeyTimeCycle_android_translationY 8 +int styleable KeyTimeCycle_android_translationZ 9 +int styleable KeyTimeCycle_curveFit 10 +int styleable KeyTimeCycle_framePosition 11 +int styleable KeyTimeCycle_motionProgress 12 +int styleable KeyTimeCycle_motionTarget 13 +int styleable KeyTimeCycle_transitionEasing 14 +int styleable KeyTimeCycle_transitionPathRotate 15 +int styleable KeyTimeCycle_waveDecay 16 +int styleable KeyTimeCycle_waveOffset 17 +int styleable KeyTimeCycle_wavePeriod 18 +int styleable KeyTimeCycle_wavePhase 19 +int styleable KeyTimeCycle_waveShape 20 +int[] styleable KeyTrigger { 0x7f0401d7, 0x7f0402f4, 0x7f0402f5, 0x7f0402f6, 0x7f040303, 0x7f040305, 0x7f040306, 0x7f04046a, 0x7f04046b, 0x7f04046c, 0x7f040479, 0x7f04047a, 0x7f04047b } +int styleable KeyTrigger_framePosition 0 +int styleable KeyTrigger_motionTarget 1 +int styleable KeyTrigger_motion_postLayoutCollision 2 +int styleable KeyTrigger_motion_triggerOnCollision 3 +int styleable KeyTrigger_onCross 4 +int styleable KeyTrigger_onNegativeCross 5 +int styleable KeyTrigger_onPositiveCross 6 +int styleable KeyTrigger_triggerId 7 +int styleable KeyTrigger_triggerReceiver 8 +int styleable KeyTrigger_triggerSlack 9 +int styleable KeyTrigger_viewTransitionOnCross 10 +int styleable KeyTrigger_viewTransitionOnNegativeCross 11 +int styleable KeyTrigger_viewTransitionOnPositiveCross 12 +int[] styleable Layout { 0x10100f5, 0x10100fa, 0x10103b6, 0x10100f7, 0x10100f9, 0x10103b5, 0x10100f8, 0x10100f4, 0x10100c4, 0x7f040061, 0x7f040062, 0x7f040063, 0x7f0400a7, 0x7f040101, 0x7f040102, 0x7f040238, 0x7f040239, 0x7f04023a, 0x7f04023b, 0x7f04023c, 0x7f04023d, 0x7f04023e, 0x7f04023f, 0x7f040240, 0x7f040241, 0x7f040242, 0x7f040243, 0x7f040244, 0x7f040245, 0x7f040246, 0x7f040247, 0x7f040248, 0x7f040249, 0x7f04024a, 0x7f04024b, 0x7f04024c, 0x7f04024d, 0x7f04024e, 0x7f04024f, 0x7f040250, 0x7f040251, 0x7f040252, 0x7f040253, 0x7f040254, 0x7f040255, 0x7f040256, 0x7f040257, 0x7f040258, 0x7f040259, 0x7f04025b, 0x7f04025c, 0x7f04025d, 0x7f04025e, 0x7f04025f, 0x7f040260, 0x7f040261, 0x7f040262, 0x7f040263, 0x7f040264, 0x7f040265, 0x7f040267, 0x7f040268, 0x7f04026c, 0x7f04026d, 0x7f04026e, 0x7f04026f, 0x7f040270, 0x7f040271, 0x7f040272, 0x7f040275, 0x7f04027f, 0x7f0402b9, 0x7f0402be, 0x7f0402c3, 0x7f0402c7 } +int styleable Layout_android_layout_height 0 +int styleable Layout_android_layout_marginBottom 1 +int styleable Layout_android_layout_marginEnd 2 +int styleable Layout_android_layout_marginLeft 3 +int styleable Layout_android_layout_marginRight 4 +int styleable Layout_android_layout_marginStart 5 +int styleable Layout_android_layout_marginTop 6 +int styleable Layout_android_layout_width 7 +int styleable Layout_android_orientation 8 +int styleable Layout_barrierAllowsGoneWidgets 9 +int styleable Layout_barrierDirection 10 +int styleable Layout_barrierMargin 11 +int styleable Layout_chainUseRtl 12 +int styleable Layout_constraint_referenced_ids 13 +int styleable Layout_constraint_referenced_tags 14 +int styleable Layout_layout_constrainedHeight 15 +int styleable Layout_layout_constrainedWidth 16 +int styleable Layout_layout_constraintBaseline_creator 17 +int styleable Layout_layout_constraintBaseline_toBaselineOf 18 +int styleable Layout_layout_constraintBaseline_toBottomOf 19 +int styleable Layout_layout_constraintBaseline_toTopOf 20 +int styleable Layout_layout_constraintBottom_creator 21 +int styleable Layout_layout_constraintBottom_toBottomOf 22 +int styleable Layout_layout_constraintBottom_toTopOf 23 +int styleable Layout_layout_constraintCircle 24 +int styleable Layout_layout_constraintCircleAngle 25 +int styleable Layout_layout_constraintCircleRadius 26 +int styleable Layout_layout_constraintDimensionRatio 27 +int styleable Layout_layout_constraintEnd_toEndOf 28 +int styleable Layout_layout_constraintEnd_toStartOf 29 +int styleable Layout_layout_constraintGuide_begin 30 +int styleable Layout_layout_constraintGuide_end 31 +int styleable Layout_layout_constraintGuide_percent 32 +int styleable Layout_layout_constraintHeight 33 +int styleable Layout_layout_constraintHeight_default 34 +int styleable Layout_layout_constraintHeight_max 35 +int styleable Layout_layout_constraintHeight_min 36 +int styleable Layout_layout_constraintHeight_percent 37 +int styleable Layout_layout_constraintHorizontal_bias 38 +int styleable Layout_layout_constraintHorizontal_chainStyle 39 +int styleable Layout_layout_constraintHorizontal_weight 40 +int styleable Layout_layout_constraintLeft_creator 41 +int styleable Layout_layout_constraintLeft_toLeftOf 42 +int styleable Layout_layout_constraintLeft_toRightOf 43 +int styleable Layout_layout_constraintRight_creator 44 +int styleable Layout_layout_constraintRight_toLeftOf 45 +int styleable Layout_layout_constraintRight_toRightOf 46 +int styleable Layout_layout_constraintStart_toEndOf 47 +int styleable Layout_layout_constraintStart_toStartOf 48 +int styleable Layout_layout_constraintTop_creator 49 +int styleable Layout_layout_constraintTop_toBottomOf 50 +int styleable Layout_layout_constraintTop_toTopOf 51 +int styleable Layout_layout_constraintVertical_bias 52 +int styleable Layout_layout_constraintVertical_chainStyle 53 +int styleable Layout_layout_constraintVertical_weight 54 +int styleable Layout_layout_constraintWidth 55 +int styleable Layout_layout_constraintWidth_default 56 +int styleable Layout_layout_constraintWidth_max 57 +int styleable Layout_layout_constraintWidth_min 58 +int styleable Layout_layout_constraintWidth_percent 59 +int styleable Layout_layout_editor_absoluteX 60 +int styleable Layout_layout_editor_absoluteY 61 +int styleable Layout_layout_goneMarginBaseline 62 +int styleable Layout_layout_goneMarginBottom 63 +int styleable Layout_layout_goneMarginEnd 64 +int styleable Layout_layout_goneMarginLeft 65 +int styleable Layout_layout_goneMarginRight 66 +int styleable Layout_layout_goneMarginStart 67 +int styleable Layout_layout_goneMarginTop 68 +int styleable Layout_layout_marginBaseline 69 +int styleable Layout_layout_wrapBehaviorInParent 70 +int styleable Layout_maxHeight 71 +int styleable Layout_maxWidth 72 +int styleable Layout_minHeight 73 +int styleable Layout_minWidth 74 +int[] styleable LinearLayoutCompat { 0x1010126, 0x1010127, 0x10100af, 0x10100c4, 0x1010128, 0x7f040157, 0x7f04015c, 0x7f0402bf, 0x7f04039f } +int styleable LinearLayoutCompat_android_baselineAligned 0 +int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 1 +int styleable LinearLayoutCompat_android_gravity 2 +int styleable LinearLayoutCompat_android_orientation 3 +int styleable LinearLayoutCompat_android_weightSum 4 +int styleable LinearLayoutCompat_divider 5 +int styleable LinearLayoutCompat_dividerPadding 6 +int styleable LinearLayoutCompat_measureWithLargestChild 7 +int styleable LinearLayoutCompat_showDividers 8 +int[] styleable LinearLayoutCompat_Layout { 0x10100b3, 0x10100f5, 0x1010181, 0x10100f4 } +int styleable LinearLayoutCompat_Layout_android_layout_gravity 0 +int styleable LinearLayoutCompat_Layout_android_layout_height 1 +int styleable LinearLayoutCompat_Layout_android_layout_weight 2 +int styleable LinearLayoutCompat_Layout_android_layout_width 3 +int[] styleable LinearProgressIndicator { 0x7f040200, 0x7f040204 } +int styleable LinearProgressIndicator_indeterminateAnimationType 0 +int styleable LinearProgressIndicator_indicatorDirectionLinear 1 +int[] styleable ListPopupWindow { 0x10102ac, 0x10102ad } +int styleable ListPopupWindow_android_dropDownHorizontalOffset 0 +int styleable ListPopupWindow_android_dropDownVerticalOffset 1 +int[] styleable LogTitleBar { 0x7f040001, 0x7f040003, 0x7f040007 } +int styleable LogTitleBar_Back 0 +int styleable LogTitleBar_Icon 1 +int styleable LogTitleBar_Title 2 +int[] styleable MaterialAlertDialog { 0x7f040053, 0x7f040054, 0x7f040055, 0x7f040056 } +int styleable MaterialAlertDialog_backgroundInsetBottom 0 +int styleable MaterialAlertDialog_backgroundInsetEnd 1 +int styleable MaterialAlertDialog_backgroundInsetStart 2 +int styleable MaterialAlertDialog_backgroundInsetTop 3 +int[] styleable MaterialAlertDialogTheme { 0x7f040299, 0x7f04029a, 0x7f04029b, 0x7f04029c, 0x7f04029d } +int styleable MaterialAlertDialogTheme_materialAlertDialogBodyTextStyle 0 +int styleable MaterialAlertDialogTheme_materialAlertDialogTheme 1 +int styleable MaterialAlertDialogTheme_materialAlertDialogTitleIconStyle 2 +int styleable MaterialAlertDialogTheme_materialAlertDialogTitlePanelStyle 3 +int styleable MaterialAlertDialogTheme_materialAlertDialogTitleTextStyle 4 +int[] styleable MaterialAutoCompleteTextView { 0x1010220 } +int styleable MaterialAutoCompleteTextView_android_inputType 0 +int[] styleable MaterialButton { 0x10100d4, 0x10101e5, 0x10101ba, 0x10101b7, 0x10101b8, 0x10101b9, 0x7f04005a, 0x7f04005b, 0x7f04011d, 0x7f040181, 0x7f0401f0, 0x7f0401f2, 0x7f0401f3, 0x7f0401f4, 0x7f0401f6, 0x7f0401f7, 0x7f040362, 0x7f040394, 0x7f040397, 0x7f0403cd, 0x7f0403ce } +int styleable MaterialButton_android_background 0 +int styleable MaterialButton_android_checkable 1 +int styleable MaterialButton_android_insetBottom 2 +int styleable MaterialButton_android_insetLeft 3 +int styleable MaterialButton_android_insetRight 4 +int styleable MaterialButton_android_insetTop 5 +int styleable MaterialButton_backgroundTint 6 +int styleable MaterialButton_backgroundTintMode 7 +int styleable MaterialButton_cornerRadius 8 +int styleable MaterialButton_elevation 9 +int styleable MaterialButton_icon 10 +int styleable MaterialButton_iconGravity 11 +int styleable MaterialButton_iconPadding 12 +int styleable MaterialButton_iconSize 13 +int styleable MaterialButton_iconTint 14 +int styleable MaterialButton_iconTintMode 15 +int styleable MaterialButton_rippleColor 16 +int styleable MaterialButton_shapeAppearance 17 +int styleable MaterialButton_shapeAppearanceOverlay 18 +int styleable MaterialButton_strokeColor 19 +int styleable MaterialButton_strokeWidth 20 +int[] styleable MaterialButtonToggleGroup { 0x7f0400a9, 0x7f040391, 0x7f0403ab } +int styleable MaterialButtonToggleGroup_checkedButton 0 +int styleable MaterialButtonToggleGroup_selectionRequired 1 +int styleable MaterialButtonToggleGroup_singleSelection 2 +int[] styleable MaterialCalendar { 0x101020d, 0x7f040147, 0x7f040148, 0x7f040149, 0x7f04014a, 0x7f040300, 0x7f04034d, 0x7f040491, 0x7f040492, 0x7f040493 } +int styleable MaterialCalendar_android_windowFullscreen 0 +int styleable MaterialCalendar_dayInvalidStyle 1 +int styleable MaterialCalendar_daySelectedStyle 2 +int styleable MaterialCalendar_dayStyle 3 +int styleable MaterialCalendar_dayTodayStyle 4 +int styleable MaterialCalendar_nestedScrollable 5 +int styleable MaterialCalendar_rangeFillColor 6 +int styleable MaterialCalendar_yearSelectedStyle 7 +int styleable MaterialCalendar_yearStyle 8 +int styleable MaterialCalendar_yearTodayStyle 9 +int[] styleable MaterialCalendarItem { 0x10101ba, 0x10101b7, 0x10101b8, 0x10101b9, 0x7f04020c, 0x7f040215, 0x7f040216, 0x7f04021d, 0x7f04021e, 0x7f040222 } +int styleable MaterialCalendarItem_android_insetBottom 0 +int styleable MaterialCalendarItem_android_insetLeft 1 +int styleable MaterialCalendarItem_android_insetRight 2 +int styleable MaterialCalendarItem_android_insetTop 3 +int styleable MaterialCalendarItem_itemFillColor 4 +int styleable MaterialCalendarItem_itemShapeAppearance 5 +int styleable MaterialCalendarItem_itemShapeAppearanceOverlay 6 +int styleable MaterialCalendarItem_itemStrokeColor 7 +int styleable MaterialCalendarItem_itemStrokeWidth 8 +int styleable MaterialCalendarItem_itemTextColor 9 +int[] styleable MaterialCardView { 0x10101e5, 0x7f040098, 0x7f0400ab, 0x7f0400ad, 0x7f0400ae, 0x7f0400af, 0x7f040362, 0x7f040394, 0x7f040397, 0x7f0403c6, 0x7f0403cd, 0x7f0403ce } +int styleable MaterialCardView_android_checkable 0 +int styleable MaterialCardView_cardForegroundColor 1 +int styleable MaterialCardView_checkedIcon 2 +int styleable MaterialCardView_checkedIconMargin 3 +int styleable MaterialCardView_checkedIconSize 4 +int styleable MaterialCardView_checkedIconTint 5 +int styleable MaterialCardView_rippleColor 6 +int styleable MaterialCardView_shapeAppearance 7 +int styleable MaterialCardView_shapeAppearanceOverlay 8 +int styleable MaterialCardView_state_dragged 9 +int styleable MaterialCardView_strokeColor 10 +int styleable MaterialCardView_strokeWidth 11 +int[] styleable MaterialCheckBox { 0x7f040092, 0x7f040471 } +int styleable MaterialCheckBox_buttonTint 0 +int styleable MaterialCheckBox_useMaterialThemeColors 1 +int[] styleable MaterialRadioButton { 0x7f040092, 0x7f040471 } +int styleable MaterialRadioButton_buttonTint 0 +int styleable MaterialRadioButton_useMaterialThemeColors 1 +int[] styleable MaterialShape { 0x7f040394, 0x7f040397 } +int styleable MaterialShape_shapeAppearance 0 +int styleable MaterialShape_shapeAppearanceOverlay 1 +int[] styleable MaterialTextAppearance { 0x10104b6, 0x101057f, 0x7f040284 } +int styleable MaterialTextAppearance_android_letterSpacing 0 +int styleable MaterialTextAppearance_android_lineHeight 1 +int styleable MaterialTextAppearance_lineHeight 2 +int[] styleable MaterialTextView { 0x101057f, 0x1010034, 0x7f040284 } +int styleable MaterialTextView_android_lineHeight 0 +int styleable MaterialTextView_android_textAppearance 1 +int styleable MaterialTextView_lineHeight 2 +int[] styleable MaterialTimePicker { 0x7f0400d7, 0x7f040228 } +int styleable MaterialTimePicker_clockIcon 0 +int styleable MaterialTimePicker_keyboardIcon 1 +int[] styleable MaterialToolbar { 0x7f0402fb, 0x7f0403d2, 0x7f04043f } +int styleable MaterialToolbar_navigationIconTint 0 +int styleable MaterialToolbar_subtitleCentered 1 +int styleable MaterialToolbar_titleCentered 2 +int[] styleable MenuGroup { 0x10101e0, 0x101000e, 0x10100d0, 0x10101de, 0x10101df, 0x1010194 } +int styleable MenuGroup_android_checkableBehavior 0 +int styleable MenuGroup_android_enabled 1 +int styleable MenuGroup_android_id 2 +int styleable MenuGroup_android_menuCategory 3 +int styleable MenuGroup_android_orderInCategory 4 +int styleable MenuGroup_android_visible 5 +int[] styleable MenuItem { 0x7f040015, 0x7f040029, 0x7f04002b, 0x7f04003a, 0x10101e3, 0x10101e5, 0x1010106, 0x101000e, 0x1010002, 0x10100d0, 0x10101de, 0x10101e4, 0x101026f, 0x10101df, 0x10101e1, 0x10101e2, 0x1010194, 0x7f040105, 0x7f0401f6, 0x7f0401f7, 0x7f040302, 0x7f04039a, 0x7f040451 } +int styleable MenuItem_actionLayout 0 +int styleable MenuItem_actionProviderClass 1 +int styleable MenuItem_actionViewClass 2 +int styleable MenuItem_alphabeticModifiers 3 +int styleable MenuItem_android_alphabeticShortcut 4 +int styleable MenuItem_android_checkable 5 +int styleable MenuItem_android_checked 6 +int styleable MenuItem_android_enabled 7 +int styleable MenuItem_android_icon 8 +int styleable MenuItem_android_id 9 +int styleable MenuItem_android_menuCategory 10 +int styleable MenuItem_android_numericShortcut 11 +int styleable MenuItem_android_onClick 12 +int styleable MenuItem_android_orderInCategory 13 +int styleable MenuItem_android_title 14 +int styleable MenuItem_android_titleCondensed 15 +int styleable MenuItem_android_visible 16 +int styleable MenuItem_contentDescription 17 +int styleable MenuItem_iconTint 18 +int styleable MenuItem_iconTintMode 19 +int styleable MenuItem_numericModifiers 20 +int styleable MenuItem_showAsAction 21 +int styleable MenuItem_tooltipText 22 +int[] styleable MenuView { 0x101012f, 0x101012d, 0x1010130, 0x1010131, 0x101012c, 0x101012e, 0x10100ae, 0x7f040339, 0x7f0403cf } +int styleable MenuView_android_headerBackground 0 +int styleable MenuView_android_horizontalDivider 1 +int styleable MenuView_android_itemBackground 2 +int styleable MenuView_android_itemIconDisabledAlpha 3 +int styleable MenuView_android_itemTextAppearance 4 +int styleable MenuView_android_verticalDivider 5 +int styleable MenuView_android_windowAnimationStyle 6 +int styleable MenuView_preserveIconSpacing 7 +int styleable MenuView_subMenuArrow 8 +int[] styleable MockView { 0x7f0402d5, 0x7f0402d6, 0x7f0402d7, 0x7f0402d8, 0x7f0402d9, 0x7f0402da } +int styleable MockView_mock_diagonalsColor 0 +int styleable MockView_mock_label 1 +int styleable MockView_mock_labelBackgroundColor 2 +int styleable MockView_mock_labelColor 3 +int styleable MockView_mock_showDiagonals 4 +int styleable MockView_mock_showLabel 5 +int[] styleable MogoImageView { 0x7f0402c8, 0x7f0402c9, 0x7f0402ca, 0x7f0402cb, 0x7f0402cc, 0x7f0402cd, 0x7f0402ce, 0x7f0402cf, 0x7f0402d0, 0x7f0402d1, 0x7f0402d2, 0x7f0402d3, 0x7f0402d4 } +int styleable MogoImageView_miv_blurRadius 0 +int styleable MogoImageView_miv_borderColor 1 +int styleable MogoImageView_miv_bottomLeftRadius 2 +int styleable MogoImageView_miv_bottomRightRadius 3 +int styleable MogoImageView_miv_failureHolder 4 +int styleable MogoImageView_miv_isBlur 5 +int styleable MogoImageView_miv_overlayImageId 6 +int styleable MogoImageView_miv_placeHolder 7 +int styleable MogoImageView_miv_radius 8 +int styleable MogoImageView_miv_shape 9 +int styleable MogoImageView_miv_shapeBorderWidth 10 +int styleable MogoImageView_miv_topLeftRadius 11 +int styleable MogoImageView_miv_topRightRadius 12 +int[] styleable Motion { 0x7f04003c, 0x7f04003d, 0x7f04003e, 0x7f040167, 0x7f0402f1, 0x7f0402f3, 0x7f04031d, 0x7f040347, 0x7f040348, 0x7f040349, 0x7f040463 } +int styleable Motion_animateCircleAngleTo 0 +int styleable Motion_animateRelativeTo 1 +int styleable Motion_animate_relativeTo 2 +int styleable Motion_drawPath 3 +int styleable Motion_motionPathRotate 4 +int styleable Motion_motionStagger 5 +int styleable Motion_pathMotionArc 6 +int styleable Motion_quantizeMotionInterpolator 7 +int styleable Motion_quantizeMotionPhase 8 +int styleable Motion_quantizeMotionSteps 9 +int styleable Motion_transitionEasing 10 +int[] styleable MotionEffect { 0x7f0402e7, 0x7f0402e8, 0x7f0402e9, 0x7f0402ea, 0x7f0402eb, 0x7f0402ec, 0x7f0402ed, 0x7f0402ee } +int styleable MotionEffect_motionEffect_alpha 0 +int styleable MotionEffect_motionEffect_end 1 +int styleable MotionEffect_motionEffect_move 2 +int styleable MotionEffect_motionEffect_start 3 +int styleable MotionEffect_motionEffect_strict 4 +int styleable MotionEffect_motionEffect_translationX 5 +int styleable MotionEffect_motionEffect_translationY 6 +int styleable MotionEffect_motionEffect_viewTransition 7 +int[] styleable MotionHelper { 0x7f040304, 0x7f040307 } +int styleable MotionHelper_onHide 0 +int styleable MotionHelper_onShow 1 +int[] styleable MotionLabel { 0x1010535, 0x10103ac, 0x10100af, 0x1010164, 0x101014f, 0x1010098, 0x1010095, 0x1010097, 0x1010096, 0x7f040070, 0x7f040071, 0x7f040382, 0x7f040415, 0x7f040416, 0x7f040417, 0x7f040418, 0x7f040419, 0x7f040421, 0x7f040422, 0x7f040423, 0x7f040424, 0x7f040426, 0x7f040427, 0x7f040428, 0x7f040429 } +int styleable MotionLabel_android_autoSizeTextType 0 +int styleable MotionLabel_android_fontFamily 1 +int styleable MotionLabel_android_gravity 2 +int styleable MotionLabel_android_shadowRadius 3 +int styleable MotionLabel_android_text 4 +int styleable MotionLabel_android_textColor 5 +int styleable MotionLabel_android_textSize 6 +int styleable MotionLabel_android_textStyle 7 +int styleable MotionLabel_android_typeface 8 +int styleable MotionLabel_borderRound 9 +int styleable MotionLabel_borderRoundPercent 10 +int styleable MotionLabel_scaleFromTextSize 11 +int styleable MotionLabel_textBackground 12 +int styleable MotionLabel_textBackgroundPanX 13 +int styleable MotionLabel_textBackgroundPanY 14 +int styleable MotionLabel_textBackgroundRotate 15 +int styleable MotionLabel_textBackgroundZoom 16 +int styleable MotionLabel_textOutlineColor 17 +int styleable MotionLabel_textOutlineThickness 18 +int styleable MotionLabel_textPanX 19 +int styleable MotionLabel_textPanY 20 +int styleable MotionLabel_textureBlurFactor 21 +int styleable MotionLabel_textureEffect 22 +int styleable MotionLabel_textureHeight 23 +int styleable MotionLabel_textureWidth 24 +int[] styleable MotionLayout { 0x7f040041, 0x7f04013b, 0x7f04022f, 0x7f0402db, 0x7f0402f2, 0x7f0403a2 } +int styleable MotionLayout_applyMotionScene 0 +int styleable MotionLayout_currentState 1 +int styleable MotionLayout_layoutDescription 2 +int styleable MotionLayout_motionDebug 3 +int styleable MotionLayout_motionProgress 4 +int styleable MotionLayout_showPaths 5 +int[] styleable MotionScene { 0x7f04014b, 0x7f040230 } +int styleable MotionScene_defaultDuration 0 +int styleable MotionScene_layoutDuringTransition 1 +int[] styleable MotionTelltales { 0x7f0403fb, 0x7f0403fc, 0x7f0403fd } +int styleable MotionTelltales_telltales_tailColor 0 +int styleable MotionTelltales_telltales_tailScale 1 +int styleable MotionTelltales_telltales_velocityMode 2 +int[] styleable NavigationBarView { 0x7f04005a, 0x7f040181, 0x7f04020b, 0x7f040210, 0x7f040211, 0x7f040214, 0x7f040220, 0x7f040221, 0x7f040222, 0x7f04022c, 0x7f0402c0 } +int styleable NavigationBarView_backgroundTint 0 +int styleable NavigationBarView_elevation 1 +int styleable NavigationBarView_itemBackground 2 +int styleable NavigationBarView_itemIconSize 3 +int styleable NavigationBarView_itemIconTint 4 +int styleable NavigationBarView_itemRippleColor 5 +int styleable NavigationBarView_itemTextAppearanceActive 6 +int styleable NavigationBarView_itemTextAppearanceInactive 7 +int styleable NavigationBarView_itemTextColor 8 +int styleable NavigationBarView_labelVisibilityMode 9 +int styleable NavigationBarView_menu 10 +int[] styleable NavigationRailView { 0x7f0401dd, 0x7f0402c1 } +int styleable NavigationRailView_headerLayout 0 +int styleable NavigationRailView_menuGravity 1 +int[] styleable NavigationView { 0x10100d4, 0x10100dd, 0x101011f, 0x7f040181, 0x7f0401dd, 0x7f04020b, 0x7f04020d, 0x7f04020f, 0x7f040210, 0x7f040211, 0x7f040212, 0x7f040215, 0x7f040216, 0x7f040217, 0x7f040218, 0x7f040219, 0x7f04021a, 0x7f04021b, 0x7f04021f, 0x7f040222, 0x7f0402c0, 0x7f040394, 0x7f040397 } +int styleable NavigationView_android_background 0 +int styleable NavigationView_android_fitsSystemWindows 1 +int styleable NavigationView_android_maxWidth 2 +int styleable NavigationView_elevation 3 +int styleable NavigationView_headerLayout 4 +int styleable NavigationView_itemBackground 5 +int styleable NavigationView_itemHorizontalPadding 6 +int styleable NavigationView_itemIconPadding 7 +int styleable NavigationView_itemIconSize 8 +int styleable NavigationView_itemIconTint 9 +int styleable NavigationView_itemMaxLines 10 +int styleable NavigationView_itemShapeAppearance 11 +int styleable NavigationView_itemShapeAppearanceOverlay 12 +int styleable NavigationView_itemShapeFillColor 13 +int styleable NavigationView_itemShapeInsetBottom 14 +int styleable NavigationView_itemShapeInsetEnd 15 +int styleable NavigationView_itemShapeInsetStart 16 +int styleable NavigationView_itemShapeInsetTop 17 +int styleable NavigationView_itemTextAppearance 18 +int styleable NavigationView_itemTextColor 19 +int styleable NavigationView_menu 20 +int styleable NavigationView_shapeAppearance 21 +int styleable NavigationView_shapeAppearanceOverlay 22 +int[] styleable OnClick { 0x7f0400d3, 0x7f0403fa } +int styleable OnClick_clickAction 0 +int styleable OnClick_targetId 1 +int[] styleable OnSwipe { 0x7f040046, 0x7f040164, 0x7f040165, 0x7f040166, 0x7f040283, 0x7f0402b5, 0x7f0402bd, 0x7f0402f7, 0x7f0402ff, 0x7f040309, 0x7f04036f, 0x7f0403b6, 0x7f0403b7, 0x7f0403b8, 0x7f0403b9, 0x7f0403ba, 0x7f040454, 0x7f040455, 0x7f040456 } +int styleable OnSwipe_autoCompleteMode 0 +int styleable OnSwipe_dragDirection 1 +int styleable OnSwipe_dragScale 2 +int styleable OnSwipe_dragThreshold 3 +int styleable OnSwipe_limitBoundsTo 4 +int styleable OnSwipe_maxAcceleration 5 +int styleable OnSwipe_maxVelocity 6 +int styleable OnSwipe_moveWhenScrollAtTop 7 +int styleable OnSwipe_nestedScrollFlags 8 +int styleable OnSwipe_onTouchUp 9 +int styleable OnSwipe_rotationCenterId 10 +int styleable OnSwipe_springBoundary 11 +int styleable OnSwipe_springDamping 12 +int styleable OnSwipe_springMass 13 +int styleable OnSwipe_springStiffness 14 +int styleable OnSwipe_springStopThreshold 15 +int styleable OnSwipe_touchAnchorId 16 +int styleable OnSwipe_touchAnchorSide 17 +int styleable OnSwipe_touchRegionId 18 +int[] styleable PlaybackControlView { 0x7f040116, 0x7f0401b1, 0x7f040361, 0x7f0403a7 } +int styleable PlaybackControlView_controller_layout_id 0 +int styleable PlaybackControlView_fastforward_increment 1 +int styleable PlaybackControlView_rewind_increment 2 +int styleable PlaybackControlView_show_timeout 3 +int[] styleable PopupWindow { 0x10102c9, 0x1010176, 0x7f04030a } +int styleable PopupWindow_android_popupAnimationStyle 0 +int styleable PopupWindow_android_popupBackground 1 +int styleable PopupWindow_overlapAnchor 2 +int[] styleable PopupWindowBackgroundState { 0x7f0403c3 } +int styleable PopupWindowBackgroundState_state_above_anchor 0 +int[] styleable PropertySet { 0x101031f, 0x10100dc, 0x7f04025a, 0x7f0402f2, 0x7f04047c } +int styleable PropertySet_android_alpha 0 +int styleable PropertySet_android_visibility 1 +int styleable PropertySet_layout_constraintTag 2 +int styleable PropertySet_motionProgress 3 +int styleable PropertySet_visibilityMode 4 +int[] styleable RadialViewGroup { 0x7f0402b0 } +int styleable RadialViewGroup_materialCircleRadius 0 +int[] styleable RangeSlider { 0x7f0402c5, 0x7f040474 } +int styleable RangeSlider_minSeparation 0 +int styleable RangeSlider_values 1 +int[] styleable RealtimeBlurView { 0x7f040355, 0x7f040356, 0x7f040357, 0x7f04048f, 0x7f040490 } +int styleable RealtimeBlurView_realtimeBlurRadius 0 +int styleable RealtimeBlurView_realtimeDownsampleFactor 1 +int styleable RealtimeBlurView_realtimeOverlayColor 2 +int styleable RealtimeBlurView_xRadius 3 +int styleable RealtimeBlurView_yRadius 4 +int[] styleable RecycleListView { 0x7f04030d, 0x7f040313 } +int styleable RecycleListView_paddingBottomNoButtons 0 +int styleable RecycleListView_paddingTopNoTitle 1 +int[] styleable RecyclerView { 0x10100eb, 0x10100f1, 0x10100c4, 0x7f0401ac, 0x7f0401ad, 0x7f0401ae, 0x7f0401af, 0x7f0401b0, 0x7f040231, 0x7f040360, 0x7f0403b1, 0x7f0403bc } +int styleable RecyclerView_android_clipToPadding 0 +int styleable RecyclerView_android_descendantFocusability 1 +int styleable RecyclerView_android_orientation 2 +int styleable RecyclerView_fastScrollEnabled 3 +int styleable RecyclerView_fastScrollHorizontalThumbDrawable 4 +int styleable RecyclerView_fastScrollHorizontalTrackDrawable 5 +int styleable RecyclerView_fastScrollVerticalThumbDrawable 6 +int styleable RecyclerView_fastScrollVerticalTrackDrawable 7 +int styleable RecyclerView_layoutManager 8 +int styleable RecyclerView_reverseLayout 9 +int styleable RecyclerView_spanCount 10 +int styleable RecyclerView_stackFromEnd 11 +int[] styleable RoundLayout { 0x7f040376 } +int styleable RoundLayout_roundLayoutRadius 0 +int[] styleable RoundedImageView { 0x101011d, 0x7f040363, 0x7f040364, 0x7f040365, 0x7f040366, 0x7f040367, 0x7f040368, 0x7f040369, 0x7f04036a, 0x7f04036b, 0x7f04036c, 0x7f04036d, 0x7f04036e } +int styleable RoundedImageView_android_scaleType 0 +int styleable RoundedImageView_riv_border_color 1 +int styleable RoundedImageView_riv_border_width 2 +int styleable RoundedImageView_riv_corner_radius 3 +int styleable RoundedImageView_riv_corner_radius_bottom_left 4 +int styleable RoundedImageView_riv_corner_radius_bottom_right 5 +int styleable RoundedImageView_riv_corner_radius_top_left 6 +int styleable RoundedImageView_riv_corner_radius_top_right 7 +int styleable RoundedImageView_riv_mutate_background 8 +int styleable RoundedImageView_riv_oval 9 +int styleable RoundedImageView_riv_tile_Mode 10 +int styleable RoundedImageView_riv_tile_Mode_x 11 +int styleable RoundedImageView_riv_tile_Mode_y 12 +int[] styleable Scale { 0x7f040155 } +int styleable Scale_disappearedScale 0 +int[] styleable ScrimInsetsFrameLayout { 0x7f040208 } +int styleable ScrimInsetsFrameLayout_insetForeground 0 +int[] styleable ScrollingViewBehavior_Layout { 0x7f04006b } +int styleable ScrollingViewBehavior_Layout_behavior_overlapTop 0 +int[] styleable SearchView { 0x10100da, 0x1010264, 0x1010220, 0x101011f, 0x7f0400d9, 0x7f0400fd, 0x7f04014c, 0x7f0401da, 0x7f0401f8, 0x7f04022e, 0x7f04034a, 0x7f04034b, 0x7f04038b, 0x7f04038c, 0x7f0403d0, 0x7f0403d9, 0x7f04047d } +int styleable SearchView_android_focusable 0 +int styleable SearchView_android_imeOptions 1 +int styleable SearchView_android_inputType 2 +int styleable SearchView_android_maxWidth 3 +int styleable SearchView_closeIcon 4 +int styleable SearchView_commitIcon 5 +int styleable SearchView_defaultQueryHint 6 +int styleable SearchView_goIcon 7 +int styleable SearchView_iconifiedByDefault 8 +int styleable SearchView_layout 9 +int styleable SearchView_queryBackground 10 +int styleable SearchView_queryHint 11 +int styleable SearchView_searchHintIcon 12 +int styleable SearchView_searchIcon 13 +int styleable SearchView_submitBackground 14 +int styleable SearchView_suggestionRowLayout 15 +int styleable SearchView_voiceIcon 16 +int[] styleable ShapeAppearance { 0x7f040118, 0x7f040119, 0x7f04011a, 0x7f04011b, 0x7f04011c, 0x7f04011e, 0x7f04011f, 0x7f040120, 0x7f040121, 0x7f040122 } +int styleable ShapeAppearance_cornerFamily 0 +int styleable ShapeAppearance_cornerFamilyBottomLeft 1 +int styleable ShapeAppearance_cornerFamilyBottomRight 2 +int styleable ShapeAppearance_cornerFamilyTopLeft 3 +int styleable ShapeAppearance_cornerFamilyTopRight 4 +int styleable ShapeAppearance_cornerSize 5 +int styleable ShapeAppearance_cornerSizeBottomLeft 6 +int styleable ShapeAppearance_cornerSizeBottomRight 7 +int styleable ShapeAppearance_cornerSizeTopLeft 8 +int styleable ShapeAppearance_cornerSizeTopRight 9 +int[] styleable ShapeableImageView { 0x7f04010c, 0x7f04010d, 0x7f04010e, 0x7f04010f, 0x7f040110, 0x7f040111, 0x7f040112, 0x7f040394, 0x7f040397, 0x7f0403cd, 0x7f0403ce } +int styleable ShapeableImageView_contentPadding 0 +int styleable ShapeableImageView_contentPaddingBottom 1 +int styleable ShapeableImageView_contentPaddingEnd 2 +int styleable ShapeableImageView_contentPaddingLeft 3 +int styleable ShapeableImageView_contentPaddingRight 4 +int styleable ShapeableImageView_contentPaddingStart 5 +int styleable ShapeableImageView_contentPaddingTop 6 +int styleable ShapeableImageView_shapeAppearance 7 +int styleable ShapeableImageView_shapeAppearanceOverlay 8 +int styleable ShapeableImageView_strokeColor 9 +int styleable ShapeableImageView_strokeWidth 10 +int[] styleable SimpleDraweeView { 0x7f04002d, 0x7f04002e, 0x7f04002f, 0x7f040052, 0x7f0401a9, 0x7f0401aa, 0x7f0401ab, 0x7f04030c, 0x7f040325, 0x7f040326, 0x7f04033a, 0x7f040341, 0x7f040342, 0x7f040343, 0x7f04035e, 0x7f04035f, 0x7f040371, 0x7f040372, 0x7f040373, 0x7f040374, 0x7f040375, 0x7f040378, 0x7f040379, 0x7f04037a, 0x7f04037b, 0x7f04037c, 0x7f04037d, 0x7f04037e, 0x7f04037f, 0x7f040380, 0x7f040476 } +int styleable SimpleDraweeView_actualImageResource 0 +int styleable SimpleDraweeView_actualImageScaleType 1 +int styleable SimpleDraweeView_actualImageUri 2 +int styleable SimpleDraweeView_backgroundImage 3 +int styleable SimpleDraweeView_fadeDuration 4 +int styleable SimpleDraweeView_failureImage 5 +int styleable SimpleDraweeView_failureImageScaleType 6 +int styleable SimpleDraweeView_overlayImage 7 +int styleable SimpleDraweeView_placeholderImage 8 +int styleable SimpleDraweeView_placeholderImageScaleType 9 +int styleable SimpleDraweeView_pressedStateOverlayImage 10 +int styleable SimpleDraweeView_progressBarAutoRotateInterval 11 +int styleable SimpleDraweeView_progressBarImage 12 +int styleable SimpleDraweeView_progressBarImageScaleType 13 +int styleable SimpleDraweeView_retryImage 14 +int styleable SimpleDraweeView_retryImageScaleType 15 +int styleable SimpleDraweeView_roundAsCircle 16 +int styleable SimpleDraweeView_roundBottomEnd 17 +int styleable SimpleDraweeView_roundBottomLeft 18 +int styleable SimpleDraweeView_roundBottomRight 19 +int styleable SimpleDraweeView_roundBottomStart 20 +int styleable SimpleDraweeView_roundTopEnd 21 +int styleable SimpleDraweeView_roundTopLeft 22 +int styleable SimpleDraweeView_roundTopRight 23 +int styleable SimpleDraweeView_roundTopStart 24 +int styleable SimpleDraweeView_roundWithOverlayColor 25 +int styleable SimpleDraweeView_roundedCornerRadius 26 +int styleable SimpleDraweeView_roundingBorderColor 27 +int styleable SimpleDraweeView_roundingBorderPadding 28 +int styleable SimpleDraweeView_roundingBorderWidth 29 +int styleable SimpleDraweeView_viewAspectRatio 30 +int[] styleable SimpleExoPlayerView { 0x7f040116, 0x7f04014e, 0x7f0401b1, 0x7f0401e7, 0x7f040330, 0x7f04035d, 0x7f040361, 0x7f0403a7, 0x7f0403da, 0x7f040472, 0x7f040473 } +int styleable SimpleExoPlayerView_controller_layout_id 0 +int styleable SimpleExoPlayerView_default_artwork 1 +int styleable SimpleExoPlayerView_fastforward_increment 2 +int styleable SimpleExoPlayerView_hide_on_touch 3 +int styleable SimpleExoPlayerView_player_layout_id 4 +int styleable SimpleExoPlayerView_resize_mode 5 +int styleable SimpleExoPlayerView_rewind_increment 6 +int styleable SimpleExoPlayerView_show_timeout 7 +int styleable SimpleExoPlayerView_surface_type 8 +int styleable SimpleExoPlayerView_use_artwork 9 +int styleable SimpleExoPlayerView_use_controller 10 +int[] styleable Slider { 0x101000e, 0x1010146, 0x1010024, 0x10102de, 0x10102df, 0x7f0401db, 0x7f0401dc, 0x7f04022a, 0x7f04022b, 0x7f04042d, 0x7f04042e, 0x7f04042f, 0x7f040430, 0x7f040431, 0x7f040435, 0x7f040436, 0x7f040437, 0x7f04043b, 0x7f040459, 0x7f04045a, 0x7f04045b, 0x7f04045d } +int styleable Slider_android_enabled 0 +int styleable Slider_android_stepSize 1 +int styleable Slider_android_value 2 +int styleable Slider_android_valueFrom 3 +int styleable Slider_android_valueTo 4 +int styleable Slider_haloColor 5 +int styleable Slider_haloRadius 6 +int styleable Slider_labelBehavior 7 +int styleable Slider_labelStyle 8 +int styleable Slider_thumbColor 9 +int styleable Slider_thumbElevation 10 +int styleable Slider_thumbRadius 11 +int styleable Slider_thumbStrokeColor 12 +int styleable Slider_thumbStrokeWidth 13 +int styleable Slider_tickColor 14 +int styleable Slider_tickColorActive 15 +int styleable Slider_tickColorInactive 16 +int styleable Slider_tickVisible 17 +int styleable Slider_trackColor 18 +int styleable Slider_trackColorActive 19 +int styleable Slider_trackColorInactive 20 +int styleable Slider_trackHeight 21 +int[] styleable Snackbar { 0x7f0403ae, 0x7f0403af, 0x7f0403b0 } +int styleable Snackbar_snackbarButtonStyle 0 +int styleable Snackbar_snackbarStyle 1 +int styleable Snackbar_snackbarTextViewStyle 2 +int[] styleable SnackbarLayout { 0x7f04002a, 0x101011f, 0x7f04003f, 0x7f040057, 0x7f04005a, 0x7f04005b, 0x7f040181, 0x7f0402b6 } +int styleable SnackbarLayout_actionTextColorAlpha 0 +int styleable SnackbarLayout_android_maxWidth 1 +int styleable SnackbarLayout_animationMode 2 +int styleable SnackbarLayout_backgroundOverlayColorAlpha 3 +int styleable SnackbarLayout_backgroundTint 4 +int styleable SnackbarLayout_backgroundTintMode 5 +int styleable SnackbarLayout_elevation 6 +int styleable SnackbarLayout_maxActionInlineWidth 7 +int[] styleable Spinner { 0x1010262, 0x10100b2, 0x1010176, 0x101017b, 0x7f040334 } +int styleable Spinner_android_dropDownWidth 0 +int styleable Spinner_android_entries 1 +int styleable Spinner_android_popupBackground 2 +int styleable Spinner_android_prompt 3 +int styleable Spinner_popupTheme 4 +int[] styleable State { 0x10100d0, 0x7f040103 } +int styleable State_android_id 0 +int styleable State_constraints 1 +int[] styleable StateListDrawable { 0x1010196, 0x101011c, 0x101030c, 0x101030d, 0x1010195, 0x1010194 } +int styleable StateListDrawable_android_constantSize 0 +int styleable StateListDrawable_android_dither 1 +int styleable StateListDrawable_android_enterFadeDuration 2 +int styleable StateListDrawable_android_exitFadeDuration 3 +int styleable StateListDrawable_android_variablePadding 4 +int styleable StateListDrawable_android_visible 5 +int[] styleable StateListDrawableItem { 0x1010199 } +int styleable StateListDrawableItem_android_drawable 0 +int[] styleable StateSet { 0x7f04014d } +int styleable StateSet_defaultState 0 +int[] styleable SwitchCompat { 0x1010125, 0x1010124, 0x1010142, 0x7f0403a4, 0x7f0403b5, 0x7f0403db, 0x7f0403dc, 0x7f0403de, 0x7f040432, 0x7f040433, 0x7f040434, 0x7f040458, 0x7f04045f, 0x7f040460 } +int styleable SwitchCompat_android_textOff 0 +int styleable SwitchCompat_android_textOn 1 +int styleable SwitchCompat_android_thumb 2 +int styleable SwitchCompat_showText 3 +int styleable SwitchCompat_splitTrack 4 +int styleable SwitchCompat_switchMinWidth 5 +int styleable SwitchCompat_switchPadding 6 +int styleable SwitchCompat_switchTextAppearance 7 +int styleable SwitchCompat_thumbTextPadding 8 +int styleable SwitchCompat_thumbTint 9 +int styleable SwitchCompat_thumbTintMode 10 +int styleable SwitchCompat_track 11 +int styleable SwitchCompat_trackTint 12 +int styleable SwitchCompat_trackTintMode 13 +int[] styleable SwitchMaterial { 0x7f040471 } +int styleable SwitchMaterial_useMaterialThemeColors 0 +int[] styleable TabItem { 0x1010002, 0x10100f2, 0x101014f } +int styleable TabItem_android_icon 0 +int styleable TabItem_android_layout 1 +int styleable TabItem_android_text 2 +int[] styleable TabLayout { 0x7f0403df, 0x7f0403e0, 0x7f0403e1, 0x7f0403e2, 0x7f0403e3, 0x7f0403e4, 0x7f0403e5, 0x7f0403e6, 0x7f0403e7, 0x7f0403e8, 0x7f0403e9, 0x7f0403ea, 0x7f0403eb, 0x7f0403ec, 0x7f0403ed, 0x7f0403ee, 0x7f0403ef, 0x7f0403f0, 0x7f0403f1, 0x7f0403f2, 0x7f0403f3, 0x7f0403f4, 0x7f0403f5, 0x7f0403f7, 0x7f0403f8, 0x7f0403f9 } +int styleable TabLayout_tabBackground 0 +int styleable TabLayout_tabContentStart 1 +int styleable TabLayout_tabGravity 2 +int styleable TabLayout_tabIconTint 3 +int styleable TabLayout_tabIconTintMode 4 +int styleable TabLayout_tabIndicator 5 +int styleable TabLayout_tabIndicatorAnimationDuration 6 +int styleable TabLayout_tabIndicatorAnimationMode 7 +int styleable TabLayout_tabIndicatorColor 8 +int styleable TabLayout_tabIndicatorFullWidth 9 +int styleable TabLayout_tabIndicatorGravity 10 +int styleable TabLayout_tabIndicatorHeight 11 +int styleable TabLayout_tabInlineLabel 12 +int styleable TabLayout_tabMaxWidth 13 +int styleable TabLayout_tabMinWidth 14 +int styleable TabLayout_tabMode 15 +int styleable TabLayout_tabPadding 16 +int styleable TabLayout_tabPaddingBottom 17 +int styleable TabLayout_tabPaddingEnd 18 +int styleable TabLayout_tabPaddingStart 19 +int styleable TabLayout_tabPaddingTop 20 +int styleable TabLayout_tabRippleColor 21 +int styleable TabLayout_tabSelectedTextColor 22 +int styleable TabLayout_tabTextAppearance 23 +int styleable TabLayout_tabTextColor 24 +int styleable TabLayout_tabUnboundedRipple 25 +int[] styleable TextAppearance { 0x10103ac, 0x1010161, 0x1010162, 0x1010163, 0x1010164, 0x1010098, 0x101009a, 0x101009b, 0x1010585, 0x1010095, 0x1010097, 0x1010096, 0x7f0401ca, 0x7f0401d3, 0x7f0403fe, 0x7f040420 } +int styleable TextAppearance_android_fontFamily 0 +int styleable TextAppearance_android_shadowColor 1 +int styleable TextAppearance_android_shadowDx 2 +int styleable TextAppearance_android_shadowDy 3 +int styleable TextAppearance_android_shadowRadius 4 +int styleable TextAppearance_android_textColor 5 +int styleable TextAppearance_android_textColorHint 6 +int styleable TextAppearance_android_textColorLink 7 +int styleable TextAppearance_android_textFontWeight 8 +int styleable TextAppearance_android_textSize 9 +int styleable TextAppearance_android_textStyle 10 +int styleable TextAppearance_android_typeface 11 +int styleable TextAppearance_fontFamily 12 +int styleable TextAppearance_fontVariationSettings 13 +int styleable TextAppearance_textAllCaps 14 +int styleable TextAppearance_textLocale 15 +int[] styleable TextEffects { 0x10103ac, 0x1010161, 0x1010162, 0x1010163, 0x1010164, 0x101014f, 0x1010095, 0x1010097, 0x1010096, 0x7f040070, 0x7f040071, 0x7f04041d, 0x7f040421, 0x7f040422 } +int styleable TextEffects_android_fontFamily 0 +int styleable TextEffects_android_shadowColor 1 +int styleable TextEffects_android_shadowDx 2 +int styleable TextEffects_android_shadowDy 3 +int styleable TextEffects_android_shadowRadius 4 +int styleable TextEffects_android_text 5 +int styleable TextEffects_android_textSize 6 +int styleable TextEffects_android_textStyle 7 +int styleable TextEffects_android_typeface 8 +int styleable TextEffects_borderRound 9 +int styleable TextEffects_borderRoundPercent 10 +int styleable TextEffects_textFillColor 11 +int styleable TextEffects_textOutlineColor 12 +int styleable TextEffects_textOutlineThickness 13 +int[] styleable TextInputEditText { 0x7f04041e } +int styleable TextInputEditText_textInputLayoutFocusedRectEnabled 0 +int[] styleable TextInputLayout { 0x101000e, 0x1010150, 0x101011f, 0x101013f, 0x101009a, 0x7f040078, 0x7f040079, 0x7f04007a, 0x7f04007b, 0x7f04007c, 0x7f04007d, 0x7f04007e, 0x7f04007f, 0x7f040080, 0x7f040081, 0x7f040082, 0x7f040123, 0x7f040124, 0x7f040125, 0x7f040126, 0x7f040127, 0x7f040128, 0x7f040185, 0x7f040186, 0x7f040187, 0x7f040188, 0x7f040189, 0x7f04018a, 0x7f04018e, 0x7f04018f, 0x7f040190, 0x7f040191, 0x7f040192, 0x7f040193, 0x7f040194, 0x7f040197, 0x7f0401df, 0x7f0401e0, 0x7f0401e1, 0x7f0401e2, 0x7f0401e8, 0x7f0401e9, 0x7f0401ea, 0x7f0401eb, 0x7f040318, 0x7f040319, 0x7f04031a, 0x7f04031b, 0x7f04031c, 0x7f040327, 0x7f040328, 0x7f040329, 0x7f040336, 0x7f040337, 0x7f040338, 0x7f040394, 0x7f040397, 0x7f0403be, 0x7f0403bf, 0x7f0403c0, 0x7f0403c1, 0x7f0403c2, 0x7f0403d6, 0x7f0403d7, 0x7f0403d8 } +int styleable TextInputLayout_android_enabled 0 +int styleable TextInputLayout_android_hint 1 +int styleable TextInputLayout_android_maxWidth 2 +int styleable TextInputLayout_android_minWidth 3 +int styleable TextInputLayout_android_textColorHint 4 +int styleable TextInputLayout_boxBackgroundColor 5 +int styleable TextInputLayout_boxBackgroundMode 6 +int styleable TextInputLayout_boxCollapsedPaddingTop 7 +int styleable TextInputLayout_boxCornerRadiusBottomEnd 8 +int styleable TextInputLayout_boxCornerRadiusBottomStart 9 +int styleable TextInputLayout_boxCornerRadiusTopEnd 10 +int styleable TextInputLayout_boxCornerRadiusTopStart 11 +int styleable TextInputLayout_boxStrokeColor 12 +int styleable TextInputLayout_boxStrokeErrorColor 13 +int styleable TextInputLayout_boxStrokeWidth 14 +int styleable TextInputLayout_boxStrokeWidthFocused 15 +int styleable TextInputLayout_counterEnabled 16 +int styleable TextInputLayout_counterMaxLength 17 +int styleable TextInputLayout_counterOverflowTextAppearance 18 +int styleable TextInputLayout_counterOverflowTextColor 19 +int styleable TextInputLayout_counterTextAppearance 20 +int styleable TextInputLayout_counterTextColor 21 +int styleable TextInputLayout_endIconCheckable 22 +int styleable TextInputLayout_endIconContentDescription 23 +int styleable TextInputLayout_endIconDrawable 24 +int styleable TextInputLayout_endIconMode 25 +int styleable TextInputLayout_endIconTint 26 +int styleable TextInputLayout_endIconTintMode 27 +int styleable TextInputLayout_errorContentDescription 28 +int styleable TextInputLayout_errorEnabled 29 +int styleable TextInputLayout_errorIconDrawable 30 +int styleable TextInputLayout_errorIconTint 31 +int styleable TextInputLayout_errorIconTintMode 32 +int styleable TextInputLayout_errorTextAppearance 33 +int styleable TextInputLayout_errorTextColor 34 +int styleable TextInputLayout_expandedHintEnabled 35 +int styleable TextInputLayout_helperText 36 +int styleable TextInputLayout_helperTextEnabled 37 +int styleable TextInputLayout_helperTextTextAppearance 38 +int styleable TextInputLayout_helperTextTextColor 39 +int styleable TextInputLayout_hintAnimationEnabled 40 +int styleable TextInputLayout_hintEnabled 41 +int styleable TextInputLayout_hintTextAppearance 42 +int styleable TextInputLayout_hintTextColor 43 +int styleable TextInputLayout_passwordToggleContentDescription 44 +int styleable TextInputLayout_passwordToggleDrawable 45 +int styleable TextInputLayout_passwordToggleEnabled 46 +int styleable TextInputLayout_passwordToggleTint 47 +int styleable TextInputLayout_passwordToggleTintMode 48 +int styleable TextInputLayout_placeholderText 49 +int styleable TextInputLayout_placeholderTextAppearance 50 +int styleable TextInputLayout_placeholderTextColor 51 +int styleable TextInputLayout_prefixText 52 +int styleable TextInputLayout_prefixTextAppearance 53 +int styleable TextInputLayout_prefixTextColor 54 +int styleable TextInputLayout_shapeAppearance 55 +int styleable TextInputLayout_shapeAppearanceOverlay 56 +int styleable TextInputLayout_startIconCheckable 57 +int styleable TextInputLayout_startIconContentDescription 58 +int styleable TextInputLayout_startIconDrawable 59 +int styleable TextInputLayout_startIconTint 60 +int styleable TextInputLayout_startIconTintMode 61 +int styleable TextInputLayout_suffixText 62 +int styleable TextInputLayout_suffixTextAppearance 63 +int styleable TextInputLayout_suffixTextColor 64 +int[] styleable ThemeEnforcement { 0x1010034, 0x7f04018b, 0x7f04018c } +int styleable ThemeEnforcement_android_textAppearance 0 +int styleable ThemeEnforcement_enforceMaterialTheme 1 +int styleable ThemeEnforcement_enforceTextAppearance 2 +int[] styleable Toolbar { 0x10100af, 0x1010140, 0x7f04008d, 0x7f0400e1, 0x7f0400e2, 0x7f040106, 0x7f040107, 0x7f040108, 0x7f040109, 0x7f04010a, 0x7f04010b, 0x7f040296, 0x7f040297, 0x7f0402b7, 0x7f0402c0, 0x7f0402f9, 0x7f0402fa, 0x7f040334, 0x7f0403d1, 0x7f0403d3, 0x7f0403d4, 0x7f04043e, 0x7f040442, 0x7f040443, 0x7f040444, 0x7f040445, 0x7f040446, 0x7f040447, 0x7f040448, 0x7f040449 } +int styleable Toolbar_android_gravity 0 +int styleable Toolbar_android_minHeight 1 +int styleable Toolbar_buttonGravity 2 +int styleable Toolbar_collapseContentDescription 3 +int styleable Toolbar_collapseIcon 4 +int styleable Toolbar_contentInsetEnd 5 +int styleable Toolbar_contentInsetEndWithActions 6 +int styleable Toolbar_contentInsetLeft 7 +int styleable Toolbar_contentInsetRight 8 +int styleable Toolbar_contentInsetStart 9 +int styleable Toolbar_contentInsetStartWithNavigation 10 +int styleable Toolbar_logo 11 +int styleable Toolbar_logoDescription 12 +int styleable Toolbar_maxButtonHeight 13 +int styleable Toolbar_menu 14 +int styleable Toolbar_navigationContentDescription 15 +int styleable Toolbar_navigationIcon 16 +int styleable Toolbar_popupTheme 17 +int styleable Toolbar_subtitle 18 +int styleable Toolbar_subtitleTextAppearance 19 +int styleable Toolbar_subtitleTextColor 20 +int styleable Toolbar_title 21 +int styleable Toolbar_titleMargin 22 +int styleable Toolbar_titleMarginBottom 23 +int styleable Toolbar_titleMarginEnd 24 +int styleable Toolbar_titleMarginStart 25 +int styleable Toolbar_titleMarginTop 26 +int styleable Toolbar_titleMargins 27 +int styleable Toolbar_titleTextAppearance 28 +int styleable Toolbar_titleTextColor 29 +int[] styleable Tooltip { 0x10100f6, 0x1010140, 0x101013f, 0x10100d5, 0x101014f, 0x1010034, 0x7f04005a } +int styleable Tooltip_android_layout_margin 0 +int styleable Tooltip_android_minHeight 1 +int styleable Tooltip_android_minWidth 2 +int styleable Tooltip_android_padding 3 +int styleable Tooltip_android_text 4 +int styleable Tooltip_android_textAppearance 5 +int styleable Tooltip_backgroundTint 6 +int[] styleable Transform { 0x1010440, 0x1010326, 0x1010327, 0x1010328, 0x1010324, 0x1010325, 0x1010320, 0x1010321, 0x1010322, 0x1010323, 0x10103fa, 0x7f040461 } +int styleable Transform_android_elevation 0 +int styleable Transform_android_rotation 1 +int styleable Transform_android_rotationX 2 +int styleable Transform_android_rotationY 3 +int styleable Transform_android_scaleX 4 +int styleable Transform_android_scaleY 5 +int styleable Transform_android_transformPivotX 6 +int styleable Transform_android_transformPivotY 7 +int styleable Transform_android_translationX 8 +int styleable Transform_android_translationY 9 +int styleable Transform_android_translationZ 10 +int styleable Transform_transformPivotTarget 11 +int[] styleable Transition { 0x10100d0, 0x7f04004d, 0x7f0400ff, 0x7f040100, 0x7f040175, 0x7f040230, 0x7f0402ef, 0x7f04031d, 0x7f0403bd, 0x7f040462, 0x7f040464 } +int styleable Transition_android_id 0 +int styleable Transition_autoTransition 1 +int styleable Transition_constraintSetEnd 2 +int styleable Transition_constraintSetStart 3 +int styleable Transition_duration 4 +int styleable Transition_layoutDuringTransition 5 +int styleable Transition_motionInterpolator 6 +int styleable Transition_pathMotionArc 7 +int styleable Transition_staggered 8 +int styleable Transition_transitionDisable 9 +int styleable Transition_transitionFlags 10 +int[] styleable Variant { 0x7f040103, 0x7f040359, 0x7f04035a, 0x7f04035b, 0x7f04035c } +int styleable Variant_constraints 0 +int styleable Variant_region_heightLessThan 1 +int styleable Variant_region_heightMoreThan 2 +int styleable Variant_region_widthLessThan 3 +int styleable Variant_region_widthMoreThan 4 +int[] styleable View { 0x10100da, 0x1010000, 0x7f04030f, 0x7f040312, 0x7f04042a } +int styleable View_android_focusable 0 +int styleable View_android_theme 1 +int styleable View_paddingEnd 2 +int styleable View_paddingStart 3 +int styleable View_theme 4 +int[] styleable ViewBackgroundHelper { 0x10100d4, 0x7f04005a, 0x7f04005b } +int styleable ViewBackgroundHelper_android_background 0 +int styleable ViewBackgroundHelper_backgroundTint 1 +int styleable ViewBackgroundHelper_backgroundTintMode 2 +int[] styleable ViewPager2 { 0x10100c4 } +int styleable ViewPager2_android_orientation 0 +int[] styleable ViewStubCompat { 0x10100d0, 0x10100f3, 0x10100f2 } +int styleable ViewStubCompat_android_id 0 +int styleable ViewStubCompat_android_inflatedId 1 +int styleable ViewStubCompat_android_layout 2 +int[] styleable ViewTransition { 0x7f040005, 0x7f040006, 0x10100d0, 0x7f0400d2, 0x7f040175, 0x7f0401f9, 0x7f0401fa, 0x7f0402ef, 0x7f0402f4, 0x7f040308, 0x7f04031d, 0x7f040393, 0x7f040462, 0x7f04046f, 0x7f040478 } +int styleable ViewTransition_SharedValue 0 +int styleable ViewTransition_SharedValueId 1 +int styleable ViewTransition_android_id 2 +int styleable ViewTransition_clearsTag 3 +int styleable ViewTransition_duration 4 +int styleable ViewTransition_ifTagNotSet 5 +int styleable ViewTransition_ifTagSet 6 +int styleable ViewTransition_motionInterpolator 7 +int styleable ViewTransition_motionTarget 8 +int styleable ViewTransition_onStateTransition 9 +int styleable ViewTransition_pathMotionArc 10 +int styleable ViewTransition_setsTag 11 +int styleable ViewTransition_transitionDisable 12 +int styleable ViewTransition_upDuration 13 +int styleable ViewTransition_viewTransitionMode 14 +int[] styleable download { 0x7f04015e, 0x7f04015f, 0x7f040160, 0x7f040161, 0x7f040162, 0x7f040163 } +int styleable download_download_bg_line_color 0 +int styleable download_download_bg_line_width 1 +int styleable download_download_line_color 2 +int styleable download_download_line_width 3 +int styleable download_download_text_color 4 +int styleable download_download_text_size 5 +int[] styleable include { 0x7f0400fe } +int styleable include_constraintSet 0 +int[] styleable keyboard { 0x7f040224, 0x7f040226, 0x7f040227 } +int styleable keyboard_keyBackground 0 +int styleable keyboard_keyTextSize 1 +int styleable keyboard_keyTextStyle 2 +int[] styleable leak_canary_MoreDetailsView { 0x7f040280 } +int styleable leak_canary_MoreDetailsView_leak_canary_plus_color 0 +int[] styleable play { 0x7f04032b, 0x7f04032c, 0x7f04032d, 0x7f04032e } +int styleable play_play_bg_line_color 0 +int styleable play_play_bg_line_width 1 +int styleable play_play_line_color 2 +int styleable play_play_line_width 3 +int xml device_filter 0x7f180001 +int xml key 0x7f180002 +int xml leak_canary_file_paths 0x7f180003 +int xml provider_paths 0x7f180004 +int xml standalone_badge 0x7f180005 +int xml standalone_badge_gravity_bottom_end 0x7f180006 +int xml standalone_badge_gravity_bottom_start 0x7f180007 +int xml standalone_badge_gravity_top_start 0x7f180008 +int xml standalone_badge_offset 0x7f180009 +int xml util_code_provider_paths 0x7f18000a diff --git a/core/function-impl/mogo-core-function-main/build/outputs/logs/manifest-merger-debug-report.txt b/core/function-impl/mogo-core-function-main/build/outputs/logs/manifest-merger-debug-report.txt new file mode 100644 index 0000000000..effb6a0898 --- /dev/null +++ b/core/function-impl/mogo-core-function-main/build/outputs/logs/manifest-merger-debug-report.txt @@ -0,0 +1,149 @@ +-- Merging decision tree log --- +manifest +ADDED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:2:1-71:12 +INJECTED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:2:1-71:12 +INJECTED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:2:1-71:12 +INJECTED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:2:1-71:12 +INJECTED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:2:1-71:12 +INJECTED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:2:1-71:12 +INJECTED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:2:1-71:12 + package + ADDED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:3:5-48 + INJECTED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml + INJECTED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml + android:versionName + INJECTED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml + ADDED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:2:1-71:12 + INJECTED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml + android:versionCode + INJECTED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml + ADDED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:2:1-71:12 + INJECTED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml + xmlns:android + ADDED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:2:11-69 +uses-permission#android.permission.ACCESS_WIFI_STATE +ADDED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:5:5-76 + android:name + ADDED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:5:22-73 +uses-permission#android.permission.CHANGE_WIFI_STATE +ADDED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:6:5-76 + android:name + ADDED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:6:22-73 +uses-permission#android.permission.READ_EXTERNAL_STORAGE +ADDED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:7:5-80 + android:name + ADDED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:7:22-77 +uses-permission#android.permission.WRITE_EXTERNAL_STORAGE +ADDED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:8:5-81 + android:name + ADDED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:8:22-78 +uses-permission#android.permission.ACCESS_LOCATION_EXTRA_COMMANDS +ADDED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:9:5-89 + android:name + ADDED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:9:22-86 +uses-permission#android.permission.ACCESS_FINE_LOCATION +ADDED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:10:5-79 + android:name + ADDED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:10:22-76 +uses-permission#android.permission.KILL_BACKGROUND_PROCESSES +ADDED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:11:5-84 + android:name + ADDED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:11:22-81 +uses-permission#android.permission.SYSTEM_ALERT_WINDOW +ADDED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:12:5-78 + android:name + ADDED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:12:22-75 +application +ADDED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:14:5-70:19 +activity#com.mogo.eagle.core.function.main.MainLauncherActivity +ADDED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:31:9-60:20 + android:screenOrientation + ADDED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:39:13-50 + android:enabled + ADDED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:35:13-35 + android:clearTaskOnLaunch + ADDED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:33:13-45 + android:stateNotNeeded + ADDED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:40:13-42 + android:launchMode + ADDED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:36:13-43 + android:windowSoftInputMode + ADDED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:42:13-64 + android:resizeableActivity + ADDED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:37:13-47 + android:resumeWhilePausing + ADDED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:38:13-46 + android:configChanges + ADDED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:34:13-170 + android:theme + ADDED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:41:13-40 + android:name + ADDED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:32:13-49 +intent-filter#action:name:android.intent.action.MAIN+category:name:android.intent.category.DEFAULT+category:name:android.intent.category.HOME+category:name:android.intent.category.LAUNCHER+category:name:android.intent.category.LAUNCHER_APP +ADDED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:43:13-50:29 +action#android.intent.action.MAIN +ADDED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:44:17-69 + android:name + ADDED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:44:25-66 +category#android.intent.category.LAUNCHER +ADDED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:46:17-77 + android:name + ADDED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:46:27-74 +category#android.intent.category.LAUNCHER_APP +ADDED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:47:17-81 + android:name + ADDED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:47:27-78 +category#android.intent.category.HOME +ADDED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:48:17-73 + android:name + ADDED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:48:27-70 +category#android.intent.category.DEFAULT +ADDED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:49:17-76 + android:name + ADDED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:49:27-73 +intent-filter#action:name:android.intent.action.VIEW+category:name:android.intent.category.BROWSABLE+category:name:android.intent.category.DEFAULT+data:host:launcher+data:path:/main/switch2+data:scheme:mogo +ADDED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:51:13-59:29 +data +ADDED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:52:17-55:45 + android:path + ADDED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:54:21-49 + android:host + ADDED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:53:21-44 + android:scheme + ADDED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:55:21-42 +action#android.intent.action.VIEW +ADDED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:57:17-69 + android:name + ADDED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:57:25-66 +category#android.intent.category.BROWSABLE +ADDED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:58:17-78 + android:name + ADDED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:58:27-75 +service#com.mogo.eagle.core.function.main.service.MogoMainService +ADDED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:62:9-69:19 + android:enabled + ADDED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:64:13-35 + android:exported + ADDED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:65:13-36 + android:name + ADDED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:63:13-85 +intent-filter#action:name:com.mogo.launcher.action.MAIN_SERVICE +ADDED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:66:13-68:29 +action#com.mogo.launcher.action.MAIN_SERVICE +ADDED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:67:17-80 + android:name + ADDED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml:67:25-77 +uses-sdk +INJECTED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml reason: use-sdk injection requested +INJECTED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml +INJECTED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml +INJECTED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml +INJECTED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml + android:targetSdkVersion + INJECTED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml + ADDED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml + INJECTED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml + android:minSdkVersion + INJECTED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml + ADDED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml + INJECTED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-main/src/main/AndroidManifest.xml diff --git a/core/function-impl/mogo-core-function-main/build/tmp/kapt3/incApCache/debug/ap-classpath-entries.bin b/core/function-impl/mogo-core-function-main/build/tmp/kapt3/incApCache/debug/ap-classpath-entries.bin new file mode 100644 index 0000000000..1124a139b2 Binary files /dev/null and b/core/function-impl/mogo-core-function-main/build/tmp/kapt3/incApCache/debug/ap-classpath-entries.bin differ diff --git a/core/function-impl/mogo-core-function-main/build/tmp/kapt3/incApCache/debug/apt-cache.bin b/core/function-impl/mogo-core-function-main/build/tmp/kapt3/incApCache/debug/apt-cache.bin new file mode 100644 index 0000000000..c43ed638b7 Binary files /dev/null and b/core/function-impl/mogo-core-function-main/build/tmp/kapt3/incApCache/debug/apt-cache.bin differ diff --git a/core/function-impl/mogo-core-function-main/build/tmp/kapt3/incApCache/debug/classpath-entries.bin b/core/function-impl/mogo-core-function-main/build/tmp/kapt3/incApCache/debug/classpath-entries.bin new file mode 100644 index 0000000000..ea117525cb Binary files /dev/null and b/core/function-impl/mogo-core-function-main/build/tmp/kapt3/incApCache/debug/classpath-entries.bin differ diff --git a/core/function-impl/mogo-core-function-main/build/tmp/kapt3/incApCache/debug/classpath-structure.bin b/core/function-impl/mogo-core-function-main/build/tmp/kapt3/incApCache/debug/classpath-structure.bin new file mode 100644 index 0000000000..05b857b510 Binary files /dev/null and b/core/function-impl/mogo-core-function-main/build/tmp/kapt3/incApCache/debug/classpath-structure.bin differ diff --git a/core/function-impl/mogo-core-function-main/build/tmp/kapt3/incApCache/debug/java-cache.bin b/core/function-impl/mogo-core-function-main/build/tmp/kapt3/incApCache/debug/java-cache.bin new file mode 100644 index 0000000000..2629dafb60 Binary files /dev/null and b/core/function-impl/mogo-core-function-main/build/tmp/kapt3/incApCache/debug/java-cache.bin differ diff --git a/core/function-impl/mogo-core-function-notice/src/main/java/com/mogo/eagle/core/function/notice/PushModuleProvider.java b/core/function-impl/mogo-core-function-notice/src/main/java/com/mogo/eagle/core/function/notice/PushModuleProvider.java index 3f5cf54521..c228fd3b81 100644 --- a/core/function-impl/mogo-core-function-notice/src/main/java/com/mogo/eagle/core/function/notice/PushModuleProvider.java +++ b/core/function-impl/mogo-core-function-notice/src/main/java/com/mogo/eagle/core/function/notice/PushModuleProvider.java @@ -8,13 +8,8 @@ import androidx.annotation.NonNull; import androidx.fragment.app.Fragment; import com.alibaba.android.arouter.facade.annotation.Route; -import com.mogo.map.listener.IMogoMapListener; -import com.mogo.map.location.IMogoLocationListener; -import com.mogo.map.marker.IMogoMarkerClickListener; -import com.mogo.map.navi.IMogoNaviListener; import com.mogo.eagle.core.function.notice.repository.PushRepository; import com.mogo.eagle.core.function.notice.utils.HandlerUtils; -import com.mogo.service.module.IMogoModuleLifecycle; import com.mogo.service.module.IMogoModuleProvider; @@ -36,35 +31,11 @@ public class PushModuleProvider implements IMogoModuleProvider { return ""; } - @Override - public IMogoModuleLifecycle getCardLifecycle() { - return null; - } - - @Override - public IMogoMapListener getMapListener() { - return null; - } - @Override public int getType() { return 0; } - @Override - public IMogoNaviListener getNaviListener() { - return null; - } - - @Override - public IMogoLocationListener getLocationListener() { - return null; - } - - @Override - public IMogoMarkerClickListener getMarkerClickListener() { - return null; - } @Override public String getAppPackage() { diff --git a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/V2XEventManager.kt b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/V2XEventManager.kt index a32cb22ec7..c804df39ca 100644 --- a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/V2XEventManager.kt +++ b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/V2XEventManager.kt @@ -60,7 +60,6 @@ import com.mogo.service.statusmanager.IMogoStatusChangedListener import com.mogo.service.statusmanager.StatusDescriptor import com.mogo.service.statusmanager.StatusDescriptor.ACC_STATUS import com.mogo.service.statusmanager.StatusDescriptor.SEEK_HELPING -import com.mogo.service.statusmanager.StatusDescriptor.TOP_CONTAINER_READY import com.mogo.eagle.core.utilcode.mogo.storage.SharedPrefsMgr import com.mogo.v2x.V2XManager import com.mogo.v2x.callback.IV2XCallback @@ -84,7 +83,8 @@ import java.lang.IllegalStateException import java.util.concurrent.TimeUnit import java.util.concurrent.atomic.AtomicBoolean -object V2XEventManager : IMoGoMapLocationListener, IMoGoTokenCallback, IV2XCallback, IMogoMapListener, IMogoStatusChangedListener { +object V2XEventManager : IMoGoMapLocationListener, IMoGoTokenCallback, IV2XCallback, + IMogoMapListener, IMogoStatusChangedListener { private const val TAG = "V2XEventManager" @@ -105,7 +105,10 @@ object V2XEventManager : IMoGoMapLocationListener, IMoGoTokenCallback, IV2XCallb it.aiCloudConfig(MoGoAiCloudClientConfig.getInstance()) it.context(context) it.distanceForTriggerRefresh(200f) //行驶超过200(包含)米,刷新道路周边信息(短链请求) - it.durationForTriggerRefresh(60, TimeUnit.SECONDS) // 每隔1分钟,根据自车定位,刷新道路周边信息(短链请求) + it.durationForTriggerRefresh( + 60, + TimeUnit.SECONDS + ) // 每隔1分钟,根据自车定位,刷新道路周边信息(短链请求) it.executor(ThreadUtils.getIoPool()) //用到的线程池(IO类型) it.staticParams(ParamsUtil.getStaticParams()) }.build()) @@ -130,16 +133,17 @@ object V2XEventManager : IMoGoMapLocationListener, IMoGoTokenCallback, IV2XCallb CallerMapLocationListenerManager.addListener(TAG, this) BridgeApi.registerCenter()?.let { it.registerMogoMapListener(MODULE_NAME, this) - it.registerMogoMarkerClickListener(ModuleNames.CARD_TYPE_ROAD_CONDITION, object : IMogoMarkerClickListener { - override fun onMarkerClicked(marker: IMogoMarker?): Boolean { - handleRoadConditionMarkerClick(marker) - return false - } - }) + it.registerMogoMarkerClickListener( + ModuleNames.CARD_TYPE_ROAD_CONDITION, + object : IMogoMarkerClickListener { + override fun onMarkerClicked(marker: IMogoMarker?): Boolean { + handleRoadConditionMarkerClick(marker) + return false + } + }) } BridgeApi.statusManager()?.let { it.registerStatusChangedListener(MODULE_NAME, ACC_STATUS, this) - it.registerStatusChangedListener(MODULE_NAME, TOP_CONTAINER_READY, this) it.registerStatusChangedListener(MODULE_NAME, SEEK_HELPING, this) } } @@ -154,18 +158,19 @@ object V2XEventManager : IMoGoMapLocationListener, IMoGoTokenCallback, IV2XCallb } BridgeApi.statusManager()?.let { it.unregisterStatusChangedListener(MODULE_NAME, ACC_STATUS, this) - it.unregisterStatusChangedListener(MODULE_NAME, TOP_CONTAINER_READY, this) it.unregisterStatusChangedListener(MODULE_NAME, SEEK_HELPING, this) } } private fun initData() { try { // 查询ACC状态 - SharedPrefsMgr.getInstance(Utils.getApp()).putBoolean("descriptor_ACC_STATUS", isAccOn()) + SharedPrefsMgr.getInstance(Utils.getApp()) + .putBoolean("descriptor_ACC_STATUS", isAccOn()) if (isAccOn()) { // 记录开机时间 FatigueDrivingUtils.refreshAccOnTime() } else { // 记录关机时间 - SharedPrefsMgr.getInstance(Utils.getApp()).putString(V2X_ACC_OFF_TIME_STR, TimeUtils.getNowString()) + SharedPrefsMgr.getInstance(Utils.getApp()) + .putString(V2X_ACC_OFF_TIME_STR, TimeUtils.getNowString()) } } catch (e: Exception) { e.printStackTrace() @@ -202,7 +207,8 @@ object V2XEventManager : IMoGoMapLocationListener, IMoGoTokenCallback, IV2XCallb val location = it.location roadEventEntity.location = location - val v2XMessageEntity: V2XMessageEntity = V2XMessageEntity() + val v2XMessageEntity: V2XMessageEntity = + V2XMessageEntity() v2XMessageEntity.type = V2XTypeEnum.ALERT_ROAD_WARNING v2XMessageEntity.isShowState = true v2XMessageEntity.isOnlyShow = true @@ -251,19 +257,14 @@ object V2XEventManager : IMoGoMapLocationListener, IMoGoTokenCallback, IV2XCallb FatigueDrivingUtils.refreshAccOnTime() initCarForHelpStatus() BridgeApi.statusManager()?.let { - if (it.isTopContainerReady) { - V2XManager.forceRefresh() - } + V2XManager.forceRefresh() } } else { // 记录关机时间 - SharedPrefsMgr.getInstance(Utils.getApp()).putString(V2X_ACC_OFF_TIME_STR, TimeUtils.getNowString()) + SharedPrefsMgr.getInstance(Utils.getApp()) + .putString(V2X_ACC_OFF_TIME_STR, TimeUtils.getNowString()) } } else if (descriptor == SEEK_HELPING) { refreshMeSeekHelp(isTrue) - } else if (descriptor == TOP_CONTAINER_READY) { - if (isTrue) { - V2XManager.forceRefresh() - } } } @@ -287,7 +288,7 @@ object V2XEventManager : IMoGoMapLocationListener, IMoGoTokenCallback, IV2XCallb BridgeApi.refreshModel().getHelpSignal(object : V2XRefreshCallback { override fun onSuccess(result: V2XSeekHelpRes?) { if (result != null) { - val resultBean = result.result + val resultBean = result.result if (resultBean != null) { CallerLogger.d("$M_V2X$TAG", "刷新自车求助状态 resultBean:$resultBean") val vehicleType: Int = resultBean.vehicleType //故障车 @@ -312,9 +313,11 @@ object V2XEventManager : IMoGoMapLocationListener, IMoGoTokenCallback, IV2XCallb override fun onSuccess(result: V2XStrategyPushRes?) { //CallerLogger.w("$M_V2X$TAG", "V2X疲劳驾驶配置数据更新:" + GsonUtil.jsonFromObject(result)); val resultBean = result?.result if (resultBean != null) { // 更新本地的v2x提醒策略 - SharedPrefsMgr.getInstance(Utils.getApp()).putString(V2X_STRATEGY_PUSH, GsonUtil.jsonFromObject(resultBean)) + SharedPrefsMgr.getInstance(Utils.getApp()) + .putString(V2X_STRATEGY_PUSH, GsonUtil.jsonFromObject(resultBean)) } } + override fun onFail(msg: String?) {} }) } @@ -323,7 +326,10 @@ object V2XEventManager : IMoGoMapLocationListener, IMoGoTokenCallback, IV2XCallb location ?: return BridgeApi.location.set(location) if (V2XManager.hasInit()) { - V2XManager.onLocationChanged(longitude = location.longitude, latitude = location.latitude) + V2XManager.onLocationChanged( + longitude = location.longitude, + latitude = location.latitude + ) } V2XOptimalRouteObserver.getInstance().update(location) refreshCarState(location) @@ -347,7 +353,7 @@ object V2XEventManager : IMoGoMapLocationListener, IMoGoTokenCallback, IV2XCallb //CallerLogger.d("$M_V2X$TAG", "当前地图的缩放比例为:" + zoomLevel); val zoomLevel: Float = CallerMapUIServiceManager.getMapUIController()?.zoomLevel ?: 0.0f //CallerLogger.d("$M_V2X$TAG", "当前地图的缩放比例为:" + zoomLevel); - if (zoomLevel > 0 && zoomLevel <= 17 && BridgeApi.v2xStatus()?.isRoadEventWindowShow == false) { // 缩放地图 + if (zoomLevel > 0 && zoomLevel <= 17 && BridgeApi.v2xStatus()?.isRoadEventWindowShow == false) { // 缩放地图 val context: Context = context() MapUtils.zoomMap(v2xStatusManager.targetMoGoLatLng, context) } @@ -371,7 +377,10 @@ object V2XEventManager : IMoGoMapLocationListener, IMoGoTokenCallback, IV2XCallb // } // 巡航处理 - val v2XRoadEventEntity = V2XAlarmServer.getDriveFrontAlarmEvent(BridgeApi.v2xMarker()?.v2XRoadEventEntityList, V2XStatusManager.getInstance().location) // 距离是否大于10米 && 消息是否不为空 + val v2XRoadEventEntity = V2XAlarmServer.getDriveFrontAlarmEvent( + BridgeApi.v2xMarker()?.v2XRoadEventEntityList, + V2XStatusManager.getInstance().location + ) // 距离是否大于10米 && 消息是否不为空 // 距离是否大于10米 && 消息是否不为空 if (v2XRoadEventEntity != null && v2XRoadEventEntity.distance >= 5) { // CallerLogger.w("$M_V2X$TAG", // //"\nV2X预警--当前导航状态:" + V2XServiceManager.getNavi().isNaviing() + @@ -401,7 +410,11 @@ object V2XEventManager : IMoGoMapLocationListener, IMoGoTokenCallback, IV2XCallb private fun saveLocalStory(scenarioType: Int, v2XRoadEventEntity: MarkerExploreWay) { ThreadUtils.getIoPool().execute { try { - V2XSQLiteUtils.saveLocalStory(scenarioType, v2XRoadEventEntity, v2XRoadEventEntity.hashCode()) + V2XSQLiteUtils.saveLocalStory( + scenarioType, + v2XRoadEventEntity, + v2XRoadEventEntity.hashCode() + ) } catch (e: Exception) { e.printStackTrace() CallerLogger.e("$M_V2X$TAG", "$e") @@ -417,7 +430,12 @@ object V2XEventManager : IMoGoMapLocationListener, IMoGoTokenCallback, IV2XCallb historyPath[0] = location if (historyPath[1] != null && historyPath[0] != null) { - val carAngle: Double = DrivingDirectionUtils.getCarAngle(historyPath[1]!!.latitude, historyPath[1]!!.longitude, historyPath[0]!!.latitude, historyPath[0]!!.longitude).toDouble() + val carAngle: Double = DrivingDirectionUtils.getCarAngle( + historyPath[1]!!.latitude, + historyPath[1]!!.longitude, + historyPath[0]!!.latitude, + historyPath[0]!!.longitude + ).toDouble() //CallerLogger.d("$M_V2X$TAG", // "\n车辆经纬度:" + Arrays.toString(historyPath) + @@ -477,7 +495,8 @@ object V2XEventManager : IMoGoMapLocationListener, IMoGoTokenCallback, IV2XCallb } private fun handleOptimalRouteEvent(event: V2XEvent.OptimalRoute) { - val v2xMessageEntity: V2XMessageEntity = V2XMessageEntity() // 控制类型 + val v2xMessageEntity: V2XMessageEntity = + V2XMessageEntity() // 控制类型 v2xMessageEntity.type = V2XTypeEnum.ALERT_PUSH_VR_SHOW // 设置数据 v2xMessageEntity.content = event.data // 控制展示状态 v2xMessageEntity.isShowState = true @@ -520,7 +539,10 @@ object V2XEventManager : IMoGoMapLocationListener, IMoGoTokenCallback, IV2XCallb // 交叉路口碰撞预警 changeVisualAngle = true appId = EventTypeEnum.TYPE_USECASE_ID_BSW.poiType.toInt() - tts = String.format(EventTypeEnum.TYPE_USECASE_ID_BSW.tts, getWarningDirection()) + tts = String.format( + EventTypeEnum.TYPE_USECASE_ID_BSW.tts, + getWarningDirection() + ) content = EventTypeEnum.TYPE_USECASE_ID_BSW.content } 1006 -> { @@ -549,19 +571,28 @@ object V2XEventManager : IMoGoMapLocationListener, IMoGoTokenCallback, IV2XCallb } } // 显示弹框,语音提示 - CallerHmiManager.showWarningV2X(appId, content, tts, "$appId", object : IMoGoWarningStatusListener { - val change = changeVisualAngle - override fun onShow() { - if (change) { - CallerVisualAngleManager.changeVisualAngle(TooClose) + CallerHmiManager.showWarningV2X( + appId, + content, + tts, + "$appId", + object : IMoGoWarningStatusListener { + val change = changeVisualAngle + override fun onShow() { + if (change) { + CallerVisualAngleManager.changeVisualAngle(TooClose) + } } - } - override fun onDismiss() { - if (change) { - CallerVisualAngleManager.changeVisualAngle(Default()) + + override fun onDismiss() { + if (change) { + CallerVisualAngleManager.changeVisualAngle(Default()) + } } - } - }, true, 5000L) + }, + true, + 5000L + ) TrafficMarkerDrawer.updateITrafficInfo(trafficData) } 2 -> { @@ -607,7 +638,7 @@ object V2XEventManager : IMoGoMapLocationListener, IMoGoTokenCallback, IV2XCallb override fun onError(code: Int, msg: String?) {} fun onDestroy() { - if (hasInit.compareAndSet(true,false)) { + if (hasInit.compareAndSet(true, false)) { try { scope.cancel() } catch (e: Throwable) { diff --git a/core/mogo-core-data/src/main/java/com/mogo/eagle/core/data/constants/MogoServicePaths.java b/core/mogo-core-data/src/main/java/com/mogo/eagle/core/data/constants/MogoServicePaths.java index 8b5dfe7f1e..c16465cc33 100644 --- a/core/mogo-core-data/src/main/java/com/mogo/eagle/core/data/constants/MogoServicePaths.java +++ b/core/mogo-core-data/src/main/java/com/mogo/eagle/core/data/constants/MogoServicePaths.java @@ -81,20 +81,6 @@ public class MogoServicePaths { @Deprecated public static final String PATH_REGISTER_CENTER = "/registercenter/api"; - /** - * 基础家和公司管理 - */ - @Keep - @Deprecated - public static final String PATH_ADDRESS_MANAGER = "/addressmanager/api"; - - /** - * 大而全数据管理中心 - */ - @Keep - @Deprecated - public static final String PATH_DATA_MANAGER = "/datamanager/api"; - /** * 接口集合 */ @@ -123,41 +109,6 @@ public class MogoServicePaths { @Deprecated public static final String PATH_MARKER_SERVICE = "/mogomarker/api"; - /** - * 位置上报 - */ - @Keep - @Deprecated - public static final String PATH_LOCATION_INFO = "/locationinfo/api"; - - /** - * passport - */ - @Keep - @Deprecated - public static final String PATH_PASSPORT = "/passport/api"; - - /** - * 授权服务 - */ - @Keep - @Deprecated - public static final String PATH_AGREEMENT = "/agreement/showFragment"; - - /** - * 在线好友面板 - */ - @Keep - @Deprecated - public static final String PATH_ONLINE_CAR_PANEL = "/onlinecar/panel"; - - /** - * 全局免唤醒 - */ - @Keep - @Deprecated - public static final String PATH_GLOBAL_UNWAKE = "/global/unwake"; - /** * 自研地图和高德地图切换 */ diff --git a/libraries/mogo-map-api/src/main/java/com/mogo/map/navi/IMogoNaviListener.java b/libraries/mogo-map-api/src/main/java/com/mogo/map/navi/IMogoNaviListener.java deleted file mode 100644 index 0a1993ecd9..0000000000 --- a/libraries/mogo-map-api/src/main/java/com/mogo/map/navi/IMogoNaviListener.java +++ /dev/null @@ -1,48 +0,0 @@ -package com.mogo.map.navi; - -/** - * @author congtaowang - * @since 2019-12-25 - *

- * 导航监听 - */ -public interface IMogoNaviListener { - - /** - * 导航初始化失败 - */ - default void onInitNaviFailure(){} - - /** - * 导航初始化成功 - */ - default void onInitNaviSuccess(){} - - /** - * 导航引导信息 - * - * @param naviinfo - */ - default void onNaviInfoUpdate( MogoNaviInfo naviinfo ){} - - /** - * 导航开始回调 - */ - default void onStartNavi(){} - - /** - * 导航停止:包括到达目的地和主动停止导航 - */ - default void onStopNavi(){} - - /** - * 路径规划成功 - */ - default void onCalculateSuccess(){} - - /** - * 路径规划失败 - */ - default void onoCalculateFailed(){} - -} diff --git a/libraries/mogo-map-api/src/main/java/com/mogo/map/navi/MogoNaviInfo.java b/libraries/mogo-map-api/src/main/java/com/mogo/map/navi/MogoNaviInfo.java deleted file mode 100644 index 633af674bc..0000000000 --- a/libraries/mogo-map-api/src/main/java/com/mogo/map/navi/MogoNaviInfo.java +++ /dev/null @@ -1,210 +0,0 @@ -package com.mogo.map.navi; - -import android.os.Parcel; -import android.os.Parcelable; - -import androidx.annotation.DrawableRes; - -/** - * @author congtaowang - * @since 2019-12-25 - *

- * 导航引导信息 - */ -public class MogoNaviInfo implements Parcelable { - - /** - * 当前路线名称 - */ - private String currentRoadName; - - /** - * 导航过程中当前的车速 - */ - private int currentSpeed; - - /** - * 当前路段剩余距离 - */ - private int curStepRetainDistance; - - /** - * 当前路段剩余时间 - */ - private int curStepRetainTime; - - /** - * 导航转向图标资源ID - */ - @DrawableRes - private int iconResId; - - /** - * 下条路名 - */ - private String nextRoadName; - - /** - * 剩余时间(秒) - */ - private int pathRetainTime; - - /** - * 剩余距离 - */ - private int pathRetainDistance; - - /** - * 当前限速 - */ - private float currentLimitSpeed; - - public String getCurrentRoadName() { - return currentRoadName; - } - - public void setCurrentRoadName(String currentRoadName) { - this.currentRoadName = currentRoadName; - } - - public int getCurrentSpeed() { - return currentSpeed; - } - - public void setCurrentSpeed(int currentSpeed) { - this.currentSpeed = currentSpeed; - } - - public int getCurStepRetainDistance() { - return curStepRetainDistance; - } - - public void setCurStepRetainDistance(int curStepRetainDistance) { - this.curStepRetainDistance = curStepRetainDistance; - } - - public int getCurStepRetainTime() { - return curStepRetainTime; - } - - public void setCurStepRetainTime(int curStepRetainTime) { - this.curStepRetainTime = curStepRetainTime; - } - - public int getIconResId() { - return iconResId; - } - - public void setIconResId(int iconResId) { - this.iconResId = iconResId; - } - - public String getNextRoadName() { - return nextRoadName; - } - - public void setNextRoadName(String nextRoadName) { - this.nextRoadName = nextRoadName; - } - - public int getPathRetainTime() { - return pathRetainTime; - } - - public void setPathRetainTime(int pathRetainTime) { - this.pathRetainTime = pathRetainTime; - } - - public int getPathRetainDistance() { - return pathRetainDistance; - } - - public String getVoiceRetainDistance() { - - StringBuilder builder = new StringBuilder(); - if (pathRetainDistance >= 1000) { - builder.append(String.format("%.1f公里", pathRetainDistance / 1000f)); - } else { - builder.append(pathRetainDistance).append("米"); - } - - return builder.toString(); - } - - public String getVoiceRetainTime() { - StringBuilder builder = new StringBuilder(); - int seconds = pathRetainTime; - int days = seconds / (24 * 60 * 60); - if (days > 0) { - builder.append(days).append("天"); - } - seconds -= days * 24 * 60 * 60; - int hours = seconds / (60 * 60); - if (hours > 0) { - builder.append(hours).append("小时"); - } - seconds -= hours * 60 * 60; - int min = seconds / 60; - builder.append(min > 1 ? min : 1).append("分钟"); - return builder.toString(); - - } - - public void setPathRetainDistance(int pathRetainDistance) { - this.pathRetainDistance = pathRetainDistance; - } - - public float getCurrentLimitSpeed() { - return currentLimitSpeed; - } - - public void setCurrentLimitSpeed(float currentLimitSpeed) { - this.currentLimitSpeed = currentLimitSpeed; - } - - @Override - public int describeContents() { - return 0; - } - - @Override - public void writeToParcel(Parcel dest, int flags) { - dest.writeString(this.currentRoadName); - dest.writeInt(this.currentSpeed); - dest.writeInt(this.curStepRetainDistance); - dest.writeInt(this.curStepRetainTime); - dest.writeInt(this.iconResId); - dest.writeString(this.nextRoadName); - dest.writeInt(this.pathRetainTime); - dest.writeInt(this.pathRetainDistance); - dest.writeFloat(this.currentLimitSpeed); - } - - public MogoNaviInfo() { - } - - protected MogoNaviInfo(Parcel in) { - this.currentRoadName = in.readString(); - this.currentSpeed = in.readInt(); - this.curStepRetainDistance = in.readInt(); - this.curStepRetainTime = in.readInt(); - this.iconResId = in.readInt(); - this.nextRoadName = in.readString(); - this.pathRetainTime = in.readInt(); - this.pathRetainDistance = in.readInt(); - this.currentLimitSpeed = in.readFloat(); - } - - public static final Creator CREATOR = new Creator() { - @Override - public MogoNaviInfo createFromParcel(Parcel source) { - return new MogoNaviInfo(source); - } - - @Override - public MogoNaviInfo[] newArray(int size) { - return new MogoNaviInfo[size]; - } - }; -} - diff --git a/modules/mogo-module-common/src/main/java/com/mogo/module/common/drawer/RoadConditionDrawer.java b/modules/mogo-module-common/src/main/java/com/mogo/module/common/drawer/RoadConditionDrawer.java deleted file mode 100644 index 1049fdf654..0000000000 --- a/modules/mogo-module-common/src/main/java/com/mogo/module/common/drawer/RoadConditionDrawer.java +++ /dev/null @@ -1,126 +0,0 @@ -package com.mogo.module.common.drawer; - -import android.view.animation.LinearInterpolator; - -import com.mogo.commons.AbsMogoApplication; -import com.mogo.eagle.core.utilcode.mogo.thread.WorkThreadHandler; -import com.mogo.map.MogoMarkerManager; -import com.mogo.map.marker.IMogoMarker; -import com.mogo.map.marker.IMogoMarkerClickListener; -import com.mogo.map.marker.anim.OnMarkerAnimationListener; -import com.mogo.module.common.ModuleNames; -import com.mogo.module.common.MogoApisHandler; -import com.mogo.module.common.entity.MarkerExploreWay; -import com.mogo.module.common.entity.MarkerLocation; -import com.mogo.module.common.entity.MarkerShowEntity; - -import java.util.List; -import java.util.Map; - -public -/** - * @author congtaowang - * @since 2020/10/28 - * - * 描述 - */ -class RoadConditionDrawer { - - private static final String TAG = "RoadConditionDrawer"; - - private static volatile RoadConditionDrawer sInstance; - - private RoadConditionDrawer() { - } - - public static RoadConditionDrawer getInstance() { - if ( sInstance == null ) { - synchronized ( RoadConditionDrawer.class ) { - if ( sInstance == null ) { - sInstance = new RoadConditionDrawer(); - } - } - } - return sInstance; - } - - public synchronized void release() { - sInstance = null; - } - - private Object readResolve() { - // 阻止反序列化,必须实现 Serializable 接口 - return sInstance; - } - - /** - * 探路数据 - * - * @param exploreWayList - */ - public void drawRoadConditionMarker( List< MarkerExploreWay > exploreWayList, int maxAmount, IMogoMarkerClickListener listener ) { - // 将数据同步给探路,避免探路每次 perform 的时候去拉取,造成消耗 - if ( exploreWayList == null || exploreWayList.isEmpty() ) { - MogoMarkerManager.getInstance(AbsMogoApplication.getApp()).removeMarkers( ModuleNames.CARD_TYPE_ROAD_CONDITION ); - return; - } - int size = MarkerDrawer.getInstance().getAppropriateSize( maxAmount, exploreWayList ); - Map< String, IMogoMarker > existCarMap = MarkerDrawer.getInstance().purgeMarkerData( exploreWayList, ModuleNames.CARD_TYPE_ROAD_CONDITION ); - for ( int i = 0; i < size; i++ ) { - MarkerExploreWay markerExploreWay = exploreWayList.get( i ); - if ( !markerExploreWay.getCanLive() ) { - MarkerLocation markerLocation = markerExploreWay.getLocation(); - - MarkerShowEntity markerShowEntity = new MarkerShowEntity(); - markerShowEntity.setBindObj( markerExploreWay ); - markerShowEntity.setMarkerLocation( markerLocation ); - markerShowEntity.setMarkerType( markerExploreWay.getType() ); - markerShowEntity.setTextContent( markerExploreWay.getAddr() ); - - String sn = MarkerDrawer.getInstance().getPrimaryKeyFromEntity( markerExploreWay ); - IMogoMarker mogoMarker = existCarMap.get( sn ); - if ( mogoMarker == null || mogoMarker.isDestroyed() ) { - try { - if ( MogoApisHandler.getInstance().getApis().getStatusManagerApi().isVrMode() ) { - mogoMarker = MarkerDrawer.getInstance().drawMapMarkerImpl( markerShowEntity, true, MarkerDrawer.MARKER_Z_INDEX_HIGH, listener ); -// mogoMarker.setInfoWindowAdapter( new RoadConditionInfoWindow3DAdapter( markerShowEntity, AbsMogoApplication.getApp(), mogoMarker.getMogoMarkerOptions() ) ); -// mogoMarker.showInfoWindow(); - } else { - post2AddAndStartAnimation( markerShowEntity, i * 100L, listener ); - } - } catch ( Exception e ) { - e.printStackTrace(); - } - } - } - } - } - - private void post2AddAndStartAnimation( MarkerShowEntity entity, long delay, IMogoMarkerClickListener listener ) { - if ( entity == null ) { - return; - } - WorkThreadHandler.getInstance().postDelayed( () -> { - if ( entity == null ) { - return; - } - IMogoMarker marker = MarkerDrawer.getInstance().drawMapMarkerImpl( entity, MarkerDrawer.MARKER_Z_INDEX_HIGH, listener ); - if ( marker == null ) { - return; - } - marker.startScaleAnimationWithAlpha( 0, 1.2f, 0, 1.2f, 0f, 1f, 300, new LinearInterpolator(), new OnMarkerAnimationListener() { - @Override - public void onAnimStart() { - } - - @Override - public void onAnimEnd() { - if ( marker == null || marker.isDestroyed() ) { - return; - } - marker.startScaleAnimation( 1.2f, 1, 1.2f, 1, 100, new LinearInterpolator(), null ); - } - } ); - }, delay ); - } -} diff --git a/modules/mogo-module-common/src/main/java/com/mogo/module/common/enums/EventTypeEnum.kt b/modules/mogo-module-common/src/main/java/com/mogo/module/common/enums/EventTypeEnum.kt index 6bafc726fa..89c00acf2e 100644 --- a/modules/mogo-module-common/src/main/java/com/mogo/module/common/enums/EventTypeEnum.kt +++ b/modules/mogo-module-common/src/main/java/com/mogo/module/common/enums/EventTypeEnum.kt @@ -13,8 +13,6 @@ enum class EventTypeEnum( val poiTypeSrcVr: Int = R.drawable.v2x_icon_live_logo, val content: String = "", val tts: String = "" ) { - //加油站 - GAS_STATION("10001", "加油站", content = "加油站附近", tts = "加油站"), //交通检查 TRAFFIC_CHECK( @@ -28,12 +26,6 @@ enum class EventTypeEnum( "前方封路", "道路封路" ), - //商场打折 - SHOP_DISCOUNT("10004", ""), - - //4S店 - FOURS_4S("10005", ""), - //施工 FOURS_ROAD_WORK( "10006", "道路施工", "前方施工", R.drawable.icon_warning_v2x_road_construction, @@ -52,9 +44,6 @@ enum class EventTypeEnum( "前方道路积水", "道路积水" ), - //超市打折 - FOURS_SHOP_FREE("10009", ""), - //浓雾 FOURS_FOG( "10010", "出现浓雾", "浓雾预警", R.drawable.v2x_icon_nongwu_vr, @@ -67,9 +56,6 @@ enum class EventTypeEnum( "前方路面结冰", "路面结冰" ), - //停车场 - FOURS_PARKING("10012", "停车场", "停车场", content = "停车场附近", tts = "停车场"), - //事故 FOURS_ACCIDENT( "10013", "交通事故", "前方交通事故", R.drawable.v2x_icon_jiaotongshigu_vr, @@ -106,9 +92,6 @@ enum class EventTypeEnum( "前方交通事故", "交通事故" ), - //身边 - FOURS_NEALY("10014", "身边事件"), - //实时路况 FOURS_LIVING("10015", "实时路况"), @@ -139,13 +122,6 @@ enum class EventTypeEnum( // 违章停车 ALERT_ILLEGAL_PARK("99992"), - // TODO 这里目前是演示DEMO会用到,想着是打算商用,先这么处理的 - // 取快递 - ALERT_TRAFFIC_EXPRESS("99995"), - - // 顺风车 - ALERT_TRAFFIC_TAXI("99994"), - TYPE_USECASE_ID_EBW( ObuConstants.USE_CASE_ID.EBW.toString(), "紧急制动预警", @@ -385,24 +361,18 @@ enum class EventTypeEnum( } // 如果获取不到,那么就用本地默认的 return when (poiType) { - GAS_STATION.poiType -> GAS_STATION.poiTypeStr TRAFFIC_CHECK.poiType -> TRAFFIC_CHECK.poiTypeStr ROAD_CLOSED.poiType -> ROAD_CLOSED.poiTypeStr - SHOP_DISCOUNT.poiType -> SHOP_DISCOUNT.poiTypeStr - FOURS_4S.poiType -> FOURS_4S.poiTypeStr FOURS_ROAD_WORK.poiType -> FOURS_ROAD_WORK.poiTypeStr FOURS_BLOCK_UP.poiType -> FOURS_BLOCK_UP.poiTypeStr FOURS_PONDING.poiType -> FOURS_PONDING.poiTypeStr - FOURS_SHOP_FREE.poiType -> FOURS_SHOP_FREE.poiTypeStr FOURS_FOG.poiType -> FOURS_FOG.poiTypeStr FOURS_ICE.poiType -> FOURS_ICE.poiTypeStr - FOURS_PARKING.poiType -> FOURS_PARKING.poiTypeStr FOURS_ACCIDENT.poiType, FOURS_ACCIDENT_01.poiType, FOURS_ACCIDENT_02.poiType, FOURS_ACCIDENT_03.poiType, FOURS_ACCIDENT_04.poiType, FOURS_ACCIDENT_05.poiType -> FOURS_ACCIDENT.poiTypeStr - FOURS_NEALY.poiType -> FOURS_NEALY.poiTypeStr FOURS_LIVING.poiType -> FOURS_LIVING.poiTypeStr else -> "其它道路事件" @@ -412,24 +382,18 @@ enum class EventTypeEnum( @JvmStatic fun getPoiTypeStrVr(poiType: String): String { return when (poiType) { - GAS_STATION.poiType -> GAS_STATION.poiTypeStrVr TRAFFIC_CHECK.poiType -> TRAFFIC_CHECK.poiTypeStrVr ROAD_CLOSED.poiType -> ROAD_CLOSED.poiTypeStrVr - SHOP_DISCOUNT.poiType -> SHOP_DISCOUNT.poiTypeStrVr - FOURS_4S.poiType -> FOURS_4S.poiTypeStrVr FOURS_ROAD_WORK.poiType -> FOURS_ROAD_WORK.poiTypeStrVr FOURS_BLOCK_UP.poiType -> FOURS_BLOCK_UP.poiTypeStrVr FOURS_PONDING.poiType -> FOURS_PONDING.poiTypeStrVr - FOURS_SHOP_FREE.poiType -> FOURS_SHOP_FREE.poiTypeStrVr FOURS_FOG.poiType -> FOURS_FOG.poiTypeStrVr FOURS_ICE.poiType -> FOURS_ICE.poiTypeStrVr - FOURS_PARKING.poiType -> FOURS_PARKING.poiTypeStrVr FOURS_ACCIDENT.poiType, FOURS_ACCIDENT_01.poiType, FOURS_ACCIDENT_02.poiType, FOURS_ACCIDENT_03.poiType, FOURS_ACCIDENT_04.poiType, FOURS_ACCIDENT_05.poiType -> FOURS_ACCIDENT.poiTypeStrVr - FOURS_NEALY.poiType -> FOURS_NEALY.poiTypeStrVr FOURS_LIVING.poiType -> FOURS_LIVING.poiTypeStrVr else -> "其它道路事件" } @@ -440,20 +404,16 @@ enum class EventTypeEnum( return when (poiType) { TRAFFIC_CHECK.poiType -> TRAFFIC_CHECK.poiTypeSrcVr ROAD_CLOSED.poiType -> ROAD_CLOSED.poiTypeSrcVr - FOURS_4S.poiType -> FOURS_4S.poiTypeSrcVr FOURS_ROAD_WORK.poiType -> FOURS_ROAD_WORK.poiTypeSrcVr FOURS_BLOCK_UP.poiType -> FOURS_BLOCK_UP.poiTypeSrcVr FOURS_PONDING.poiType -> FOURS_PONDING.poiTypeSrcVr - FOURS_SHOP_FREE.poiType -> FOURS_SHOP_FREE.poiTypeSrcVr FOURS_FOG.poiType -> FOURS_FOG.poiTypeSrcVr FOURS_ICE.poiType -> FOURS_ICE.poiTypeSrcVr - FOURS_PARKING.poiType -> FOURS_PARKING.poiTypeSrcVr FOURS_ACCIDENT.poiType, FOURS_ACCIDENT_01.poiType, FOURS_ACCIDENT_02.poiType, FOURS_ACCIDENT_03.poiType, FOURS_ACCIDENT_04.poiType, FOURS_ACCIDENT_05.poiType -> FOURS_ACCIDENT.poiTypeSrcVr - FOURS_NEALY.poiType -> FOURS_NEALY.poiTypeSrcVr FOURS_LIVING.poiType -> FOURS_LIVING.poiTypeSrcVr else -> R.drawable.v2x_icon_live_logo } @@ -465,8 +425,7 @@ enum class EventTypeEnum( @JvmStatic fun getPoiTypeBg(poiType: String, isVrMode: Boolean): Int { return when (poiType) { - FOURS_PARKING.poiType, GAS_STATION.poiType -> R.drawable.bg_v2x_event_type_blue - FOURS_BLOCK_UP.poiType, FOURS_LIVING.poiType, FOURS_NEALY.poiType -> if (isVrMode) R.drawable.bg_v2x_event_type_orange_vr else R.drawable.bg_v2x_event_type_orange + FOURS_BLOCK_UP.poiType, FOURS_LIVING.poiType-> if (isVrMode) R.drawable.bg_v2x_event_type_orange_vr else R.drawable.bg_v2x_event_type_orange TRAFFIC_CHECK.poiType, ROAD_CLOSED.poiType, FOURS_ROAD_WORK.poiType, FOURS_PONDING.poiType, FOURS_FOG.poiType, FOURS_ICE.poiType, FOURS_ACCIDENT.poiType, FOURS_ACCIDENT_01.poiType, FOURS_ACCIDENT_02.poiType, FOURS_ACCIDENT_03.poiType, @@ -480,9 +439,7 @@ enum class EventTypeEnum( @JvmStatic fun getPoiTypeBgForShareItem(poiType: String): Int { return when (poiType) { - FOURS_PARKING.poiType, GAS_STATION.poiType -> - R.drawable.bg_v2x_event_type_blue - FOURS_BLOCK_UP.poiType, FOURS_LIVING.poiType, FOURS_NEALY.poiType -> + FOURS_BLOCK_UP.poiType, FOURS_LIVING.poiType -> R.drawable.bg_v2x_event_type_orange TRAFFIC_CHECK.poiType, ROAD_CLOSED.poiType, FOURS_ROAD_WORK.poiType, FOURS_PONDING.poiType, @@ -531,8 +488,6 @@ enum class EventTypeEnum( @JvmStatic fun getTts(poiType: String?): String { return when (poiType) { - FOURS_PARKING.poiType -> FOURS_PARKING.tts - GAS_STATION.poiType -> GAS_STATION.tts TRAFFIC_CHECK.poiType -> TRAFFIC_CHECK.tts ROAD_CLOSED.poiType -> ROAD_CLOSED.tts FOURS_ROAD_WORK.poiType -> FOURS_ROAD_WORK.tts @@ -549,8 +504,6 @@ enum class EventTypeEnum( @JvmStatic fun getTtsWithFeedback(poiType: String?): String { return when (poiType) { - FOURS_PARKING.poiType -> "有停车场" - GAS_STATION.poiType -> "有加油站" TRAFFIC_CHECK.poiType -> "交通检查" ROAD_CLOSED.poiType -> "封路" FOURS_ROAD_WORK.poiType -> "施工" @@ -567,8 +520,6 @@ enum class EventTypeEnum( @JvmStatic fun getAlarmContent(poiType: String?): String { return when (poiType) { - FOURS_PARKING.poiType -> FOURS_PARKING.content - GAS_STATION.poiType -> GAS_STATION.content TRAFFIC_CHECK.poiType -> TRAFFIC_CHECK.content ROAD_CLOSED.poiType -> ROAD_CLOSED.content FOURS_ROAD_WORK.poiType -> FOURS_ROAD_WORK.content @@ -720,14 +671,6 @@ enum class EventTypeEnum( ALERT_CAR_TROUBLE_WARNING.poiType -> { R.drawable.icon_car_red } - // 取快递 - ALERT_TRAFFIC_EXPRESS.poiType -> { - R.drawable.v_to_x_marker_express - } - // 顺风车 - ALERT_TRAFFIC_TAXI.poiType -> { - R.drawable.v_to_x_marker_taxi - } else -> 0 } } diff --git a/modules/mogo-module-common/src/main/java/com/mogo/module/common/utils/CloudPoiManager.java b/modules/mogo-module-common/src/main/java/com/mogo/module/common/utils/CloudPoiManager.java index a6d6dad15c..3923d87bbe 100644 --- a/modules/mogo-module-common/src/main/java/com/mogo/module/common/utils/CloudPoiManager.java +++ b/modules/mogo-module-common/src/main/java/com/mogo/module/common/utils/CloudPoiManager.java @@ -22,7 +22,7 @@ import java.util.Map; public class CloudPoiManager { private static final String TAG = "CloudPoiManager"; - private Map poiWrapper = new ArrayMap<>(); + private final Map poiWrapper = new ArrayMap<>(); private static CloudPoiManager instance = null; public static CloudPoiManager getInstance() { @@ -38,30 +38,20 @@ public class CloudPoiManager { public void generateDefault() { if (poiWrapper.isEmpty()) { - poiWrapper.put(EventTypeEnum.GAS_STATION.getPoiType(), new PoiWrapper(EventTypeEnum.GAS_STATION.getPoiType(), R.drawable.module_common_icon_map_marker_refuel, - R.drawable.module_common_icon_map_marker_refuel, "加油站")); poiWrapper.put(EventTypeEnum.TRAFFIC_CHECK.getPoiType(), new PoiWrapper(EventTypeEnum.TRAFFIC_CHECK.getPoiType(), R.drawable.module_common_icon_map_marker_road_check2, R.drawable.module_common_icon_map_marker_road_check2_white, "交通检查")); poiWrapper.put(EventTypeEnum.ROAD_CLOSED.getPoiType(), new PoiWrapper(EventTypeEnum.ROAD_CLOSED.getPoiType(), R.drawable.module_common_icon_map_marker_road_block_off2, R.drawable.module_common_icon_map_marker_road_block_off2_white, "封路")); - poiWrapper.put(EventTypeEnum.SHOP_DISCOUNT.getPoiType(), new PoiWrapper(EventTypeEnum.SHOP_DISCOUNT.getPoiType(), - R.drawable.module_common_icon_map_marker_shop_discount, R.drawable.module_common_icon_map_marker_shop_discount, "商场打折")); - poiWrapper.put(EventTypeEnum.FOURS_4S.getPoiType(), new PoiWrapper(EventTypeEnum.FOURS_4S.getPoiType(), - R.drawable.module_common_icon_map_marker_4s, R.drawable.module_common_icon_map_marker_4s, "4S店")); poiWrapper.put(EventTypeEnum.FOURS_ROAD_WORK.getPoiType(), new PoiWrapper(EventTypeEnum.FOURS_ROAD_WORK.getPoiType(), R.drawable.module_common_icon_map_marker_road_work2, R.drawable.module_common_icon_map_marker_road_work2_white, "施工")); poiWrapper.put(EventTypeEnum.FOURS_BLOCK_UP.getPoiType(), new PoiWrapper(EventTypeEnum.FOURS_BLOCK_UP.getPoiType(), R.drawable.module_common_icon_map_marker_road_block_up2, R.drawable.module_common_icon_map_marker_road_block_up2_white, "拥堵")); poiWrapper.put(EventTypeEnum.FOURS_PONDING.getPoiType(), new PoiWrapper(EventTypeEnum.FOURS_PONDING.getPoiType(), R.drawable.module_common_icon_map_marker_pondingl2, R.drawable.module_common_icon_map_marker_pondingl2_white, "积水")); - poiWrapper.put(EventTypeEnum.FOURS_SHOP_FREE.getPoiType(), new PoiWrapper(EventTypeEnum.FOURS_SHOP_FREE.getPoiType(), - R.drawable.module_common_icon_map_marker_shop, R.drawable.module_common_icon_map_marker_shop, "超时打折")); poiWrapper.put(EventTypeEnum.FOURS_FOG.getPoiType(), new PoiWrapper(EventTypeEnum.FOURS_FOG.getPoiType(), R.drawable.module_common_ic_rc_dark_frog2, R.drawable.module_common_ic_rc_dark_frog2_white, "浓雾")); poiWrapper.put(EventTypeEnum.FOURS_ICE.getPoiType(), new PoiWrapper(EventTypeEnum.FOURS_ICE.getPoiType(), R.drawable.module_common_ic_rc_freeze2, R.drawable.module_common_ic_rc_freeze2_white, "结冰")); - poiWrapper.put(EventTypeEnum.FOURS_PARKING.getPoiType(), new PoiWrapper(EventTypeEnum.FOURS_PARKING.getPoiType(), - R.drawable.module_common_ic_rc_parking2, R.drawable.module_common_ic_rc_parking2, "停车场")); poiWrapper.put(EventTypeEnum.FOURS_ACCIDENT.getPoiType(), new PoiWrapper(EventTypeEnum.FOURS_ACCIDENT.getPoiType(), R.drawable.module_common_ic_rc_accident3, R.drawable.module_common_ic_rc_accident3_white, "事故")); poiWrapper.put(EventTypeEnum.FOURS_ACCIDENT_01.getPoiType(), new PoiWrapper(EventTypeEnum.FOURS_ACCIDENT_01.getPoiType(), @@ -74,8 +64,6 @@ public class CloudPoiManager { R.drawable.module_common_ic_rc_accident3, R.drawable.module_common_ic_rc_accident3_white, "一般事故")); poiWrapper.put(EventTypeEnum.FOURS_ACCIDENT_05.getPoiType(), new PoiWrapper(EventTypeEnum.FOURS_ACCIDENT_05.getPoiType(), R.drawable.module_common_ic_rc_accident3, R.drawable.module_common_ic_rc_accident3_white, "轻微事故")); - poiWrapper.put(EventTypeEnum.FOURS_NEALY.getPoiType(), new PoiWrapper(EventTypeEnum.FOURS_NEALY.getPoiType(), - R.drawable.module_common_icon_map_marker_shear_news, R.drawable.module_common_icon_map_marker_shear_news, "身边")); poiWrapper.put(EventTypeEnum.FOURS_LIVING.getPoiType(), new PoiWrapper(EventTypeEnum.FOURS_LIVING.getPoiType(), R.drawable.module_common_icon_map_marker_living, R.drawable.module_common_icon_map_marker_living_white, "实时路况")); poiWrapper.put(EventTypeEnum.ILLEGAL_PARK_LIVING.getPoiType(), new PoiWrapper(EventTypeEnum.ILLEGAL_PARK_LIVING.getPoiType(), diff --git a/modules/mogo-module-service/src/main/java/com/mogo/module/service/MarkerServiceHandler.java b/modules/mogo-module-service/src/main/java/com/mogo/module/service/MarkerServiceHandler.java index 065f5da684..b7b5669920 100644 --- a/modules/mogo-module-service/src/main/java/com/mogo/module/service/MarkerServiceHandler.java +++ b/modules/mogo-module-service/src/main/java/com/mogo/module/service/MarkerServiceHandler.java @@ -5,11 +5,7 @@ import android.content.Context; import com.mogo.module.common.MogoApisHandler; import com.mogo.module.service.marker.MapMarkerManager; import com.mogo.service.IMogoServiceApis; -import com.mogo.service.analytics.IMogoAnalytics; -import com.mogo.service.datamanager.IMogoDataManager; -import com.mogo.service.fragmentmanager.IMogoFragmentManager; import com.mogo.service.intent.IMogoIntentManager; -import com.mogo.service.module.IMogoRegisterCenter; import com.mogo.service.statusmanager.IMogoStatusManager; /** @@ -25,20 +21,12 @@ public class MarkerServiceHandler { private static IMogoServiceApis sApis; private static IMogoStatusManager sMogoStatusManager; - private static IMogoAnalytics sMogoAnalytics; - private static IMogoRegisterCenter sRegisterCenter; - private static IMogoDataManager sDataManager; private static IMogoIntentManager sIntentManager; - private static IMogoFragmentManager sFragmentManager; public static synchronized void init(final Context context) { sApis = MogoApisHandler.getInstance().getApis(); sMogoStatusManager = sApis.getStatusManagerApi(); - sMogoAnalytics = sApis.getAnalyticsApi(); - sRegisterCenter = sApis.getRegisterCenterApi(); - sDataManager = sApis.getDataManagerApi(); sIntentManager = sApis.getIntentManagerApi(); - sFragmentManager = sApis.getFragmentManagerApi(); MapMarkerManager.getInstance().init(context); } @@ -50,23 +38,8 @@ public class MarkerServiceHandler { return sMogoStatusManager; } - public static IMogoAnalytics getMogoAnalytics() { - return sMogoAnalytics; - } - - public static IMogoRegisterCenter getRegisterCenter() { - return sRegisterCenter; - } - public static IMogoIntentManager getIntentManager() { return sIntentManager; } - public static IMogoFragmentManager getFragmentManager() { - return sFragmentManager; - } - - public static IMogoDataManager getDataManager() { - return sDataManager; - } } diff --git a/modules/mogo-module-service/src/main/java/com/mogo/module/service/MogoServiceProvider.java b/modules/mogo-module-service/src/main/java/com/mogo/module/service/MogoServiceProvider.java index 13f4fb89f3..3e66800edd 100644 --- a/modules/mogo-module-service/src/main/java/com/mogo/module/service/MogoServiceProvider.java +++ b/modules/mogo-module-service/src/main/java/com/mogo/module/service/MogoServiceProvider.java @@ -10,13 +10,7 @@ import androidx.fragment.app.Fragment; import com.alibaba.android.arouter.facade.annotation.Route; import com.mogo.commons.AbsMogoApplication; -import com.mogo.eagle.core.utilcode.util.UiThreadHandler; -import com.mogo.map.listener.IMogoMapListener; -import com.mogo.map.location.IMogoLocationListener; -import com.mogo.map.marker.IMogoMarkerClickListener; -import com.mogo.map.navi.IMogoNaviListener; import com.mogo.module.service.routeoverlay.MogoRouteOverlayManager; -import com.mogo.service.module.IMogoModuleLifecycle; import com.mogo.service.module.IMogoModuleProvider; import com.mogo.service.module.ModuleType; @@ -57,31 +51,6 @@ public class MogoServiceProvider implements IMogoModuleProvider { return null; } - @Override - public IMogoModuleLifecycle getCardLifecycle() { - return null; - } - - @Override - public IMogoMapListener getMapListener() { - return null; - } - - @Override - public IMogoNaviListener getNaviListener() { - return null; - } - - @Override - public IMogoLocationListener getLocationListener() { - return null; - } - - @Override - public IMogoMarkerClickListener getMarkerClickListener() { - return null; - } - @Override public String getAppPackage() { return null; @@ -98,8 +67,6 @@ public class MogoServiceProvider implements IMogoModuleProvider { MogoServices.getInstance().preInit( context ); MogoServices.getInstance().init( AbsMogoApplication.getApp() ); MogoRouteOverlayManager.getInstance(context).init(); - UiThreadHandler.postDelayed( () -> { - }, 5_000L ); } @Override diff --git a/modules/mogo-module-service/src/main/java/com/mogo/module/service/MogoServices.java b/modules/mogo-module-service/src/main/java/com/mogo/module/service/MogoServices.java index 923fd42c15..c06cf91e30 100644 --- a/modules/mogo-module-service/src/main/java/com/mogo/module/service/MogoServices.java +++ b/modules/mogo-module-service/src/main/java/com/mogo/module/service/MogoServices.java @@ -5,50 +5,25 @@ import static com.mogo.eagle.core.utilcode.mogo.logger.scene.SceneConstant.M_OLD import android.content.Context; import android.content.Intent; import android.content.IntentFilter; -import android.location.Location; import android.net.ConnectivityManager; -import android.os.Handler; -import android.os.Looper; -import android.os.Message; import android.text.TextUtils; -import android.view.MotionEvent; import com.mogo.commons.debug.DebugConfig; import com.mogo.commons.voice.AIAssist; -import com.mogo.commons.voice.IMogoVoiceCmdCallBack; -import com.mogo.eagle.core.data.map.MogoLatLng; -import com.mogo.eagle.core.data.map.MogoLocation; import com.mogo.eagle.core.utilcode.mogo.logger.CallerLogger; -import com.mogo.eagle.core.utilcode.mogo.thread.WorkThreadHandler; import com.mogo.eagle.core.utilcode.util.NetworkUtils; import com.mogo.map.IDestroyable; -import com.mogo.map.MogoMapUIController; import com.mogo.map.MogoMarkerManager; import com.mogo.map.listener.IMogoMapListener; -import com.mogo.map.location.IMogoLocationListener; -import com.mogo.map.navi.IMogoCarLocationChangedListener2; -import com.mogo.map.navi.IMogoNaviListener; import com.mogo.map.uicontroller.EnumMapUI; import com.mogo.module.common.MogoApisHandler; import com.mogo.module.common.MogoModule; import com.mogo.module.common.MogoModulePaths; -import com.mogo.module.common.entity.MarkerResponse; -import com.mogo.module.service.handler.MainLooperHandler; -import com.mogo.module.service.handler.RefreshWorkThreadHandler; import com.mogo.module.service.intent.IntentHandlerFactory; -import com.mogo.module.service.marker.MapMarkerManager; -import com.mogo.module.service.network.RefreshCallback; -import com.mogo.module.service.network.RefreshModel; import com.mogo.module.service.receiver.MogoReceiver; -import com.mogo.module.service.refresh.AutoRefreshStrategy; -import com.mogo.module.service.refresh.CustomRefreshStrategy; -import com.mogo.module.service.refresh.RefreshObject; import com.mogo.realtime.api.MoGoAiCloudRealTime; -import com.mogo.service.fragmentmanager.FragmentStackTransactionListener; -import com.mogo.service.fragmentmanager.IMogoFragmentManager; import com.mogo.service.intent.IMogoIntentListener; import com.mogo.service.intent.IMogoIntentManager; -import com.mogo.service.module.IMogoRegisterCenter; import com.mogo.service.statusmanager.IMogoStatusChangedListener; import com.mogo.service.statusmanager.IMogoStatusManager; import com.mogo.service.statusmanager.StatusDescriptor; @@ -67,17 +42,9 @@ import java.util.List; * 4. 用户交互语音导致地图视图移动,缩放,不触发刷新 */ public class MogoServices implements IMogoMapListener, - IMogoLocationListener, - IMogoNaviListener, IMogoIntentListener, - IMogoVoiceCmdCallBack, - FragmentStackTransactionListener, - IMogoCarLocationChangedListener2, IDestroyable { - private boolean mInternalUnWakeupRegisterStatus = false; - - private MogoServices() { // private constructor } @@ -92,201 +59,32 @@ public class MogoServices implements IMogoMapListener, private static final String TAG = "MogoServices"; - /** - * 自动刷新策略 - */ - private final AutoRefreshStrategy mAutoRefreshStrategy = new AutoRefreshStrategy(); - /** - * 手动刷新策略 - */ - private final CustomRefreshStrategy mCustomRefreshStrategy = new CustomRefreshStrategy(); - - private MogoLatLng mLastAutoRefreshLocation = null; - - /** - * 是否已计算出地图显示状态 - */ - private boolean mIsMapStatusOk = false; - - /** - * 地图显示是横屏还是竖屏:根据地图右上角和左下角坐标计算 - */ - private boolean mIsVertical = false; - private MogoReceiver mAIAssistReceiver; - private RefreshModel mRefreshModel; - - private float mLastZoomLevel = 0; - private long mRefreshRemainingTime = Long.MAX_VALUE; - // 上次手动操作的中心点坐标 - private MogoLatLng mLastCustomRefreshCenterLocation; - - private IMogoStatusManager mStatusManager; private IMogoIntentManager mIntentManager; - private IMogoFragmentManager mFragmentManager; - private IMogoRegisterCenter mRegisterCenter; - - - /** - * 地图视图初始化 - */ - private boolean mIsCameraInited = true; - - /** - * 是否针对第一次请求失败的情况(开机请求、地库长时间没网络) - *

- * 说明:第一次地位成功,因为网络问题,导致请求失败,则在其他策略请求之前,尝试10s请求一次。 - */ - private boolean mLoopRequest = false; - - private final Handler mHandler = new MainLooperHandler(Looper.getMainLooper()) { - - @Override - protected void handleRefreshDecrease(Message msg) { - if (mStatusManager.isV2XShow()) { - invokeAutoRefreshStrategy(); - return; - } - mRefreshRemainingTime -= ServiceConst.DECREASE_INTERVAL; - if (mRefreshRemainingTime <= 0) { - CallerLogger.INSTANCE.d(M_OLD_OTHER + TAG, "move to center and refresh data."); - invokeAutoRefresh(); - } else { - mHandler.sendEmptyMessageDelayed(msg.what, ServiceConst.DECREASE_INTERVAL); - } - } - - @Override - protected void handleLoopRequestMessage(Message msg) { - if (mStatusManager.isV2XShow()) { - return; - } - if (mLoopRequest) { - CallerLogger.INSTANCE.d(M_OLD_OTHER + TAG, "补偿刷新触发"); - invokeAutoRefresh(); - } - } - }; - - /** - * 自动刷新:锁车、缩放比例:16、半径 2KM - */ - private void invokeAutoRefresh() { - if (mStatusManager.isV2XShow()) { - mStatusManager.setUserInteractionStatus(TAG, true, false); - MogoMapUIController.getInstance().recoverLockMode(); - return; - } - mStatusManager.setUserInteractionStatus(ServiceConst.TYPE, true, false); - MogoMapUIController.getInstance().changeZoom(ServiceConst.DEFAULT_LOCK_CAR_ZOOM_LEVEL); - mStatusManager.setUserInteractionStatus(TAG, true, false); - MogoMapUIController.getInstance().recoverLockMode(); - notifyRefreshData(mLastAutoRefreshLocation, ServiceConst.DEFAULT_AUTO_REFRESH_DATA_RADIUS, mAutoRefreshCallback); - } private Context mContext; - /** - * 地图视图西南角坐标 - */ - private MogoLatLng mCameraSouthWestPosition; - - /** - * 地图视图东北角坐标 - */ - private MogoLatLng mCameraNorthEastPosition; - - /** - * 手动刷新回调 - */ - private final RefreshCallback mCustomRefreshCallback = new RefreshCallback() { - @Override - public void onSuccess(MarkerResponse o) { - MapMarkerManager.getInstance().onSyncMarkerResponse(o); - mLoopRequest = false; - // 用户手动操作地图刷新成功后,设置状态为 true,引发延时策略 - mStatusManager.setUserInteractionStatus(ServiceConst.TYPE, true, true); - } - - @Override - public void onFail() { - - } - }; - - /** - * 自动刷新回调 - */ - private final RefreshCallback mAutoRefreshCallback = new RefreshCallback() { - @Override - public void onSuccess(MarkerResponse o) { - MapMarkerManager.getInstance().onSyncMarkerResponse(o); - mLoopRequest = false; - invokeAutoRefreshStrategy(); - } - - @Override - public void onFail() { - if (mLoopRequest) { - CallerLogger.INSTANCE.d(M_OLD_OTHER + TAG, "onFail and loop"); - mHandler.sendEmptyMessageDelayed(ServiceConst.MSG_LOOP_REQUEST, ServiceConst.LOOP_INTERVAL); - } else { - invokeAutoRefreshStrategy(); - } - } - }; - - private void invokeAutoRefreshStrategy() { - restartAutoRefreshAtTime(mAutoRefreshStrategy.getInterval()); - } - - private Handler mThreadHandler; - private final IMogoStatusChangedListener statusChangedListener = new StatusChangedAdapter() { }; - public void preInit(Context context) { mContext = context; - - mRefreshModel = new RefreshModel(context); - mStatusManager = MarkerServiceHandler.getMogoStatusManager(); - mStatusManager.registerStatusChangedListener(ServiceConst.TYPE, StatusDescriptor.USER_INTERACTED, statusChangedListener); - mStatusManager.registerStatusChangedListener(ServiceConst.TYPE, StatusDescriptor.MAIN_PAGE_RESUME, statusChangedListener); - mStatusManager.registerStatusChangedListener(ServiceConst.TYPE, StatusDescriptor.SEEK_HELPING, statusChangedListener); + IMogoStatusManager mStatusManager = MarkerServiceHandler.getMogoStatusManager(); mStatusManager.registerStatusChangedListener(ServiceConst.TYPE, StatusDescriptor.ACC_STATUS, statusChangedListener); - mStatusManager.registerStatusChangedListener(ServiceConst.TYPE, StatusDescriptor.VR_MODE, statusChangedListener); - mStatusManager.registerStatusChangedListener(ServiceConst.TYPE, StatusDescriptor.TOP_VIEW, statusChangedListener); - mStatusManager.registerStatusChangedListener(ServiceConst.TYPE, StatusDescriptor.MAIN_PAGE_IS_BACKGROUND, statusChangedListener); mStatusManager.setAIAssistReady(TAG, AIAssist.getInstance(mContext).hasFlush()); - } public void init(Context context) { - initWorkThread(); - registerMogoReceiver(context); - registerInternalUnWakeupWords(); - - mRegisterCenter = MarkerServiceHandler.getRegisterCenter(); - mRegisterCenter.registerMogoMapListener(ServiceConst.TYPE, this); - mRegisterCenter.registerMogoLocationListener(ServiceConst.TYPE, this); - mRegisterCenter.registerMogoNaviListener(ServiceConst.TYPE, this); - mRegisterCenter.registerCarLocationChangedListener(ServiceConst.TYPE, this); mIntentManager = MarkerServiceHandler.getIntentManager(); mIntentManager.registerIntentListener(MogoReceiver.ACTION_VOICE_UI, this); - mIntentManager.registerIntentListener(ServiceConst.COMMAND_MY_LOCATION, this); mIntentManager.registerIntentListener(MogoReceiver.ACTION_VOICE_READY, this); mIntentManager.registerIntentListener(MogoReceiver.ACTION_MOCK, this); mIntentManager.registerIntentListener(ConnectivityManager.CONNECTIVITY_ACTION, this); - mFragmentManager = MarkerServiceHandler.getFragmentManager(); - - mFragmentManager.addMainFragmentStackTransactionListener(this); - Intent intent = new Intent("com.freedom.ser.ACTION"); intent.addFlags(Intent.FLAG_INCLUDE_STOPPED_PACKAGES); mContext.sendBroadcast(intent); @@ -296,36 +94,6 @@ public class MogoServices implements IMogoMapListener, } } - private void initWorkThread() { - mThreadHandler = new RefreshWorkThreadHandler(WorkThreadHandler.getInstance().getLooper()) { - @Override - protected void handleMapChangedMessage(Message msg) { - if (msg.obj instanceof RefreshObject) { - RefreshObject ro = ((RefreshObject) msg.obj); - if (invokeRefreshWhenTranslationByUser(ro.mLonLat)) { - notifyRefreshData(ro.mLonLat, ro.mRadius, ro.mCallback); - mLastCustomRefreshCenterLocation = ro.mLonLat; - } - } - } - - @Override - protected void handleRequestDataMessage(Message msg) { - if (msg.obj instanceof RefreshObject) { - RefreshObject ro = ((RefreshObject) msg.obj); - if (ro.mLonLat == null) { - invokeAutoRefreshStrategy(); - CallerLogger.INSTANCE.w(M_OLD_OTHER + TAG, "lonLat is null."); - return; - } - //请求大而全数据,刷新地图POI - mRefreshModel.refreshExplorerWayData(ro.mLonLat, ro.mRadius, ro.mAmount, ro.mCallback); - CallerLogger.INSTANCE.i(M_OLD_OTHER + TAG, "刷新半径 = " + ro.mRadius + ", 点 = " + ro.mLonLat + " , zoomLevel = " + mLastZoomLevel + ", amount = " + ro.mAmount); - } - } - }; - } - private void registerMogoReceiver(Context context) { if (context == null) { return; @@ -358,250 +126,6 @@ public class MogoServices implements IMogoMapListener, } } - @Override - public void onMapLoaded() { - initMapStatus(); - } - - private void initMapStatus() { - if (mIsMapStatusOk) { - return; - } - try { - float width = getMapCameraFactWidth(); - float height = getMapCameraFactHeight(); - mIsVertical = width < height; - mIsMapStatusOk = true; - } catch (Exception e) { - e.printStackTrace(); - } - } - - /** - * 地图视图对应的实际宽度 - */ - private float getMapCameraFactWidth() { - try { - return Utils.calculateLineDistance(mCameraNorthEastPosition, new MogoLatLng(mCameraNorthEastPosition.lat, mCameraSouthWestPosition.lon)); - } catch (Exception e) { - return ServiceConst.DEFAULT_AUTO_REFRESH_DATA_RADIUS; - } - } - - /** - * 地图视图对应的实际高度 - */ - private float getMapCameraFactHeight() { - try { - return Utils.calculateLineDistance(mCameraSouthWestPosition, new MogoLatLng(mCameraNorthEastPosition.lat, mCameraSouthWestPosition.lon)); - } catch (Exception e) { - return ServiceConst.DEFAULT_AUTO_REFRESH_DATA_RADIUS; - } - } - - @Override - public void onTouch(MotionEvent motionEvent) { - switch (motionEvent.getActionMasked()) { - case MotionEvent.ACTION_DOWN: - if (mLastZoomLevel == 0) { - mLastZoomLevel = MogoMapUIController.getInstance().getZoomLevel(); - } - break; - case MotionEvent.ACTION_UP: - restartAutoRefreshAtTime(ServiceConst.DEFAULT_AUTO_REFRESH_WHEN_INTERRUPT, false); - mThreadHandler.removeMessages(ServiceConst.MSG_LOCK_CAR); - mThreadHandler.sendEmptyMessageDelayed(ServiceConst.MSG_LOCK_CAR, ServiceConst.DEFAULT_AUTO_REFRESH_WHEN_INTERRUPT); - break; - } - } - - public void stopAutoRefreshStrategy() { - stopAutoRefreshStrategy(true); - } - - private void stopAutoRefreshStrategy(boolean stopOnlineCarRefresh) { - mHandler.removeMessages(ServiceConst.MSG_TYPE_REFRESH_DECREASE); - if (stopOnlineCarRefresh) { - MapMarkerManager.getInstance().stopAutoRefresh(); - } - } - - @Override - public void onLockMap(boolean isLock) { - mThreadHandler.removeMessages(ServiceConst.MSG_LOCK_CAR); - if (!isLock) { - mThreadHandler.sendEmptyMessageDelayed(ServiceConst.MSG_LOCK_CAR, ServiceConst.DEFAULT_AUTO_REFRESH_WHEN_INTERRUPT); - } - } - - @Override - public void onMapChanged(MogoLatLng latLng, float zoom, float tilt, float bearing) { - - MapMarkerManager.getInstance().syncLocation(latLng.lon, latLng.lat); - - if (mIsCameraInited) { - mLastZoomLevel = zoom; - mLastCustomRefreshCenterLocation = latLng; - mIsCameraInited = false; - initMapStatus(); - return; - } - - // 部分非用户操作导致地图视图变化:绘线、圈点等不触发用户刷新 - // 消费状态 - if (mStatusManager.isUserInteracted()) { - mLastCustomRefreshCenterLocation = latLng; - mLastZoomLevel = zoom; - return; - } - - // v2x // adas 状态下不做任何操作 - if (mStatusManager.isV2XShow()) { - mLastCustomRefreshCenterLocation = latLng; - mLastZoomLevel = zoom; - return; - } - - // 手动刷新触发 - if (mLastZoomLevel - zoom > mCustomRefreshStrategy.getZoomOutLevel()) { - // 缩放级别缩小 - notifyRefreshData(latLng, getQueryRadius(), mCustomRefreshCallback); - mLastCustomRefreshCenterLocation = latLng; - mLastZoomLevel = zoom; - } else if (mLastZoomLevel - zoom < 0) { - mLastZoomLevel = zoom; - } else if (mLastZoomLevel == zoom) { - // 手动平移 - Message msg = Message.obtain(); - msg.what = ServiceConst.MSG_MAP_CHANGED; - msg.obj = new RefreshObject(mCustomRefreshCallback, getQueryRadius(), latLng, 0); - mThreadHandler.sendMessage(msg); - } - } - - private int getQueryRadius() { - mCameraSouthWestPosition = MogoMapUIController.getInstance().getCameraSouthWestPosition(); - mCameraNorthEastPosition = MogoMapUIController.getInstance().getCameraNorthEastPosition(); - int radius; - if (mIsVertical) { - radius = ((int) (getMapCameraFactWidth() / 2)); - } else { - radius = ((int) (getMapCameraFactHeight() / 2)); - } - return Math.max(radius, 1000); - } - - /** - * 平移地图刷新策略 - */ - private boolean invokeRefreshWhenTranslationByUser(MogoLatLng latLng) { - try { - float factor; - if (mIsVertical) { - factor = getMapCameraFactWidth(); - } else { - factor = getMapCameraFactHeight(); - } - if (factor == 0.0f) { - return false; - } - float distance = Utils.calculateLineDistance(latLng, mLastCustomRefreshCenterLocation); - return distance > (factor / 2); - } catch (Exception e) { - CallerLogger.INSTANCE.e(M_OLD_OTHER + TAG, "invokeRefreshWhenTranslationByUser warming : " + e); - return false; - } - } - - @Override - public void onLocationChanged(MogoLocation location) { - - if (!DebugConfig.isMapBased()) { - return; - } - - if (!mStatusManager.isMainPageLaunched()) { - return; - } - - if (!mStatusManager.isMainPageOnResume()) { - return; - } - - if (mStatusManager.isV2XShow()) { - return; - } - - if (location == null) { - return; - } - - // 自动刷新触发 - final MogoLatLng point = new MogoLatLng(location.getLatitude(), location.getLongitude()); - if (mLastAutoRefreshLocation == null) { - startFirstLocationRequest(point); - return; - } - float distance = Utils.calculateLineDistance(mLastAutoRefreshLocation, point); - if (distance > mAutoRefreshStrategy.getDistance()) { - mStatusManager.setUserInteractionStatus(ServiceConst.TYPE, true, false); - MogoMapUIController.getInstance().recoverLockMode(); - mStatusManager.setUserInteractionStatus(TAG, true, false); - MogoMapUIController.getInstance().changeZoom(ServiceConst.DEFAULT_ZOOM_LEVEL); - mLastAutoRefreshLocation = point; - notifyRefreshData(mLastAutoRefreshLocation, getQueryRadius(), mAutoRefreshCallback); - } - } - - /** - * 首次定位成功后,执行道路事件的刷新 - * - * @param point {@link MogoLatLng} - */ - private void startFirstLocationRequest(MogoLatLng point) { - mLastAutoRefreshLocation = point; - mLoopRequest = true; - notifyRefreshData(mLastAutoRefreshLocation, getQueryRadius(), mAutoRefreshCallback); - } - - @Override - public void onCarLocationChanged2(Location latLng) { - if (latLng == null) { - return; - } - // poi 定位无法获取时,使用该定位 - if (mLastAutoRefreshLocation == null) { - MogoLatLng point = new MogoLatLng(latLng.getLatitude(), latLng.getLongitude()); - startFirstLocationRequest(point); - } - } - - /** - * 刷新数据 - */ - private void notifyRefreshData(MogoLatLng latLng, int radius, RefreshCallback callback) { - if (!mStatusManager.isMainPageLaunched()) { - return; - } - - if (!mStatusManager.isMainPageOnResume()) { - return; - } - - int amount = 20; - - Message msg = Message.obtain(); - msg.what = ServiceConst.MSG_REQUEST_DATA; - msg.obj = new RefreshObject(callback, radius, latLng, amount); - if (mThreadHandler != null) { - mThreadHandler.sendMessage(msg); - } - } - - public void restartAutoRefreshAtTime(long time) { - restartAutoRefreshAtTime(time, true); - } - public void clearAllData() { try { MogoMarkerManager.getInstance(mContext).removeMarkers(); @@ -610,33 +134,8 @@ public class MogoServices implements IMogoMapListener, } } - private void restartAutoRefreshAtTime(long time, boolean stopOnlineCarRefresh) { - if (time < 0) { - CallerLogger.INSTANCE.w(M_OLD_OTHER + TAG, "refresh request case time < 0, set to 0 and go on."); - time = 0; - } - stopAutoRefreshStrategy(stopOnlineCarRefresh); - mRefreshRemainingTime = time; - long delay = ServiceConst.DECREASE_INTERVAL; - if (mRefreshRemainingTime < ServiceConst.DECREASE_INTERVAL) { - delay = mRefreshRemainingTime; - } - if (time == 0) { - invokeAutoRefresh(); - } else { - mHandler.sendEmptyMessageDelayed(ServiceConst.MSG_TYPE_REFRESH_DECREASE, delay); - } - } - - public void refreshStrategy() { - mStatusManager.setUserInteractionStatus(ServiceConst.TYPE, true, false); - MogoMapUIController.getInstance().recoverLockMode();// 锁车代替移到中心点 - restartAutoRefreshAtTime(0); - } - @Override public void onIntentReceived(String command, Intent intent) { - if (TextUtils.equals(command, ConnectivityManager.CONNECTIVITY_ACTION) && NetworkUtils.isConnected(mContext)) { mIntentManager.unregisterIntentListener(ConnectivityManager.CONNECTIVITY_ACTION, this); @@ -644,77 +143,6 @@ public class MogoServices implements IMogoMapListener, IntentHandlerFactory.getInstance().handle(mContext, command, intent); } - /** - * 注册桌面免唤醒指令 - */ - public void registerInternalUnWakeupWords() { - if (mInternalUnWakeupRegisterStatus) { - return; - } - mInternalUnWakeupRegisterStatus = true; - AIAssist.getInstance(mContext).registerUnWakeupCommand(ServiceConst.CMD_UN_WAKEUP_MY_LOCATION, ServiceConst.CMD_UN_WAKEUP_WORDS_MY_LOCATION, this); - } - - /** - * 注销桌面免唤醒指令 - */ - public void unregisterInternalUnWakeupWords() { - if (!mInternalUnWakeupRegisterStatus) { - return; - } - mInternalUnWakeupRegisterStatus = false; - AIAssist.getInstance(mContext).unregisterUnWakeupCommand(ServiceConst.CMD_UN_WAKEUP_MY_LOCATION, this); - } - - @Override - public void onCmdSelected(String cmd) { - if (TextUtils.equals(ServiceConst.CMD_UN_WAKEUP_MY_LOCATION, cmd)) { - if (mStatusManager.isMainPageOnResume()) { - MogoMapUIController.getInstance().recoverLockMode(); - } - } else if (TextUtils.equals(ServiceConst.CMD_BACK, cmd)) { - mFragmentManager.clearAll(); - } - } - - @Override - public void onTransaction(int size) { - if (size == 0) { - MogoMapUIController.getInstance().showMyLocation(true); - AIAssist.getInstance(mContext).unregisterUnWakeupCommand(ServiceConst.CMD_BACK); - MogoMapUIController.getInstance().recoverLockMode(); - } else { - MogoMapUIController.getInstance().showMyLocation(false); - AIAssist.getInstance(mContext).registerUnWakeupCommand(ServiceConst.CMD_BACK, ServiceConst.CMD_BACK_WORDS, this); - } - } - - @Override - public void onStartNavi() { - if (DebugConfig.isIsScheduleCalculateNotHomeCompanyDistanceForPush()) { - CallerLogger.INSTANCE.d(M_OLD_OTHER + TAG, "onStartNavi: scheduleCalculationNotHomeCompanyDistanceForPush"); - scheduleCalculationNotHomeCompanyDistanceForPush(1, ServiceConst.INTERVAL_SCHEDULE_CALCULATE_NOT_HOME_COMPANY_DISTANCE_FOR_PUSH); - } else { - CallerLogger.INSTANCE.d(M_OLD_OTHER + TAG, "onStartNavi: scheduleCalculationNotHomeCompanyDistanceForPush un support"); - } - } - - @Override - public void onStopNavi() { - CallerLogger.INSTANCE.d(M_OLD_OTHER + TAG, "onStopNavi: remove MSG_SCHEDULE_CALCULATE_NOT_HOME_COMPANY_DISTANCE_FOR_PUSH msg"); - mHandler.removeMessages(ServiceConst.MSG_SCHEDULE_CALCULATE_NOT_HOME_COMPANY_DISTANCE_FOR_PUSH); - } - - /** - * 延时一分钟发起计算导航目的地推送策略 - */ - public void scheduleCalculationNotHomeCompanyDistanceForPush(int time, long delay) { - Message msg = Message.obtain(); - msg.what = ServiceConst.MSG_SCHEDULE_CALCULATE_NOT_HOME_COMPANY_DISTANCE_FOR_PUSH; - msg.arg1 = time; - mHandler.sendMessageDelayed(msg, delay); - } - @Override public void destroy() { CallerLogger.INSTANCE.d(M_OLD_OTHER + TAG, "MogoServices do nothings."); @@ -723,14 +151,6 @@ public class MogoServices implements IMogoMapListener, private boolean mLastStatusIsVr = false; - public boolean isLastStatusIsVr() { - return mLastStatusIsVr; - } - - public void setLastStatusIsVr(boolean lastStatusIsVr) { - this.mLastStatusIsVr = lastStatusIsVr; - } - @Override public void onMapModeChanged(EnumMapUI ui) { clearAllData(); diff --git a/modules/mogo-module-service/src/main/java/com/mogo/module/service/ServiceConst.java b/modules/mogo-module-service/src/main/java/com/mogo/module/service/ServiceConst.java index a7bdd1d832..5f3b7ec120 100644 --- a/modules/mogo-module-service/src/main/java/com/mogo/module/service/ServiceConst.java +++ b/modules/mogo-module-service/src/main/java/com/mogo/module/service/ServiceConst.java @@ -18,31 +18,11 @@ public class ServiceConst { */ public static final String PATH_REFRESH_STRATEGY = "/strategy/refresh"; - /** - * 倒计时消息 - */ - public static final int MSG_TYPE_REFRESH_DECREASE = 0x100; - /** - * 倒计时间隔 - */ - public static final int DECREASE_INTERVAL = 10_000; - - /** - * 刷新失败补偿消息 - */ - public static final int MSG_LOOP_REQUEST = 0x101; - - /** - * 刷新失败补偿时间间隔 - */ - public static final int LOOP_INTERVAL = 10_000; - /** * 卡片 探路数据 */ public static final String CARD_TYPE_ROAD_CONDITION = "CARD_TYPE_ROAD_CONDITION"; - /** * 卡片 用户数据 */ @@ -53,74 +33,9 @@ public class ServiceConst { */ public static final String CARD_TYPE_NOVELTY = "CARD_TYPE_NOVELTY"; - /** - * 默认地图缩放比例 - */ - public static final float DEFAULT_ZOOM_LEVEL = 16.0f; - - /** - * 默认地图锁车缩放比例 - */ - public static final int DEFAULT_LOCK_CAR_ZOOM_LEVEL = 16; - - /** - * 自动刷新默认半径 - */ - public static final int DEFAULT_AUTO_REFRESH_DATA_RADIUS = 2_000; - - /** - * 30 s - */ - public static final int DEFAULT_AUTO_REFRESH_WHEN_INTERRUPT = 30 * 1_000; - - /** - * 所有卡片显示的每类点的最大数据量 - */ - public static final int MAX_AMOUNT_ALL = Integer.MAX_VALUE; - - - /** - * 地图变化消息 - */ - public static final int MSG_MAP_CHANGED = 0x200; - - /** - * 请求刷新数据 - */ - public static final int MSG_REQUEST_DATA = 0x201; - - /** - * 锁车消息 - */ - public static final int MSG_LOCK_CAR = 0x202; - - /** - * 回到自车 - */ - public static final String COMMAND_MY_LOCATION = "com.zhidao.desk.backToMyLocation"; - - public static final String CMD_UN_WAKEUP_MY_LOCATION = "CMD_UN_WAKEUP_MY_LOCATION"; - public static final String[] CMD_UN_WAKEUP_WORDS_MY_LOCATION = new String[]{ - "回到我的位置", - "返回我的位置", - "定位我的位置" - }; - - public static final String CMD_BACK = "back"; - public static final String[] CMD_BACK_WORDS = new String[]{"关闭", "返回"}; public static final int ONLINE_SEARCH_LIMIT = 20; public static final int ONLINE_SEARCH_RADIUS = 2_000; - /** - * 导航开始后,延时1分钟开启推送策略 - */ - public static final int MSG_SCHEDULE_CALCULATE_NOT_HOME_COMPANY_DISTANCE_FOR_PUSH = 0x301; - - /** - * 延时1分钟开启推送策略 - */ - public static final long INTERVAL_SCHEDULE_CALCULATE_NOT_HOME_COMPANY_DISTANCE_FOR_PUSH = 60 * 1_000L; - } diff --git a/modules/mogo-module-service/src/main/java/com/mogo/module/service/StatusChangedAdapter.java b/modules/mogo-module-service/src/main/java/com/mogo/module/service/StatusChangedAdapter.java index 5ce21e2af8..fb99a728fa 100644 --- a/modules/mogo-module-service/src/main/java/com/mogo/module/service/StatusChangedAdapter.java +++ b/modules/mogo-module-service/src/main/java/com/mogo/module/service/StatusChangedAdapter.java @@ -1,10 +1,7 @@ package com.mogo.module.service; import com.mogo.commons.AbsMogoApplication; -import com.mogo.eagle.core.utilcode.mogo.logger.CallerLogger; -import com.mogo.eagle.core.utilcode.util.UiThreadHandler; import com.mogo.map.MogoMarkerManager; -import com.mogo.module.service.marker.MapMarkerManager; import com.mogo.service.statusmanager.IMogoStatusChangedListener; import com.mogo.service.statusmanager.StatusDescriptor; @@ -19,44 +16,14 @@ public abstract class StatusChangedAdapter implements IMogoStatusChangedListener private static final String TAG = "StatusChangedAdapter"; - private boolean mIsMainPageFirstResume = true; - private boolean mIsFirstAccOn = true; @Override public final void onStatusChanged(StatusDescriptor descriptor, boolean isTrue) { switch (descriptor) { - case USER_INTERACTED: - onUserInteracted(isTrue); - break; - case MAIN_PAGE_RESUME: - onMainPageResumeStatusChanged(isTrue); - break; case ACC_STATUS: onAccStatusChanged(isTrue); break; - case TOP_VIEW: - onTopViewStatusChanged(isTrue); - break; - } - } - - public void onUserInteracted(boolean userInteracted) { - if (userInteracted) { - MogoServices.getInstance().restartAutoRefreshAtTime(ServiceConst.DEFAULT_AUTO_REFRESH_WHEN_INTERRUPT); - } - } - - public void onMainPageResumeStatusChanged(boolean resume) { - if (resume) { - MogoServices.getInstance().registerInternalUnWakeupWords(); - if (!mIsMainPageFirstResume) { - MogoServices.getInstance().restartAutoRefreshAtTime(2_000L); - } - mIsMainPageFirstResume = false; - } else { - MogoServices.getInstance().unregisterInternalUnWakeupWords(); - MogoServices.getInstance().stopAutoRefreshStrategy(); } } @@ -66,24 +33,8 @@ public abstract class StatusChangedAdapter implements IMogoStatusChangedListener mIsFirstAccOn = false; return; } - MogoMarkerManager.getInstance(AbsMogoApplication.getApp()).removeMarkers(); - UiThreadHandler.postDelayed(() -> { - MogoServices.getInstance().refreshStrategy(); - }, 3_000L); - } else { - MogoMarkerManager.getInstance(AbsMogoApplication.getApp()).removeMarkers(); - } - } - - public void onTopViewStatusChanged(boolean visible) { - if (visible) { - return; - } - try { - MapMarkerManager.getInstance().onCloseCurrentSelectedMarker(); - } catch (Exception e) { - CallerLogger.INSTANCE.e(TAG, "onTopViewStatusChanged exception : " + e); } + MogoMarkerManager.getInstance(AbsMogoApplication.getApp()).removeMarkers(); } } diff --git a/modules/mogo-module-service/src/main/java/com/mogo/module/service/datamanager/MogoDataHandler.java b/modules/mogo-module-service/src/main/java/com/mogo/module/service/datamanager/MogoDataHandler.java deleted file mode 100644 index 5ff6950b94..0000000000 --- a/modules/mogo-module-service/src/main/java/com/mogo/module/service/datamanager/MogoDataHandler.java +++ /dev/null @@ -1,125 +0,0 @@ -package com.mogo.module.service.datamanager; - -import android.content.Context; -import android.text.TextUtils; - -import com.mogo.eagle.core.utilcode.mogo.logger.CallerLogger; -import com.mogo.service.datamanager.IMogoDataChanged2Listener; -import com.mogo.service.datamanager.IMogoDataChangedListener; -import com.mogo.service.datamanager.IMogoDataManager; - -import java.util.ArrayList; -import java.util.HashMap; -import java.util.Iterator; -import java.util.List; -import java.util.Map; - -/** - * @author congtaowang - * @since 2020-02-11 - *

- * 描述 - */ -public class MogoDataHandler implements IMogoDataManager { - - private static final String TAG = "MogoDataHandler"; - - private Map> mListeners = new HashMap<>(); - - private MogoDataHandler() { - // private constructor - } - - private static final class InstanceHolder { - private static final MogoDataHandler INSTANCE = new MogoDataHandler(); - } - - public static MogoDataHandler getInstance() { - return InstanceHolder.INSTANCE; - } - - @Override - public synchronized void registerDataListener(String tag, IMogoDataChangedListener listener) { - if (listener == null || TextUtils.isEmpty(tag)) { - return; - } - if (!mListeners.containsKey(tag) || mListeners.get(tag) == null) { - mListeners.put(tag, new ArrayList<>()); - } - mListeners.get(tag).add(listener); - } - - @Override - public synchronized void unregisterListener(String tag, IMogoDataChangedListener listener) { - if (listener == null || TextUtils.isEmpty(tag)) { - return; - } - if (mListeners.containsKey(tag) && mListeners.get(tag) != null) { - mListeners.get(tag).remove(listener); - } - } - - @Override - public void removeDataFrom(String module, Object object) { - if (module == null || mListeners.get(module) == null) { - return; - } - try { - Iterator iterator = mListeners.get(module).iterator(); - while (iterator.hasNext()) { - IMogoDataChangedListener listener = iterator.next(); - if (listener instanceof IMogoDataChanged2Listener) { - ((IMogoDataChanged2Listener) listener).onDataRemoved(module, object); - } - } - } catch (Exception e) { - CallerLogger.INSTANCE.e(TAG, "removeDataFrom exception : " + e); - } - } - - @Override - public void addData2(String module, Object object) { - if (module == null || mListeners.get(module) == null) { - return; - } - try { - Iterator iterator = mListeners.get(module).iterator(); - while (iterator.hasNext()) { - IMogoDataChangedListener listener = iterator.next(); - if (listener instanceof IMogoDataChanged2Listener) { - ((IMogoDataChanged2Listener) listener).onDataAdded(module, object); - } - } - } catch (Exception e) { - CallerLogger.INSTANCE.e(TAG, "addData2 exception : " + e); - } - } - - @Override - public void init(Context context) { - - } - - @Override - public void syncData(String module, Object object) { - if (module == null || mListeners.get(module) == null) { - return; - } - try { - Iterator iterator = mListeners.get(module).iterator(); - while (iterator.hasNext()) { - IMogoDataChangedListener listener = iterator.next(); - if (listener != null) { - listener.onDataSetChanged(object); - } - } - } catch (Exception e) { - CallerLogger.INSTANCE.e(TAG, "syncData exception : " + e); - } - } - - @Deprecated - public void invoke(String tag, Object data) { - syncData(tag, data); - } -} diff --git a/modules/mogo-module-service/src/main/java/com/mogo/module/service/datamanager/MogoDataManager.java b/modules/mogo-module-service/src/main/java/com/mogo/module/service/datamanager/MogoDataManager.java deleted file mode 100644 index fe68d3980e..0000000000 --- a/modules/mogo-module-service/src/main/java/com/mogo/module/service/datamanager/MogoDataManager.java +++ /dev/null @@ -1,48 +0,0 @@ -package com.mogo.module.service.datamanager; - -import android.content.Context; - -import com.alibaba.android.arouter.facade.annotation.Route; -import com.mogo.eagle.core.data.constants.MogoServicePaths; -import com.mogo.service.datamanager.IMogoDataChangedListener; -import com.mogo.service.datamanager.IMogoDataManager; - -/** - * @author congtaowang - * @since 2020-02-11 - *

- * 描述 - */ -@Route( path = MogoServicePaths.PATH_DATA_MANAGER ) -public class MogoDataManager implements IMogoDataManager { - - @Override - public void registerDataListener( String tag, IMogoDataChangedListener listener ) { - MogoDataHandler.getInstance().registerDataListener( tag, listener ); - } - - @Override - public void unregisterListener( String tag, IMogoDataChangedListener listener ) { - MogoDataHandler.getInstance().unregisterListener( tag, listener ); - } - - @Override - public void addData2( String module, Object object ) { - MogoDataHandler.getInstance().addData2( module, object ); - } - - @Override - public void removeDataFrom( String module, Object object ) { - MogoDataHandler.getInstance().removeDataFrom( module, object ); - } - - @Override - public void syncData( String module, Object object ) { - MogoDataHandler.getInstance().syncData( module, object ); - } - - @Override - public void init( Context context ) { - MogoDataHandler.getInstance().init( context ); - } -} diff --git a/modules/mogo-module-service/src/main/java/com/mogo/module/service/handler/MainLooperHandler.java b/modules/mogo-module-service/src/main/java/com/mogo/module/service/handler/MainLooperHandler.java deleted file mode 100644 index c440c78c8b..0000000000 --- a/modules/mogo-module-service/src/main/java/com/mogo/module/service/handler/MainLooperHandler.java +++ /dev/null @@ -1,41 +0,0 @@ -package com.mogo.module.service.handler; - -import android.os.Handler; -import android.os.Looper; -import android.os.Message; - -import com.mogo.module.service.ServiceConst; - -/** - * @author congtaowang - * @since 2020/12/14 - * - * 描述 - */ -public abstract class MainLooperHandler extends Handler { - - private static final String TAG = "MainLooperHandler"; - - public MainLooperHandler( Looper looper ) { - super( looper ); - } - - @Override - public final void handleMessage( Message msg ) { - super.handleMessage( msg ); - - switch ( msg.what ) { - case ServiceConst.MSG_TYPE_REFRESH_DECREASE: - handleRefreshDecrease( msg ); - break; - case ServiceConst.MSG_LOOP_REQUEST: - handleLoopRequestMessage( msg ); - break; - } - } - - protected abstract void handleRefreshDecrease( Message msg ); - - protected abstract void handleLoopRequestMessage( Message msg ); - -} diff --git a/modules/mogo-module-service/src/main/java/com/mogo/module/service/handler/RefreshWorkThreadHandler.java b/modules/mogo-module-service/src/main/java/com/mogo/module/service/handler/RefreshWorkThreadHandler.java deleted file mode 100644 index f53673a802..0000000000 --- a/modules/mogo-module-service/src/main/java/com/mogo/module/service/handler/RefreshWorkThreadHandler.java +++ /dev/null @@ -1,62 +0,0 @@ -package com.mogo.module.service.handler; - -import android.os.Handler; -import android.os.Looper; -import android.os.Message; - -import com.mogo.eagle.core.utilcode.mogo.logger.CallerLogger; -import com.mogo.map.MogoMapUIController; -import com.mogo.module.common.MogoApisHandler; -import com.mogo.module.service.ServiceConst; - -public -/** - * @author congtaowang - * @since 2020/12/14 - * - * 描述 - */ -abstract class RefreshWorkThreadHandler extends Handler { - - private static final String TAG = "RefreshWorkThreadHandler"; - - public RefreshWorkThreadHandler(Looper looper) { - super(looper); - } - - @Override - public final void handleMessage(Message msg) { - super.handleMessage(msg); - if (msg.what == ServiceConst.MSG_MAP_CHANGED) { - try { - handleMapChangedMessage(msg); - } catch (Exception e) { - CallerLogger.INSTANCE.e(TAG, "handleMapChangedMessage exception : " + e); - } - } else if (msg.what == ServiceConst.MSG_REQUEST_DATA) { - try { - handleRequestDataMessage(msg); - } catch (Exception e) { - CallerLogger.INSTANCE.e(TAG, "handleRequestDataMessage exception : " + e); - } - } else if (msg.what == ServiceConst.MSG_LOCK_CAR) { - try { - handleLockCarMessage(msg); - } catch (Exception e) { - CallerLogger.INSTANCE.e(TAG, "handleLockCarMessage exception : " + e); - } - } - } - - protected abstract void handleMapChangedMessage(Message msg); - - protected abstract void handleRequestDataMessage(Message msg); - - protected void handleLockCarMessage(Message msg) { - if (MogoApisHandler.getInstance().getApis().getStatusManagerApi().isVrMode()) { - return; - } - MogoApisHandler.getInstance().getApis().getStatusManagerApi().setUserInteractionStatus( TAG, true, false ); - MogoMapUIController.getInstance().recoverLockMode(); - } -} diff --git a/modules/mogo-module-service/src/main/java/com/mogo/module/service/intent/IntentHandlerFactory.java b/modules/mogo-module-service/src/main/java/com/mogo/module/service/intent/IntentHandlerFactory.java index 82ddfb7a7b..e30cbfd49d 100644 --- a/modules/mogo-module-service/src/main/java/com/mogo/module/service/intent/IntentHandlerFactory.java +++ b/modules/mogo-module-service/src/main/java/com/mogo/module/service/intent/IntentHandlerFactory.java @@ -22,7 +22,6 @@ public class IntentHandlerFactory { private IntentHandlerFactory() { // private constructor mHandlers.put( MogoReceiver.ACTION_MOCK, new MockIntentHandler() ); - mHandlers.put( ServiceConst.COMMAND_MY_LOCATION, new MyLocationHandler() ); mHandlers.put( MogoReceiver.ACTION_VOICE_UI, new VoiceUiIntentHandler() ); mHandlers.put( Intent.ACTION_POWER_CONNECTED, AccStatusIntentHandler.getInstance() ); mHandlers.put( Intent.ACTION_POWER_DISCONNECTED, AccStatusIntentHandler.getInstance() ); diff --git a/modules/mogo-module-service/src/main/java/com/mogo/module/service/intent/MockIntentHandler.java b/modules/mogo-module-service/src/main/java/com/mogo/module/service/intent/MockIntentHandler.java index 1b64d6fdbe..53d0def666 100644 --- a/modules/mogo-module-service/src/main/java/com/mogo/module/service/intent/MockIntentHandler.java +++ b/modules/mogo-module-service/src/main/java/com/mogo/module/service/intent/MockIntentHandler.java @@ -235,7 +235,6 @@ public class MockIntentHandler implements IntentHandler { .autoManager(false); int duration = intent.getIntExtra("duration", 30); IMogoMarker marker = MogoMarkerManager.getInstance(context).addMarker(TAG, options); - MarkerServiceHandler.getMogoStatusManager().setUserInteractionStatus(TAG, true, false); if (!MarkerServiceHandler.getApis().getStatusManagerApi().isVrMode()) { MogoMapUIController.getInstance().moveToCenter(mogoLatLngs.get(0)); } diff --git a/modules/mogo-module-service/src/main/java/com/mogo/module/service/intent/MyLocationHandler.java b/modules/mogo-module-service/src/main/java/com/mogo/module/service/intent/MyLocationHandler.java deleted file mode 100644 index 73fbe1266f..0000000000 --- a/modules/mogo-module-service/src/main/java/com/mogo/module/service/intent/MyLocationHandler.java +++ /dev/null @@ -1,28 +0,0 @@ -package com.mogo.module.service.intent; - -import android.content.Context; -import android.content.Intent; - -import com.mogo.eagle.core.utilcode.util.UiThreadHandler; -import com.mogo.map.MogoMapUIController; -import com.mogo.module.service.MarkerServiceHandler; - -/** - * @author congtaowang - * @since 2020-04-17 - *

- * 语音指令:定位我的位置等处理 - */ -public class MyLocationHandler implements IntentHandler { - - @Override - public void handle( Context context, Intent intent ) { - if ( MarkerServiceHandler.getMogoStatusManager().isMainPageOnResume() ) { - MogoMapUIController.getInstance().recoverLockMode(); - } else { - UiThreadHandler.postDelayed( () -> { - MogoMapUIController.getInstance().recoverLockMode(); - }, 2_000L ); - } - } -} diff --git a/modules/mogo-module-service/src/main/java/com/mogo/module/service/marker/MapMarkerManager.java b/modules/mogo-module-service/src/main/java/com/mogo/module/service/marker/MapMarkerManager.java index a84d1d20bd..0a56407ba4 100644 --- a/modules/mogo-module-service/src/main/java/com/mogo/module/service/marker/MapMarkerManager.java +++ b/modules/mogo-module-service/src/main/java/com/mogo/module/service/marker/MapMarkerManager.java @@ -7,6 +7,8 @@ import android.text.TextUtils; import com.mogo.commons.AbsMogoApplication; import com.mogo.commons.debug.DebugConfig; import com.mogo.eagle.core.data.map.MogoLatLng; +import com.mogo.eagle.core.data.map.MogoLocation; +import com.mogo.eagle.core.function.call.map.CallerMapLocationListenerManager; import com.mogo.eagle.core.utilcode.mogo.toast.ResourcesHelper; import com.mogo.eagle.core.utilcode.util.ThreadPoolService; import com.mogo.eagle.core.utilcode.util.UiThreadHandler; @@ -17,12 +19,10 @@ import com.mogo.map.marker.IMogoMarker; import com.mogo.map.marker.IMogoMarkerClickListener; import com.mogo.module.common.ModuleNames; import com.mogo.module.common.drawer.MarkerDrawer; -import com.mogo.module.common.drawer.RoadConditionDrawer; import com.mogo.module.common.drawer.marker.IMarkerView; import com.mogo.module.common.drawer.marker.MapMarkerAdapter; import com.mogo.module.common.drawer.marker.OnlineCarMarkerView; import com.mogo.module.common.entity.MarkerCardResult; -import com.mogo.module.common.entity.MarkerExploreWay; import com.mogo.module.common.entity.MarkerOnlineCar; import com.mogo.module.common.entity.MarkerResponse; import com.mogo.module.common.entity.MarkerShowEntity; @@ -33,14 +33,7 @@ import com.mogo.module.service.ServiceConst; import com.mogo.module.service.network.RefreshCallback; import com.mogo.module.service.network.RefreshModel; -import org.json.JSONArray; -import org.json.JSONException; -import org.json.JSONObject; - -import java.util.ArrayList; -import java.util.HashMap; import java.util.List; -import java.util.Map; /** * author : donghongyu @@ -57,11 +50,7 @@ public class MapMarkerManager implements IMogoMarkerClickListener { private IMogoMarker mLastCheckMarker; private static MapMarkerManager mMarkerManager; - // 记录上次请求数据,切换卡片时做数据处理 - private MarkerCardResult mLastDataResult; - private RefreshModel mRefreshModel; - private MogoLatLng mCarLatLng; // 平滑移动事件间隔(单位:秒) private static final int SMOOTH_DURATION = 15; @@ -79,18 +68,15 @@ public class MapMarkerManager implements IMogoMarkerClickListener { return mMarkerManager; } - /** * 初始化大而全的 Marker 管理 * * @param context 上下文对象 */ public void init(Context context) { - if (mContext != null) { return; } - mContext = context.getApplicationContext(); mRefreshModel = new RefreshModel(mContext); CloudPoiManager.getInstance().updateFromConfig(context); @@ -106,24 +92,6 @@ public class MapMarkerManager implements IMogoMarkerClickListener { if (!result) { return false; } - - Map properties = new HashMap<>(); - - if (marker.getObject() instanceof MarkerShowEntity) { - final String sn = MarkerDrawer.getInstance().getCarSnFromMarker(marker); - if (TextUtils.isEmpty(sn)) { - return false; - } - properties.put("sn", sn); - if (((MarkerShowEntity) marker.getObject()).getBindObj() instanceof MarkerExploreWay) { - MarkerExploreWay exploreWay = (MarkerExploreWay) ((MarkerShowEntity) marker.getObject()).getBindObj(); - properties.put("dbid", exploreWay.getInfoId()); - properties.put("type", exploreWay.getPoiType()); - } else if (((MarkerShowEntity) marker.getObject()).getBindObj() instanceof MarkerOnlineCar) { - properties.put("type", "10000"); - } - } - MarkerServiceHandler.getMogoAnalytics().track("v2x_road_click", properties); } catch (Exception e) { e.printStackTrace(); } @@ -145,7 +113,6 @@ public class MapMarkerManager implements IMogoMarkerClickListener { // 将上次选中 Marker 设置为未选中状态 closeMarker(mLastCheckMarker); } - // 将当前的Marker设置为选中 openMarker(marker); return true; @@ -183,7 +150,6 @@ public class MapMarkerManager implements IMogoMarkerClickListener { } } if (!MarkerServiceHandler.getApis().getStatusManagerApi().isVrMode()) { - MarkerServiceHandler.getMogoStatusManager().setUserInteractionStatus(TAG, true, false); MogoMapUIController.getInstance().moveToCenter(mogoMarker.getPosition(), true); } } @@ -238,77 +204,6 @@ public class MapMarkerManager implements IMogoMarkerClickListener { } } - // 绘制Marker - public synchronized void drawMapMarker(MarkerResponse response) { - - if (response == null || response.getResult() == null) { - return; - } - - // 解析不同的Marker类型,然后对应的进行绘制 - - mLastDataResult = response.getResult(); - UiThreadHandler.post(this::dispatchDataToBiz); - - drawMarkerByCurrentType(mLastDataResult); - - } - - /** - * 根据类型绘制 - * - * @param markerCardResult - */ - private synchronized void drawMarkerByCurrentType(MarkerCardResult markerCardResult) { - if (markerCardResult == null) { - return; - } - if (MogoMapUIController.getInstance().getCurrentMapVisualAngle().isLongSight()) { - return; - } - drawAllMarker(markerCardResult); - } - - /** - * 绘制所有数据 - * - * @param markerCardResult - */ - private void drawAllMarker(MarkerCardResult markerCardResult) { - List exploreWayList = markerCardResult.getExploreWay(); - RoadConditionDrawer.getInstance().drawRoadConditionMarker(exploreWayList, ServiceConst.MAX_AMOUNT_ALL, this); - } - - /** - * 分发数据到各个业务模块 - *

- * 仅在数据刷新的时候分发 - */ - private void dispatchDataToBiz() { - if (mLastDataResult == null) { - return; - } - List exploreWayList = mLastDataResult.getExploreWay(); - dispatchDataToBis(ServiceConst.CARD_TYPE_ROAD_CONDITION, exploreWayList == null ? new ArrayList<>() : exploreWayList); - } - - /** - * 数据分发 - * - * @param biz - * @param object - */ - private void dispatchDataToBis(String biz, Object object) { - if (TextUtils.isEmpty(biz)) { - return; - } - try { - MarkerServiceHandler.getDataManager().syncData(biz, object); - } catch (Exception e) { - e.printStackTrace(); - } - } - /** * 绘制Marker,这里绘制的会使用markerShowEntities队列进行维护 * @@ -323,44 +218,14 @@ public class MapMarkerManager implements IMogoMarkerClickListener { } } - /** - * 同步绘制大而全的数据 marker - * - * @param response - */ - public void onSyncMarkerResponse(MarkerResponse response) { - if (ignoreDrawRequest()) { - return; - } - runOnTargetThread(() -> { - drawMapMarker(response); - }); - } - - /** - * 当前地图中心点坐标 - * - * @param lon - * @param lat - */ - public void syncLocation(double lon, double lat) { - mCarLatLng = new MogoLatLng(lat, lon); - } - - private final Runnable runnable = new Runnable() { - @Override - public void run() { - getOnlineCarDataImpl(mCarLatLng, false, false, ServiceConst.ONLINE_SEARCH_LIMIT, ServiceConst.ONLINE_SEARCH_RADIUS, false); + private final Runnable runnable = () -> { + MogoLocation location = CallerMapLocationListenerManager.INSTANCE.getCurrentLocation(); + if (location != null) { + MogoLatLng mogoLatLng = new MogoLatLng(location.getLatitude(), location.getLongitude()); + getOnlineCarDataImpl(mogoLatLng, false, false, ServiceConst.ONLINE_SEARCH_LIMIT, ServiceConst.ONLINE_SEARCH_RADIUS); } }; - /** - * 移除绘制 - */ - public void stopAutoRefresh() { - UiThreadHandler.removeCallbacks(runnable); - } - /** * 搜索在线车辆 * @@ -376,8 +241,7 @@ public class MapMarkerManager implements IMogoMarkerClickListener { boolean onlyFocus, boolean onlySameCity, int limit, - int radius, - boolean fitBounds) { + int radius) { if (DebugConfig.isDebug()) { if (!DebugConfig.isRequestOnlineCarData()) { @@ -385,10 +249,6 @@ public class MapMarkerManager implements IMogoMarkerClickListener { } } - if (mCarLatLng == null) { - mCarLatLng = latLng; - } - if (latLng == null) { return; } @@ -420,29 +280,9 @@ public class MapMarkerManager implements IMogoMarkerClickListener { } runOnTargetThread(() -> { - trackData(size); UiThreadHandler.postDelayed(runnable, SMOOTH_DURATION * 1000); }); } - - private void trackData(int size) { - JSONArray array = new JSONArray(); - JSONObject object = new JSONObject(); - try { - object.put("type", "10000"); - object.put("num", size); - array.put(object); - } catch (JSONException e) { - e.printStackTrace(); - } - - if (array.length() == 0) { - return; - } - final Map properties = new HashMap<>(); - properties.put("data", array.toString()); - MarkerServiceHandler.getMogoAnalytics().track("v2x_data_get", properties); - } }); } @@ -481,13 +321,4 @@ public class MapMarkerManager implements IMogoMarkerClickListener { ThreadPoolService.execute(runnable); } - /** - * 关闭当前点击过的 marker - */ - public void onCloseCurrentSelectedMarker() { - if (mLastCheckMarker != null && !mLastCheckMarker.isDestroyed()) { - closeMarker(mLastCheckMarker); - mLastCheckMarker = null; - } - } } diff --git a/modules/mogo-module-service/src/main/java/com/mogo/module/service/network/RefreshApiService.java b/modules/mogo-module-service/src/main/java/com/mogo/module/service/network/RefreshApiService.java index ef70252850..da3eb0fdf5 100644 --- a/modules/mogo-module-service/src/main/java/com/mogo/module/service/network/RefreshApiService.java +++ b/modules/mogo-module-service/src/main/java/com/mogo/module/service/network/RefreshApiService.java @@ -16,12 +16,6 @@ import retrofit2.http.POST; * 接口描述 */ public interface RefreshApiService { - /** - * 大而全 - */ - @FormUrlEncoded - @POST("/yycp-launcherSnapshot/launcherSnapshot/querySnapshotSync") - Observable refreshDataSync(@FieldMap Map parameters); /** * 周边在线车辆 diff --git a/modules/mogo-module-service/src/main/java/com/mogo/module/service/network/RefreshModel.java b/modules/mogo-module-service/src/main/java/com/mogo/module/service/network/RefreshModel.java index 7493468a54..61d9a26efd 100644 --- a/modules/mogo-module-service/src/main/java/com/mogo/module/service/network/RefreshModel.java +++ b/modules/mogo-module-service/src/main/java/com/mogo/module/service/network/RefreshModel.java @@ -37,51 +37,6 @@ public class RefreshModel { this.mRefreshApiService = MoGoRetrofitFactory.getInstance(HostConst.LAUNCHER_SNAPSHOT_HOST).create(RefreshApiService.class); } - public void refreshExplorerWayData(MogoLatLng latLng, int radius, int limit, final RefreshCallback callback) { - if (mRefreshApiService != null) { - final Map query = new ParamsProvider.Builder(mContext).build(); - final RefreshBody refreshBody = new RefreshBody(); - refreshBody.limit = limit; - refreshBody.location = new RefreshBody.LatLon(latLng.lat, latLng.lon); - refreshBody.radius = radius; - refreshBody.viewPush = true; - refreshBody.dataType.add(ServiceConst.CARD_TYPE_ROAD_CONDITION); - - String data = GsonUtil.jsonFromObject(refreshBody); - query.put("data", data); - - mRefreshApiService.refreshDataSync(query) - .subscribeOn(Schedulers.io()) - .observeOn(AndroidSchedulers.mainThread()) - .subscribe(new SubscribeImpl(RequestOptions.create(mContext)) { - @Override - public void onSuccess(MarkerResponse o) { - super.onSuccess(o); - if (callback != null) { - callback.onSuccess(o); - } - } - - @Override - public void onError(Throwable e) { - super.onError(e); - if (callback != null) { - callback.onFail(); - } - } - - @Override - public void onError(String message, int code) { - super.onError(message, code); - if (callback != null) { - callback.onFail(); - } - } - }); - } - } - - /** * 查询车辆 及路线 * diff --git a/modules/mogo-module-service/src/main/java/com/mogo/module/service/receiver/MogoReceiver.java b/modules/mogo-module-service/src/main/java/com/mogo/module/service/receiver/MogoReceiver.java index f93d0e443d..8cec63deca 100644 --- a/modules/mogo-module-service/src/main/java/com/mogo/module/service/receiver/MogoReceiver.java +++ b/modules/mogo-module-service/src/main/java/com/mogo/module/service/receiver/MogoReceiver.java @@ -35,9 +35,6 @@ public class MogoReceiver extends BroadcastReceiver { public static final String ACTION_MOCK = "com.mogo.mock"; - //车辆监控 - public static final String ACTION_CHECK_VEHICLE_MONITORING = "ACTION_CHECK_VEHICLE_MONITORING"; - private final IMogoIntentManager mMogoIntentManager; public MogoReceiver(Context context) { diff --git a/modules/mogo-module-service/src/main/java/com/mogo/module/service/refresh/AutoRefreshStrategy.java b/modules/mogo-module-service/src/main/java/com/mogo/module/service/refresh/AutoRefreshStrategy.java deleted file mode 100644 index ba15e2424f..0000000000 --- a/modules/mogo-module-service/src/main/java/com/mogo/module/service/refresh/AutoRefreshStrategy.java +++ /dev/null @@ -1,48 +0,0 @@ -package com.mogo.module.service.refresh; - -/** - * @author congtaowang - * @since 2020-01-03 - *

- * 自动刷新策略 - */ -public class AutoRefreshStrategy { - - public static final long ONE_MINUTE = 60 * 1_000L; - - /** - * 距离(米) - */ - private int distance = 1_000; - - /** - * 时间间距(s) - */ - private long interval = 3 * ONE_MINUTE / 6; - - /** - * 用户打断后的延时(s)【2.0.2后不再延时】 - */ - private long interruptInterval = 0 * ONE_MINUTE; - - /** - * 距离(米) - */ - public int getDistance() { - return distance; - } - - /** - * 时间间距(s) - */ - public long getInterval() { - return interval; - } - - /** - * 用户打断后的延时 - */ - public long getInterruptInterval() { - return interruptInterval; - } -} diff --git a/modules/mogo-module-service/src/main/java/com/mogo/module/service/refresh/CustomRefreshStrategy.java b/modules/mogo-module-service/src/main/java/com/mogo/module/service/refresh/CustomRefreshStrategy.java deleted file mode 100644 index 1a5187e86b..0000000000 --- a/modules/mogo-module-service/src/main/java/com/mogo/module/service/refresh/CustomRefreshStrategy.java +++ /dev/null @@ -1,19 +0,0 @@ -package com.mogo.module.service.refresh; - -/** - * @author congtaowang - * @since 2020-01-03 - *

- * 手动刷新策略 - */ -public class CustomRefreshStrategy { - - /** - * 缩小倍数 - */ - private float zoomOutLevel = 2; - - public float getZoomOutLevel() { - return zoomOutLevel; - } -} diff --git a/modules/mogo-module-service/src/main/java/com/mogo/module/service/refresh/RefreshObject.java b/modules/mogo-module-service/src/main/java/com/mogo/module/service/refresh/RefreshObject.java deleted file mode 100644 index e30d3953eb..0000000000 --- a/modules/mogo-module-service/src/main/java/com/mogo/module/service/refresh/RefreshObject.java +++ /dev/null @@ -1,25 +0,0 @@ -package com.mogo.module.service.refresh; - -import com.mogo.eagle.core.data.map.MogoLatLng; -import com.mogo.module.service.network.RefreshCallback; - -/** - * @author congtaowang - * @since 2020-03-11 - *

- * 描述 - */ -public class RefreshObject { - - public final RefreshCallback mCallback; - public final int mRadius; - public final MogoLatLng mLonLat; - public final int mAmount; - - public RefreshObject( RefreshCallback callback, int radius, MogoLatLng lonLat, int amount ) { - this.mCallback = callback; - this.mRadius = radius; - this.mLonLat = lonLat; - this.mAmount = amount; - } -} diff --git a/services/mogo-service-api/src/main/java/com/mogo/service/IMogoServiceApis.java b/services/mogo-service-api/src/main/java/com/mogo/service/IMogoServiceApis.java index ca5e087b0b..447434c9ec 100644 --- a/services/mogo-service-api/src/main/java/com/mogo/service/IMogoServiceApis.java +++ b/services/mogo-service-api/src/main/java/com/mogo/service/IMogoServiceApis.java @@ -3,7 +3,6 @@ package com.mogo.service; import com.alibaba.android.arouter.facade.template.IProvider; import com.mogo.service.analytics.IMogoAnalytics; -import com.mogo.service.datamanager.IMogoDataManager; import com.mogo.service.fragmentmanager.IMogoFragmentManager; import com.mogo.service.imageloader.IMogoImageloader; import com.mogo.service.intent.IMogoIntentManager; @@ -29,13 +28,6 @@ public interface IMogoServiceApis extends IProvider { */ IMogoAnalytics getAnalyticsApi(); - /** - * 大而全的数据管理接口 - * - * @return - */ - IMogoDataManager getDataManagerApi(); - /** * fragment 管理接口 * diff --git a/services/mogo-service-api/src/main/java/com/mogo/service/analytics/IMogoAnalytics.java b/services/mogo-service-api/src/main/java/com/mogo/service/analytics/IMogoAnalytics.java index 7d8f64ef00..69dd80d444 100644 --- a/services/mogo-service-api/src/main/java/com/mogo/service/analytics/IMogoAnalytics.java +++ b/services/mogo-service-api/src/main/java/com/mogo/service/analytics/IMogoAnalytics.java @@ -20,7 +20,6 @@ public interface IMogoAnalytics extends IProvider { * * @param event 事件名称 * @param properties 埋点参数 - * @see AnalyticsManager */ @Keep @Deprecated diff --git a/services/mogo-service-api/src/main/java/com/mogo/service/datamanager/IMogoDataChanged2Listener.java b/services/mogo-service-api/src/main/java/com/mogo/service/datamanager/IMogoDataChanged2Listener.java deleted file mode 100644 index eaa7f4cb5a..0000000000 --- a/services/mogo-service-api/src/main/java/com/mogo/service/datamanager/IMogoDataChanged2Listener.java +++ /dev/null @@ -1,26 +0,0 @@ -package com.mogo.service.datamanager; - -/** - * @author congtaowang - * @since 2020-02-11 - *

- * 描述 - */ -public interface IMogoDataChanged2Listener extends IMogoDataChangedListener { - - /** - * 添加数据到指定类型 - * - * @param module - * @param object - */ - void onDataAdded( String module, Object object ); - - /** - * 从数据从指定类型中移除 - * - * @param module - * @param object - */ - void onDataRemoved( String module, Object object ); -} diff --git a/services/mogo-service-api/src/main/java/com/mogo/service/datamanager/IMogoDataChangedListener.java b/services/mogo-service-api/src/main/java/com/mogo/service/datamanager/IMogoDataChangedListener.java deleted file mode 100644 index 74ab4be6ee..0000000000 --- a/services/mogo-service-api/src/main/java/com/mogo/service/datamanager/IMogoDataChangedListener.java +++ /dev/null @@ -1,17 +0,0 @@ -package com.mogo.service.datamanager; - -/** - * @author congtaowang - * @since 2020-02-11 - *

- * 描述 - */ -public interface IMogoDataChangedListener { - - /** - * 大而全数据变化回调 - * - * @param data - */ - void onDataSetChanged( Object data ); -} diff --git a/services/mogo-service-api/src/main/java/com/mogo/service/datamanager/IMogoDataManager.java b/services/mogo-service-api/src/main/java/com/mogo/service/datamanager/IMogoDataManager.java deleted file mode 100644 index de17e718d8..0000000000 --- a/services/mogo-service-api/src/main/java/com/mogo/service/datamanager/IMogoDataManager.java +++ /dev/null @@ -1,51 +0,0 @@ -package com.mogo.service.datamanager; - -import com.alibaba.android.arouter.facade.template.IProvider; - -/** - * @author congtaowang - * @since 2020-02-11 - *

- * 大而全的数据管理 - */ -public interface IMogoDataManager extends IProvider { - - /** - * 注册大而全数据变化监听 - * - * @param module 监听模块 - * @param listener - */ - void registerDataListener( String module, IMogoDataChangedListener listener ); - - /** - * 注销大而全数据变换监听 - * - * @param module - */ - void unregisterListener( String module, IMogoDataChangedListener listener ); - - /** - * 发送数据到指定模块 - * - * @param module 模块 - * @param object 数据 - */ - void addData2( String module, Object object ); - - /** - * 自定模块删除数据 - * - * @param module 模块 - * @param object 数据 - */ - void removeDataFrom( String module, Object object ); - - /** - * 向固定模块透传数据 - * - * @param module - * @param object - */ - void syncData( String module, Object object ); -} diff --git a/services/mogo-service-api/src/main/java/com/mogo/service/module/IMogoModuleLifecycle.java b/services/mogo-service-api/src/main/java/com/mogo/service/module/IMogoModuleLifecycle.java deleted file mode 100644 index cde9743e80..0000000000 --- a/services/mogo-service-api/src/main/java/com/mogo/service/module/IMogoModuleLifecycle.java +++ /dev/null @@ -1,27 +0,0 @@ -package com.mogo.service.module; - -/** - * @author congtaowang - * @since 2019-12-23 - *

- * 卡片生命周期 - */ -@Deprecated -public interface IMogoModuleLifecycle { - - /** - * 当前显示的卡片 - */ - void onPerform(); - - /** - * 卡片不可用,任何卡片的操作都会被launcher忽略 - */ - void onDisable(); - - /** - * accOn 事件回调 - */ - void accOn(); - -} diff --git a/services/mogo-service-api/src/main/java/com/mogo/service/module/IMogoModuleProvider.java b/services/mogo-service-api/src/main/java/com/mogo/service/module/IMogoModuleProvider.java index 53bb631ba0..e6da176758 100644 --- a/services/mogo-service-api/src/main/java/com/mogo/service/module/IMogoModuleProvider.java +++ b/services/mogo-service-api/src/main/java/com/mogo/service/module/IMogoModuleProvider.java @@ -8,10 +8,6 @@ import androidx.annotation.NonNull; import androidx.fragment.app.Fragment; import com.alibaba.android.arouter.facade.template.IProvider; -import com.mogo.map.listener.IMogoMapListener; -import com.mogo.map.location.IMogoLocationListener; -import com.mogo.map.marker.IMogoMarkerClickListener; -import com.mogo.map.navi.IMogoNaviListener; /** @@ -48,28 +44,6 @@ public interface IMogoModuleProvider extends IProvider { @NonNull String getModuleName(); - /** - * 生命周期控制方法 - * use {@link IMogoRegisterCenter#registerMogoModuleLifecycle(String, IMogoModuleLifecycle)} instead. - * - * @return - */ - @Deprecated - default IMogoModuleLifecycle getCardLifecycle() { - return null; - } - - /** - * 地图监听对象 - * use {@link IMogoRegisterCenter#registerMogoMapListener(String, IMogoMapListener)} instead. - * - * @return - */ - @Deprecated - default IMogoMapListener getMapListener() { - return null; - } - /** * 是哪种类型的提供者 *

@@ -79,39 +53,6 @@ public interface IMogoModuleProvider extends IProvider { */ int getType(); - /** - * 导航监听 - * use {@link IMogoRegisterCenter#registerMogoNaviListener(String, IMogoNaviListener)} instead. - * - * @return - */ - @Deprecated - default IMogoNaviListener getNaviListener() { - return null; - } - - /** - * 定位变化监听:此接口接受地图定位信息 - * use {@link IMogoRegisterCenter#registerMogoLocationListener(String, IMogoLocationListener)} instead. - * - * @return - */ - @Deprecated - default IMogoLocationListener getLocationListener() { - return null; - } - - /** - * marker 点击回调 - * use {@link IMogoRegisterCenter#registerMogoMarkerClickListener(String, IMogoMarkerClickListener)} instead. - * - * @return - */ - @Deprecated - default IMogoMarkerClickListener getMarkerClickListener() { - return null; - } - /** * 获取模块对应 app 的包名 * diff --git a/services/mogo-service-api/src/main/java/com/mogo/service/module/IMogoRegisterCenter.java b/services/mogo-service-api/src/main/java/com/mogo/service/module/IMogoRegisterCenter.java index bd628e0512..da3edfa595 100644 --- a/services/mogo-service-api/src/main/java/com/mogo/service/module/IMogoRegisterCenter.java +++ b/services/mogo-service-api/src/main/java/com/mogo/service/module/IMogoRegisterCenter.java @@ -5,7 +5,6 @@ import com.mogo.map.listener.IMogoMapListener; import com.mogo.map.location.IMogoLocationListener; import com.mogo.map.marker.IMogoMarkerClickListener; import com.mogo.map.navi.IMogoCarLocationChangedListener; -import com.mogo.map.navi.IMogoNaviListener; import java.util.Iterator; @@ -17,21 +16,6 @@ import java.util.Iterator; */ public interface IMogoRegisterCenter extends IProvider { - /** - * 注册模块生命周期函数 - * - * @param tag - * @param lifecycle - */ - void registerMogoModuleLifecycle( String tag, IMogoModuleLifecycle lifecycle ); - - /** - * 注销模块生命周期函数 - * - * @param tag - */ - void unregisterMogoModuleLifecycle( String tag ); - /** * 注册地图监听函数 * @@ -48,22 +32,6 @@ public interface IMogoRegisterCenter extends IProvider { */ void unregisterMogoMapListener( String tag ); - /** - * 注册导航监听函数 - * - * @param tag - * @param listener - * @return - */ - void registerMogoNaviListener( String tag, IMogoNaviListener listener ); - - /** - * 注销导航监听函数 - * - * @param tag - */ - void unregisterMogoNaviListener( String tag ); - /** * 注册定位监听函数 * diff --git a/services/mogo-service-api/src/main/java/com/mogo/service/module/IMogoSearchManager.java b/services/mogo-service-api/src/main/java/com/mogo/service/module/IMogoSearchManager.java deleted file mode 100644 index 79444f394d..0000000000 --- a/services/mogo-service-api/src/main/java/com/mogo/service/module/IMogoSearchManager.java +++ /dev/null @@ -1,43 +0,0 @@ -package com.mogo.service.module; - -import com.alibaba.android.arouter.facade.template.IProvider; -import com.mogo.eagle.core.data.map.MogoLatLng; - -/** - * @author zyz - * 2020-01-12. - */ -public interface IMogoSearchManager extends IProvider { - - /** - * 回家 - */ - void goHome(); - - /** - * 去公司 - */ - void goCompany(); - - /** - * 打开搜索 - */ - void showSearch(); - - /** - * 规划路线 - * - * @param destination 目的地 - */ - void calculatePath( MogoLatLng destination ); - - /** - * 分类搜索 - */ - void categorySearch( String keyword ); - - /** - * 打开导航设置 - */ - void goSettings(); -} diff --git a/services/mogo-service-api/src/main/java/com/mogo/service/module/IMogoSettingManager.java b/services/mogo-service-api/src/main/java/com/mogo/service/module/IMogoSettingManager.java deleted file mode 100644 index f043179468..0000000000 --- a/services/mogo-service-api/src/main/java/com/mogo/service/module/IMogoSettingManager.java +++ /dev/null @@ -1,58 +0,0 @@ -package com.mogo.service.module; - -import com.alibaba.android.arouter.facade.template.IProvider; - -/** - * @author zyz - * 2020-01-12. - */ -public interface IMogoSettingManager extends IProvider { - - /** - * 路线偏好 - * - * @return - */ - int getPathPrefer(); - - /** - * 音量 - * - * @return - */ - int getVolume(); - - /** - * 获取播报模式 - * - * @return - */ - int getVoiceStyle(); - - /** - * 日夜墨水 - * - * @return - */ - int getMapType(); - - /** - * 简洁播报 - */ - void speakDraft(); - - /** - * 详细播报 - */ - void speakDetail(); - - /** - * 打开巡航模式 - */ - void openAimlessMode(); - - /** - * 关闭巡航模式 - */ - void closeAimlessMode(); -} diff --git a/services/mogo-service-api/src/main/java/com/mogo/service/module/ModuleType.java b/services/mogo-service-api/src/main/java/com/mogo/service/module/ModuleType.java index ae02f4ce15..664b3120e4 100644 --- a/services/mogo-service-api/src/main/java/com/mogo/service/module/ModuleType.java +++ b/services/mogo-service-api/src/main/java/com/mogo/service/module/ModuleType.java @@ -7,56 +7,8 @@ package com.mogo.service.module; * 模块类型 */ public interface ModuleType { - - /** - * 卡片类型 - fragment - */ - int TYPE_CARD_FRAGMENT = 1; - - /** - * 卡片类型 - view - */ - @Deprecated - int TYPE_CARD_VIEW = 2; - /** * 服务类型的模块 */ int TYPE_SERVICE = 3; - - /** - * APP 列表模块 - */ - @Deprecated - int TYPE_APP_LIST = 4; - - /** - * 小智语音形象 - */ - @Deprecated - int TYPE_VOICE = 5; - - /** - * 地图模块 - */ - @Deprecated - int TYPE_MAP = 6; - - /** - * 导航模块 - */ - @Deprecated - int TYPE_NAVI = 7; - - /** - * 小智、天气、时间等 - */ - @Deprecated - int TYPE_EXTENSION = 8; - - /** - * 操作快捷入口 - */ - @Deprecated - int TYPE_ENTRANCE = 9; } diff --git a/services/mogo-service-api/src/main/java/com/mogo/service/statusmanager/IMogoStatusManager.java b/services/mogo-service-api/src/main/java/com/mogo/service/statusmanager/IMogoStatusManager.java index 7948a25c48..aaa92d81eb 100644 --- a/services/mogo-service-api/src/main/java/com/mogo/service/statusmanager/IMogoStatusManager.java +++ b/services/mogo-service-api/src/main/java/com/mogo/service/statusmanager/IMogoStatusManager.java @@ -37,14 +37,6 @@ public interface IMogoStatusManager extends IProvider { */ boolean isAccOn(); - /** - * 是否有用户交互 - * - * @return - */ - boolean isUserInteracted(); - - /** * 主页是否显示 * @@ -73,13 +65,6 @@ public interface IMogoStatusManager extends IProvider { */ void setVrMode(String tag, boolean vrMode); - /** - * 设置topView展示状态 - * @param tag 业务类型 - * @param show true - 显示 false - 隐藏 - */ - void setTopViewShow(String tag, boolean show); - /** * 设置小智语音UI状态 * @@ -105,15 +90,6 @@ public interface IMogoStatusManager extends IProvider { */ void setAccStatus( String tag, boolean isOn ); - /** - * 设置用户交互状态:地图手势交互、语音控制 - * - * @param tag 业务类型 - * @param interrupt true - 用户在交互 - * @param callback 是否引起回调 - */ - void setUserInteractionStatus( String tag, boolean interrupt, boolean callback ); - /** * 主页 resume 状态 * @@ -154,19 +130,6 @@ public interface IMogoStatusManager extends IProvider { */ void setMainPageLaunchedStatus( String tag, boolean launched ); - /** - * 顶部弹窗容器准备就绪 - * @param tag - * @param isReady - */ - void setTopContainerReady(String tag, boolean isReady); - - /** - * 顶部容器是否准备就绪 - * @return - */ - boolean isTopContainerReady(); - /** * 注册监听 * diff --git a/services/mogo-service-api/src/main/java/com/mogo/service/statusmanager/StatusDescriptor.java b/services/mogo-service-api/src/main/java/com/mogo/service/statusmanager/StatusDescriptor.java index 3d81366552..93f010345d 100644 --- a/services/mogo-service-api/src/main/java/com/mogo/service/statusmanager/StatusDescriptor.java +++ b/services/mogo-service-api/src/main/java/com/mogo/service/statusmanager/StatusDescriptor.java @@ -23,11 +23,6 @@ public enum StatusDescriptor { */ ACC_STATUS, - /** - * 用户交互状态 - */ - USER_INTERACTED, - /** * 主页 resume 状态 */ @@ -53,20 +48,10 @@ public enum StatusDescriptor { */ MAIN_PAGE_CREATED, - /** - * topView展示状态 - */ - TOP_VIEW, - /** * 是否已经进入vr模式 */ VR_MODE, - /** - * 顶部弹框容器准备就绪 - */ - TOP_CONTAINER_READY, - } diff --git a/services/mogo-service-api/src/main/java/com/mogo/service/voice/IMogoGlobalVoiceManager.java b/services/mogo-service-api/src/main/java/com/mogo/service/voice/IMogoGlobalVoiceManager.java deleted file mode 100644 index b16230830c..0000000000 --- a/services/mogo-service-api/src/main/java/com/mogo/service/voice/IMogoGlobalVoiceManager.java +++ /dev/null @@ -1,16 +0,0 @@ -package com.mogo.service.voice; - -import android.content.Intent; - -/** - * 全局免唤醒指令处理监听 - * - * @author tongchenfei - */ -public interface IMogoGlobalVoiceManager { - /** - * 收到全局免唤醒指令和唤醒词指令 - * @param cmd 具体指令 - */ - void onGlobalUnwake(String cmd, Intent intent); -} diff --git a/services/mogo-service-api/src/main/java/com/mogo/service/windowview/IMogoEntranceViewListener.java b/services/mogo-service-api/src/main/java/com/mogo/service/windowview/IMogoEntranceViewListener.java deleted file mode 100644 index 65ec76d6ad..0000000000 --- a/services/mogo-service-api/src/main/java/com/mogo/service/windowview/IMogoEntranceViewListener.java +++ /dev/null @@ -1,40 +0,0 @@ -package com.mogo.service.windowview; - -import android.view.View; - -/** - * EntranceView状态监听 - * - * @author tongchenfei - */ -public interface IMogoEntranceViewListener { - /** - * 新view展示 - * 只针对左侧提示(LeftNotice) - * @param type 展示的类型 - */ - void onViewAdded(int type); - - /** - * view移除 - * 只针对左侧提示(LeftNotice) - * @param type 移除的type - */ - void onViewRemoved(int type); - - /** - * view添加动画开始之前 - * @param view 添加的view - * @deprecated 暂时没用 - */ - @Deprecated - void beforeViewAddAnim(View view); - - /** - * view 移除动画开始之前 - * @param view 移除的view - * @deprecated 暂时没用 - */ - @Deprecated - void beforeViewRemoveAnim(View view); -} diff --git a/services/mogo-service/src/main/java/com/mogo/service/impl/MogoServiceApis.java b/services/mogo-service/src/main/java/com/mogo/service/impl/MogoServiceApis.java index be294ec377..431db41faa 100644 --- a/services/mogo-service/src/main/java/com/mogo/service/impl/MogoServiceApis.java +++ b/services/mogo-service/src/main/java/com/mogo/service/impl/MogoServiceApis.java @@ -9,7 +9,6 @@ import com.mogo.eagle.core.data.constants.MogoServicePaths; import com.mogo.eagle.core.utilcode.mogo.logger.CallerLogger; import com.mogo.service.IMogoServiceApis; import com.mogo.service.analytics.IMogoAnalytics; -import com.mogo.service.datamanager.IMogoDataManager; import com.mogo.service.fragmentmanager.IMogoFragmentManager; import com.mogo.service.imageloader.IMogoImageloader; import com.mogo.service.impl.analytics.impl.MogoAnalyticsImpl; @@ -67,11 +66,6 @@ public class MogoServiceApis implements IMogoServiceApis { } - @Override - public IMogoDataManager getDataManagerApi() { - return getApiInstance(IMogoDataManager.class, MogoServicePaths.PATH_DATA_MANAGER); - } - @Override public IMogoRegisterCenter getRegisterCenterApi() { return getApiInstance(IMogoRegisterCenter.class, MogoServicePaths.PATH_REGISTER_CENTER); diff --git a/services/mogo-service/src/main/java/com/mogo/service/impl/singleton/SingletonsHolder.java b/services/mogo-service/src/main/java/com/mogo/service/impl/singleton/SingletonsHolder.java index 80c544a06d..46dccb56bf 100644 --- a/services/mogo-service/src/main/java/com/mogo/service/impl/singleton/SingletonsHolder.java +++ b/services/mogo-service/src/main/java/com/mogo/service/impl/singleton/SingletonsHolder.java @@ -2,7 +2,6 @@ package com.mogo.service.impl.singleton; import com.alibaba.android.arouter.facade.template.IProvider; import com.alibaba.android.arouter.launcher.ARouter; -import com.mogo.service.datamanager.IMogoDataManager; import com.mogo.service.fragmentmanager.IMogoFragmentManager; import com.mogo.service.impl.fragmentmanager.MogoFragmentManager; import com.mogo.service.impl.statusmanager.MogoStatusManager; @@ -24,7 +23,6 @@ public class SingletonsHolder { static { sSingletons.put(IMogoFragmentManager.class, new MogoFragmentManager()); sSingletons.put(IMogoStatusManager.class, new MogoStatusManager()); - sSingletons.put(IMogoDataManager.class, ARouter.getInstance().navigation(IMogoDataManager.class)); } public static T get(Class clazz) { diff --git a/services/mogo-service/src/main/java/com/mogo/service/impl/statusmanager/MogoStatusManager.java b/services/mogo-service/src/main/java/com/mogo/service/impl/statusmanager/MogoStatusManager.java index b3028673b2..c53d677a8d 100644 --- a/services/mogo-service/src/main/java/com/mogo/service/impl/statusmanager/MogoStatusManager.java +++ b/services/mogo-service/src/main/java/com/mogo/service/impl/statusmanager/MogoStatusManager.java @@ -61,18 +61,6 @@ public class MogoStatusManager implements IMogoStatusManager { return get_bool_val( StatusDescriptor.ACC_STATUS ); } - @Override - public boolean isUserInteracted() { - try { - return get_bool_val( StatusDescriptor.USER_INTERACTED ); - } catch ( Exception e ) { - return false; - } finally { - // 恢复消费过的状态 - mStatus.put( StatusDescriptor.USER_INTERACTED, false ); - } - } - @Override public boolean isMainPageOnResume() { return get_bool_val( StatusDescriptor.MAIN_PAGE_RESUME ); @@ -93,11 +81,6 @@ public class MogoStatusManager implements IMogoStatusManager { return val != null && val; } - @Override - public void setTopViewShow(String tag, boolean show) { - doSetStatus(tag, StatusDescriptor.TOP_VIEW, show); - } - @Override public void setVrMode(String tag, boolean vrMode) { doSetStatus(tag, StatusDescriptor.VR_MODE, vrMode); @@ -118,15 +101,6 @@ public class MogoStatusManager implements IMogoStatusManager { doSetStatus( tag, StatusDescriptor.ACC_STATUS, isOn ); } - @Override - public void setUserInteractionStatus( String tag, boolean interrupt, boolean callback ) { - mStatus.put( StatusDescriptor.USER_INTERACTED, interrupt ); - if ( callback ) { - invokeStatusChangedListener( StatusDescriptor.USER_INTERACTED, interrupt ); - } - recordStatusModifier( tag, StatusDescriptor.USER_INTERACTED ); - } - @Override public void setMainPageResumeStatus( String tag, boolean resume ) { doSetStatus( tag, StatusDescriptor.MAIN_PAGE_RESUME, resume ); @@ -152,16 +126,6 @@ public class MogoStatusManager implements IMogoStatusManager { doSetStatus( tag, StatusDescriptor.MAIN_PAGE_CREATED, launched ); } - @Override - public void setTopContainerReady( String tag, boolean isReady ) { - doSetStatus( tag, StatusDescriptor.TOP_CONTAINER_READY, isReady ); - } - - @Override - public boolean isTopContainerReady() { - return get_bool_val( StatusDescriptor.TOP_CONTAINER_READY ); - } - private void doSetStatus( String tag, StatusDescriptor target, boolean value ) { mStatus.put( target, value ); invokeStatusChangedListener( target, value );