diff --git a/OCH/mogo-och-bus-passenger/build.gradle b/OCH/mogo-och-bus-passenger/build.gradle index f9be5b07ca..af805de9a1 100644 --- a/OCH/mogo-och-bus-passenger/build.gradle +++ b/OCH/mogo-och-bus-passenger/build.gradle @@ -55,16 +55,15 @@ dependencies { if (Boolean.valueOf(USE_MAVEN_PACKAGE)) { implementation rootProject.ext.dependencies.mogoutils implementation rootProject.ext.dependencies.mogocommons - implementation rootProject.ext.dependencies.modulecommon implementation rootProject.ext.dependencies.mogo_core_data implementation rootProject.ext.dependencies.mogo_core_function_call implementation rootProject.ext.dependencies.mogo_core_function_v2x implementation rootProject.ext.dependencies.mogo_core_function_hmi }else { - implementation project(":core:mogo-core-utils") + implementation project(':foudations:mogo-aicloud-services-sdk') implementation project(":foudations:mogo-commons") - implementation project(':modules:mogo-module-common') implementation project(':core:mogo-core-data') + implementation project(":core:mogo-core-utils") implementation project(':core:mogo-core-function-call') implementation project(':core:function-impl:mogo-core-function-v2x') implementation project(':core:function-impl:mogo-core-function-hmi') diff --git a/OCH/mogo-och-bus/build.gradle b/OCH/mogo-och-bus/build.gradle index 4de0719cb7..7d6e998bbc 100644 --- a/OCH/mogo-och-bus/build.gradle +++ b/OCH/mogo-och-bus/build.gradle @@ -59,14 +59,12 @@ dependencies { if (Boolean.valueOf(USE_MAVEN_PACKAGE)) { implementation rootProject.ext.dependencies.mogoutils implementation rootProject.ext.dependencies.mogocommons - implementation rootProject.ext.dependencies.modulecommon implementation rootProject.ext.dependencies.mogo_core_data implementation rootProject.ext.dependencies.mogo_core_function_call implementation rootProject.ext.dependencies.mogo_core_function_hmi }else { implementation project(":core:mogo-core-utils") implementation project(":foudations:mogo-commons") - implementation project(':modules:mogo-module-common') implementation project(':core:mogo-core-data') implementation project(':core:mogo-core-function-call') implementation project(':core:function-impl:mogo-core-function-hmi') diff --git a/OCH/mogo-och-bus/src/main/java/com/mogo/och/bus/fragment/BaseBusTabFragment.java b/OCH/mogo-och-bus/src/main/java/com/mogo/och/bus/fragment/BaseBusTabFragment.java index ad9e8b5b50..97805d52d7 100644 --- a/OCH/mogo-och-bus/src/main/java/com/mogo/och/bus/fragment/BaseBusTabFragment.java +++ b/OCH/mogo-och-bus/src/main/java/com/mogo/och/bus/fragment/BaseBusTabFragment.java @@ -4,9 +4,7 @@ import static com.mogo.eagle.core.utilcode.mogo.logger.scene.SceneConstant.M_BUS import static com.mogo.och.bus.constant.BusConst.TIMER_START_AUTOPILOT_INTERVAL; import android.animation.ObjectAnimator; -import android.content.Intent; import android.os.Bundle; -import android.util.DisplayMetrics; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; @@ -21,12 +19,9 @@ import androidx.annotation.NonNull; import androidx.annotation.Nullable; import androidx.constraintlayout.widget.Group; -import com.mogo.commons.AbsMogoApplication; -import com.mogo.commons.debug.DebugConfig; import com.mogo.commons.mvp.IView; import com.mogo.commons.mvp.MvpFragment; import com.mogo.commons.mvp.Presenter; -import com.mogo.commons.voice.AIAssist; import com.mogo.eagle.core.data.config.HmiBuildConfig; import com.mogo.eagle.core.function.api.autopilot.IMoGoAutopilotRecordListener; import com.mogo.eagle.core.function.api.autopilot.IMoGoAutopilotStatusListener; @@ -35,26 +30,21 @@ import com.mogo.eagle.core.function.call.autopilot.CallerAutopilotRecordListener import com.mogo.eagle.core.function.call.devatools.CallerDevaToolsManager; import com.mogo.eagle.core.function.call.hmi.CallerHmiManager; import com.mogo.eagle.core.function.hmi.ui.widget.TrafficDataView; -import com.mogo.eagle.core.function.v2x.events.scenario.scene.airoad.AiRoadMarker; import com.mogo.eagle.core.utilcode.mogo.logger.CallerLogger; -import com.mogo.eagle.core.utilcode.util.ToastUtils; +import com.mogo.eagle.core.utilcode.mogo.view.OnPreventFastClickListener; import com.mogo.eagle.core.utilcode.util.UiThreadHandler; import com.mogo.map.MogoMapUIController; -import com.mogo.map.MogoMarkerManager; import com.mogo.map.listener.IMogoMapListener; +import com.mogo.map.listener.MogoMapListenerHandler; import com.mogo.map.uicontroller.VisualAngleMode; -import com.mogo.module.common.MogoApisHandler; -import com.mogo.eagle.core.utilcode.mogo.view.OnPreventFastClickListener; import com.mogo.och.bus.R; import com.mogo.och.bus.bean.BusRoutesResult; -import com.mogo.och.bus.constant.BusConst; import com.mogo.och.bus.model.BusOrderModel; import com.mogo.och.bus.util.BDRouteDataTestUtils; import com.mogo.och.bus.view.SlidePanelView; import com.mogo.och.common.module.utils.SoundPoolHelper; import org.greenrobot.eventbus.EventBus; -import org.greenrobot.eventbus.ThreadMode; import mogo.telematics.pad.MessagePad; import record_cache.RecordPanelOuterClass; @@ -68,7 +58,7 @@ import record_cache.RecordPanelOuterClass; */ public abstract class BaseBusTabFragment> extends MvpFragment implements IMogoMapListener, IMoGoAutopilotRecordListener { - private static final String TAG = "BaseOchFragment"; + private static final String TAG = "BaseBusTabFragment"; protected SlidePanelView slidePanelView; private RelativeLayout ctvAutopilotStatus; @@ -83,8 +73,6 @@ public abstract class BaseBusTabFragment private TrafficDataView mTrafficDataView; // private BusTrafficLightView mTrafficLightView; - public static final String TYPE_ENTRANCE = "entrance"; - //远景和中景的切换 private ImageView mSwitchMapModeImage; private LinearLayout mSwitchMapModeLayout; @@ -188,7 +176,7 @@ public abstract class BaseBusTabFragment ); findViewById(R.id.btnAutopilotRoute).setOnClickListener(view -> debugArrivedRoute()); - + tvArrived.setOnClickListener(view -> { onArriveStation(); }); @@ -267,7 +255,7 @@ public abstract class BaseBusTabFragment protected abstract void debugArrivedStation(); private void initListener() { - MogoApisHandler.getInstance().getApis().getRegisterCenterApi().registerMogoMapListener(TYPE_ENTRANCE, this); + MogoMapListenerHandler.Companion.getMogoMapListenerHandler().registerHostMapListener(TAG, this); } /** @@ -376,15 +364,15 @@ public abstract class BaseBusTabFragment // 主动开启自动驾驶中,不为2(为0、1)则继续loading return; } - if (isAnimateRunning){ + if (isAnimateRunning) { stopAnimAndUpdateBtnStatus(); - }else { + } else { setAutopilotBtnStatus(autopilotStatus); } } - public void stopAnimAndUpdateBtnStatus(){ + public void stopAnimAndUpdateBtnStatus() { stopAutopilotAnimation(); updateAutopilotStatus(CallerAutoPilotStatusListenerManager.INSTANCE.getAutoPilotStatusInfo().getState()); } @@ -494,7 +482,7 @@ public abstract class BaseBusTabFragment @Override public void onDestroy() { super.onDestroy(); - MogoApisHandler.getInstance().getApis().getRegisterCenterApi().unregisterMogoMapListener(TYPE_ENTRANCE); + MogoMapListenerHandler.Companion.getMogoMapListenerHandler().unregisterHostMapListener(TAG); } @Override diff --git a/OCH/mogo-och-common-module/build.gradle b/OCH/mogo-och-common-module/build.gradle index 41c0d2ad9b..6bcce00b7e 100644 --- a/OCH/mogo-och-common-module/build.gradle +++ b/OCH/mogo-och-common-module/build.gradle @@ -60,7 +60,6 @@ dependencies { if (Boolean.valueOf(USE_MAVEN_PACKAGE)) { implementation rootProject.ext.dependencies.mogoutils implementation rootProject.ext.dependencies.mogocommons - implementation rootProject.ext.dependencies.modulecommon implementation rootProject.ext.dependencies.mogo_core_data implementation rootProject.ext.dependencies.mogo_core_function_call implementation rootProject.ext.dependencies.mogo_core_function_v2x @@ -68,7 +67,6 @@ dependencies { }else { implementation project(":core:mogo-core-utils") implementation project(":foudations:mogo-commons") - implementation project(':modules:mogo-module-common') implementation project(':core:mogo-core-data') implementation project(':core:mogo-core-function-call') implementation project(':core:function-impl:mogo-core-function-v2x') diff --git a/OCH/mogo-och-common-module/src/main/java/com/mogo/och/common/module/biz/model/OchCommonLoginModel.kt b/OCH/mogo-och-common-module/src/main/java/com/mogo/och/common/module/biz/model/OchCommonLoginModel.kt index a5b2277c7d..da776f959b 100644 --- a/OCH/mogo-och-common-module/src/main/java/com/mogo/och/common/module/biz/model/OchCommonLoginModel.kt +++ b/OCH/mogo-och-common-module/src/main/java/com/mogo/och/common/module/biz/model/OchCommonLoginModel.kt @@ -3,17 +3,18 @@ package com.mogo.och.common.module.biz.model import android.annotation.SuppressLint import android.content.Context import com.mogo.eagle.core.data.BaseData +import com.mogo.eagle.core.data.map.MogoLocation +import com.mogo.eagle.core.function.api.map.listener.IMoGoMapLocationListener +import com.mogo.eagle.core.function.call.map.CallerMapLocationListenerManager import com.mogo.eagle.core.utilcode.util.NetworkUtils import com.mogo.eagle.core.utilcode.util.SharedPrefs import com.mogo.eagle.core.utilcode.util.ToastUtils -import com.mogo.map.navi.IMogoCarLocationChangedListener2 -import com.mogo.module.common.MogoApisHandler import com.mogo.och.common.module.R import com.mogo.och.common.module.biz.bean.TaxiLoginReqBean import com.mogo.och.common.module.biz.bean.TaxiLoginRespBean import com.mogo.och.common.module.biz.callback.ITaxiLoginCallback -import com.mogo.och.common.module.biz.constant.TaxiLoginStatusEnum import com.mogo.och.common.module.biz.constant.LoginStatusManager +import com.mogo.och.common.module.biz.constant.TaxiLoginStatusEnum import com.mogo.och.common.module.biz.network.OchCommonServiceCallback import com.mogo.och.common.module.biz.network.OchCommonServiceManager import com.mogo.och.common.module.utils.ToastUtilsOch @@ -25,7 +26,7 @@ import com.mogo.och.common.module.utils.ToastUtilsOch * 网约车 - 出租车业务逻辑处理 */ @SuppressLint("StaticFieldLeak") -object OchCommonLoginModel{ +object OchCommonLoginModel : IMoGoMapLocationListener { private val TAG = "TaxiLoginModel" private var mContext: Context? = null @@ -35,20 +36,21 @@ object OchCommonLoginModel{ fun init(context: Context) { mContext = context.applicationContext // 达到起始站围栏监听 - MogoApisHandler.getInstance().apis.registerCenterApi.registerCarLocationChangedListener(TAG, mCarLocationChangedListener2) + CallerMapLocationListenerManager.addListener(TAG, this, false) } - fun hasInit():Boolean{ - if(mContext==null&& iTaxiLoginCallback==null){ - return false; + fun hasInit(): Boolean { + if (mContext == null && iTaxiLoginCallback == null) { + return false } return true } - // 自车定位 - private val mCarLocationChangedListener2 = IMogoCarLocationChangedListener2 { location -> - mLongitude = location.longitude - mLatitude = location.latitude + override fun onLocationChanged(location: MogoLocation?, from: Int, isGps: Boolean) { + location?.let { + mLongitude = it.longitude + mLatitude = it.latitude + } } fun getiTaxiLoginCallback(): ITaxiLoginCallback? { @@ -63,8 +65,7 @@ object OchCommonLoginModel{ mContext = null iTaxiLoginCallback = null // 注销到达起始站围栏监听 - MogoApisHandler.getInstance().apis.registerCenterApi - .unregisterCarLocationChangedListener(TAG, mCarLocationChangedListener2) + CallerMapLocationListenerManager.removeListener(TAG, false) } /** @@ -95,7 +96,7 @@ object OchCommonLoginModel{ } override fun onFail(code: Int, msg: String) { - ToastUtilsOch.showWithCodeMessage(code,msg) + ToastUtilsOch.showWithCodeMessage(code, msg) } }) } @@ -113,7 +114,7 @@ object OchCommonLoginModel{ ToastUtils.showShort(mContext?.getString(R.string.module_och_taxi_login_login_success)) LoginStatusManager.setLoginStatus(TaxiLoginStatusEnum.Login) mContext?.let { - SharedPrefs.getInstance(it).putString("och_account",phone) + SharedPrefs.getInstance(it).putString("och_account", phone) } iTaxiLoginCallback?.loginSuccess() } else { @@ -132,9 +133,10 @@ object OchCommonLoginModel{ } override fun onFail(code: Int, msg: String) { - ToastUtilsOch.showWithCodeMessage(code,msg) + ToastUtilsOch.showWithCodeMessage(code, msg) } }) } } + } \ No newline at end of file diff --git a/OCH/mogo-och-noop/build.gradle b/OCH/mogo-och-noop/build.gradle index 2c5e33b374..7067f05711 100644 --- a/OCH/mogo-och-noop/build.gradle +++ b/OCH/mogo-och-noop/build.gradle @@ -42,13 +42,11 @@ dependencies { if (Boolean.valueOf(USE_MAVEN_PACKAGE)) { implementation rootProject.ext.dependencies.mogoutils implementation rootProject.ext.dependencies.mogocommons - implementation rootProject.ext.dependencies.modulecommon implementation rootProject.ext.dependencies.mogo_core_data implementation rootProject.ext.dependencies.mogo_core_function_call }else { implementation project(":core:mogo-core-utils") implementation project(":foudations:mogo-commons") - implementation project(':modules:mogo-module-common') implementation project(':core:mogo-core-data') implementation project(':core:mogo-core-function-call') } diff --git a/OCH/mogo-och-sweeper/build.gradle b/OCH/mogo-och-sweeper/build.gradle index eea68114f8..faa8d4934e 100644 --- a/OCH/mogo-och-sweeper/build.gradle +++ b/OCH/mogo-och-sweeper/build.gradle @@ -58,14 +58,12 @@ dependencies { if (Boolean.valueOf(USE_MAVEN_PACKAGE)) { implementation rootProject.ext.dependencies.mogoutils implementation rootProject.ext.dependencies.mogocommons - implementation rootProject.ext.dependencies.modulecommon implementation rootProject.ext.dependencies.mogo_core_data implementation rootProject.ext.dependencies.mogo_core_function_call implementation rootProject.ext.dependencies.mogo_core_function_hmi }else { implementation project(":core:mogo-core-utils") implementation project(":foudations:mogo-commons") - implementation project(':modules:mogo-module-common') implementation project(':core:mogo-core-data') implementation project(':core:mogo-core-function-call') implementation project(':core:function-impl:mogo-core-function-hmi') diff --git a/OCH/mogo-och-sweeper/src/main/java/com/mogo/och/sweeper/fragment/BaseSweeperTabFragment.java b/OCH/mogo-och-sweeper/src/main/java/com/mogo/och/sweeper/fragment/BaseSweeperTabFragment.java index e82be6de13..1b557c34c6 100644 --- a/OCH/mogo-och-sweeper/src/main/java/com/mogo/och/sweeper/fragment/BaseSweeperTabFragment.java +++ b/OCH/mogo-och-sweeper/src/main/java/com/mogo/och/sweeper/fragment/BaseSweeperTabFragment.java @@ -20,7 +20,6 @@ import androidx.constraintlayout.widget.Group; import com.mogo.commons.AbsMogoApplication; import com.mogo.commons.debug.DebugConfig; -import com.mogo.commons.module.intent.IntentManager; import com.mogo.commons.mvp.IView; import com.mogo.commons.mvp.MvpFragment; import com.mogo.commons.mvp.Presenter; @@ -35,13 +34,12 @@ import com.mogo.eagle.core.function.call.hmi.CallerHmiManager; import com.mogo.eagle.core.function.hmi.ui.widget.TrafficDataView; import com.mogo.eagle.core.utilcode.mogo.logger.CallerLogger; import com.mogo.eagle.core.utilcode.mogo.view.OnPreventFastClickListener; -import com.mogo.eagle.core.utilcode.util.ToastUtils; import com.mogo.eagle.core.utilcode.util.UiThreadHandler; import com.mogo.map.MogoMapUIController; import com.mogo.map.MogoMarkerManager; import com.mogo.map.listener.IMogoMapListener; +import com.mogo.map.listener.MogoMapListenerHandler; import com.mogo.map.uicontroller.VisualAngleMode; -import com.mogo.module.common.MogoApisHandler; import com.mogo.och.sweeper.R; import com.mogo.och.sweeper.bean.SweeperRoutesResult; import com.mogo.och.sweeper.constant.SweeperConst; @@ -61,7 +59,7 @@ import record_cache.RecordPanelOuterClass; */ public abstract class BaseSweeperTabFragment> extends MvpFragment implements IMogoMapListener, IMoGoAutopilotRecordListener { - private static final String TAG = "BaseOchFragment"; + private static final String TAG = "BaseSweeperTabFragment"; protected SlidePanelView slidePanelView; private RelativeLayout ctvAutopilotStatus; @@ -80,8 +78,6 @@ public abstract class BaseSweeperTabFragment { val map = hashMapOf() val sn = MoGoAiCloudClientConfig.getInstance().sn - val location = MogoLocationClient.getInstance(AbsMogoApplication.getApp())?.lastKnowLocation + + val location = CallerMapLocationListenerManager.getCurrentLocation() if (location != null) { params.lon = location.longitude params.lat = location.latitude @@ -104,7 +104,7 @@ internal class ChatServiceModel { suspend fun requestRoomInfo(param: CallRequestParam): BaseResponse { val map = hashMapOf() - val location = MogoLocationClient.getInstance(AbsMogoApplication.getApp())?.lastKnowLocation + val location = CallerMapLocationListenerManager.getCurrentLocation() if (location != null) { param.lat = location.latitude param.lon = location.longitude diff --git a/core/function-impl/mogo-core-function-check/build.gradle b/core/function-impl/mogo-core-function-check/build.gradle index 555b00ce5b..4df724d12c 100644 --- a/core/function-impl/mogo-core-function-check/build.gradle +++ b/core/function-impl/mogo-core-function-check/build.gradle @@ -56,8 +56,6 @@ dependencies { implementation rootProject.ext.dependencies.mogocommons implementation rootProject.ext.dependencies.mogoserviceapi - implementation rootProject.ext.dependencies.modulecommon - implementation rootProject.ext.dependencies.moduleservice implementation rootProject.ext.dependencies.callchatprovider implementation rootProject.ext.dependencies.mogo_core_data @@ -69,7 +67,6 @@ dependencies { implementation project(":foudations:mogo-commons") implementation project(':services:mogo-service-api') - implementation project(':modules:mogo-module-common') implementation project(':core:mogo-core-data') implementation project(':core:mogo-core-utils') diff --git a/core/function-impl/mogo-core-function-devatools/build.gradle b/core/function-impl/mogo-core-function-devatools/build.gradle index f6b29415a9..74822b3272 100644 --- a/core/function-impl/mogo-core-function-devatools/build.gradle +++ b/core/function-impl/mogo-core-function-devatools/build.gradle @@ -86,7 +86,6 @@ dependencies { if (Boolean.valueOf(USE_MAVEN_PACKAGE)) { implementation rootProject.ext.dependencies.mogoserviceapi - implementation rootProject.ext.dependencies.modulecommon implementation rootProject.ext.dependencies.mogo_core_utils implementation rootProject.ext.dependencies.mogo_core_function_api implementation rootProject.ext.dependencies.mogo_core_function_call @@ -94,8 +93,8 @@ dependencies { implementation rootProject.ext.dependencies.mogo_core_res }else { implementation project(':services:mogo-service-api') - implementation project(':modules:mogo-module-common') - + implementation project(':foudations:mogo-aicloud-services-sdk') + implementation project(':foudations:mogo-commons') implementation project(':core:mogo-core-utils') implementation project(':core:mogo-core-function-api') implementation project(':core:mogo-core-function-call') diff --git a/core/function-impl/mogo-core-function-dispatch/build.gradle b/core/function-impl/mogo-core-function-dispatch/build.gradle index b76080d0f6..19386cc6b1 100644 --- a/core/function-impl/mogo-core-function-dispatch/build.gradle +++ b/core/function-impl/mogo-core-function-dispatch/build.gradle @@ -55,19 +55,16 @@ dependencies { if (Boolean.valueOf(USE_MAVEN_PACKAGE)) { - implementation rootProject.ext.dependencies.modulecommon - implementation rootProject.ext.dependencies.mogo_core_data implementation rootProject.ext.dependencies.mogo_core_utils implementation rootProject.ext.dependencies.mogo_core_network implementation rootProject.ext.dependencies.mogo_core_function_call }else{ implementation project(":foudations:mogo-commons") - implementation project(':modules:mogo-module-common') - implementation project(':core:mogo-core-data') implementation project(':core:mogo-core-utils') implementation project(':core:mogo-core-network') + implementation project(':core:mogo-core-function-api') implementation project(':core:mogo-core-function-call') } } diff --git a/core/function-impl/mogo-core-function-dispatch/src/main/java/com/zhjt/dispatch/DispatchAutoPilotManager.java b/core/function-impl/mogo-core-function-dispatch/src/main/java/com/zhjt/dispatch/DispatchAutoPilotManager.java index bd8b98e7ac..a830a459fa 100644 --- a/core/function-impl/mogo-core-function-dispatch/src/main/java/com/zhjt/dispatch/DispatchAutoPilotManager.java +++ b/core/function-impl/mogo-core-function-dispatch/src/main/java/com/zhjt/dispatch/DispatchAutoPilotManager.java @@ -1,10 +1,18 @@ package com.zhjt.dispatch; +import static com.mogo.eagle.core.utilcode.mogo.logger.scene.SceneConstant.M_DISPATCH; +import static com.zhjt.dispatch.model.DispatchServiceModel.DISPATCH_RESULT_AFFIRM; +import static com.zhjt.dispatch.model.DispatchServiceModel.DISPATCH_RESULT_MANUAL_CANCEL; +import static com.zhjt.dispatch.model.DispatchServiceModel.DISPATCH_RESULT_TIMER_CANCEL; + import android.content.Context; -import android.location.Location; import android.os.Handler; import android.os.Message; +import androidx.annotation.NonNull; +import androidx.annotation.Nullable; + +import com.mogo.aicloud.services.socket.IMogoOnMessageListener; import com.mogo.aicloud.services.socket.MogoAiCloudSocketManager; import com.mogo.cloud.commons.utils.CoordinateUtils; import com.mogo.eagle.core.data.autopilot.AutopilotControlParameters; @@ -16,16 +24,14 @@ import com.mogo.eagle.core.data.map.MogoLocation; import com.mogo.eagle.core.function.api.autopilot.IMoGoAutopilotPlanningListener; import com.mogo.eagle.core.function.api.autopilot.IMoGoAutopilotStatusListener; import com.mogo.eagle.core.function.api.hmi.autopilot.IMoGoCheckAutoPilotBtnListener; +import com.mogo.eagle.core.function.api.map.listener.IMoGoMapLocationListener; import com.mogo.eagle.core.function.call.autopilot.CallerAutoPilotManager; import com.mogo.eagle.core.function.call.autopilot.CallerAutoPilotStatusListenerManager; import com.mogo.eagle.core.function.call.autopilot.CallerAutopilotPlanningListenerManager; import com.mogo.eagle.core.function.call.hmi.CallerHmiListenerManager; +import com.mogo.eagle.core.function.call.map.CallerMapLocationListenerManager; import com.mogo.eagle.core.utilcode.mogo.logger.CallerLogger; -import com.mogo.map.navi.IMogoCarLocationChangedListener2; -import com.mogo.module.common.MogoApisHandler; import com.zhjt.dispatch.model.DispatchServiceModel; -import com.mogo.service.IMogoServiceApis; -import com.mogo.aicloud.services.socket.IMogoOnMessageListener; import com.zhjt.dispatch.model.IDispatch; import org.jetbrains.annotations.NotNull; @@ -33,22 +39,13 @@ import org.jetbrains.annotations.NotNull; import java.util.ArrayList; import java.util.List; -import static com.mogo.eagle.core.utilcode.mogo.logger.scene.SceneConstant.M_DISPATCH; -import static com.zhjt.dispatch.model.DispatchServiceModel.DISPATCH_RESULT_AFFIRM; -import static com.zhjt.dispatch.model.DispatchServiceModel.DISPATCH_RESULT_MANUAL_CANCEL; -import static com.zhjt.dispatch.model.DispatchServiceModel.DISPATCH_RESULT_TIMER_CANCEL; - -import androidx.annotation.NonNull; -import androidx.annotation.Nullable; - import mogo.telematics.pad.MessagePad; import mogo_msg.MogoReportMsg; import system_master.SystemStatusInfo; //负责监听自动驾驶状态并进行状态上报,自动驾驶路线上报,接收调度指令展示指令弹窗 public class DispatchAutoPilotManager implements IMogoOnMessageListener - , IDispatchRemindClickListener, IMogoCarLocationChangedListener2, - IMoGoCheckAutoPilotBtnListener, IMoGoAutopilotPlanningListener, IMoGoAutopilotStatusListener { + , IDispatchRemindClickListener, IMoGoCheckAutoPilotBtnListener, IMoGoAutopilotPlanningListener, IMoGoAutopilotStatusListener, IMoGoMapLocationListener { private static final String TAG = "DispatchAutoPilotManager"; private static volatile DispatchAutoPilotManager instance; @@ -104,8 +101,7 @@ public class DispatchAutoPilotManager implements IMogoOnMessageListener mSpeedLimmit) "#DB3137" else "#3E77F6")) + val speed = (it.speed * 3.6f).toInt() + mSpeedChartView.setArcColor(Color.parseColor(if (speed > mSpeedLimit) "#DB3137" else "#3E77F6")) mSpeedChartView.setValues(speed) - setBackgroundResource(if (speed > mSpeedLimmit) R.drawable.yi_biao_pan_bg_speeding else R.drawable.yi_biao_pan_bg_nor) + setBackgroundResource(if (speed > mSpeedLimit) R.drawable.yi_biao_pan_bg_speeding else R.drawable.yi_biao_pan_bg_nor) } } } @@ -92,11 +84,16 @@ class SpeedPanelView @JvmOverloads constructor( timer.schedule(task, Date(), 100) } + override fun onLocationChanged(location: MogoLocation?, from: Int, isGps: Boolean) { + location?.let { + mLatLng = location + } + } + override fun onDetachedFromWindow() { super.onDetachedFromWindow() // 解除注册 - mMogoServiceApis.registerCenterApi - .unregisterMogoLocationListener(TAG) + CallerMapLocationListenerManager.removeListener(TAG, false) try { timerTask?.cancel() } catch (e: Exception) { @@ -104,9 +101,4 @@ class SpeedPanelView @JvmOverloads constructor( } } - - override fun onCarLocationChanged2(latLng: Location) { - mLatLng = latLng - } - } \ No newline at end of file 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 385b841940..801249170e 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 @@ -232,8 +232,8 @@ public class MainActivity extends MvpActivity implement MogoModulesManager.getInstance().init(this); IMogoHosListenerRegister listenerRegister = CallerMapUIServiceManager.INSTANCE.getHostListenerRegister(); if (listenerRegister != null) { - listenerRegister.registerHostMapListener(EventDispatchCenter.getInstance()); - listenerRegister.registerMarkerClickListener(EventDispatchCenter.getInstance()); + listenerRegister.registerHostMapListener(TAG,EventDispatchCenter.getInstance()); + listenerRegister.registerMarkerClickListener(TAG, EventDispatchCenter.getInstance()); } EventDispatchCenter.getInstance().setMapLoadedCallback(() -> { @@ -246,7 +246,7 @@ public class MainActivity extends MvpActivity implement // TODO 这里临时兼容进入VR模式,标记状态机。有些业务(OCH)会根据状态判断加载 MogoStatusManager.getInstance().setVrMode(TAG, true); // 设置地图样式 - MogoMapListenerHandler.getInstance().onMapModeChanged(EnumMapUI.MAP_STYLE_DAY_VR); + MogoMapListenerHandler.Companion.getMogoMapListenerHandler().onMapModeChanged(EnumMapUI.MAP_STYLE_DAY_VR); }); CallerLogger.INSTANCE.i(M_HMI + TAG, "App launch timer cost " + (System.currentTimeMillis() - start) + "ms"); }); @@ -436,8 +436,8 @@ public class MainActivity extends MvpActivity implement CallerAutoPilotStatusListenerManager.INSTANCE.removeListener(TAG); IMogoHosListenerRegister listenerRegister = CallerMapUIServiceManager.INSTANCE.getHostListenerRegister(); if (listenerRegister != null) { - listenerRegister.unregisterMarkerClickListener(); - listenerRegister.unregisterHostMapListener(); + listenerRegister.unregisterMarkerClickListener(TAG); + listenerRegister.unregisterHostMapListener(TAG); } IMogoMapUIController mapUIController = CallerMapUIServiceManager.INSTANCE.getMapUIController(); if (mapUIController != null) { diff --git a/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/main/MainView.java b/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/main/MainView.java index a566efdfda..5623b44a9e 100644 --- a/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/main/MainView.java +++ b/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/main/MainView.java @@ -1,7 +1,6 @@ package com.mogo.eagle.core.function.main; import com.mogo.commons.mvp.IView; -import com.mogo.service.IMogoServiceApis; /** * @author congtaowang diff --git a/core/function-impl/mogo-core-function-map/build.gradle b/core/function-impl/mogo-core-function-map/build.gradle index f8ce82de6f..3151dde685 100644 --- a/core/function-impl/mogo-core-function-map/build.gradle +++ b/core/function-impl/mogo-core-function-map/build.gradle @@ -69,7 +69,6 @@ dependencies { implementation rootProject.ext.dependencies.lifecycle_extension if (Boolean.valueOf(USE_MAVEN_PACKAGE)) { - implementation rootProject.ext.dependencies.modulecommon implementation rootProject.ext.dependencies.mogoserviceapi implementation rootProject.ext.dependencies.mogo_core_res @@ -81,9 +80,9 @@ dependencies { implementation rootProject.ext.dependencies.mogomap implementation rootProject.ext.dependencies.mogomapapi } else { - implementation project(':modules:mogo-module-common') implementation project(':services:mogo-service-api') + implementation project(':foudations:mogo-commons') implementation project(':core:mogo-core-res') implementation project(':core:mogo-core-data') implementation project(':core:mogo-core-utils') diff --git a/core/function-impl/mogo-core-function-monitoring/build.gradle b/core/function-impl/mogo-core-function-monitoring/build.gradle index 6a91089dfd..aba956f700 100644 --- a/core/function-impl/mogo-core-function-monitoring/build.gradle +++ b/core/function-impl/mogo-core-function-monitoring/build.gradle @@ -57,14 +57,12 @@ dependencies { implementation rootProject.ext.dependencies.mogo_core_data implementation rootProject.ext.dependencies.mogo_core_function_api implementation rootProject.ext.dependencies.mogo_core_function_call - implementation rootProject.ext.dependencies.modulecommon } else { implementation project(':core:mogo-core-utils') implementation project(':core:mogo-core-res') implementation project(':core:mogo-core-data') implementation project(':core:mogo-core-function-api') implementation project(':core:mogo-core-function-call') - implementation project(':modules:mogo-module-common') implementation project(":foudations:mogo-commons") } } diff --git a/core/function-impl/mogo-core-function-monitoring/src/main/java/com/mogo/eagle/core/function/monitoring/CronTaskManager.kt b/core/function-impl/mogo-core-function-monitoring/src/main/java/com/mogo/eagle/core/function/monitoring/CronTaskManager.kt index 8e310b7ab7..fc562c2988 100644 --- a/core/function-impl/mogo-core-function-monitoring/src/main/java/com/mogo/eagle/core/function/monitoring/CronTaskManager.kt +++ b/core/function-impl/mogo-core-function-monitoring/src/main/java/com/mogo/eagle/core/function/monitoring/CronTaskManager.kt @@ -8,11 +8,11 @@ import com.mogo.commons.constants.HostConst import com.mogo.eagle.core.data.camera.CameraEntity import com.mogo.eagle.core.data.camera.ReqLiveCarBean import com.mogo.eagle.core.function.call.hmi.CallerHmiManager +import com.mogo.eagle.core.function.call.map.CallerMapLocationListenerManager import com.mogo.eagle.core.function.monitoring.net.CameraListServices import com.mogo.eagle.core.network.MoGoRetrofitFactory import com.mogo.eagle.core.utilcode.mogo.logger.CallerLogger import com.mogo.eagle.core.utilcode.mogo.logger.scene.SceneConstant.Companion.M_MONITOR -import com.mogo.map.MogoLocationClient import io.reactivex.Observable import io.reactivex.android.schedulers.AndroidSchedulers import io.reactivex.disposables.Disposable @@ -86,7 +86,7 @@ class CronTaskManager(private var context: Context?) { * 请求路口一定范围内的设备信息(包含:摄像头、灯) */ private fun requestDeviceList() { - MogoLocationClient.getInstance(context).lastKnowLocation?.let { location -> + CallerMapLocationListenerManager.getCurrentLocation()?.let { location -> disposable = MoGoRetrofitFactory.getInstance(HostConst.CITY_HOST) .create(CameraListServices::class.java) .getDeviceList(location.longitude, location.latitude, 500) @@ -114,13 +114,13 @@ class CronTaskManager(private var context: Context?) { "requestDeviceList:message is:${it.message}, cause is:${it.cause}" ) }) - } ?: run { + }?: run { CallerLogger.e("$M_MONITOR$TAG", "CurrentLocation is null!") } } private fun requestCarCameraList() { - MogoLocationClient.getInstance(context).lastKnowLocation?.let { location -> + CallerMapLocationListenerManager.getCurrentLocation()?.let { location -> carDisposable = MoGoRetrofitFactory.getInstance(HostConst.CITY_HOST) .create(CameraListServices::class.java) .getCarCameraList(ReqLiveCarBean(location.longitude, location.latitude)) diff --git a/core/function-impl/mogo-core-function-msgbox/build/generated/source/buildConfig/debug/com/mogo/eagle/core/function/msgbox/BuildConfig.java b/core/function-impl/mogo-core-function-msgbox/build/generated/source/buildConfig/debug/com/mogo/eagle/core/function/msgbox/BuildConfig.java new file mode 100644 index 0000000000..4d884a4fac --- /dev/null +++ b/core/function-impl/mogo-core-function-msgbox/build/generated/source/buildConfig/debug/com/mogo/eagle/core/function/msgbox/BuildConfig.java @@ -0,0 +1,18 @@ +/** + * Automatically generated file. DO NOT MODIFY + */ +package com.mogo.eagle.core.function.msgbox; + +public final class BuildConfig { + public static final boolean DEBUG = Boolean.parseBoolean("true"); + public static final String LIBRARY_PACKAGE_NAME = "com.mogo.eagle.core.function.msgbox"; + /** + * @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.msgbox"; + 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 = ""; +} diff --git a/core/function-impl/mogo-core-function-msgbox/build/generated/source/kapt/debug/com/alibaba/android/arouter/routes/ARouter$$Group$$msg_box.java b/core/function-impl/mogo-core-function-msgbox/build/generated/source/kapt/debug/com/alibaba/android/arouter/routes/ARouter$$Group$$msg_box.java new file mode 100644 index 0000000000..4415cd545d --- /dev/null +++ b/core/function-impl/mogo-core-function-msgbox/build/generated/source/kapt/debug/com/alibaba/android/arouter/routes/ARouter$$Group$$msg_box.java @@ -0,0 +1,19 @@ +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.msgbox.MsgBoxProvider; +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$$msg_box implements IRouteGroup { + @Override + public void loadInto(Map atlas) { + atlas.put("/msg_box/api", RouteMeta.build(RouteType.PROVIDER, MsgBoxProvider.class, "/msg_box/api", "msg_box", null, -1, -2147483648)); + } +} diff --git a/core/function-impl/mogo-core-function-msgbox/build/generated/source/kapt/debug/com/alibaba/android/arouter/routes/ARouter$$Providers$$mogocorefunctionmsgbox.java b/core/function-impl/mogo-core-function-msgbox/build/generated/source/kapt/debug/com/alibaba/android/arouter/routes/ARouter$$Providers$$mogocorefunctionmsgbox.java new file mode 100644 index 0000000000..5e72cdd615 --- /dev/null +++ b/core/function-impl/mogo-core-function-msgbox/build/generated/source/kapt/debug/com/alibaba/android/arouter/routes/ARouter$$Providers$$mogocorefunctionmsgbox.java @@ -0,0 +1,19 @@ +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.msgbox.MsgBoxProvider; +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$$mogocorefunctionmsgbox implements IProviderGroup { + @Override + public void loadInto(Map providers) { + providers.put("com.mogo.eagle.core.function.api.msgbox.IMsgBoxProvider", RouteMeta.build(RouteType.PROVIDER, MsgBoxProvider.class, "/msg_box/api", "msg_box", null, -1, -2147483648)); + } +} diff --git a/core/function-impl/mogo-core-function-msgbox/build/generated/source/kapt/debug/com/alibaba/android/arouter/routes/ARouter$$Root$$mogocorefunctionmsgbox.java b/core/function-impl/mogo-core-function-msgbox/build/generated/source/kapt/debug/com/alibaba/android/arouter/routes/ARouter$$Root$$mogocorefunctionmsgbox.java new file mode 100644 index 0000000000..8e3dd653f6 --- /dev/null +++ b/core/function-impl/mogo-core-function-msgbox/build/generated/source/kapt/debug/com/alibaba/android/arouter/routes/ARouter$$Root$$mogocorefunctionmsgbox.java @@ -0,0 +1,18 @@ +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$$mogocorefunctionmsgbox implements IRouteRoot { + @Override + public void loadInto(Map> routes) { + routes.put("msg_box", ARouter$$Group$$msg_box.class); + } +} diff --git a/core/function-impl/mogo-core-function-msgbox/build/generated/source/kapt/debug/com/mogo/eagle/core/function/msgbox/db/MsgBoxDao_Impl.java b/core/function-impl/mogo-core-function-msgbox/build/generated/source/kapt/debug/com/mogo/eagle/core/function/msgbox/db/MsgBoxDao_Impl.java new file mode 100644 index 0000000000..38a13cb9fa --- /dev/null +++ b/core/function-impl/mogo-core-function-msgbox/build/generated/source/kapt/debug/com/mogo/eagle/core/function/msgbox/db/MsgBoxDao_Impl.java @@ -0,0 +1,146 @@ +package com.mogo.eagle.core.function.msgbox.db; + +import android.database.Cursor; +import androidx.room.CoroutinesRoom; +import androidx.room.EntityDeletionOrUpdateAdapter; +import androidx.room.EntityInsertionAdapter; +import androidx.room.RoomDatabase; +import androidx.room.RoomSQLiteQuery; +import androidx.room.util.CursorUtil; +import androidx.room.util.DBUtil; +import androidx.sqlite.db.SupportSQLiteStatement; +import java.lang.Class; +import java.lang.Exception; +import java.lang.Object; +import java.lang.Override; +import java.lang.String; +import java.lang.SuppressWarnings; +import java.util.ArrayList; +import java.util.Collections; +import java.util.List; +import java.util.concurrent.Callable; +import kotlin.Unit; +import kotlin.coroutines.Continuation; + +@SuppressWarnings({"unchecked", "deprecation"}) +public final class MsgBoxDao_Impl implements MsgBoxDao { + private final RoomDatabase __db; + + private final EntityInsertionAdapter __insertionAdapterOfMsgBoxInfo; + + private final EntityDeletionOrUpdateAdapter __deletionAdapterOfMsgBoxInfo; + + public MsgBoxDao_Impl(RoomDatabase __db) { + this.__db = __db; + this.__insertionAdapterOfMsgBoxInfo = new EntityInsertionAdapter(__db) { + @Override + public String createQuery() { + return "INSERT OR REPLACE INTO `t_msg_box` (`obj_json`,`json_obj_type`,`time_stamp`) VALUES (?,?,?)"; + } + + @Override + public void bind(SupportSQLiteStatement stmt, MsgBoxInfo value) { + if (value.getBean2Json() == null) { + stmt.bindNull(1); + } else { + stmt.bindString(1, value.getBean2Json()); + } + stmt.bindLong(2, value.getObj2JsonType()); + stmt.bindLong(3, value.getTimeStamp()); + } + }; + this.__deletionAdapterOfMsgBoxInfo = new EntityDeletionOrUpdateAdapter(__db) { + @Override + public String createQuery() { + return "DELETE FROM `t_msg_box` WHERE `obj_json` = ?"; + } + + @Override + public void bind(SupportSQLiteStatement stmt, MsgBoxInfo value) { + if (value.getBean2Json() == null) { + stmt.bindNull(1); + } else { + stmt.bindString(1, value.getBean2Json()); + } + } + }; + } + + @Override + public void insertMessage(final MsgBoxInfo info) { + __db.assertNotSuspendingTransaction(); + __db.beginTransaction(); + try { + __insertionAdapterOfMsgBoxInfo.insert(info); + __db.setTransactionSuccessful(); + } finally { + __db.endTransaction(); + } + } + + @Override + public void insertMessages(final MsgBoxInfo... info) { + __db.assertNotSuspendingTransaction(); + __db.beginTransaction(); + try { + __insertionAdapterOfMsgBoxInfo.insert(info); + __db.setTransactionSuccessful(); + } finally { + __db.endTransaction(); + } + } + + @Override + public Object deleteMsg(final MsgBoxInfo info, final Continuation continuation) { + return CoroutinesRoom.execute(__db, true, new Callable() { + @Override + public Unit call() throws Exception { + __db.beginTransaction(); + try { + __deletionAdapterOfMsgBoxInfo.handle(info); + __db.setTransactionSuccessful(); + return Unit.INSTANCE; + } finally { + __db.endTransaction(); + } + } + }, continuation); + } + + @Override + public List getAllCachedMessages() { + final String _sql = "SELECT * FROM t_msg_box"; + final RoomSQLiteQuery _statement = RoomSQLiteQuery.acquire(_sql, 0); + __db.assertNotSuspendingTransaction(); + final Cursor _cursor = DBUtil.query(__db, _statement, false, null); + try { + final int _cursorIndexOfBean2Json = CursorUtil.getColumnIndexOrThrow(_cursor, "obj_json"); + final int _cursorIndexOfObj2JsonType = CursorUtil.getColumnIndexOrThrow(_cursor, "json_obj_type"); + final int _cursorIndexOfTimeStamp = CursorUtil.getColumnIndexOrThrow(_cursor, "time_stamp"); + final List _result = new ArrayList(_cursor.getCount()); + while(_cursor.moveToNext()) { + final MsgBoxInfo _item; + final String _tmpBean2Json; + if (_cursor.isNull(_cursorIndexOfBean2Json)) { + _tmpBean2Json = null; + } else { + _tmpBean2Json = _cursor.getString(_cursorIndexOfBean2Json); + } + final int _tmpObj2JsonType; + _tmpObj2JsonType = _cursor.getInt(_cursorIndexOfObj2JsonType); + final long _tmpTimeStamp; + _tmpTimeStamp = _cursor.getLong(_cursorIndexOfTimeStamp); + _item = new MsgBoxInfo(_tmpBean2Json,_tmpObj2JsonType,_tmpTimeStamp); + _result.add(_item); + } + return _result; + } finally { + _cursor.close(); + _statement.release(); + } + } + + public static List> getRequiredConverters() { + return Collections.emptyList(); + } +} diff --git a/core/function-impl/mogo-core-function-msgbox/build/generated/source/kapt/debug/com/mogo/eagle/core/function/msgbox/db/MsgBoxDb_Impl.java b/core/function-impl/mogo-core-function-msgbox/build/generated/source/kapt/debug/com/mogo/eagle/core/function/msgbox/db/MsgBoxDb_Impl.java new file mode 100644 index 0000000000..8d3a5e139e --- /dev/null +++ b/core/function-impl/mogo-core-function-msgbox/build/generated/source/kapt/debug/com/mogo/eagle/core/function/msgbox/db/MsgBoxDb_Impl.java @@ -0,0 +1,166 @@ +package com.mogo.eagle.core.function.msgbox.db; + +import androidx.annotation.NonNull; +import androidx.room.DatabaseConfiguration; +import androidx.room.InvalidationTracker; +import androidx.room.RoomOpenHelper; +import androidx.room.RoomOpenHelper.Delegate; +import androidx.room.RoomOpenHelper.ValidationResult; +import androidx.room.migration.AutoMigrationSpec; +import androidx.room.migration.Migration; +import androidx.room.util.DBUtil; +import androidx.room.util.TableInfo; +import androidx.room.util.TableInfo.Column; +import androidx.room.util.TableInfo.ForeignKey; +import androidx.room.util.TableInfo.Index; +import androidx.sqlite.db.SupportSQLiteDatabase; +import androidx.sqlite.db.SupportSQLiteOpenHelper; +import androidx.sqlite.db.SupportSQLiteOpenHelper.Callback; +import androidx.sqlite.db.SupportSQLiteOpenHelper.Configuration; +import java.lang.Class; +import java.lang.Override; +import java.lang.String; +import java.lang.SuppressWarnings; +import java.util.Arrays; +import java.util.HashMap; +import java.util.HashSet; +import java.util.List; +import java.util.Map; +import java.util.Set; + +@SuppressWarnings({"unchecked", "deprecation"}) +public final class MsgBoxDb_Impl extends MsgBoxDb { + private volatile MsgBoxDao _msgBoxDao; + + @Override + protected SupportSQLiteOpenHelper createOpenHelper(DatabaseConfiguration configuration) { + final SupportSQLiteOpenHelper.Callback _openCallback = new RoomOpenHelper(configuration, new RoomOpenHelper.Delegate(1) { + @Override + public void createAllTables(SupportSQLiteDatabase _db) { + _db.execSQL("CREATE TABLE IF NOT EXISTS `t_msg_box` (`obj_json` TEXT NOT NULL, `json_obj_type` INTEGER NOT NULL, `time_stamp` INTEGER NOT NULL, PRIMARY KEY(`obj_json`))"); + _db.execSQL("CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)"); + _db.execSQL("INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, 'e3b1c5d5d688059898caf243cb07d34c')"); + } + + @Override + public void dropAllTables(SupportSQLiteDatabase _db) { + _db.execSQL("DROP TABLE IF EXISTS `t_msg_box`"); + if (mCallbacks != null) { + for (int _i = 0, _size = mCallbacks.size(); _i < _size; _i++) { + mCallbacks.get(_i).onDestructiveMigration(_db); + } + } + } + + @Override + protected void onCreate(SupportSQLiteDatabase _db) { + if (mCallbacks != null) { + for (int _i = 0, _size = mCallbacks.size(); _i < _size; _i++) { + mCallbacks.get(_i).onCreate(_db); + } + } + } + + @Override + public void onOpen(SupportSQLiteDatabase _db) { + mDatabase = _db; + internalInitInvalidationTracker(_db); + if (mCallbacks != null) { + for (int _i = 0, _size = mCallbacks.size(); _i < _size; _i++) { + mCallbacks.get(_i).onOpen(_db); + } + } + } + + @Override + public void onPreMigrate(SupportSQLiteDatabase _db) { + DBUtil.dropFtsSyncTriggers(_db); + } + + @Override + public void onPostMigrate(SupportSQLiteDatabase _db) { + } + + @Override + protected RoomOpenHelper.ValidationResult onValidateSchema(SupportSQLiteDatabase _db) { + final HashMap _columnsTMsgBox = new HashMap(3); + _columnsTMsgBox.put("obj_json", new TableInfo.Column("obj_json", "TEXT", true, 1, null, TableInfo.CREATED_FROM_ENTITY)); + _columnsTMsgBox.put("json_obj_type", new TableInfo.Column("json_obj_type", "INTEGER", true, 0, null, TableInfo.CREATED_FROM_ENTITY)); + _columnsTMsgBox.put("time_stamp", new TableInfo.Column("time_stamp", "INTEGER", true, 0, null, TableInfo.CREATED_FROM_ENTITY)); + final HashSet _foreignKeysTMsgBox = new HashSet(0); + final HashSet _indicesTMsgBox = new HashSet(0); + final TableInfo _infoTMsgBox = new TableInfo("t_msg_box", _columnsTMsgBox, _foreignKeysTMsgBox, _indicesTMsgBox); + final TableInfo _existingTMsgBox = TableInfo.read(_db, "t_msg_box"); + if (! _infoTMsgBox.equals(_existingTMsgBox)) { + return new RoomOpenHelper.ValidationResult(false, "t_msg_box(com.mogo.eagle.core.function.msgbox.db.MsgBoxInfo).\n" + + " Expected:\n" + _infoTMsgBox + "\n" + + " Found:\n" + _existingTMsgBox); + } + return new RoomOpenHelper.ValidationResult(true, null); + } + }, "e3b1c5d5d688059898caf243cb07d34c", "b378eb20a36b24560e715c71bdca2117"); + final SupportSQLiteOpenHelper.Configuration _sqliteConfig = SupportSQLiteOpenHelper.Configuration.builder(configuration.context) + .name(configuration.name) + .callback(_openCallback) + .build(); + final SupportSQLiteOpenHelper _helper = configuration.sqliteOpenHelperFactory.create(_sqliteConfig); + return _helper; + } + + @Override + protected InvalidationTracker createInvalidationTracker() { + final HashMap _shadowTablesMap = new HashMap(0); + HashMap> _viewTables = new HashMap>(0); + return new InvalidationTracker(this, _shadowTablesMap, _viewTables, "t_msg_box"); + } + + @Override + public void clearAllTables() { + super.assertNotMainThread(); + final SupportSQLiteDatabase _db = super.getOpenHelper().getWritableDatabase(); + try { + super.beginTransaction(); + _db.execSQL("DELETE FROM `t_msg_box`"); + super.setTransactionSuccessful(); + } finally { + super.endTransaction(); + _db.query("PRAGMA wal_checkpoint(FULL)").close(); + if (!_db.inTransaction()) { + _db.execSQL("VACUUM"); + } + } + } + + @Override + protected Map, List>> getRequiredTypeConverters() { + final HashMap, List>> _typeConvertersMap = new HashMap, List>>(); + _typeConvertersMap.put(MsgBoxDao.class, MsgBoxDao_Impl.getRequiredConverters()); + return _typeConvertersMap; + } + + @Override + public Set> getRequiredAutoMigrationSpecs() { + final HashSet> _autoMigrationSpecsSet = new HashSet>(); + return _autoMigrationSpecsSet; + } + + @Override + public List getAutoMigrations( + @NonNull Map, AutoMigrationSpec> autoMigrationSpecsMap) { + return Arrays.asList(); + } + + @Override + public MsgBoxDao monitorDao() { + if (_msgBoxDao != null) { + return _msgBoxDao; + } else { + synchronized(this) { + if(_msgBoxDao == null) { + _msgBoxDao = new MsgBoxDao_Impl(this); + } + return _msgBoxDao; + } + } + } +} diff --git a/core/function-impl/mogo-core-function-msgbox/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml b/core/function-impl/mogo-core-function-msgbox/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml new file mode 100644 index 0000000000..811e485d18 --- /dev/null +++ b/core/function-impl/mogo-core-function-msgbox/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml @@ -0,0 +1,13 @@ + + + + + + + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-msgbox/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output.json b/core/function-impl/mogo-core-function-msgbox/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output.json new file mode 100644 index 0000000000..e7b8e9d0ae --- /dev/null +++ b/core/function-impl/mogo-core-function-msgbox/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":"","enabled":true,"outputFile":"mogo-core-function-msgbox-debug.aar","fullName":"debug","baseName":"debug"},"path":"AndroidManifest.xml","properties":{"packageId":"com.mogo.eagle.core.function.msgbox","split":""}}] \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-msgbox/build/intermediates/annotation_processor_list/debug/annotationProcessors.json b/core/function-impl/mogo-core-function-msgbox/build/intermediates/annotation_processor_list/debug/annotationProcessors.json new file mode 100644 index 0000000000..9e26dfeeb6 --- /dev/null +++ b/core/function-impl/mogo-core-function-msgbox/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-msgbox/build/intermediates/compile_library_classes/debug/classes.jar b/core/function-impl/mogo-core-function-msgbox/build/intermediates/compile_library_classes/debug/classes.jar new file mode 100644 index 0000000000..80b23f0862 Binary files /dev/null and b/core/function-impl/mogo-core-function-msgbox/build/intermediates/compile_library_classes/debug/classes.jar differ diff --git a/core/function-impl/mogo-core-function-msgbox/build/intermediates/compile_only_not_namespaced_r_class_jar/debug/R.jar b/core/function-impl/mogo-core-function-msgbox/build/intermediates/compile_only_not_namespaced_r_class_jar/debug/R.jar new file mode 100644 index 0000000000..2cb4c127ba Binary files /dev/null and b/core/function-impl/mogo-core-function-msgbox/build/intermediates/compile_only_not_namespaced_r_class_jar/debug/R.jar differ diff --git a/core/function-impl/mogo-core-function-msgbox/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml b/core/function-impl/mogo-core-function-msgbox/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml new file mode 100644 index 0000000000..d04b6778ea --- /dev/null +++ b/core/function-impl/mogo-core-function-msgbox/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-msgbox/build/intermediates/incremental/mergeDebugShaders/merger.xml b/core/function-impl/mogo-core-function-msgbox/build/intermediates/incremental/mergeDebugShaders/merger.xml new file mode 100644 index 0000000000..bec1176c8b --- /dev/null +++ b/core/function-impl/mogo-core-function-msgbox/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-msgbox/build/intermediates/incremental/packageDebugAssets/merger.xml b/core/function-impl/mogo-core-function-msgbox/build/intermediates/incremental/packageDebugAssets/merger.xml new file mode 100644 index 0000000000..6831de74b1 --- /dev/null +++ b/core/function-impl/mogo-core-function-msgbox/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-msgbox/build/intermediates/incremental/packageDebugResources/compile-file-map.properties b/core/function-impl/mogo-core-function-msgbox/build/intermediates/incremental/packageDebugResources/compile-file-map.properties new file mode 100644 index 0000000000..1c49d987f8 --- /dev/null +++ b/core/function-impl/mogo-core-function-msgbox/build/intermediates/incremental/packageDebugResources/compile-file-map.properties @@ -0,0 +1 @@ +#Fri Oct 28 11:24:33 CST 2022 diff --git a/core/function-impl/mogo-core-function-msgbox/build/intermediates/incremental/packageDebugResources/merger.xml b/core/function-impl/mogo-core-function-msgbox/build/intermediates/incremental/packageDebugResources/merger.xml new file mode 100644 index 0000000000..7bc4c9f331 --- /dev/null +++ b/core/function-impl/mogo-core-function-msgbox/build/intermediates/incremental/packageDebugResources/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-msgbox/build/intermediates/javac/debug/classes/com/alibaba/android/arouter/routes/ARouter$$Group$$msg_box.class b/core/function-impl/mogo-core-function-msgbox/build/intermediates/javac/debug/classes/com/alibaba/android/arouter/routes/ARouter$$Group$$msg_box.class new file mode 100644 index 0000000000..8e20fadcb7 Binary files /dev/null and b/core/function-impl/mogo-core-function-msgbox/build/intermediates/javac/debug/classes/com/alibaba/android/arouter/routes/ARouter$$Group$$msg_box.class differ diff --git a/core/function-impl/mogo-core-function-msgbox/build/intermediates/javac/debug/classes/com/alibaba/android/arouter/routes/ARouter$$Providers$$mogocorefunctionmsgbox.class b/core/function-impl/mogo-core-function-msgbox/build/intermediates/javac/debug/classes/com/alibaba/android/arouter/routes/ARouter$$Providers$$mogocorefunctionmsgbox.class new file mode 100644 index 0000000000..796288af61 Binary files /dev/null and b/core/function-impl/mogo-core-function-msgbox/build/intermediates/javac/debug/classes/com/alibaba/android/arouter/routes/ARouter$$Providers$$mogocorefunctionmsgbox.class differ diff --git a/core/function-impl/mogo-core-function-msgbox/build/intermediates/javac/debug/classes/com/alibaba/android/arouter/routes/ARouter$$Root$$mogocorefunctionmsgbox.class b/core/function-impl/mogo-core-function-msgbox/build/intermediates/javac/debug/classes/com/alibaba/android/arouter/routes/ARouter$$Root$$mogocorefunctionmsgbox.class new file mode 100644 index 0000000000..2ba39bf08d Binary files /dev/null and b/core/function-impl/mogo-core-function-msgbox/build/intermediates/javac/debug/classes/com/alibaba/android/arouter/routes/ARouter$$Root$$mogocorefunctionmsgbox.class differ diff --git a/core/function-impl/mogo-core-function-msgbox/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/msgbox/BuildConfig.class b/core/function-impl/mogo-core-function-msgbox/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/msgbox/BuildConfig.class new file mode 100644 index 0000000000..286b843d43 Binary files /dev/null and b/core/function-impl/mogo-core-function-msgbox/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/msgbox/BuildConfig.class differ diff --git a/core/function-impl/mogo-core-function-msgbox/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/msgbox/db/MsgBoxDao_Impl$1.class b/core/function-impl/mogo-core-function-msgbox/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/msgbox/db/MsgBoxDao_Impl$1.class new file mode 100644 index 0000000000..46230287fe Binary files /dev/null and b/core/function-impl/mogo-core-function-msgbox/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/msgbox/db/MsgBoxDao_Impl$1.class differ diff --git a/core/function-impl/mogo-core-function-msgbox/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/msgbox/db/MsgBoxDao_Impl$2.class b/core/function-impl/mogo-core-function-msgbox/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/msgbox/db/MsgBoxDao_Impl$2.class new file mode 100644 index 0000000000..fbbc011b4f Binary files /dev/null and b/core/function-impl/mogo-core-function-msgbox/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/msgbox/db/MsgBoxDao_Impl$2.class differ diff --git a/core/function-impl/mogo-core-function-msgbox/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/msgbox/db/MsgBoxDao_Impl$3.class b/core/function-impl/mogo-core-function-msgbox/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/msgbox/db/MsgBoxDao_Impl$3.class new file mode 100644 index 0000000000..af4c45b76c Binary files /dev/null and b/core/function-impl/mogo-core-function-msgbox/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/msgbox/db/MsgBoxDao_Impl$3.class differ diff --git a/core/function-impl/mogo-core-function-msgbox/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/msgbox/db/MsgBoxDao_Impl.class b/core/function-impl/mogo-core-function-msgbox/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/msgbox/db/MsgBoxDao_Impl.class new file mode 100644 index 0000000000..7ccd555251 Binary files /dev/null and b/core/function-impl/mogo-core-function-msgbox/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/msgbox/db/MsgBoxDao_Impl.class differ diff --git a/core/function-impl/mogo-core-function-msgbox/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/msgbox/db/MsgBoxDb_Impl$1.class b/core/function-impl/mogo-core-function-msgbox/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/msgbox/db/MsgBoxDb_Impl$1.class new file mode 100644 index 0000000000..882ec45d44 Binary files /dev/null and b/core/function-impl/mogo-core-function-msgbox/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/msgbox/db/MsgBoxDb_Impl$1.class differ diff --git a/core/function-impl/mogo-core-function-msgbox/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/msgbox/db/MsgBoxDb_Impl.class b/core/function-impl/mogo-core-function-msgbox/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/msgbox/db/MsgBoxDb_Impl.class new file mode 100644 index 0000000000..56d23392ae Binary files /dev/null and b/core/function-impl/mogo-core-function-msgbox/build/intermediates/javac/debug/classes/com/mogo/eagle/core/function/msgbox/db/MsgBoxDb_Impl.class differ diff --git a/core/function-impl/mogo-core-function-msgbox/build/intermediates/library_java_res/debug/res.jar b/core/function-impl/mogo-core-function-msgbox/build/intermediates/library_java_res/debug/res.jar new file mode 100644 index 0000000000..81ff416d4e Binary files /dev/null and b/core/function-impl/mogo-core-function-msgbox/build/intermediates/library_java_res/debug/res.jar differ diff --git a/core/function-impl/mogo-core-function-msgbox/build/intermediates/library_manifest/debug/AndroidManifest.xml b/core/function-impl/mogo-core-function-msgbox/build/intermediates/library_manifest/debug/AndroidManifest.xml new file mode 100644 index 0000000000..811e485d18 --- /dev/null +++ b/core/function-impl/mogo-core-function-msgbox/build/intermediates/library_manifest/debug/AndroidManifest.xml @@ -0,0 +1,13 @@ + + + + + + + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-msgbox/build/intermediates/local_only_symbol_list/debug/parseDebugLibraryResources/R-def.txt b/core/function-impl/mogo-core-function-msgbox/build/intermediates/local_only_symbol_list/debug/parseDebugLibraryResources/R-def.txt new file mode 100644 index 0000000000..78ac5b8bef --- /dev/null +++ b/core/function-impl/mogo-core-function-msgbox/build/intermediates/local_only_symbol_list/debug/parseDebugLibraryResources/R-def.txt @@ -0,0 +1,2 @@ +R_DEF: Internal format may change without notice +local diff --git a/core/function-impl/mogo-core-function-msgbox/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt b/core/function-impl/mogo-core-function-msgbox/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt new file mode 100644 index 0000000000..c996db3a87 --- /dev/null +++ b/core/function-impl/mogo-core-function-msgbox/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt @@ -0,0 +1,16 @@ +1 +2 +5 +6 /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-msgbox/src/main/AndroidManifest.xml +8 android:targetSdkVersion="21" /> +8-->/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-msgbox/src/main/AndroidManifest.xml +9 +10 +10-->/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-msgbox/src/main/AndroidManifest.xml:4:5-5:19 +11 +12 +13 diff --git a/core/function-impl/mogo-core-function-msgbox/build/intermediates/merged_manifests/debug/output.json b/core/function-impl/mogo-core-function-msgbox/build/intermediates/merged_manifests/debug/output.json new file mode 100644 index 0000000000..59eacb6706 --- /dev/null +++ b/core/function-impl/mogo-core-function-msgbox/build/intermediates/merged_manifests/debug/output.json @@ -0,0 +1 @@ +[{"outputType":{"type":"MERGED_MANIFESTS"},"apkData":{"type":"MAIN","splits":[],"versionCode":1,"versionName":"","enabled":true,"outputFile":"mogo-core-function-msgbox-debug.aar","fullName":"debug","baseName":"debug"},"path":"../../library_manifest/debug/AndroidManifest.xml","properties":{"packageId":"com.mogo.eagle.core.function.msgbox","split":""}}] \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-msgbox/build/intermediates/res/symbol-table-with-package/debug/package-aware-r.txt b/core/function-impl/mogo-core-function-msgbox/build/intermediates/res/symbol-table-with-package/debug/package-aware-r.txt new file mode 100644 index 0000000000..9c264c7502 --- /dev/null +++ b/core/function-impl/mogo-core-function-msgbox/build/intermediates/res/symbol-table-with-package/debug/package-aware-r.txt @@ -0,0 +1,5097 @@ +com.mogo.eagle.core.function.msgbox +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 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 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 mtrl_bottom_sheet_slide_in +anim mtrl_bottom_sheet_slide_out +anim mtrl_card_lowers_interpolator +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_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 +attr ConstraintRotate +attr SharedValue +attr SharedValueId +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 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 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 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 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_fill_color +attr clearsTag +attr clickAction +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 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 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 duration +attr editTextBackground +attr editTextColor +attr editTextStyle +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 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 keyPositionType +attr keyboardIcon +attr keylines +attr labelBehavior +attr labelStyle +attr labelVisibilityMode +attr lastBaselineToBottomHeight +attr layout +attr layoutDescription +attr layoutDuringTransition +attr layoutManager +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_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_optimizationLevel +attr layout_scrollFlags +attr layout_scrollInterpolator +attr layout_wrapBehaviorInParent +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 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 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 progressBarAutoRotateInterval +attr progressBarImage +attr progressBarImageScaleType +attr progressBarPadding +attr progressBarStyle +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 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 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 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 showDividers +attr showMotionSpec +attr showPaths +attr showText +attr showTitle +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 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 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 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 vpi_orientation +attr vpi_rtl +attr vpi_slide_mode +attr vpi_slider_checked_color +attr vpi_slider_normal_color +attr vpi_slider_radius +attr vpi_style +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 yearSelectedStyle +attr yearStyle +attr yearTodayStyle +bool abc_action_bar_embed_tabs +bool abc_allow_stacked_button_bar +bool abc_config_actionMenuItemAllCaps +bool abc_config_showMenuShortcutsWhenKeyboardPresent +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 background_floating_material_dark +color background_floating_material_light +color background_material_dark +color background_material_light +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 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 checkbox_themeable_attribute_color +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 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 foreground_material_dark +color foreground_material_light +color highlighted_text_material_dark +color highlighted_text_material_light +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_ext_color_voice_text +color module_hmi_warning_bg_color +color module_hmi_warning_bg_color_light +color module_mogo_autopilot_status_disable +color module_mogo_autopilot_status_enable +color module_switch_map_bg +color modules_commons_toast_text_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_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 notification_action_color_filter +color notification_icon_bg_color +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_themeable_attribute_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 style_color +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 tooltip_background_dark +color tooltip_background_light +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 appcompat_dialog_background_inset +dimen brightness_icon +dimen cardview_compat_inset_shadow +dimen cardview_default_elevation +dimen cardview_default_radius +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 default_dimension +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_107 +dimen dp_108 +dimen dp_109 +dimen dp_11 +dimen dp_110 +dimen dp_1100 +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_1200 +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_1600 +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_57_5 +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 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 item_touch_helper_max_drag_scroll_per_frame +dimen item_touch_helper_swipe_escape_max_velocity +dimen item_touch_helper_swipe_escape_velocity +dimen layout_margin_bottom +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_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_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_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_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_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_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_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_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_vip_height +dimen module_vip_margin_left +dimen module_vip_margin_left_bus_passenger +dimen module_vip_margin_left_taxi_passenger +dimen module_vip_margin_top +dimen module_vip_margin_top_passenger +dimen module_vip_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_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 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 seek_bar_image +dimen sp_10 +dimen sp_11 +dimen sp_12 +dimen sp_120 +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_46 +dimen sp_48 +dimen sp_6 +dimen sp_7 +dimen sp_76 +dimen sp_8 +dimen sp_9 +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 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 video_progress_dialog_margin_top +dimen video_volume_dialog_margin_left +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 avd_hide_password +drawable avd_show_password +drawable bg_v2x_event_type_blue +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_waring_limiting_velocity +drawable bg_waring_traffic_light_vr +drawable bg_warning_bg +drawable bottom_left +drawable bottom_right +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_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 check_error_image +drawable dark_color_close +drawable design_fab_background +drawable design_ic_visibility +drawable design_ic_visibility_off +drawable design_password_eye +drawable design_snackbar_background +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 ic_amap_navi_cursor +drawable ic_clock_black_24dp +drawable ic_keyboard_black_24dp +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 icon_autopilot_status +drawable icon_autopilot_status_disabled +drawable icon_car_red +drawable icon_close_nor +drawable icon_default +drawable icon_default_user_head +drawable icon_download_guide +drawable icon_map_marker_car_gray +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_location_yellow +drawable icon_map_marker_location_yellow_vr +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_check2_white +drawable icon_module_small_map_four_corners +drawable icon_small_v2x_road_construction +drawable icon_v2x_marker +drawable icon_waring_traffic_light_green_vr +drawable icon_waring_traffic_light_red_vr +drawable icon_waring_traffic_light_yellow_vr +drawable icon_warning_gas_station +drawable icon_warning_road_hollow +drawable icon_warning_take_over +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_motobike +drawable icon_warning_v2x_motorcycle_collision +drawable icon_warning_v2x_no_parking +drawable icon_warning_v2x_no_tooting +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 lock +drawable map_api_ic_current_location2 +drawable map_api_ic_current_location2_cursor +drawable map_bus_icon +drawable map_car_icon +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 module_camera_real_time_traffic +drawable module_common_close_selector +drawable module_common_close_selector_vr +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_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_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_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_seek_help +drawable module_common_icon_unlike_selected_vr +drawable module_common_icon_unlike_vr +drawable module_common_like_vr +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_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_right_bottom +drawable module_hmi_warning_bkg_right_top +drawable module_hmi_warning_bkg_top +drawable module_services_marker_bkg +drawable module_services_marker_vr_bkg +drawable module_services_marker_vr_bkg_checked +drawable module_small_map_view_border +drawable module_small_map_view_border_north +drawable module_small_map_view_my_location_logo +drawable module_switch_map_angle +drawable module_switch_map_bg +drawable mogo_image_accident_small +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 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 navigation_empty_icon +drawable notice_banner_default +drawable notice_banner_icon_video +drawable notice_player_ic_circle_nor +drawable notice_seekbar_style +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 placeholder +drawable selector_call_btn_normal +drawable selector_call_btn_pressed +drawable test_custom_background +drawable tooltip_frame_dark +drawable tooltip_frame_light +drawable top_left +drawable unlock +drawable utils_toast_bg +drawable v2x_icon_car_collide_warning +drawable v2x_icon_daolushigong_vr +drawable v2x_icon_fenglu_vr +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_yongdu_vr +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_warning_car_red +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_normal +drawable video_pause_pressed +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 yi_biao_pan_bg_nor +drawable yi_biao_pan_bg_speeding +id BOTTOM_END +id BOTTOM_START +id NO_DEBUG +id SHOW_ALL +id SHOW_PATH +id SHOW_PROGRESS +id TOP_END +id TOP_START +id accelerate +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 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 ad_full_id +id ad_small_id +id ad_time +id add +id alertTitle +id aligned +id allStates +id animateToEnd +id animateToStart +id antiClockwise +id anticipate +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 back +id back_tiny +id barrier +id baseline +id bestChoice +id blocking +id bottom +id bottom_progressbar +id bounce +id buttonPanel +id cancel_button +id carryVelocity +id center +id centerCrop +id centerInside +id chain +id checkbox +id checked +id chip +id chip1 +id chip2 +id chip3 +id chip_group +id chronometer +id circle +id circle_center +id clear_text +id clockwise +id closest +id color +id confirm_button +id constraint +id container +id content +id contentPanel +id contiguous +id continuousVelocity +id coordinator +id cos +id counterclockwise +id current +id currentState +id custom +id customPanel +id cut +id dash +id date_picker_actions +id decelerate +id decelerateAndComplete +id decor_content_parent +id default_activity_button +id deltaRelative +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 dialog_button +id disjoint +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_query +id elastic +id end +id endToStart +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 fill +id filled +id fit +id fitBottomStart +id fitCenter +id fitEnd +id fitStart +id fitXY +id fixed +id fixed_height +id fixed_width +id flip +id floating +id focusCrop +id forever +id fragment_container_view_tag +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 guideline +id header_title +id home +id honorRequest +id horizontal +id horizontal_only +id icon +id icon_group +id ignore +id ignoreRequest +id image +id immediateStop +id included +id info +id invisible +id inward +id italic +id item_touch_helper_previous_elevation +id item_video_cover +id jumpToEnd +id jumpToStart +id jump_ad +id labeled +id layout +id layout_bottom +id layout_top +id left +id leftToRight +id line1 +id line3 +id linear +id listMode +id list_item +id loading +id lock_screen +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 message +id middle +id mini +id module_commons_toast_left_drawable +id module_commons_toast_msg +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 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 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 neverCompleteToEnd +id neverCompleteToStart +id noState +id none +id normal +id north +id notification_background +id notification_main_column +id notification_main_column_container +id off +id on +id outline +id outward +id overshoot +id packed +id parallax +id parent +id parentPanel +id parentRelative +id parent_matrix +id password_toggle +id path +id pathRelative +id percent +id pin +id position +id postLayout +id preview_layout +id progress +id progress_circular +id progress_horizontal +id radio +id rectangles +id reverseSawtooth +id right +id rightToLeft +id right_icon +id right_side +id round +id round_rect +id rounded +id row_index_key +id rtl +id save_non_transition_alpha +id save_overlay_view +id sawtooth +id scale +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 shape_left_top +id shape_right_top +id sharedValueSet +id sharedValueUnset +id shortcut +id sin +id skipped +id slide +id small_close +id small_id +id smooth +id snackbar_action +id snackbar_text +id south +id spacer +id special_effects_controller_view_tag +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 staticLayout +id staticPostLayout +id stop +id stretch +id submenuarrow +id submit_area +id surface_container +id surface_view +id tabMode +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_transition_group +id tag_unhandled_key_event_manager +id tag_unhandled_key_listeners +id tag_window_insets_animation_callback +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 text_input_end_icon +id text_input_error_icon +id text_input_start_icon +id textinput_counter +id textinput_error +id textinput_helper_text +id textinput_placeholder +id textinput_prefix_text +id textinput_suffix_text +id texture_view +id thumb +id thumbImage +id time +id title +id titleDividerNoCustom +id title_template +id top +id topPanel +id total +id touch_outside +id transition_current_scene +id transition_layout_save +id transition_position +id transition_scene_layoutid_cache +id transition_transform +id triangle +id tv_current +id tv_duration +id unchecked +id uniform +id unlabeled +id up +id utvBottomIconView +id utvLeftIconView +id utvRightIconView +id utvTopIconView +id vertical +id vertical_only +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 visible +id visible_removing_fragment_view_tag +id volume_progressbar +id west +id widget_container +id withinBounds +id worm +id wrap +id wrap_content +id wrap_content_constrained +id x_left +id x_right +id zero_corner_chip +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 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 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 exo_playback_control_view +layout exo_simple_player_view +layout item_notice_video +layout item_notice_video_small +layout item_v2x_crossroad_live_video +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 module_commons_layout_toast +layout module_commons_layout_toast_with_left_drawable +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 notice_video_card_layout +layout notification_action +layout notification_action_tombstone +layout notification_template_custom_big +layout notification_template_icon_group +layout notification_template_part_chronometer +layout notification_template_part_time +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 utils_toast_view +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 +plurals mtrl_badge_content_description +raw chuzuche +raw fangkuang +raw hq_h9 +raw jiantou +raw qfpz +raw sanjiaozhui +raw shexiangtou +raw special_vehicle +raw stopline +raw traffic_daba +raw traffic_daba_day +raw traffic_kache +raw traffic_motuoche +raw traffic_motuoche_day +raw traffic_people +raw traffic_people_day +raw traffic_tachexiaoche +raw traffic_tachexiaoche_day +raw traffic_unkonwn +raw traffic_xiankuang +raw traffic_ziche_day +raw traffic_zixingche +raw traffic_zixingche_day +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 xingren +raw xingren_night +raw ziche +string N_A +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 androidx_startup +string app_name +string appbar_scrolling_view_behavior +string bit_rate +string bottom_sheet_behavior +string bottomsheet_action_expand_halfway +string character_counter_content_description +string character_counter_overflowed_content_description +string character_counter_pattern +string chip_text +string clear_text_end_icon_content_description +string close +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 hide_bottom_view_on_scroll_behavior +string icon_content_description +string ijkplayer_dummy +string item_view_role_description +string jump_ad +string load_cost +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 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 module_map_model_faster +string module_map_model_normal +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 no_net +string no_url +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 recent +string sample +string search_menu_title +string seek_cost +string seek_load_cost +string settings +string show_info +string status_bar_notification_info_overflow +string tcp_speed +string tips_not_wifi +string tips_not_wifi_cancel +string tips_not_wifi_confirm +string toggle_player +string toggle_ratio +string toggle_render +string tracks +string v_cache +string vdec +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 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_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 CardView +style CardView_Dark +style CardView_Light +style EmptyTheme +style ExoMediaButton +style ExoMediaButton_FastForward +style ExoMediaButton_Next +style ExoMediaButton_Pause +style ExoMediaButton_Play +style ExoMediaButton_Previous +style ExoMediaButton_Rewind +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 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_V21_AppCompat +style Platform_V21_AppCompat_Light +style Platform_V25_AppCompat +style Platform_V25_AppCompat_Light +style Platform_Widget_AppCompat_Spinner +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 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_Line2 +style TextAppearance_Compat_Notification_Time +style TextAppearance_Compat_Notification_Title +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_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 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 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 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 itemHorizontalTranslationEnabled +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 ButtonBarLayout allowStacking +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 CircularProgressIndicator indicatorDirectionCircular indicatorInset indicatorSize +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 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 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 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 ImageFilterView altSrc blendSrc brightness contrast crossfade imagePanX imagePanY imageRotate imageZoom overlay round roundPercent saturation warmth +styleable IndicatorView vpi_orientation vpi_rtl vpi_slide_mode vpi_slider_checked_color vpi_slider_normal_color vpi_slider_radius vpi_style +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 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 RecycleListView paddingBottomNoButtons paddingTopNoTitle +styleable RecyclerView android_clipToPadding android_descendantFocusability android_orientation fastScrollEnabled fastScrollHorizontalThumbDrawable fastScrollHorizontalTrackDrawable fastScrollVerticalThumbDrawable fastScrollVerticalTrackDrawable layoutManager reverseLayout spanCount stackFromEnd +styleable RoundLayout roundLayoutRadius +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 play play_bg_line_color play_bg_line_width play_line_color play_line_width +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-msgbox/build/intermediates/runtime_library_classes/debug/classes.jar b/core/function-impl/mogo-core-function-msgbox/build/intermediates/runtime_library_classes/debug/classes.jar new file mode 100644 index 0000000000..80b23f0862 Binary files /dev/null and b/core/function-impl/mogo-core-function-msgbox/build/intermediates/runtime_library_classes/debug/classes.jar differ diff --git a/core/function-impl/mogo-core-function-msgbox/build/intermediates/symbols/debug/R.txt b/core/function-impl/mogo-core-function-msgbox/build/intermediates/symbols/debug/R.txt new file mode 100644 index 0000000000..cf80378396 --- /dev/null +++ b/core/function-impl/mogo-core-function-msgbox/build/intermediates/symbols/debug/R.txt @@ -0,0 +1,6966 @@ +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 btn_checkbox_to_checked_box_inner_merged_animation 0x7f01000d +int anim btn_checkbox_to_checked_box_outer_merged_animation 0x7f01000e +int anim btn_checkbox_to_checked_icon_null_animation 0x7f01000f +int anim btn_checkbox_to_unchecked_box_inner_merged_animation 0x7f010010 +int anim btn_checkbox_to_unchecked_check_path_merged_animation 0x7f010011 +int anim btn_checkbox_to_unchecked_icon_null_animation 0x7f010012 +int anim btn_radio_to_off_mtrl_dot_group_animation 0x7f010013 +int anim btn_radio_to_off_mtrl_ring_outer_animation 0x7f010014 +int anim btn_radio_to_off_mtrl_ring_outer_path_animation 0x7f010015 +int anim btn_radio_to_on_mtrl_dot_group_animation 0x7f010016 +int anim btn_radio_to_on_mtrl_ring_outer_animation 0x7f010017 +int anim btn_radio_to_on_mtrl_ring_outer_path_animation 0x7f010018 +int anim design_bottom_sheet_slide_in 0x7f010019 +int anim design_bottom_sheet_slide_out 0x7f01001a +int anim design_snackbar_in 0x7f01001b +int anim design_snackbar_out 0x7f01001c +int anim fragment_fast_out_extra_slow_in 0x7f01001d +int anim mtrl_bottom_sheet_slide_in 0x7f01001e +int anim mtrl_bottom_sheet_slide_out 0x7f01001f +int anim mtrl_card_lowers_interpolator 0x7f010020 +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_hide_motion_spec 0x7f020014 +int animator mtrl_extended_fab_show_motion_spec 0x7f020015 +int animator mtrl_extended_fab_state_list_animator 0x7f020016 +int animator mtrl_fab_hide_motion_spec 0x7f020017 +int animator mtrl_fab_show_motion_spec 0x7f020018 +int animator mtrl_fab_transformation_sheet_collapse_spec 0x7f020019 +int animator mtrl_fab_transformation_sheet_expand_spec 0x7f02001a +int attr ConstraintRotate 0x7f040001 +int attr SharedValue 0x7f040002 +int attr SharedValueId 0x7f040003 +int attr actionBarDivider 0x7f040004 +int attr actionBarItemBackground 0x7f040005 +int attr actionBarPopupTheme 0x7f040006 +int attr actionBarSize 0x7f040007 +int attr actionBarSplitStyle 0x7f040008 +int attr actionBarStyle 0x7f040009 +int attr actionBarTabBarStyle 0x7f04000a +int attr actionBarTabStyle 0x7f04000b +int attr actionBarTabTextStyle 0x7f04000c +int attr actionBarTheme 0x7f04000d +int attr actionBarWidgetTheme 0x7f04000e +int attr actionButtonStyle 0x7f04000f +int attr actionDropDownStyle 0x7f040010 +int attr actionLayout 0x7f040011 +int attr actionMenuTextAppearance 0x7f040012 +int attr actionMenuTextColor 0x7f040013 +int attr actionModeBackground 0x7f040014 +int attr actionModeCloseButtonStyle 0x7f040015 +int attr actionModeCloseContentDescription 0x7f040016 +int attr actionModeCloseDrawable 0x7f040017 +int attr actionModeCopyDrawable 0x7f040018 +int attr actionModeCutDrawable 0x7f040019 +int attr actionModeFindDrawable 0x7f04001a +int attr actionModePasteDrawable 0x7f04001b +int attr actionModePopupWindowStyle 0x7f04001c +int attr actionModeSelectAllDrawable 0x7f04001d +int attr actionModeShareDrawable 0x7f04001e +int attr actionModeSplitBackground 0x7f04001f +int attr actionModeStyle 0x7f040020 +int attr actionModeTheme 0x7f040021 +int attr actionModeWebSearchDrawable 0x7f040022 +int attr actionOverflowButtonStyle 0x7f040023 +int attr actionOverflowMenuStyle 0x7f040024 +int attr actionProviderClass 0x7f040025 +int attr actionTextColorAlpha 0x7f040026 +int attr actionViewClass 0x7f040027 +int attr activityChooserViewStyle 0x7f040028 +int attr actualImageResource 0x7f040029 +int attr actualImageScaleType 0x7f04002a +int attr actualImageUri 0x7f04002b +int attr ad_marker_color 0x7f04002c +int attr ad_marker_width 0x7f04002d +int attr alertDialogButtonGroupStyle 0x7f04002e +int attr alertDialogCenterButtons 0x7f04002f +int attr alertDialogStyle 0x7f040030 +int attr alertDialogTheme 0x7f040031 +int attr allowStacking 0x7f040032 +int attr alpha 0x7f040033 +int attr alphabeticModifiers 0x7f040034 +int attr altSrc 0x7f040035 +int attr animateCircleAngleTo 0x7f040036 +int attr animateRelativeTo 0x7f040037 +int attr animate_relativeTo 0x7f040038 +int attr animationMode 0x7f040039 +int attr appBarLayoutStyle 0x7f04003a +int attr applyMotionScene 0x7f04003b +int attr arcMode 0x7f04003c +int attr arrowHeadLength 0x7f04003d +int attr arrowShaftLength 0x7f04003e +int attr attributeName 0x7f04003f +int attr autoCompleteMode 0x7f040040 +int attr autoCompleteTextViewStyle 0x7f040041 +int attr autoSizeMaxTextSize 0x7f040042 +int attr autoSizeMinTextSize 0x7f040043 +int attr autoSizePresetSizes 0x7f040044 +int attr autoSizeStepGranularity 0x7f040045 +int attr autoSizeTextType 0x7f040046 +int attr autoTransition 0x7f040047 +int attr background 0x7f040048 +int attr backgroundColor 0x7f040049 +int attr backgroundImage 0x7f04004a +int attr backgroundInsetBottom 0x7f04004b +int attr backgroundInsetEnd 0x7f04004c +int attr backgroundInsetStart 0x7f04004d +int attr backgroundInsetTop 0x7f04004e +int attr backgroundOverlayColorAlpha 0x7f04004f +int attr backgroundSplit 0x7f040050 +int attr backgroundStacked 0x7f040051 +int attr backgroundTint 0x7f040052 +int attr backgroundTintMode 0x7f040053 +int attr badgeGravity 0x7f040054 +int attr badgeStyle 0x7f040055 +int attr badgeTextColor 0x7f040056 +int attr barLength 0x7f040057 +int attr bar_height 0x7f040058 +int attr barrierAllowsGoneWidgets 0x7f040059 +int attr barrierDirection 0x7f04005a +int attr barrierMargin 0x7f04005b +int attr behavior_autoHide 0x7f04005c +int attr behavior_autoShrink 0x7f04005d +int attr behavior_draggable 0x7f04005e +int attr behavior_expandedOffset 0x7f04005f +int attr behavior_fitToContents 0x7f040060 +int attr behavior_halfExpandedRatio 0x7f040061 +int attr behavior_hideable 0x7f040062 +int attr behavior_overlapTop 0x7f040063 +int attr behavior_peekHeight 0x7f040064 +int attr behavior_saveFlags 0x7f040065 +int attr behavior_skipCollapsed 0x7f040066 +int attr blendSrc 0x7f040067 +int attr borderRound 0x7f040068 +int attr borderRoundPercent 0x7f040069 +int attr borderWidth 0x7f04006a +int attr borderlessButtonStyle 0x7f04006b +int attr bottomAppBarStyle 0x7f04006c +int attr bottomNavigationStyle 0x7f04006d +int attr bottomSheetDialogTheme 0x7f04006e +int attr bottomSheetStyle 0x7f04006f +int attr boxBackgroundColor 0x7f040070 +int attr boxBackgroundMode 0x7f040071 +int attr boxCollapsedPaddingTop 0x7f040072 +int attr boxCornerRadiusBottomEnd 0x7f040073 +int attr boxCornerRadiusBottomStart 0x7f040074 +int attr boxCornerRadiusTopEnd 0x7f040075 +int attr boxCornerRadiusTopStart 0x7f040076 +int attr boxStrokeColor 0x7f040077 +int attr boxStrokeErrorColor 0x7f040078 +int attr boxStrokeWidth 0x7f040079 +int attr boxStrokeWidthFocused 0x7f04007a +int attr brightness 0x7f04007b +int attr buffered_color 0x7f04007c +int attr buttonBarButtonStyle 0x7f04007d +int attr buttonBarNegativeButtonStyle 0x7f04007e +int attr buttonBarNeutralButtonStyle 0x7f04007f +int attr buttonBarPositiveButtonStyle 0x7f040080 +int attr buttonBarStyle 0x7f040081 +int attr buttonCompat 0x7f040082 +int attr buttonGravity 0x7f040083 +int attr buttonIconDimen 0x7f040084 +int attr buttonPanelSideLayout 0x7f040085 +int attr buttonStyle 0x7f040086 +int attr buttonStyleSmall 0x7f040087 +int attr buttonTint 0x7f040088 +int attr buttonTintMode 0x7f040089 +int attr cardBackgroundColor 0x7f04008a +int attr cardCornerRadius 0x7f04008b +int attr cardElevation 0x7f04008c +int attr cardForegroundColor 0x7f04008d +int attr cardMaxElevation 0x7f04008e +int attr cardPreventCornerOverlap 0x7f04008f +int attr cardUseCompatPadding 0x7f040090 +int attr cardViewStyle 0x7f040091 +int attr carousel_backwardTransition 0x7f040092 +int attr carousel_emptyViewsBehavior 0x7f040093 +int attr carousel_firstView 0x7f040094 +int attr carousel_forwardTransition 0x7f040095 +int attr carousel_infinite 0x7f040096 +int attr carousel_nextState 0x7f040097 +int attr carousel_previousState 0x7f040098 +int attr carousel_touchUpMode 0x7f040099 +int attr carousel_touchUp_dampeningFactor 0x7f04009a +int attr carousel_touchUp_velocityThreshold 0x7f04009b +int attr chainUseRtl 0x7f04009c +int attr checkboxStyle 0x7f04009d +int attr checkedButton 0x7f04009e +int attr checkedChip 0x7f04009f +int attr checkedIcon 0x7f0400a0 +int attr checkedIconEnabled 0x7f0400a1 +int attr checkedIconMargin 0x7f0400a2 +int attr checkedIconSize 0x7f0400a3 +int attr checkedIconTint 0x7f0400a4 +int attr checkedIconVisible 0x7f0400a5 +int attr checkedTextViewStyle 0x7f0400a6 +int attr chipBackgroundColor 0x7f0400a7 +int attr chipCornerRadius 0x7f0400a8 +int attr chipEndPadding 0x7f0400a9 +int attr chipGroupStyle 0x7f0400aa +int attr chipIcon 0x7f0400ab +int attr chipIconEnabled 0x7f0400ac +int attr chipIconSize 0x7f0400ad +int attr chipIconTint 0x7f0400ae +int attr chipIconVisible 0x7f0400af +int attr chipMinHeight 0x7f0400b0 +int attr chipMinTouchTargetSize 0x7f0400b1 +int attr chipSpacing 0x7f0400b2 +int attr chipSpacingHorizontal 0x7f0400b3 +int attr chipSpacingVertical 0x7f0400b4 +int attr chipStandaloneStyle 0x7f0400b5 +int attr chipStartPadding 0x7f0400b6 +int attr chipStrokeColor 0x7f0400b7 +int attr chipStrokeWidth 0x7f0400b8 +int attr chipStyle 0x7f0400b9 +int attr chipSurfaceColor 0x7f0400ba +int attr circleRadius 0x7f0400bb +int attr circularProgressIndicatorStyle 0x7f0400bc +int attr circularflow_angles 0x7f0400bd +int attr circularflow_defaultAngle 0x7f0400be +int attr circularflow_defaultRadius 0x7f0400bf +int attr circularflow_radiusInDP 0x7f0400c0 +int attr circularflow_viewCenter 0x7f0400c1 +int attr civ_border_color 0x7f0400c2 +int attr civ_border_overlay 0x7f0400c3 +int attr civ_border_width 0x7f0400c4 +int attr civ_fill_color 0x7f0400c5 +int attr clearsTag 0x7f0400c6 +int attr clickAction 0x7f0400c7 +int attr clockFaceBackgroundColor 0x7f0400c8 +int attr clockHandColor 0x7f0400c9 +int attr clockIcon 0x7f0400ca +int attr clockNumberTextColor 0x7f0400cb +int attr closeIcon 0x7f0400cc +int attr closeIconEnabled 0x7f0400cd +int attr closeIconEndPadding 0x7f0400ce +int attr closeIconSize 0x7f0400cf +int attr closeIconStartPadding 0x7f0400d0 +int attr closeIconTint 0x7f0400d1 +int attr closeIconVisible 0x7f0400d2 +int attr closeItemLayout 0x7f0400d3 +int attr collapseContentDescription 0x7f0400d4 +int attr collapseIcon 0x7f0400d5 +int attr collapsedSize 0x7f0400d6 +int attr collapsedTitleGravity 0x7f0400d7 +int attr collapsedTitleTextAppearance 0x7f0400d8 +int attr collapsingToolbarLayoutStyle 0x7f0400d9 +int attr color 0x7f0400da +int attr colorAccent 0x7f0400db +int attr colorBackgroundFloating 0x7f0400dc +int attr colorButtonNormal 0x7f0400dd +int attr colorControlActivated 0x7f0400de +int attr colorControlHighlight 0x7f0400df +int attr colorControlNormal 0x7f0400e0 +int attr colorError 0x7f0400e1 +int attr colorOnBackground 0x7f0400e2 +int attr colorOnError 0x7f0400e3 +int attr colorOnPrimary 0x7f0400e4 +int attr colorOnPrimarySurface 0x7f0400e5 +int attr colorOnSecondary 0x7f0400e6 +int attr colorOnSurface 0x7f0400e7 +int attr colorPrimary 0x7f0400e8 +int attr colorPrimaryDark 0x7f0400e9 +int attr colorPrimarySurface 0x7f0400ea +int attr colorPrimaryVariant 0x7f0400eb +int attr colorSecondary 0x7f0400ec +int attr colorSecondaryVariant 0x7f0400ed +int attr colorSurface 0x7f0400ee +int attr colorSwitchThumbNormal 0x7f0400ef +int attr commitIcon 0x7f0400f0 +int attr constraintSet 0x7f0400f1 +int attr constraintSetEnd 0x7f0400f2 +int attr constraintSetStart 0x7f0400f3 +int attr constraint_referenced_ids 0x7f0400f4 +int attr constraint_referenced_tags 0x7f0400f5 +int attr constraints 0x7f0400f6 +int attr content 0x7f0400f7 +int attr contentDescription 0x7f0400f8 +int attr contentInsetEnd 0x7f0400f9 +int attr contentInsetEndWithActions 0x7f0400fa +int attr contentInsetLeft 0x7f0400fb +int attr contentInsetRight 0x7f0400fc +int attr contentInsetStart 0x7f0400fd +int attr contentInsetStartWithNavigation 0x7f0400fe +int attr contentPadding 0x7f0400ff +int attr contentPaddingBottom 0x7f040100 +int attr contentPaddingEnd 0x7f040101 +int attr contentPaddingLeft 0x7f040102 +int attr contentPaddingRight 0x7f040103 +int attr contentPaddingStart 0x7f040104 +int attr contentPaddingTop 0x7f040105 +int attr contentScrim 0x7f040106 +int attr contrast 0x7f040107 +int attr controlBackground 0x7f040108 +int attr controller_layout_id 0x7f040109 +int attr coordinatorLayoutStyle 0x7f04010a +int attr cornerFamily 0x7f04010b +int attr cornerFamilyBottomLeft 0x7f04010c +int attr cornerFamilyBottomRight 0x7f04010d +int attr cornerFamilyTopLeft 0x7f04010e +int attr cornerFamilyTopRight 0x7f04010f +int attr cornerRadius 0x7f040110 +int attr cornerSize 0x7f040111 +int attr cornerSizeBottomLeft 0x7f040112 +int attr cornerSizeBottomRight 0x7f040113 +int attr cornerSizeTopLeft 0x7f040114 +int attr cornerSizeTopRight 0x7f040115 +int attr counterEnabled 0x7f040116 +int attr counterMaxLength 0x7f040117 +int attr counterOverflowTextAppearance 0x7f040118 +int attr counterOverflowTextColor 0x7f040119 +int attr counterTextAppearance 0x7f04011a +int attr counterTextColor 0x7f04011b +int attr crossfade 0x7f04011c +int attr currentState 0x7f04011d +int attr curveFit 0x7f04011e +int attr customBoolean 0x7f04011f +int attr customColorDrawableValue 0x7f040120 +int attr customColorValue 0x7f040121 +int attr customDimension 0x7f040122 +int attr customFloatValue 0x7f040123 +int attr customIntegerValue 0x7f040124 +int attr customNavigationLayout 0x7f040125 +int attr customPixelDimension 0x7f040126 +int attr customReference 0x7f040127 +int attr customStringValue 0x7f040128 +int attr dayInvalidStyle 0x7f040129 +int attr daySelectedStyle 0x7f04012a +int attr dayStyle 0x7f04012b +int attr dayTodayStyle 0x7f04012c +int attr defaultDuration 0x7f04012d +int attr defaultQueryHint 0x7f04012e +int attr defaultState 0x7f04012f +int attr default_artwork 0x7f040130 +int attr deltaPolarAngle 0x7f040131 +int attr deltaPolarRadius 0x7f040132 +int attr deriveConstraintsFrom 0x7f040133 +int attr dialogCornerRadius 0x7f040134 +int attr dialogPreferredPadding 0x7f040135 +int attr dialogTheme 0x7f040136 +int attr disappearedScale 0x7f040137 +int attr displayOptions 0x7f040138 +int attr divider 0x7f040139 +int attr dividerHorizontal 0x7f04013a +int attr dividerPadding 0x7f04013b +int attr dividerVertical 0x7f04013c +int attr download_bg_line_color 0x7f04013d +int attr download_bg_line_width 0x7f04013e +int attr download_line_color 0x7f04013f +int attr download_line_width 0x7f040140 +int attr download_text_color 0x7f040141 +int attr download_text_size 0x7f040142 +int attr dragDirection 0x7f040143 +int attr dragScale 0x7f040144 +int attr dragThreshold 0x7f040145 +int attr drawPath 0x7f040146 +int attr drawableBottomCompat 0x7f040147 +int attr drawableEndCompat 0x7f040148 +int attr drawableLeftCompat 0x7f040149 +int attr drawableRightCompat 0x7f04014a +int attr drawableSize 0x7f04014b +int attr drawableStartCompat 0x7f04014c +int attr drawableTint 0x7f04014d +int attr drawableTintMode 0x7f04014e +int attr drawableTopCompat 0x7f04014f +int attr drawerArrowStyle 0x7f040150 +int attr dropDownListViewStyle 0x7f040151 +int attr dropdownListPreferredItemHeight 0x7f040152 +int attr duration 0x7f040153 +int attr editTextBackground 0x7f040154 +int attr editTextColor 0x7f040155 +int attr editTextStyle 0x7f040156 +int attr elevation 0x7f040157 +int attr elevationOverlayColor 0x7f040158 +int attr elevationOverlayEnabled 0x7f040159 +int attr enableEdgeToEdge 0x7f04015a +int attr endIconCheckable 0x7f04015b +int attr endIconContentDescription 0x7f04015c +int attr endIconDrawable 0x7f04015d +int attr endIconMode 0x7f04015e +int attr endIconTint 0x7f04015f +int attr endIconTintMode 0x7f040160 +int attr enforceMaterialTheme 0x7f040161 +int attr enforceTextAppearance 0x7f040162 +int attr ensureMinTouchTargetSize 0x7f040163 +int attr errorContentDescription 0x7f040164 +int attr errorEnabled 0x7f040165 +int attr errorIconDrawable 0x7f040166 +int attr errorIconTint 0x7f040167 +int attr errorIconTintMode 0x7f040168 +int attr errorTextAppearance 0x7f040169 +int attr errorTextColor 0x7f04016a +int attr expandActivityOverflowButtonDrawable 0x7f04016b +int attr expanded 0x7f04016c +int attr expandedHintEnabled 0x7f04016d +int attr expandedTitleGravity 0x7f04016e +int attr expandedTitleMargin 0x7f04016f +int attr expandedTitleMarginBottom 0x7f040170 +int attr expandedTitleMarginEnd 0x7f040171 +int attr expandedTitleMarginStart 0x7f040172 +int attr expandedTitleMarginTop 0x7f040173 +int attr expandedTitleTextAppearance 0x7f040174 +int attr extendMotionSpec 0x7f040175 +int attr extendedFloatingActionButtonStyle 0x7f040176 +int attr extraMultilineHeightEnabled 0x7f040177 +int attr fabAlignmentMode 0x7f040178 +int attr fabAnimationMode 0x7f040179 +int attr fabCradleMargin 0x7f04017a +int attr fabCradleRoundedCornerRadius 0x7f04017b +int attr fabCradleVerticalOffset 0x7f04017c +int attr fabCustomSize 0x7f04017d +int attr fabSize 0x7f04017e +int attr fadeDuration 0x7f04017f +int attr failureImage 0x7f040180 +int attr failureImageScaleType 0x7f040181 +int attr fastScrollEnabled 0x7f040182 +int attr fastScrollHorizontalThumbDrawable 0x7f040183 +int attr fastScrollHorizontalTrackDrawable 0x7f040184 +int attr fastScrollVerticalThumbDrawable 0x7f040185 +int attr fastScrollVerticalTrackDrawable 0x7f040186 +int attr fastforward_increment 0x7f040187 +int attr firstBaselineToTopHeight 0x7f040188 +int attr floatingActionButtonStyle 0x7f040189 +int attr flow_firstHorizontalBias 0x7f04018a +int attr flow_firstHorizontalStyle 0x7f04018b +int attr flow_firstVerticalBias 0x7f04018c +int attr flow_firstVerticalStyle 0x7f04018d +int attr flow_horizontalAlign 0x7f04018e +int attr flow_horizontalBias 0x7f04018f +int attr flow_horizontalGap 0x7f040190 +int attr flow_horizontalStyle 0x7f040191 +int attr flow_lastHorizontalBias 0x7f040192 +int attr flow_lastHorizontalStyle 0x7f040193 +int attr flow_lastVerticalBias 0x7f040194 +int attr flow_lastVerticalStyle 0x7f040195 +int attr flow_maxElementsWrap 0x7f040196 +int attr flow_padding 0x7f040197 +int attr flow_verticalAlign 0x7f040198 +int attr flow_verticalBias 0x7f040199 +int attr flow_verticalGap 0x7f04019a +int attr flow_verticalStyle 0x7f04019b +int attr flow_wrapMode 0x7f04019c +int attr font 0x7f04019d +int attr fontFamily 0x7f04019e +int attr fontProviderAuthority 0x7f04019f +int attr fontProviderCerts 0x7f0401a0 +int attr fontProviderFetchStrategy 0x7f0401a1 +int attr fontProviderFetchTimeout 0x7f0401a2 +int attr fontProviderPackage 0x7f0401a3 +int attr fontProviderQuery 0x7f0401a4 +int attr fontProviderSystemFontFamily 0x7f0401a5 +int attr fontStyle 0x7f0401a6 +int attr fontVariationSettings 0x7f0401a7 +int attr fontWeight 0x7f0401a8 +int attr forceApplySystemWindowInsetTop 0x7f0401a9 +int attr foregroundInsidePadding 0x7f0401aa +int attr framePosition 0x7f0401ab +int attr gapBetweenBars 0x7f0401ac +int attr gestureInsetBottomIgnored 0x7f0401ad +int attr goIcon 0x7f0401ae +int attr haloColor 0x7f0401af +int attr haloRadius 0x7f0401b0 +int attr headerLayout 0x7f0401b1 +int attr height 0x7f0401b2 +int attr helperText 0x7f0401b3 +int attr helperTextEnabled 0x7f0401b4 +int attr helperTextTextAppearance 0x7f0401b5 +int attr helperTextTextColor 0x7f0401b6 +int attr hideAnimationBehavior 0x7f0401b7 +int attr hideMotionSpec 0x7f0401b8 +int attr hideOnContentScroll 0x7f0401b9 +int attr hideOnScroll 0x7f0401ba +int attr hide_on_touch 0x7f0401bb +int attr hintAnimationEnabled 0x7f0401bc +int attr hintEnabled 0x7f0401bd +int attr hintTextAppearance 0x7f0401be +int attr hintTextColor 0x7f0401bf +int attr homeAsUpIndicator 0x7f0401c0 +int attr homeLayout 0x7f0401c1 +int attr horizontalOffset 0x7f0401c2 +int attr hoveredFocusedTranslationZ 0x7f0401c3 +int attr icon 0x7f0401c4 +int attr iconEndPadding 0x7f0401c5 +int attr iconGravity 0x7f0401c6 +int attr iconPadding 0x7f0401c7 +int attr iconSize 0x7f0401c8 +int attr iconStartPadding 0x7f0401c9 +int attr iconTint 0x7f0401ca +int attr iconTintMode 0x7f0401cb +int attr iconifiedByDefault 0x7f0401cc +int attr ifTagNotSet 0x7f0401cd +int attr ifTagSet 0x7f0401ce +int attr imageButtonStyle 0x7f0401cf +int attr imagePanX 0x7f0401d0 +int attr imagePanY 0x7f0401d1 +int attr imageRotate 0x7f0401d2 +int attr imageZoom 0x7f0401d3 +int attr indeterminateAnimationType 0x7f0401d4 +int attr indeterminateProgressStyle 0x7f0401d5 +int attr indicatorColor 0x7f0401d6 +int attr indicatorDirectionCircular 0x7f0401d7 +int attr indicatorDirectionLinear 0x7f0401d8 +int attr indicatorInset 0x7f0401d9 +int attr indicatorSize 0x7f0401da +int attr initialActivityCount 0x7f0401db +int attr insetForeground 0x7f0401dc +int attr isLightTheme 0x7f0401dd +int attr isMaterialTheme 0x7f0401de +int attr itemBackground 0x7f0401df +int attr itemFillColor 0x7f0401e0 +int attr itemHorizontalPadding 0x7f0401e1 +int attr itemHorizontalTranslationEnabled 0x7f0401e2 +int attr itemIconPadding 0x7f0401e3 +int attr itemIconSize 0x7f0401e4 +int attr itemIconTint 0x7f0401e5 +int attr itemMaxLines 0x7f0401e6 +int attr itemPadding 0x7f0401e7 +int attr itemRippleColor 0x7f0401e8 +int attr itemShapeAppearance 0x7f0401e9 +int attr itemShapeAppearanceOverlay 0x7f0401ea +int attr itemShapeFillColor 0x7f0401eb +int attr itemShapeInsetBottom 0x7f0401ec +int attr itemShapeInsetEnd 0x7f0401ed +int attr itemShapeInsetStart 0x7f0401ee +int attr itemShapeInsetTop 0x7f0401ef +int attr itemSpacing 0x7f0401f0 +int attr itemStrokeColor 0x7f0401f1 +int attr itemStrokeWidth 0x7f0401f2 +int attr itemTextAppearance 0x7f0401f3 +int attr itemTextAppearanceActive 0x7f0401f4 +int attr itemTextAppearanceInactive 0x7f0401f5 +int attr itemTextColor 0x7f0401f6 +int attr keyPositionType 0x7f0401f7 +int attr keyboardIcon 0x7f0401f8 +int attr keylines 0x7f0401f9 +int attr labelBehavior 0x7f0401fa +int attr labelStyle 0x7f0401fb +int attr labelVisibilityMode 0x7f0401fc +int attr lastBaselineToBottomHeight 0x7f0401fd +int attr layout 0x7f0401fe +int attr layoutDescription 0x7f0401ff +int attr layoutDuringTransition 0x7f040200 +int attr layoutManager 0x7f040201 +int attr layout_anchor 0x7f040202 +int attr layout_anchorGravity 0x7f040203 +int attr layout_behavior 0x7f040204 +int attr layout_collapseMode 0x7f040205 +int attr layout_collapseParallaxMultiplier 0x7f040206 +int attr layout_constrainedHeight 0x7f040207 +int attr layout_constrainedWidth 0x7f040208 +int attr layout_constraintBaseline_creator 0x7f040209 +int attr layout_constraintBaseline_toBaselineOf 0x7f04020a +int attr layout_constraintBaseline_toBottomOf 0x7f04020b +int attr layout_constraintBaseline_toTopOf 0x7f04020c +int attr layout_constraintBottom_creator 0x7f04020d +int attr layout_constraintBottom_toBottomOf 0x7f04020e +int attr layout_constraintBottom_toTopOf 0x7f04020f +int attr layout_constraintCircle 0x7f040210 +int attr layout_constraintCircleAngle 0x7f040211 +int attr layout_constraintCircleRadius 0x7f040212 +int attr layout_constraintDimensionRatio 0x7f040213 +int attr layout_constraintEnd_toEndOf 0x7f040214 +int attr layout_constraintEnd_toStartOf 0x7f040215 +int attr layout_constraintGuide_begin 0x7f040216 +int attr layout_constraintGuide_end 0x7f040217 +int attr layout_constraintGuide_percent 0x7f040218 +int attr layout_constraintHeight 0x7f040219 +int attr layout_constraintHeight_default 0x7f04021a +int attr layout_constraintHeight_max 0x7f04021b +int attr layout_constraintHeight_min 0x7f04021c +int attr layout_constraintHeight_percent 0x7f04021d +int attr layout_constraintHorizontal_bias 0x7f04021e +int attr layout_constraintHorizontal_chainStyle 0x7f04021f +int attr layout_constraintHorizontal_weight 0x7f040220 +int attr layout_constraintLeft_creator 0x7f040221 +int attr layout_constraintLeft_toLeftOf 0x7f040222 +int attr layout_constraintLeft_toRightOf 0x7f040223 +int attr layout_constraintRight_creator 0x7f040224 +int attr layout_constraintRight_toLeftOf 0x7f040225 +int attr layout_constraintRight_toRightOf 0x7f040226 +int attr layout_constraintStart_toEndOf 0x7f040227 +int attr layout_constraintStart_toStartOf 0x7f040228 +int attr layout_constraintTag 0x7f040229 +int attr layout_constraintTop_creator 0x7f04022a +int attr layout_constraintTop_toBottomOf 0x7f04022b +int attr layout_constraintTop_toTopOf 0x7f04022c +int attr layout_constraintVertical_bias 0x7f04022d +int attr layout_constraintVertical_chainStyle 0x7f04022e +int attr layout_constraintVertical_weight 0x7f04022f +int attr layout_constraintWidth 0x7f040230 +int attr layout_constraintWidth_default 0x7f040231 +int attr layout_constraintWidth_max 0x7f040232 +int attr layout_constraintWidth_min 0x7f040233 +int attr layout_constraintWidth_percent 0x7f040234 +int attr layout_dodgeInsetEdges 0x7f040235 +int attr layout_editor_absoluteX 0x7f040236 +int attr layout_editor_absoluteY 0x7f040237 +int attr layout_goneMarginBaseline 0x7f040238 +int attr layout_goneMarginBottom 0x7f040239 +int attr layout_goneMarginEnd 0x7f04023a +int attr layout_goneMarginLeft 0x7f04023b +int attr layout_goneMarginRight 0x7f04023c +int attr layout_goneMarginStart 0x7f04023d +int attr layout_goneMarginTop 0x7f04023e +int attr layout_insetEdge 0x7f04023f +int attr layout_keyline 0x7f040240 +int attr layout_marginBaseline 0x7f040241 +int attr layout_optimizationLevel 0x7f040242 +int attr layout_scrollFlags 0x7f040243 +int attr layout_scrollInterpolator 0x7f040244 +int attr layout_wrapBehaviorInParent 0x7f040245 +int attr liftOnScroll 0x7f040246 +int attr liftOnScrollTargetViewId 0x7f040247 +int attr limitBoundsTo 0x7f040248 +int attr lineHeight 0x7f040249 +int attr lineSpacing 0x7f04024a +int attr linearProgressIndicatorStyle 0x7f04024b +int attr listChoiceBackgroundIndicator 0x7f04024c +int attr listChoiceIndicatorMultipleAnimated 0x7f04024d +int attr listChoiceIndicatorSingleAnimated 0x7f04024e +int attr listDividerAlertDialog 0x7f04024f +int attr listItemLayout 0x7f040250 +int attr listLayout 0x7f040251 +int attr listMenuViewStyle 0x7f040252 +int attr listPopupWindowStyle 0x7f040253 +int attr listPreferredItemHeight 0x7f040254 +int attr listPreferredItemHeightLarge 0x7f040255 +int attr listPreferredItemHeightSmall 0x7f040256 +int attr listPreferredItemPaddingEnd 0x7f040257 +int attr listPreferredItemPaddingLeft 0x7f040258 +int attr listPreferredItemPaddingRight 0x7f040259 +int attr listPreferredItemPaddingStart 0x7f04025a +int attr logo 0x7f04025b +int attr logoDescription 0x7f04025c +int attr materialAlertDialogBodyTextStyle 0x7f04025d +int attr materialAlertDialogTheme 0x7f04025e +int attr materialAlertDialogTitleIconStyle 0x7f04025f +int attr materialAlertDialogTitlePanelStyle 0x7f040260 +int attr materialAlertDialogTitleTextStyle 0x7f040261 +int attr materialButtonOutlinedStyle 0x7f040262 +int attr materialButtonStyle 0x7f040263 +int attr materialButtonToggleGroupStyle 0x7f040264 +int attr materialCalendarDay 0x7f040265 +int attr materialCalendarFullscreenTheme 0x7f040266 +int attr materialCalendarHeaderCancelButton 0x7f040267 +int attr materialCalendarHeaderConfirmButton 0x7f040268 +int attr materialCalendarHeaderDivider 0x7f040269 +int attr materialCalendarHeaderLayout 0x7f04026a +int attr materialCalendarHeaderSelection 0x7f04026b +int attr materialCalendarHeaderTitle 0x7f04026c +int attr materialCalendarHeaderToggleButton 0x7f04026d +int attr materialCalendarMonth 0x7f04026e +int attr materialCalendarMonthNavigationButton 0x7f04026f +int attr materialCalendarStyle 0x7f040270 +int attr materialCalendarTheme 0x7f040271 +int attr materialCalendarYearNavigationButton 0x7f040272 +int attr materialCardViewStyle 0x7f040273 +int attr materialCircleRadius 0x7f040274 +int attr materialClockStyle 0x7f040275 +int attr materialThemeOverlay 0x7f040276 +int attr materialTimePickerStyle 0x7f040277 +int attr materialTimePickerTheme 0x7f040278 +int attr maxAcceleration 0x7f040279 +int attr maxActionInlineWidth 0x7f04027a +int attr maxButtonHeight 0x7f04027b +int attr maxCharacterCount 0x7f04027c +int attr maxHeight 0x7f04027d +int attr maxImageSize 0x7f04027e +int attr maxLines 0x7f04027f +int attr maxVelocity 0x7f040280 +int attr maxWidth 0x7f040281 +int attr measureWithLargestChild 0x7f040282 +int attr menu 0x7f040283 +int attr menuGravity 0x7f040284 +int attr methodName 0x7f040285 +int attr minHeight 0x7f040286 +int attr minHideDelay 0x7f040287 +int attr minSeparation 0x7f040288 +int attr minTouchTargetSize 0x7f040289 +int attr minWidth 0x7f04028a +int attr miv_blurRadius 0x7f04028b +int attr miv_borderColor 0x7f04028c +int attr miv_bottomLeftRadius 0x7f04028d +int attr miv_bottomRightRadius 0x7f04028e +int attr miv_failureHolder 0x7f04028f +int attr miv_isBlur 0x7f040290 +int attr miv_overlayImageId 0x7f040291 +int attr miv_placeHolder 0x7f040292 +int attr miv_radius 0x7f040293 +int attr miv_shape 0x7f040294 +int attr miv_shapeBorderWidth 0x7f040295 +int attr miv_topLeftRadius 0x7f040296 +int attr miv_topRightRadius 0x7f040297 +int attr mock_diagonalsColor 0x7f040298 +int attr mock_label 0x7f040299 +int attr mock_labelBackgroundColor 0x7f04029a +int attr mock_labelColor 0x7f04029b +int attr mock_showDiagonals 0x7f04029c +int attr mock_showLabel 0x7f04029d +int attr motionDebug 0x7f04029e +int attr motionDurationLong1 0x7f04029f +int attr motionDurationLong2 0x7f0402a0 +int attr motionDurationMedium1 0x7f0402a1 +int attr motionDurationMedium2 0x7f0402a2 +int attr motionDurationShort1 0x7f0402a3 +int attr motionDurationShort2 0x7f0402a4 +int attr motionEasingAccelerated 0x7f0402a5 +int attr motionEasingDecelerated 0x7f0402a6 +int attr motionEasingEmphasized 0x7f0402a7 +int attr motionEasingLinear 0x7f0402a8 +int attr motionEasingStandard 0x7f0402a9 +int attr motionEffect_alpha 0x7f0402aa +int attr motionEffect_end 0x7f0402ab +int attr motionEffect_move 0x7f0402ac +int attr motionEffect_start 0x7f0402ad +int attr motionEffect_strict 0x7f0402ae +int attr motionEffect_translationX 0x7f0402af +int attr motionEffect_translationY 0x7f0402b0 +int attr motionEffect_viewTransition 0x7f0402b1 +int attr motionInterpolator 0x7f0402b2 +int attr motionPath 0x7f0402b3 +int attr motionPathRotate 0x7f0402b4 +int attr motionProgress 0x7f0402b5 +int attr motionStagger 0x7f0402b6 +int attr motionTarget 0x7f0402b7 +int attr motion_postLayoutCollision 0x7f0402b8 +int attr motion_triggerOnCollision 0x7f0402b9 +int attr moveWhenScrollAtTop 0x7f0402ba +int attr multiChoiceItemLayout 0x7f0402bb +int attr navigationContentDescription 0x7f0402bc +int attr navigationIcon 0x7f0402bd +int attr navigationIconTint 0x7f0402be +int attr navigationMode 0x7f0402bf +int attr navigationRailStyle 0x7f0402c0 +int attr navigationViewStyle 0x7f0402c1 +int attr nestedScrollFlags 0x7f0402c2 +int attr nestedScrollable 0x7f0402c3 +int attr number 0x7f0402c4 +int attr numericModifiers 0x7f0402c5 +int attr onCross 0x7f0402c6 +int attr onHide 0x7f0402c7 +int attr onNegativeCross 0x7f0402c8 +int attr onPositiveCross 0x7f0402c9 +int attr onShow 0x7f0402ca +int attr onStateTransition 0x7f0402cb +int attr onTouchUp 0x7f0402cc +int attr overlapAnchor 0x7f0402cd +int attr overlay 0x7f0402ce +int attr overlayImage 0x7f0402cf +int attr paddingBottomNoButtons 0x7f0402d0 +int attr paddingBottomSystemWindowInsets 0x7f0402d1 +int attr paddingEnd 0x7f0402d2 +int attr paddingLeftSystemWindowInsets 0x7f0402d3 +int attr paddingRightSystemWindowInsets 0x7f0402d4 +int attr paddingStart 0x7f0402d5 +int attr paddingTopNoTitle 0x7f0402d6 +int attr paddingTopSystemWindowInsets 0x7f0402d7 +int attr panelBackground 0x7f0402d8 +int attr panelMenuListTheme 0x7f0402d9 +int attr panelMenuListWidth 0x7f0402da +int attr passwordToggleContentDescription 0x7f0402db +int attr passwordToggleDrawable 0x7f0402dc +int attr passwordToggleEnabled 0x7f0402dd +int attr passwordToggleTint 0x7f0402de +int attr passwordToggleTintMode 0x7f0402df +int attr pathMotionArc 0x7f0402e0 +int attr path_percent 0x7f0402e1 +int attr percentHeight 0x7f0402e2 +int attr percentWidth 0x7f0402e3 +int attr percentX 0x7f0402e4 +int attr percentY 0x7f0402e5 +int attr perpendicularPath_percent 0x7f0402e6 +int attr pivotAnchor 0x7f0402e7 +int attr placeholderImage 0x7f0402e8 +int attr placeholderImageScaleType 0x7f0402e9 +int attr placeholderText 0x7f0402ea +int attr placeholderTextAppearance 0x7f0402eb +int attr placeholderTextColor 0x7f0402ec +int attr placeholder_emptyVisibility 0x7f0402ed +int attr play_bg_line_color 0x7f0402ee +int attr play_bg_line_width 0x7f0402ef +int attr play_line_color 0x7f0402f0 +int attr play_line_width 0x7f0402f1 +int attr played_color 0x7f0402f2 +int attr player_layout_id 0x7f0402f3 +int attr polarRelativeTo 0x7f0402f4 +int attr popupMenuBackground 0x7f0402f5 +int attr popupMenuStyle 0x7f0402f6 +int attr popupTheme 0x7f0402f7 +int attr popupWindowStyle 0x7f0402f8 +int attr prefixText 0x7f0402f9 +int attr prefixTextAppearance 0x7f0402fa +int attr prefixTextColor 0x7f0402fb +int attr preserveIconSpacing 0x7f0402fc +int attr pressedStateOverlayImage 0x7f0402fd +int attr pressedTranslationZ 0x7f0402fe +int attr progressBarAutoRotateInterval 0x7f0402ff +int attr progressBarImage 0x7f040300 +int attr progressBarImageScaleType 0x7f040301 +int attr progressBarPadding 0x7f040302 +int attr progressBarStyle 0x7f040303 +int attr quantizeMotionInterpolator 0x7f040304 +int attr quantizeMotionPhase 0x7f040305 +int attr quantizeMotionSteps 0x7f040306 +int attr queryBackground 0x7f040307 +int attr queryHint 0x7f040308 +int attr radioButtonStyle 0x7f040309 +int attr rangeFillColor 0x7f04030a +int attr ratingBarStyle 0x7f04030b +int attr ratingBarStyleIndicator 0x7f04030c +int attr ratingBarStyleSmall 0x7f04030d +int attr reactiveGuide_animateChange 0x7f04030e +int attr reactiveGuide_applyToAllConstraintSets 0x7f04030f +int attr reactiveGuide_applyToConstraintSet 0x7f040310 +int attr reactiveGuide_valueId 0x7f040311 +int attr recyclerViewStyle 0x7f040312 +int attr region_heightLessThan 0x7f040313 +int attr region_heightMoreThan 0x7f040314 +int attr region_widthLessThan 0x7f040315 +int attr region_widthMoreThan 0x7f040316 +int attr resize_mode 0x7f040317 +int attr retryImage 0x7f040318 +int attr retryImageScaleType 0x7f040319 +int attr reverseLayout 0x7f04031a +int attr rewind_increment 0x7f04031b +int attr rippleColor 0x7f04031c +int attr rotationCenterId 0x7f04031d +int attr round 0x7f04031e +int attr roundAsCircle 0x7f04031f +int attr roundBottomEnd 0x7f040320 +int attr roundBottomLeft 0x7f040321 +int attr roundBottomRight 0x7f040322 +int attr roundBottomStart 0x7f040323 +int attr roundLayoutRadius 0x7f040324 +int attr roundPercent 0x7f040325 +int attr roundTopEnd 0x7f040326 +int attr roundTopLeft 0x7f040327 +int attr roundTopRight 0x7f040328 +int attr roundTopStart 0x7f040329 +int attr roundWithOverlayColor 0x7f04032a +int attr roundedCornerRadius 0x7f04032b +int attr roundingBorderColor 0x7f04032c +int attr roundingBorderPadding 0x7f04032d +int attr roundingBorderWidth 0x7f04032e +int attr saturation 0x7f04032f +int attr scaleFromTextSize 0x7f040330 +int attr scrimAnimationDuration 0x7f040331 +int attr scrimBackground 0x7f040332 +int attr scrimVisibleHeightTrigger 0x7f040333 +int attr scrubber_color 0x7f040334 +int attr scrubber_disabled_size 0x7f040335 +int attr scrubber_dragged_size 0x7f040336 +int attr scrubber_enabled_size 0x7f040337 +int attr searchHintIcon 0x7f040338 +int attr searchIcon 0x7f040339 +int attr searchViewStyle 0x7f04033a +int attr seekBarStyle 0x7f04033b +int attr selectableItemBackground 0x7f04033c +int attr selectableItemBackgroundBorderless 0x7f04033d +int attr selectionRequired 0x7f04033e +int attr selectorSize 0x7f04033f +int attr setsTag 0x7f040340 +int attr shapeAppearance 0x7f040341 +int attr shapeAppearanceLargeComponent 0x7f040342 +int attr shapeAppearanceMediumComponent 0x7f040343 +int attr shapeAppearanceOverlay 0x7f040344 +int attr shapeAppearanceSmallComponent 0x7f040345 +int attr showAnimationBehavior 0x7f040346 +int attr showAsAction 0x7f040347 +int attr showDelay 0x7f040348 +int attr showDividers 0x7f040349 +int attr showMotionSpec 0x7f04034a +int attr showPaths 0x7f04034b +int attr showText 0x7f04034c +int attr showTitle 0x7f04034d +int attr show_timeout 0x7f04034e +int attr shrinkMotionSpec 0x7f04034f +int attr singleChoiceItemLayout 0x7f040350 +int attr singleLine 0x7f040351 +int attr singleSelection 0x7f040352 +int attr sizePercent 0x7f040353 +int attr sliderStyle 0x7f040354 +int attr snackbarButtonStyle 0x7f040355 +int attr snackbarStyle 0x7f040356 +int attr snackbarTextViewStyle 0x7f040357 +int attr spanCount 0x7f040358 +int attr spinBars 0x7f040359 +int attr spinnerDropDownItemStyle 0x7f04035a +int attr spinnerStyle 0x7f04035b +int attr splitTrack 0x7f04035c +int attr springBoundary 0x7f04035d +int attr springDamping 0x7f04035e +int attr springMass 0x7f04035f +int attr springStiffness 0x7f040360 +int attr springStopThreshold 0x7f040361 +int attr srcCompat 0x7f040362 +int attr stackFromEnd 0x7f040363 +int attr staggered 0x7f040364 +int attr startIconCheckable 0x7f040365 +int attr startIconContentDescription 0x7f040366 +int attr startIconDrawable 0x7f040367 +int attr startIconTint 0x7f040368 +int attr startIconTintMode 0x7f040369 +int attr state_above_anchor 0x7f04036a +int attr state_collapsed 0x7f04036b +int attr state_collapsible 0x7f04036c +int attr state_dragged 0x7f04036d +int attr state_liftable 0x7f04036e +int attr state_lifted 0x7f04036f +int attr statusBarBackground 0x7f040370 +int attr statusBarForeground 0x7f040371 +int attr statusBarScrim 0x7f040372 +int attr strokeColor 0x7f040373 +int attr strokeWidth 0x7f040374 +int attr subMenuArrow 0x7f040375 +int attr submitBackground 0x7f040376 +int attr subtitle 0x7f040377 +int attr subtitleCentered 0x7f040378 +int attr subtitleTextAppearance 0x7f040379 +int attr subtitleTextColor 0x7f04037a +int attr subtitleTextStyle 0x7f04037b +int attr suffixText 0x7f04037c +int attr suffixTextAppearance 0x7f04037d +int attr suffixTextColor 0x7f04037e +int attr suggestionRowLayout 0x7f04037f +int attr surface_type 0x7f040380 +int attr switchMinWidth 0x7f040381 +int attr switchPadding 0x7f040382 +int attr switchStyle 0x7f040383 +int attr switchTextAppearance 0x7f040384 +int attr tabBackground 0x7f040385 +int attr tabContentStart 0x7f040386 +int attr tabGravity 0x7f040387 +int attr tabIconTint 0x7f040388 +int attr tabIconTintMode 0x7f040389 +int attr tabIndicator 0x7f04038a +int attr tabIndicatorAnimationDuration 0x7f04038b +int attr tabIndicatorAnimationMode 0x7f04038c +int attr tabIndicatorColor 0x7f04038d +int attr tabIndicatorFullWidth 0x7f04038e +int attr tabIndicatorGravity 0x7f04038f +int attr tabIndicatorHeight 0x7f040390 +int attr tabInlineLabel 0x7f040391 +int attr tabMaxWidth 0x7f040392 +int attr tabMinWidth 0x7f040393 +int attr tabMode 0x7f040394 +int attr tabPadding 0x7f040395 +int attr tabPaddingBottom 0x7f040396 +int attr tabPaddingEnd 0x7f040397 +int attr tabPaddingStart 0x7f040398 +int attr tabPaddingTop 0x7f040399 +int attr tabRippleColor 0x7f04039a +int attr tabSelectedTextColor 0x7f04039b +int attr tabStyle 0x7f04039c +int attr tabTextAppearance 0x7f04039d +int attr tabTextColor 0x7f04039e +int attr tabUnboundedRipple 0x7f04039f +int attr targetId 0x7f0403a0 +int attr telltales_tailColor 0x7f0403a1 +int attr telltales_tailScale 0x7f0403a2 +int attr telltales_velocityMode 0x7f0403a3 +int attr textAllCaps 0x7f0403a4 +int attr textAppearanceBody1 0x7f0403a5 +int attr textAppearanceBody2 0x7f0403a6 +int attr textAppearanceButton 0x7f0403a7 +int attr textAppearanceCaption 0x7f0403a8 +int attr textAppearanceHeadline1 0x7f0403a9 +int attr textAppearanceHeadline2 0x7f0403aa +int attr textAppearanceHeadline3 0x7f0403ab +int attr textAppearanceHeadline4 0x7f0403ac +int attr textAppearanceHeadline5 0x7f0403ad +int attr textAppearanceHeadline6 0x7f0403ae +int attr textAppearanceLargePopupMenu 0x7f0403af +int attr textAppearanceLineHeightEnabled 0x7f0403b0 +int attr textAppearanceListItem 0x7f0403b1 +int attr textAppearanceListItemSecondary 0x7f0403b2 +int attr textAppearanceListItemSmall 0x7f0403b3 +int attr textAppearanceOverline 0x7f0403b4 +int attr textAppearancePopupMenuHeader 0x7f0403b5 +int attr textAppearanceSearchResultSubtitle 0x7f0403b6 +int attr textAppearanceSearchResultTitle 0x7f0403b7 +int attr textAppearanceSmallPopupMenu 0x7f0403b8 +int attr textAppearanceSubtitle1 0x7f0403b9 +int attr textAppearanceSubtitle2 0x7f0403ba +int attr textBackground 0x7f0403bb +int attr textBackgroundPanX 0x7f0403bc +int attr textBackgroundPanY 0x7f0403bd +int attr textBackgroundRotate 0x7f0403be +int attr textBackgroundZoom 0x7f0403bf +int attr textColorAlertDialogListItem 0x7f0403c0 +int attr textColorSearchUrl 0x7f0403c1 +int attr textEndPadding 0x7f0403c2 +int attr textFillColor 0x7f0403c3 +int attr textInputLayoutFocusedRectEnabled 0x7f0403c4 +int attr textInputStyle 0x7f0403c5 +int attr textLocale 0x7f0403c6 +int attr textOutlineColor 0x7f0403c7 +int attr textOutlineThickness 0x7f0403c8 +int attr textPanX 0x7f0403c9 +int attr textPanY 0x7f0403ca +int attr textStartPadding 0x7f0403cb +int attr textureBlurFactor 0x7f0403cc +int attr textureEffect 0x7f0403cd +int attr textureHeight 0x7f0403ce +int attr textureWidth 0x7f0403cf +int attr theme 0x7f0403d0 +int attr themeLineHeight 0x7f0403d1 +int attr thickness 0x7f0403d2 +int attr thumbColor 0x7f0403d3 +int attr thumbElevation 0x7f0403d4 +int attr thumbRadius 0x7f0403d5 +int attr thumbStrokeColor 0x7f0403d6 +int attr thumbStrokeWidth 0x7f0403d7 +int attr thumbTextPadding 0x7f0403d8 +int attr thumbTint 0x7f0403d9 +int attr thumbTintMode 0x7f0403da +int attr tickColor 0x7f0403db +int attr tickColorActive 0x7f0403dc +int attr tickColorInactive 0x7f0403dd +int attr tickMark 0x7f0403de +int attr tickMarkTint 0x7f0403df +int attr tickMarkTintMode 0x7f0403e0 +int attr tickVisible 0x7f0403e1 +int attr tint 0x7f0403e2 +int attr tintMode 0x7f0403e3 +int attr title 0x7f0403e4 +int attr titleCentered 0x7f0403e5 +int attr titleCollapseMode 0x7f0403e6 +int attr titleEnabled 0x7f0403e7 +int attr titleMargin 0x7f0403e8 +int attr titleMarginBottom 0x7f0403e9 +int attr titleMarginEnd 0x7f0403ea +int attr titleMarginStart 0x7f0403eb +int attr titleMarginTop 0x7f0403ec +int attr titleMargins 0x7f0403ed +int attr titleTextAppearance 0x7f0403ee +int attr titleTextColor 0x7f0403ef +int attr titleTextStyle 0x7f0403f0 +int attr toolbarId 0x7f0403f1 +int attr toolbarNavigationButtonStyle 0x7f0403f2 +int attr toolbarStyle 0x7f0403f3 +int attr tooltipForegroundColor 0x7f0403f4 +int attr tooltipFrameBackground 0x7f0403f5 +int attr tooltipStyle 0x7f0403f6 +int attr tooltipText 0x7f0403f7 +int attr touchAnchorId 0x7f0403f8 +int attr touchAnchorSide 0x7f0403f9 +int attr touchRegionId 0x7f0403fa +int attr touch_target_height 0x7f0403fb +int attr track 0x7f0403fc +int attr trackColor 0x7f0403fd +int attr trackColorActive 0x7f0403fe +int attr trackColorInactive 0x7f0403ff +int attr trackCornerRadius 0x7f040400 +int attr trackHeight 0x7f040401 +int attr trackThickness 0x7f040402 +int attr trackTint 0x7f040403 +int attr trackTintMode 0x7f040404 +int attr transformPivotTarget 0x7f040405 +int attr transitionDisable 0x7f040406 +int attr transitionEasing 0x7f040407 +int attr transitionFlags 0x7f040408 +int attr transitionPathRotate 0x7f040409 +int attr transitionShapeAppearance 0x7f04040a +int attr triggerId 0x7f04040b +int attr triggerReceiver 0x7f04040c +int attr triggerSlack 0x7f04040d +int attr ttcIndex 0x7f04040e +int attr unplayed_color 0x7f04040f +int attr upDuration 0x7f040410 +int attr useCompatPadding 0x7f040411 +int attr useMaterialThemeColors 0x7f040412 +int attr use_artwork 0x7f040413 +int attr use_controller 0x7f040414 +int attr values 0x7f040415 +int attr verticalOffset 0x7f040416 +int attr viewAspectRatio 0x7f040417 +int attr viewInflaterClass 0x7f040418 +int attr viewTransitionMode 0x7f040419 +int attr viewTransitionOnCross 0x7f04041a +int attr viewTransitionOnNegativeCross 0x7f04041b +int attr viewTransitionOnPositiveCross 0x7f04041c +int attr visibilityMode 0x7f04041d +int attr voiceIcon 0x7f04041e +int attr vpi_orientation 0x7f04041f +int attr vpi_rtl 0x7f040420 +int attr vpi_slide_mode 0x7f040421 +int attr vpi_slider_checked_color 0x7f040422 +int attr vpi_slider_normal_color 0x7f040423 +int attr vpi_slider_radius 0x7f040424 +int attr vpi_style 0x7f040425 +int attr warmth 0x7f040426 +int attr waveDecay 0x7f040427 +int attr waveOffset 0x7f040428 +int attr wavePeriod 0x7f040429 +int attr wavePhase 0x7f04042a +int attr waveShape 0x7f04042b +int attr waveVariesBy 0x7f04042c +int attr windowActionBar 0x7f04042d +int attr windowActionBarOverlay 0x7f04042e +int attr windowActionModeOverlay 0x7f04042f +int attr windowFixedHeightMajor 0x7f040430 +int attr windowFixedHeightMinor 0x7f040431 +int attr windowFixedWidthMajor 0x7f040432 +int attr windowFixedWidthMinor 0x7f040433 +int attr windowMinWidthMajor 0x7f040434 +int attr windowMinWidthMinor 0x7f040435 +int attr windowNoTitle 0x7f040436 +int attr yearSelectedStyle 0x7f040437 +int attr yearStyle 0x7f040438 +int attr yearTodayStyle 0x7f040439 +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_showMenuShortcutsWhenKeyboardPresent 0x7f050004 +int bool mtrl_btn_textappearance_all_caps 0x7f050005 +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 background_floating_material_dark 0x7f06001f +int color background_floating_material_light 0x7f060020 +int color background_material_dark 0x7f060021 +int color background_material_light 0x7f060022 +int color bottom_container_bg 0x7f060023 +int color bright_foreground_disabled_material_dark 0x7f060024 +int color bright_foreground_disabled_material_light 0x7f060025 +int color bright_foreground_inverse_material_dark 0x7f060026 +int color bright_foreground_inverse_material_light 0x7f060027 +int color bright_foreground_material_dark 0x7f060028 +int color bright_foreground_material_light 0x7f060029 +int color button_material_dark 0x7f06002a +int color button_material_light 0x7f06002b +int color cardview_dark_background 0x7f06002c +int color cardview_light_background 0x7f06002d +int color cardview_shadow_end_color 0x7f06002e +int color cardview_shadow_start_color 0x7f06002f +int color checkbox_themeable_attribute_color 0x7f060030 +int color design_bottom_navigation_shadow_color 0x7f060031 +int color design_box_stroke_color 0x7f060032 +int color design_dark_default_color_background 0x7f060033 +int color design_dark_default_color_error 0x7f060034 +int color design_dark_default_color_on_background 0x7f060035 +int color design_dark_default_color_on_error 0x7f060036 +int color design_dark_default_color_on_primary 0x7f060037 +int color design_dark_default_color_on_secondary 0x7f060038 +int color design_dark_default_color_on_surface 0x7f060039 +int color design_dark_default_color_primary 0x7f06003a +int color design_dark_default_color_primary_dark 0x7f06003b +int color design_dark_default_color_primary_variant 0x7f06003c +int color design_dark_default_color_secondary 0x7f06003d +int color design_dark_default_color_secondary_variant 0x7f06003e +int color design_dark_default_color_surface 0x7f06003f +int color design_default_color_background 0x7f060040 +int color design_default_color_error 0x7f060041 +int color design_default_color_on_background 0x7f060042 +int color design_default_color_on_error 0x7f060043 +int color design_default_color_on_primary 0x7f060044 +int color design_default_color_on_secondary 0x7f060045 +int color design_default_color_on_surface 0x7f060046 +int color design_default_color_primary 0x7f060047 +int color design_default_color_primary_dark 0x7f060048 +int color design_default_color_primary_variant 0x7f060049 +int color design_default_color_secondary 0x7f06004a +int color design_default_color_secondary_variant 0x7f06004b +int color design_default_color_surface 0x7f06004c +int color design_error 0x7f06004d +int color design_fab_shadow_end_color 0x7f06004e +int color design_fab_shadow_mid_color 0x7f06004f +int color design_fab_shadow_start_color 0x7f060050 +int color design_fab_stroke_end_inner_color 0x7f060051 +int color design_fab_stroke_end_outer_color 0x7f060052 +int color design_fab_stroke_top_inner_color 0x7f060053 +int color design_fab_stroke_top_outer_color 0x7f060054 +int color design_icon_tint 0x7f060055 +int color design_snackbar_background_color 0x7f060056 +int color dim_foreground_disabled_material_dark 0x7f060057 +int color dim_foreground_disabled_material_light 0x7f060058 +int color dim_foreground_material_dark 0x7f060059 +int color dim_foreground_material_light 0x7f06005a +int color error_color_material 0x7f06005b +int color error_color_material_dark 0x7f06005c +int color error_color_material_light 0x7f06005d +int color exo_edit_mode_background_color 0x7f06005e +int color foreground_material_dark 0x7f06005f +int color foreground_material_light 0x7f060060 +int color highlighted_text_material_dark 0x7f060061 +int color highlighted_text_material_light 0x7f060062 +int color material_blue_grey_800 0x7f060063 +int color material_blue_grey_900 0x7f060064 +int color material_blue_grey_950 0x7f060065 +int color material_cursor_color 0x7f060066 +int color material_deep_teal_200 0x7f060067 +int color material_deep_teal_500 0x7f060068 +int color material_grey_100 0x7f060069 +int color material_grey_300 0x7f06006a +int color material_grey_50 0x7f06006b +int color material_grey_600 0x7f06006c +int color material_grey_800 0x7f06006d +int color material_grey_850 0x7f06006e +int color material_grey_900 0x7f06006f +int color material_on_background_disabled 0x7f060070 +int color material_on_background_emphasis_high_type 0x7f060071 +int color material_on_background_emphasis_medium 0x7f060072 +int color material_on_primary_disabled 0x7f060073 +int color material_on_primary_emphasis_high_type 0x7f060074 +int color material_on_primary_emphasis_medium 0x7f060075 +int color material_on_surface_disabled 0x7f060076 +int color material_on_surface_emphasis_high_type 0x7f060077 +int color material_on_surface_emphasis_medium 0x7f060078 +int color material_on_surface_stroke 0x7f060079 +int color material_slider_active_tick_marks_color 0x7f06007a +int color material_slider_active_track_color 0x7f06007b +int color material_slider_halo_color 0x7f06007c +int color material_slider_inactive_tick_marks_color 0x7f06007d +int color material_slider_inactive_track_color 0x7f06007e +int color material_slider_thumb_color 0x7f06007f +int color material_timepicker_button_background 0x7f060080 +int color material_timepicker_button_stroke 0x7f060081 +int color material_timepicker_clock_text_color 0x7f060082 +int color material_timepicker_clockface 0x7f060083 +int color material_timepicker_modebutton_tint 0x7f060084 +int color module_ext_color_voice_text 0x7f060085 +int color module_hmi_warning_bg_color 0x7f060086 +int color module_hmi_warning_bg_color_light 0x7f060087 +int color module_mogo_autopilot_status_disable 0x7f060088 +int color module_mogo_autopilot_status_enable 0x7f060089 +int color module_switch_map_bg 0x7f06008a +int color modules_commons_toast_text_color 0x7f06008b +int color mtrl_btn_bg_color_selector 0x7f06008c +int color mtrl_btn_ripple_color 0x7f06008d +int color mtrl_btn_stroke_color_selector 0x7f06008e +int color mtrl_btn_text_btn_bg_color_selector 0x7f06008f +int color mtrl_btn_text_btn_ripple_color 0x7f060090 +int color mtrl_btn_text_color_disabled 0x7f060091 +int color mtrl_btn_text_color_selector 0x7f060092 +int color mtrl_btn_transparent_bg_color 0x7f060093 +int color mtrl_calendar_item_stroke_color 0x7f060094 +int color mtrl_calendar_selected_range 0x7f060095 +int color mtrl_card_view_foreground 0x7f060096 +int color mtrl_card_view_ripple 0x7f060097 +int color mtrl_chip_background_color 0x7f060098 +int color mtrl_chip_close_icon_tint 0x7f060099 +int color mtrl_chip_surface_color 0x7f06009a +int color mtrl_chip_text_color 0x7f06009b +int color mtrl_choice_chip_background_color 0x7f06009c +int color mtrl_choice_chip_ripple_color 0x7f06009d +int color mtrl_choice_chip_text_color 0x7f06009e +int color mtrl_error 0x7f06009f +int color mtrl_fab_bg_color_selector 0x7f0600a0 +int color mtrl_fab_icon_text_color_selector 0x7f0600a1 +int color mtrl_fab_ripple_color 0x7f0600a2 +int color mtrl_filled_background_color 0x7f0600a3 +int color mtrl_filled_icon_tint 0x7f0600a4 +int color mtrl_filled_stroke_color 0x7f0600a5 +int color mtrl_indicator_text_color 0x7f0600a6 +int color mtrl_navigation_bar_colored_item_tint 0x7f0600a7 +int color mtrl_navigation_bar_colored_ripple_color 0x7f0600a8 +int color mtrl_navigation_bar_item_tint 0x7f0600a9 +int color mtrl_navigation_bar_ripple_color 0x7f0600aa +int color mtrl_navigation_item_background_color 0x7f0600ab +int color mtrl_navigation_item_icon_tint 0x7f0600ac +int color mtrl_navigation_item_text_color 0x7f0600ad +int color mtrl_on_primary_text_btn_text_color_selector 0x7f0600ae +int color mtrl_on_surface_ripple_color 0x7f0600af +int color mtrl_outlined_icon_tint 0x7f0600b0 +int color mtrl_outlined_stroke_color 0x7f0600b1 +int color mtrl_popupmenu_overlay_color 0x7f0600b2 +int color mtrl_scrim_color 0x7f0600b3 +int color mtrl_tabs_colored_ripple_color 0x7f0600b4 +int color mtrl_tabs_icon_color_selector 0x7f0600b5 +int color mtrl_tabs_icon_color_selector_colored 0x7f0600b6 +int color mtrl_tabs_legacy_text_color_selector 0x7f0600b7 +int color mtrl_tabs_ripple_color 0x7f0600b8 +int color mtrl_text_btn_text_color_selector 0x7f0600b9 +int color mtrl_textinput_default_box_stroke_color 0x7f0600ba +int color mtrl_textinput_disabled_color 0x7f0600bb +int color mtrl_textinput_filled_box_default_background_color 0x7f0600bc +int color mtrl_textinput_focused_box_stroke_color 0x7f0600bd +int color mtrl_textinput_hovered_box_stroke_color 0x7f0600be +int color notification_action_color_filter 0x7f0600bf +int color notification_icon_bg_color 0x7f0600c0 +int color primary_dark_material_dark 0x7f0600c1 +int color primary_dark_material_light 0x7f0600c2 +int color primary_material_dark 0x7f0600c3 +int color primary_material_light 0x7f0600c4 +int color primary_text_default_material_dark 0x7f0600c5 +int color primary_text_default_material_light 0x7f0600c6 +int color primary_text_disabled_material_dark 0x7f0600c7 +int color primary_text_disabled_material_light 0x7f0600c8 +int color radiobutton_themeable_attribute_color 0x7f0600c9 +int color ripple_material_dark 0x7f0600ca +int color ripple_material_light 0x7f0600cb +int color secondary_text_default_material_dark 0x7f0600cc +int color secondary_text_default_material_light 0x7f0600cd +int color secondary_text_disabled_material_dark 0x7f0600ce +int color secondary_text_disabled_material_light 0x7f0600cf +int color style_color 0x7f0600d0 +int color switch_thumb_disabled_material_dark 0x7f0600d1 +int color switch_thumb_disabled_material_light 0x7f0600d2 +int color switch_thumb_material_dark 0x7f0600d3 +int color switch_thumb_material_light 0x7f0600d4 +int color switch_thumb_normal_material_dark 0x7f0600d5 +int color switch_thumb_normal_material_light 0x7f0600d6 +int color test_mtrl_calendar_day 0x7f0600d7 +int color test_mtrl_calendar_day_selected 0x7f0600d8 +int color tooltip_background_dark 0x7f0600d9 +int color tooltip_background_light 0x7f0600da +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 appcompat_dialog_background_inset 0x7f070054 +int dimen brightness_icon 0x7f070055 +int dimen cardview_compat_inset_shadow 0x7f070056 +int dimen cardview_default_elevation 0x7f070057 +int dimen cardview_default_radius 0x7f070058 +int dimen clock_face_margin_start 0x7f070059 +int dimen compat_button_inset_horizontal_material 0x7f07005a +int dimen compat_button_inset_vertical_material 0x7f07005b +int dimen compat_button_padding_horizontal_material 0x7f07005c +int dimen compat_button_padding_vertical_material 0x7f07005d +int dimen compat_control_corner_material 0x7f07005e +int dimen compat_notification_large_icon_max_height 0x7f07005f +int dimen compat_notification_large_icon_max_width 0x7f070060 +int dimen default_dimension 0x7f070061 +int dimen design_appbar_elevation 0x7f070062 +int dimen design_bottom_navigation_active_item_max_width 0x7f070063 +int dimen design_bottom_navigation_active_item_min_width 0x7f070064 +int dimen design_bottom_navigation_active_text_size 0x7f070065 +int dimen design_bottom_navigation_elevation 0x7f070066 +int dimen design_bottom_navigation_height 0x7f070067 +int dimen design_bottom_navigation_icon_size 0x7f070068 +int dimen design_bottom_navigation_item_max_width 0x7f070069 +int dimen design_bottom_navigation_item_min_width 0x7f07006a +int dimen design_bottom_navigation_label_padding 0x7f07006b +int dimen design_bottom_navigation_margin 0x7f07006c +int dimen design_bottom_navigation_shadow_height 0x7f07006d +int dimen design_bottom_navigation_text_size 0x7f07006e +int dimen design_bottom_sheet_elevation 0x7f07006f +int dimen design_bottom_sheet_modal_elevation 0x7f070070 +int dimen design_bottom_sheet_peek_height_min 0x7f070071 +int dimen design_fab_border_width 0x7f070072 +int dimen design_fab_elevation 0x7f070073 +int dimen design_fab_image_size 0x7f070074 +int dimen design_fab_size_mini 0x7f070075 +int dimen design_fab_size_normal 0x7f070076 +int dimen design_fab_translation_z_hovered_focused 0x7f070077 +int dimen design_fab_translation_z_pressed 0x7f070078 +int dimen design_navigation_elevation 0x7f070079 +int dimen design_navigation_icon_padding 0x7f07007a +int dimen design_navigation_icon_size 0x7f07007b +int dimen design_navigation_item_horizontal_padding 0x7f07007c +int dimen design_navigation_item_icon_padding 0x7f07007d +int dimen design_navigation_max_width 0x7f07007e +int dimen design_navigation_padding_bottom 0x7f07007f +int dimen design_navigation_separator_vertical_padding 0x7f070080 +int dimen design_snackbar_action_inline_max_width 0x7f070081 +int dimen design_snackbar_action_text_color_alpha 0x7f070082 +int dimen design_snackbar_background_corner_radius 0x7f070083 +int dimen design_snackbar_elevation 0x7f070084 +int dimen design_snackbar_extra_spacing_horizontal 0x7f070085 +int dimen design_snackbar_max_width 0x7f070086 +int dimen design_snackbar_min_width 0x7f070087 +int dimen design_snackbar_padding_horizontal 0x7f070088 +int dimen design_snackbar_padding_vertical 0x7f070089 +int dimen design_snackbar_padding_vertical_2lines 0x7f07008a +int dimen design_snackbar_text_size 0x7f07008b +int dimen design_tab_max_width 0x7f07008c +int dimen design_tab_scrollable_min_width 0x7f07008d +int dimen design_tab_text_size 0x7f07008e +int dimen design_tab_text_size_2line 0x7f07008f +int dimen design_textinput_caption_translate_y 0x7f070090 +int dimen disabled_alpha_material_dark 0x7f070091 +int dimen disabled_alpha_material_light 0x7f070092 +int dimen dp_0 0x7f070093 +int dimen dp_0_1 0x7f070094 +int dimen dp_0_5 0x7f070095 +int dimen dp_1 0x7f070096 +int dimen dp_10 0x7f070097 +int dimen dp_100 0x7f070098 +int dimen dp_1000 0x7f070099 +int dimen dp_101 0x7f07009a +int dimen dp_102 0x7f07009b +int dimen dp_103 0x7f07009c +int dimen dp_104 0x7f07009d +int dimen dp_104_5 0x7f07009e +int dimen dp_105 0x7f07009f +int dimen dp_106 0x7f0700a0 +int dimen dp_107 0x7f0700a1 +int dimen dp_108 0x7f0700a2 +int dimen dp_109 0x7f0700a3 +int dimen dp_11 0x7f0700a4 +int dimen dp_110 0x7f0700a5 +int dimen dp_1100 0x7f0700a6 +int dimen dp_111 0x7f0700a7 +int dimen dp_112 0x7f0700a8 +int dimen dp_113 0x7f0700a9 +int dimen dp_114 0x7f0700aa +int dimen dp_115 0x7f0700ab +int dimen dp_116 0x7f0700ac +int dimen dp_117 0x7f0700ad +int dimen dp_118 0x7f0700ae +int dimen dp_119 0x7f0700af +int dimen dp_12 0x7f0700b0 +int dimen dp_120 0x7f0700b1 +int dimen dp_1200 0x7f0700b2 +int dimen dp_121 0x7f0700b3 +int dimen dp_122 0x7f0700b4 +int dimen dp_123 0x7f0700b5 +int dimen dp_124 0x7f0700b6 +int dimen dp_125 0x7f0700b7 +int dimen dp_126 0x7f0700b8 +int dimen dp_127 0x7f0700b9 +int dimen dp_128 0x7f0700ba +int dimen dp_129 0x7f0700bb +int dimen dp_13 0x7f0700bc +int dimen dp_130 0x7f0700bd +int dimen dp_1300 0x7f0700be +int dimen dp_131 0x7f0700bf +int dimen dp_132 0x7f0700c0 +int dimen dp_133 0x7f0700c1 +int dimen dp_134 0x7f0700c2 +int dimen dp_134_5 0x7f0700c3 +int dimen dp_135 0x7f0700c4 +int dimen dp_136 0x7f0700c5 +int dimen dp_137 0x7f0700c6 +int dimen dp_138 0x7f0700c7 +int dimen dp_139 0x7f0700c8 +int dimen dp_14 0x7f0700c9 +int dimen dp_140 0x7f0700ca +int dimen dp_141 0x7f0700cb +int dimen dp_142 0x7f0700cc +int dimen dp_143 0x7f0700cd +int dimen dp_144 0x7f0700ce +int dimen dp_145 0x7f0700cf +int dimen dp_146 0x7f0700d0 +int dimen dp_147 0x7f0700d1 +int dimen dp_148 0x7f0700d2 +int dimen dp_149 0x7f0700d3 +int dimen dp_15 0x7f0700d4 +int dimen dp_150 0x7f0700d5 +int dimen dp_151 0x7f0700d6 +int dimen dp_152 0x7f0700d7 +int dimen dp_153 0x7f0700d8 +int dimen dp_154 0x7f0700d9 +int dimen dp_155 0x7f0700da +int dimen dp_156 0x7f0700db +int dimen dp_157 0x7f0700dc +int dimen dp_158 0x7f0700dd +int dimen dp_159 0x7f0700de +int dimen dp_16 0x7f0700df +int dimen dp_160 0x7f0700e0 +int dimen dp_1600 0x7f0700e1 +int dimen dp_161 0x7f0700e2 +int dimen dp_162 0x7f0700e3 +int dimen dp_163 0x7f0700e4 +int dimen dp_164 0x7f0700e5 +int dimen dp_165 0x7f0700e6 +int dimen dp_166 0x7f0700e7 +int dimen dp_167 0x7f0700e8 +int dimen dp_168 0x7f0700e9 +int dimen dp_169 0x7f0700ea +int dimen dp_17 0x7f0700eb +int dimen dp_170 0x7f0700ec +int dimen dp_171 0x7f0700ed +int dimen dp_172 0x7f0700ee +int dimen dp_173 0x7f0700ef +int dimen dp_174 0x7f0700f0 +int dimen dp_175 0x7f0700f1 +int dimen dp_176 0x7f0700f2 +int dimen dp_177 0x7f0700f3 +int dimen dp_178 0x7f0700f4 +int dimen dp_179 0x7f0700f5 +int dimen dp_18 0x7f0700f6 +int dimen dp_180 0x7f0700f7 +int dimen dp_181 0x7f0700f8 +int dimen dp_182 0x7f0700f9 +int dimen dp_183 0x7f0700fa +int dimen dp_184 0x7f0700fb +int dimen dp_185 0x7f0700fc +int dimen dp_186 0x7f0700fd +int dimen dp_187 0x7f0700fe +int dimen dp_188 0x7f0700ff +int dimen dp_189 0x7f070100 +int dimen dp_19 0x7f070101 +int dimen dp_190 0x7f070102 +int dimen dp_191 0x7f070103 +int dimen dp_191_25 0x7f070104 +int dimen dp_192 0x7f070105 +int dimen dp_1920 0x7f070106 +int dimen dp_193 0x7f070107 +int dimen dp_194 0x7f070108 +int dimen dp_195 0x7f070109 +int dimen dp_196 0x7f07010a +int dimen dp_197 0x7f07010b +int dimen dp_198 0x7f07010c +int dimen dp_199 0x7f07010d +int dimen dp_1_5 0x7f07010e +int dimen dp_2 0x7f07010f +int dimen dp_20 0x7f070110 +int dimen dp_200 0x7f070111 +int dimen dp_201 0x7f070112 +int dimen dp_202 0x7f070113 +int dimen dp_203 0x7f070114 +int dimen dp_204 0x7f070115 +int dimen dp_205 0x7f070116 +int dimen dp_206 0x7f070117 +int dimen dp_207 0x7f070118 +int dimen dp_208 0x7f070119 +int dimen dp_209 0x7f07011a +int dimen dp_21 0x7f07011b +int dimen dp_210 0x7f07011c +int dimen dp_211 0x7f07011d +int dimen dp_212 0x7f07011e +int dimen dp_213 0x7f07011f +int dimen dp_214 0x7f070120 +int dimen dp_215 0x7f070121 +int dimen dp_216 0x7f070122 +int dimen dp_217 0x7f070123 +int dimen dp_218 0x7f070124 +int dimen dp_219 0x7f070125 +int dimen dp_22 0x7f070126 +int dimen dp_220 0x7f070127 +int dimen dp_221 0x7f070128 +int dimen dp_222 0x7f070129 +int dimen dp_223 0x7f07012a +int dimen dp_224 0x7f07012b +int dimen dp_225 0x7f07012c +int dimen dp_226 0x7f07012d +int dimen dp_227 0x7f07012e +int dimen dp_228 0x7f07012f +int dimen dp_229 0x7f070130 +int dimen dp_23 0x7f070131 +int dimen dp_230 0x7f070132 +int dimen dp_231 0x7f070133 +int dimen dp_232 0x7f070134 +int dimen dp_233 0x7f070135 +int dimen dp_234 0x7f070136 +int dimen dp_235 0x7f070137 +int dimen dp_236 0x7f070138 +int dimen dp_237 0x7f070139 +int dimen dp_238 0x7f07013a +int dimen dp_239 0x7f07013b +int dimen dp_24 0x7f07013c +int dimen dp_240 0x7f07013d +int dimen dp_241 0x7f07013e +int dimen dp_242 0x7f07013f +int dimen dp_243 0x7f070140 +int dimen dp_244 0x7f070141 +int dimen dp_245 0x7f070142 +int dimen dp_246 0x7f070143 +int dimen dp_247 0x7f070144 +int dimen dp_248 0x7f070145 +int dimen dp_249 0x7f070146 +int dimen dp_25 0x7f070147 +int dimen dp_250 0x7f070148 +int dimen dp_251 0x7f070149 +int dimen dp_252 0x7f07014a +int dimen dp_253 0x7f07014b +int dimen dp_254 0x7f07014c +int dimen dp_255 0x7f07014d +int dimen dp_256 0x7f07014e +int dimen dp_257 0x7f07014f +int dimen dp_258 0x7f070150 +int dimen dp_259 0x7f070151 +int dimen dp_26 0x7f070152 +int dimen dp_260 0x7f070153 +int dimen dp_261 0x7f070154 +int dimen dp_262 0x7f070155 +int dimen dp_263 0x7f070156 +int dimen dp_264 0x7f070157 +int dimen dp_265 0x7f070158 +int dimen dp_266 0x7f070159 +int dimen dp_267 0x7f07015a +int dimen dp_268 0x7f07015b +int dimen dp_269 0x7f07015c +int dimen dp_27 0x7f07015d +int dimen dp_270 0x7f07015e +int dimen dp_271 0x7f07015f +int dimen dp_272 0x7f070160 +int dimen dp_273 0x7f070161 +int dimen dp_274 0x7f070162 +int dimen dp_275 0x7f070163 +int dimen dp_276 0x7f070164 +int dimen dp_277 0x7f070165 +int dimen dp_278 0x7f070166 +int dimen dp_279 0x7f070167 +int dimen dp_28 0x7f070168 +int dimen dp_280 0x7f070169 +int dimen dp_281 0x7f07016a +int dimen dp_282 0x7f07016b +int dimen dp_283 0x7f07016c +int dimen dp_284 0x7f07016d +int dimen dp_285 0x7f07016e +int dimen dp_286 0x7f07016f +int dimen dp_287 0x7f070170 +int dimen dp_288 0x7f070171 +int dimen dp_289 0x7f070172 +int dimen dp_29 0x7f070173 +int dimen dp_290 0x7f070174 +int dimen dp_291 0x7f070175 +int dimen dp_292 0x7f070176 +int dimen dp_293 0x7f070177 +int dimen dp_294 0x7f070178 +int dimen dp_295 0x7f070179 +int dimen dp_296 0x7f07017a +int dimen dp_297 0x7f07017b +int dimen dp_298 0x7f07017c +int dimen dp_299 0x7f07017d +int dimen dp_2_5 0x7f07017e +int dimen dp_3 0x7f07017f +int dimen dp_30 0x7f070180 +int dimen dp_300 0x7f070181 +int dimen dp_301 0x7f070182 +int dimen dp_302 0x7f070183 +int dimen dp_303 0x7f070184 +int dimen dp_304 0x7f070185 +int dimen dp_305 0x7f070186 +int dimen dp_306 0x7f070187 +int dimen dp_307 0x7f070188 +int dimen dp_308 0x7f070189 +int dimen dp_309 0x7f07018a +int dimen dp_31 0x7f07018b +int dimen dp_310 0x7f07018c +int dimen dp_311 0x7f07018d +int dimen dp_312 0x7f07018e +int dimen dp_313 0x7f07018f +int dimen dp_314 0x7f070190 +int dimen dp_315 0x7f070191 +int dimen dp_316 0x7f070192 +int dimen dp_317 0x7f070193 +int dimen dp_318 0x7f070194 +int dimen dp_319 0x7f070195 +int dimen dp_32 0x7f070196 +int dimen dp_320 0x7f070197 +int dimen dp_321 0x7f070198 +int dimen dp_322 0x7f070199 +int dimen dp_323 0x7f07019a +int dimen dp_324 0x7f07019b +int dimen dp_325 0x7f07019c +int dimen dp_326 0x7f07019d +int dimen dp_327 0x7f07019e +int dimen dp_328 0x7f07019f +int dimen dp_329 0x7f0701a0 +int dimen dp_33 0x7f0701a1 +int dimen dp_330 0x7f0701a2 +int dimen dp_331 0x7f0701a3 +int dimen dp_332 0x7f0701a4 +int dimen dp_333 0x7f0701a5 +int dimen dp_334 0x7f0701a6 +int dimen dp_335 0x7f0701a7 +int dimen dp_336 0x7f0701a8 +int dimen dp_337 0x7f0701a9 +int dimen dp_338 0x7f0701aa +int dimen dp_339 0x7f0701ab +int dimen dp_34 0x7f0701ac +int dimen dp_340 0x7f0701ad +int dimen dp_341 0x7f0701ae +int dimen dp_342 0x7f0701af +int dimen dp_343 0x7f0701b0 +int dimen dp_344 0x7f0701b1 +int dimen dp_345 0x7f0701b2 +int dimen dp_346 0x7f0701b3 +int dimen dp_347 0x7f0701b4 +int dimen dp_348 0x7f0701b5 +int dimen dp_349 0x7f0701b6 +int dimen dp_35 0x7f0701b7 +int dimen dp_350 0x7f0701b8 +int dimen dp_351 0x7f0701b9 +int dimen dp_352 0x7f0701ba +int dimen dp_353 0x7f0701bb +int dimen dp_354 0x7f0701bc +int dimen dp_355 0x7f0701bd +int dimen dp_356 0x7f0701be +int dimen dp_357 0x7f0701bf +int dimen dp_358 0x7f0701c0 +int dimen dp_359 0x7f0701c1 +int dimen dp_36 0x7f0701c2 +int dimen dp_366 0x7f0701c3 +int dimen dp_367 0x7f0701c4 +int dimen dp_368 0x7f0701c5 +int dimen dp_369 0x7f0701c6 +int dimen dp_37 0x7f0701c7 +int dimen dp_370 0x7f0701c8 +int dimen dp_371 0x7f0701c9 +int dimen dp_372 0x7f0701ca +int dimen dp_373 0x7f0701cb +int dimen dp_374 0x7f0701cc +int dimen dp_375 0x7f0701cd +int dimen dp_376 0x7f0701ce +int dimen dp_377 0x7f0701cf +int dimen dp_378 0x7f0701d0 +int dimen dp_379 0x7f0701d1 +int dimen dp_38 0x7f0701d2 +int dimen dp_380 0x7f0701d3 +int dimen dp_381 0x7f0701d4 +int dimen dp_382 0x7f0701d5 +int dimen dp_383 0x7f0701d6 +int dimen dp_384 0x7f0701d7 +int dimen dp_385 0x7f0701d8 +int dimen dp_386 0x7f0701d9 +int dimen dp_387 0x7f0701da +int dimen dp_388 0x7f0701db +int dimen dp_389 0x7f0701dc +int dimen dp_39 0x7f0701dd +int dimen dp_390 0x7f0701de +int dimen dp_391 0x7f0701df +int dimen dp_392 0x7f0701e0 +int dimen dp_393 0x7f0701e1 +int dimen dp_394 0x7f0701e2 +int dimen dp_395 0x7f0701e3 +int dimen dp_396 0x7f0701e4 +int dimen dp_397 0x7f0701e5 +int dimen dp_398 0x7f0701e6 +int dimen dp_399 0x7f0701e7 +int dimen dp_3_5 0x7f0701e8 +int dimen dp_4 0x7f0701e9 +int dimen dp_40 0x7f0701ea +int dimen dp_400 0x7f0701eb +int dimen dp_401 0x7f0701ec +int dimen dp_402 0x7f0701ed +int dimen dp_403 0x7f0701ee +int dimen dp_404 0x7f0701ef +int dimen dp_405 0x7f0701f0 +int dimen dp_406 0x7f0701f1 +int dimen dp_407 0x7f0701f2 +int dimen dp_408 0x7f0701f3 +int dimen dp_409 0x7f0701f4 +int dimen dp_41 0x7f0701f5 +int dimen dp_410 0x7f0701f6 +int dimen dp_411 0x7f0701f7 +int dimen dp_412 0x7f0701f8 +int dimen dp_413 0x7f0701f9 +int dimen dp_414 0x7f0701fa +int dimen dp_415 0x7f0701fb +int dimen dp_416 0x7f0701fc +int dimen dp_417 0x7f0701fd +int dimen dp_418 0x7f0701fe +int dimen dp_419 0x7f0701ff +int dimen dp_42 0x7f070200 +int dimen dp_420 0x7f070201 +int dimen dp_421 0x7f070202 +int dimen dp_422 0x7f070203 +int dimen dp_423 0x7f070204 +int dimen dp_424 0x7f070205 +int dimen dp_425 0x7f070206 +int dimen dp_426 0x7f070207 +int dimen dp_427 0x7f070208 +int dimen dp_428 0x7f070209 +int dimen dp_429 0x7f07020a +int dimen dp_43 0x7f07020b +int dimen dp_430 0x7f07020c +int dimen dp_431 0x7f07020d +int dimen dp_432 0x7f07020e +int dimen dp_433 0x7f07020f +int dimen dp_434 0x7f070210 +int dimen dp_435 0x7f070211 +int dimen dp_436 0x7f070212 +int dimen dp_437 0x7f070213 +int dimen dp_438 0x7f070214 +int dimen dp_439 0x7f070215 +int dimen dp_44 0x7f070216 +int dimen dp_440 0x7f070217 +int dimen dp_441 0x7f070218 +int dimen dp_442 0x7f070219 +int dimen dp_443 0x7f07021a +int dimen dp_444 0x7f07021b +int dimen dp_445 0x7f07021c +int dimen dp_446 0x7f07021d +int dimen dp_447 0x7f07021e +int dimen dp_448 0x7f07021f +int dimen dp_449 0x7f070220 +int dimen dp_45 0x7f070221 +int dimen dp_450 0x7f070222 +int dimen dp_451 0x7f070223 +int dimen dp_452 0x7f070224 +int dimen dp_453 0x7f070225 +int dimen dp_454 0x7f070226 +int dimen dp_455 0x7f070227 +int dimen dp_456 0x7f070228 +int dimen dp_457 0x7f070229 +int dimen dp_458 0x7f07022a +int dimen dp_459 0x7f07022b +int dimen dp_46 0x7f07022c +int dimen dp_460 0x7f07022d +int dimen dp_461 0x7f07022e +int dimen dp_462 0x7f07022f +int dimen dp_463 0x7f070230 +int dimen dp_464 0x7f070231 +int dimen dp_465 0x7f070232 +int dimen dp_466 0x7f070233 +int dimen dp_467 0x7f070234 +int dimen dp_468 0x7f070235 +int dimen dp_469 0x7f070236 +int dimen dp_47 0x7f070237 +int dimen dp_470 0x7f070238 +int dimen dp_471 0x7f070239 +int dimen dp_472 0x7f07023a +int dimen dp_473 0x7f07023b +int dimen dp_474 0x7f07023c +int dimen dp_475 0x7f07023d +int dimen dp_476 0x7f07023e +int dimen dp_477 0x7f07023f +int dimen dp_478 0x7f070240 +int dimen dp_479 0x7f070241 +int dimen dp_48 0x7f070242 +int dimen dp_480 0x7f070243 +int dimen dp_481 0x7f070244 +int dimen dp_482 0x7f070245 +int dimen dp_483 0x7f070246 +int dimen dp_484 0x7f070247 +int dimen dp_485 0x7f070248 +int dimen dp_486 0x7f070249 +int dimen dp_487 0x7f07024a +int dimen dp_488 0x7f07024b +int dimen dp_489 0x7f07024c +int dimen dp_49 0x7f07024d +int dimen dp_490 0x7f07024e +int dimen dp_491 0x7f07024f +int dimen dp_492 0x7f070250 +int dimen dp_493 0x7f070251 +int dimen dp_494 0x7f070252 +int dimen dp_495 0x7f070253 +int dimen dp_496 0x7f070254 +int dimen dp_497 0x7f070255 +int dimen dp_498 0x7f070256 +int dimen dp_499 0x7f070257 +int dimen dp_4_5 0x7f070258 +int dimen dp_5 0x7f070259 +int dimen dp_50 0x7f07025a +int dimen dp_500 0x7f07025b +int dimen dp_501 0x7f07025c +int dimen dp_502 0x7f07025d +int dimen dp_503 0x7f07025e +int dimen dp_504 0x7f07025f +int dimen dp_505 0x7f070260 +int dimen dp_506 0x7f070261 +int dimen dp_507 0x7f070262 +int dimen dp_508 0x7f070263 +int dimen dp_509 0x7f070264 +int dimen dp_51 0x7f070265 +int dimen dp_510 0x7f070266 +int dimen dp_511 0x7f070267 +int dimen dp_512 0x7f070268 +int dimen dp_513 0x7f070269 +int dimen dp_514 0x7f07026a +int dimen dp_515 0x7f07026b +int dimen dp_516 0x7f07026c +int dimen dp_517 0x7f07026d +int dimen dp_518 0x7f07026e +int dimen dp_519 0x7f07026f +int dimen dp_52 0x7f070270 +int dimen dp_520 0x7f070271 +int dimen dp_521 0x7f070272 +int dimen dp_522 0x7f070273 +int dimen dp_523 0x7f070274 +int dimen dp_524 0x7f070275 +int dimen dp_525 0x7f070276 +int dimen dp_526 0x7f070277 +int dimen dp_527 0x7f070278 +int dimen dp_528 0x7f070279 +int dimen dp_529 0x7f07027a +int dimen dp_53 0x7f07027b +int dimen dp_530 0x7f07027c +int dimen dp_531 0x7f07027d +int dimen dp_532 0x7f07027e +int dimen dp_533 0x7f07027f +int dimen dp_534 0x7f070280 +int dimen dp_535 0x7f070281 +int dimen dp_536 0x7f070282 +int dimen dp_537 0x7f070283 +int dimen dp_538 0x7f070284 +int dimen dp_539 0x7f070285 +int dimen dp_54 0x7f070286 +int dimen dp_540 0x7f070287 +int dimen dp_541 0x7f070288 +int dimen dp_542 0x7f070289 +int dimen dp_543 0x7f07028a +int dimen dp_544 0x7f07028b +int dimen dp_545 0x7f07028c +int dimen dp_546 0x7f07028d +int dimen dp_547 0x7f07028e +int dimen dp_548 0x7f07028f +int dimen dp_549 0x7f070290 +int dimen dp_55 0x7f070291 +int dimen dp_550 0x7f070292 +int dimen dp_551 0x7f070293 +int dimen dp_552 0x7f070294 +int dimen dp_553 0x7f070295 +int dimen dp_554 0x7f070296 +int dimen dp_555 0x7f070297 +int dimen dp_556 0x7f070298 +int dimen dp_557 0x7f070299 +int dimen dp_558 0x7f07029a +int dimen dp_559 0x7f07029b +int dimen dp_56 0x7f07029c +int dimen dp_560 0x7f07029d +int dimen dp_561 0x7f07029e +int dimen dp_562 0x7f07029f +int dimen dp_563 0x7f0702a0 +int dimen dp_564 0x7f0702a1 +int dimen dp_565 0x7f0702a2 +int dimen dp_566 0x7f0702a3 +int dimen dp_567 0x7f0702a4 +int dimen dp_568 0x7f0702a5 +int dimen dp_569 0x7f0702a6 +int dimen dp_57 0x7f0702a7 +int dimen dp_570 0x7f0702a8 +int dimen dp_571 0x7f0702a9 +int dimen dp_572 0x7f0702aa +int dimen dp_573 0x7f0702ab +int dimen dp_574 0x7f0702ac +int dimen dp_575 0x7f0702ad +int dimen dp_576 0x7f0702ae +int dimen dp_577 0x7f0702af +int dimen dp_578 0x7f0702b0 +int dimen dp_579 0x7f0702b1 +int dimen dp_57_5 0x7f0702b2 +int dimen dp_58 0x7f0702b3 +int dimen dp_580 0x7f0702b4 +int dimen dp_581 0x7f0702b5 +int dimen dp_582 0x7f0702b6 +int dimen dp_583 0x7f0702b7 +int dimen dp_584 0x7f0702b8 +int dimen dp_585 0x7f0702b9 +int dimen dp_586 0x7f0702ba +int dimen dp_587 0x7f0702bb +int dimen dp_588 0x7f0702bc +int dimen dp_589 0x7f0702bd +int dimen dp_59 0x7f0702be +int dimen dp_590 0x7f0702bf +int dimen dp_591 0x7f0702c0 +int dimen dp_592 0x7f0702c1 +int dimen dp_593 0x7f0702c2 +int dimen dp_594 0x7f0702c3 +int dimen dp_595 0x7f0702c4 +int dimen dp_596 0x7f0702c5 +int dimen dp_597 0x7f0702c6 +int dimen dp_598 0x7f0702c7 +int dimen dp_599 0x7f0702c8 +int dimen dp_6 0x7f0702c9 +int dimen dp_60 0x7f0702ca +int dimen dp_600 0x7f0702cb +int dimen dp_601 0x7f0702cc +int dimen dp_602 0x7f0702cd +int dimen dp_603 0x7f0702ce +int dimen dp_604 0x7f0702cf +int dimen dp_605 0x7f0702d0 +int dimen dp_606 0x7f0702d1 +int dimen dp_607 0x7f0702d2 +int dimen dp_608 0x7f0702d3 +int dimen dp_609 0x7f0702d4 +int dimen dp_61 0x7f0702d5 +int dimen dp_610 0x7f0702d6 +int dimen dp_611 0x7f0702d7 +int dimen dp_612 0x7f0702d8 +int dimen dp_613 0x7f0702d9 +int dimen dp_614 0x7f0702da +int dimen dp_615 0x7f0702db +int dimen dp_616 0x7f0702dc +int dimen dp_617 0x7f0702dd +int dimen dp_618 0x7f0702de +int dimen dp_619 0x7f0702df +int dimen dp_62 0x7f0702e0 +int dimen dp_620 0x7f0702e1 +int dimen dp_621 0x7f0702e2 +int dimen dp_622 0x7f0702e3 +int dimen dp_623 0x7f0702e4 +int dimen dp_624 0x7f0702e5 +int dimen dp_625 0x7f0702e6 +int dimen dp_626 0x7f0702e7 +int dimen dp_627 0x7f0702e8 +int dimen dp_628 0x7f0702e9 +int dimen dp_629 0x7f0702ea +int dimen dp_63 0x7f0702eb +int dimen dp_630 0x7f0702ec +int dimen dp_631 0x7f0702ed +int dimen dp_632 0x7f0702ee +int dimen dp_633 0x7f0702ef +int dimen dp_634 0x7f0702f0 +int dimen dp_635 0x7f0702f1 +int dimen dp_636 0x7f0702f2 +int dimen dp_637 0x7f0702f3 +int dimen dp_638 0x7f0702f4 +int dimen dp_639 0x7f0702f5 +int dimen dp_64 0x7f0702f6 +int dimen dp_640 0x7f0702f7 +int dimen dp_641 0x7f0702f8 +int dimen dp_642 0x7f0702f9 +int dimen dp_643 0x7f0702fa +int dimen dp_644 0x7f0702fb +int dimen dp_645 0x7f0702fc +int dimen dp_646 0x7f0702fd +int dimen dp_647 0x7f0702fe +int dimen dp_648 0x7f0702ff +int dimen dp_649 0x7f070300 +int dimen dp_65 0x7f070301 +int dimen dp_650 0x7f070302 +int dimen dp_651 0x7f070303 +int dimen dp_652 0x7f070304 +int dimen dp_653 0x7f070305 +int dimen dp_654 0x7f070306 +int dimen dp_655 0x7f070307 +int dimen dp_656 0x7f070308 +int dimen dp_657 0x7f070309 +int dimen dp_658 0x7f07030a +int dimen dp_659 0x7f07030b +int dimen dp_66 0x7f07030c +int dimen dp_660 0x7f07030d +int dimen dp_661 0x7f07030e +int dimen dp_662 0x7f07030f +int dimen dp_663 0x7f070310 +int dimen dp_664 0x7f070311 +int dimen dp_665 0x7f070312 +int dimen dp_666 0x7f070313 +int dimen dp_667 0x7f070314 +int dimen dp_668 0x7f070315 +int dimen dp_669 0x7f070316 +int dimen dp_67 0x7f070317 +int dimen dp_670 0x7f070318 +int dimen dp_671 0x7f070319 +int dimen dp_672 0x7f07031a +int dimen dp_673 0x7f07031b +int dimen dp_674 0x7f07031c +int dimen dp_675 0x7f07031d +int dimen dp_676 0x7f07031e +int dimen dp_677 0x7f07031f +int dimen dp_678 0x7f070320 +int dimen dp_679 0x7f070321 +int dimen dp_68 0x7f070322 +int dimen dp_680 0x7f070323 +int dimen dp_681 0x7f070324 +int dimen dp_682 0x7f070325 +int dimen dp_683 0x7f070326 +int dimen dp_684 0x7f070327 +int dimen dp_685 0x7f070328 +int dimen dp_686 0x7f070329 +int dimen dp_687 0x7f07032a +int dimen dp_688 0x7f07032b +int dimen dp_689 0x7f07032c +int dimen dp_69 0x7f07032d +int dimen dp_690 0x7f07032e +int dimen dp_691 0x7f07032f +int dimen dp_692 0x7f070330 +int dimen dp_693 0x7f070331 +int dimen dp_694 0x7f070332 +int dimen dp_695 0x7f070333 +int dimen dp_696 0x7f070334 +int dimen dp_697 0x7f070335 +int dimen dp_698 0x7f070336 +int dimen dp_699 0x7f070337 +int dimen dp_7 0x7f070338 +int dimen dp_70 0x7f070339 +int dimen dp_700 0x7f07033a +int dimen dp_701 0x7f07033b +int dimen dp_702 0x7f07033c +int dimen dp_703 0x7f07033d +int dimen dp_704 0x7f07033e +int dimen dp_705 0x7f07033f +int dimen dp_706 0x7f070340 +int dimen dp_707 0x7f070341 +int dimen dp_708 0x7f070342 +int dimen dp_709 0x7f070343 +int dimen dp_71 0x7f070344 +int dimen dp_710 0x7f070345 +int dimen dp_711 0x7f070346 +int dimen dp_712 0x7f070347 +int dimen dp_713 0x7f070348 +int dimen dp_714 0x7f070349 +int dimen dp_715 0x7f07034a +int dimen dp_716 0x7f07034b +int dimen dp_717 0x7f07034c +int dimen dp_718 0x7f07034d +int dimen dp_719 0x7f07034e +int dimen dp_72 0x7f07034f +int dimen dp_720 0x7f070350 +int dimen dp_721 0x7f070351 +int dimen dp_722 0x7f070352 +int dimen dp_723 0x7f070353 +int dimen dp_724 0x7f070354 +int dimen dp_725 0x7f070355 +int dimen dp_726 0x7f070356 +int dimen dp_727 0x7f070357 +int dimen dp_728 0x7f070358 +int dimen dp_729 0x7f070359 +int dimen dp_73 0x7f07035a +int dimen dp_730 0x7f07035b +int dimen dp_731 0x7f07035c +int dimen dp_732 0x7f07035d +int dimen dp_733 0x7f07035e +int dimen dp_734 0x7f07035f +int dimen dp_735 0x7f070360 +int dimen dp_736 0x7f070361 +int dimen dp_737 0x7f070362 +int dimen dp_738 0x7f070363 +int dimen dp_739 0x7f070364 +int dimen dp_74 0x7f070365 +int dimen dp_740 0x7f070366 +int dimen dp_741 0x7f070367 +int dimen dp_742 0x7f070368 +int dimen dp_743 0x7f070369 +int dimen dp_744 0x7f07036a +int dimen dp_745 0x7f07036b +int dimen dp_746 0x7f07036c +int dimen dp_747 0x7f07036d +int dimen dp_748 0x7f07036e +int dimen dp_749 0x7f07036f +int dimen dp_75 0x7f070370 +int dimen dp_750 0x7f070371 +int dimen dp_751 0x7f070372 +int dimen dp_752 0x7f070373 +int dimen dp_753 0x7f070374 +int dimen dp_754 0x7f070375 +int dimen dp_755 0x7f070376 +int dimen dp_756 0x7f070377 +int dimen dp_757 0x7f070378 +int dimen dp_758 0x7f070379 +int dimen dp_759 0x7f07037a +int dimen dp_76 0x7f07037b +int dimen dp_760 0x7f07037c +int dimen dp_761 0x7f07037d +int dimen dp_762 0x7f07037e +int dimen dp_763 0x7f07037f +int dimen dp_764 0x7f070380 +int dimen dp_765 0x7f070381 +int dimen dp_766 0x7f070382 +int dimen dp_767 0x7f070383 +int dimen dp_768 0x7f070384 +int dimen dp_769 0x7f070385 +int dimen dp_77 0x7f070386 +int dimen dp_770 0x7f070387 +int dimen dp_771 0x7f070388 +int dimen dp_772 0x7f070389 +int dimen dp_773 0x7f07038a +int dimen dp_774 0x7f07038b +int dimen dp_775 0x7f07038c +int dimen dp_776 0x7f07038d +int dimen dp_777 0x7f07038e +int dimen dp_778 0x7f07038f +int dimen dp_779 0x7f070390 +int dimen dp_78 0x7f070391 +int dimen dp_780 0x7f070392 +int dimen dp_781 0x7f070393 +int dimen dp_782 0x7f070394 +int dimen dp_783 0x7f070395 +int dimen dp_784 0x7f070396 +int dimen dp_785 0x7f070397 +int dimen dp_786 0x7f070398 +int dimen dp_787 0x7f070399 +int dimen dp_788 0x7f07039a +int dimen dp_789 0x7f07039b +int dimen dp_79 0x7f07039c +int dimen dp_790 0x7f07039d +int dimen dp_791 0x7f07039e +int dimen dp_792 0x7f07039f +int dimen dp_793 0x7f0703a0 +int dimen dp_794 0x7f0703a1 +int dimen dp_795 0x7f0703a2 +int dimen dp_796 0x7f0703a3 +int dimen dp_797 0x7f0703a4 +int dimen dp_798 0x7f0703a5 +int dimen dp_799 0x7f0703a6 +int dimen dp_7_5 0x7f0703a7 +int dimen dp_8 0x7f0703a8 +int dimen dp_80 0x7f0703a9 +int dimen dp_800 0x7f0703aa +int dimen dp_801 0x7f0703ab +int dimen dp_802 0x7f0703ac +int dimen dp_803 0x7f0703ad +int dimen dp_804 0x7f0703ae +int dimen dp_805 0x7f0703af +int dimen dp_806 0x7f0703b0 +int dimen dp_807 0x7f0703b1 +int dimen dp_808 0x7f0703b2 +int dimen dp_809 0x7f0703b3 +int dimen dp_81 0x7f0703b4 +int dimen dp_810 0x7f0703b5 +int dimen dp_811 0x7f0703b6 +int dimen dp_812 0x7f0703b7 +int dimen dp_813 0x7f0703b8 +int dimen dp_814 0x7f0703b9 +int dimen dp_815 0x7f0703ba +int dimen dp_816 0x7f0703bb +int dimen dp_817 0x7f0703bc +int dimen dp_818 0x7f0703bd +int dimen dp_819 0x7f0703be +int dimen dp_82 0x7f0703bf +int dimen dp_820 0x7f0703c0 +int dimen dp_821 0x7f0703c1 +int dimen dp_822 0x7f0703c2 +int dimen dp_823 0x7f0703c3 +int dimen dp_824 0x7f0703c4 +int dimen dp_825 0x7f0703c5 +int dimen dp_826 0x7f0703c6 +int dimen dp_827 0x7f0703c7 +int dimen dp_828 0x7f0703c8 +int dimen dp_829 0x7f0703c9 +int dimen dp_83 0x7f0703ca +int dimen dp_830 0x7f0703cb +int dimen dp_831 0x7f0703cc +int dimen dp_832 0x7f0703cd +int dimen dp_833 0x7f0703ce +int dimen dp_834 0x7f0703cf +int dimen dp_835 0x7f0703d0 +int dimen dp_836 0x7f0703d1 +int dimen dp_837 0x7f0703d2 +int dimen dp_838 0x7f0703d3 +int dimen dp_839 0x7f0703d4 +int dimen dp_84 0x7f0703d5 +int dimen dp_840 0x7f0703d6 +int dimen dp_841 0x7f0703d7 +int dimen dp_842 0x7f0703d8 +int dimen dp_843 0x7f0703d9 +int dimen dp_844 0x7f0703da +int dimen dp_845 0x7f0703db +int dimen dp_846 0x7f0703dc +int dimen dp_847 0x7f0703dd +int dimen dp_848 0x7f0703de +int dimen dp_849 0x7f0703df +int dimen dp_85 0x7f0703e0 +int dimen dp_850 0x7f0703e1 +int dimen dp_851 0x7f0703e2 +int dimen dp_852 0x7f0703e3 +int dimen dp_853 0x7f0703e4 +int dimen dp_854 0x7f0703e5 +int dimen dp_855 0x7f0703e6 +int dimen dp_856 0x7f0703e7 +int dimen dp_857 0x7f0703e8 +int dimen dp_858 0x7f0703e9 +int dimen dp_859 0x7f0703ea +int dimen dp_86 0x7f0703eb +int dimen dp_860 0x7f0703ec +int dimen dp_861 0x7f0703ed +int dimen dp_862 0x7f0703ee +int dimen dp_863 0x7f0703ef +int dimen dp_864 0x7f0703f0 +int dimen dp_865 0x7f0703f1 +int dimen dp_866 0x7f0703f2 +int dimen dp_867 0x7f0703f3 +int dimen dp_868 0x7f0703f4 +int dimen dp_869 0x7f0703f5 +int dimen dp_87 0x7f0703f6 +int dimen dp_870 0x7f0703f7 +int dimen dp_871 0x7f0703f8 +int dimen dp_872 0x7f0703f9 +int dimen dp_873 0x7f0703fa +int dimen dp_874 0x7f0703fb +int dimen dp_875 0x7f0703fc +int dimen dp_876 0x7f0703fd +int dimen dp_877 0x7f0703fe +int dimen dp_878 0x7f0703ff +int dimen dp_879 0x7f070400 +int dimen dp_88 0x7f070401 +int dimen dp_880 0x7f070402 +int dimen dp_881 0x7f070403 +int dimen dp_882 0x7f070404 +int dimen dp_883 0x7f070405 +int dimen dp_884 0x7f070406 +int dimen dp_885 0x7f070407 +int dimen dp_886 0x7f070408 +int dimen dp_887 0x7f070409 +int dimen dp_888 0x7f07040a +int dimen dp_889 0x7f07040b +int dimen dp_89 0x7f07040c +int dimen dp_890 0x7f07040d +int dimen dp_891 0x7f07040e +int dimen dp_892 0x7f07040f +int dimen dp_893 0x7f070410 +int dimen dp_894 0x7f070411 +int dimen dp_895 0x7f070412 +int dimen dp_896 0x7f070413 +int dimen dp_897 0x7f070414 +int dimen dp_898 0x7f070415 +int dimen dp_899 0x7f070416 +int dimen dp_9 0x7f070417 +int dimen dp_90 0x7f070418 +int dimen dp_900 0x7f070419 +int dimen dp_901 0x7f07041a +int dimen dp_902 0x7f07041b +int dimen dp_903 0x7f07041c +int dimen dp_904 0x7f07041d +int dimen dp_905 0x7f07041e +int dimen dp_906 0x7f07041f +int dimen dp_907 0x7f070420 +int dimen dp_908 0x7f070421 +int dimen dp_909 0x7f070422 +int dimen dp_91 0x7f070423 +int dimen dp_910 0x7f070424 +int dimen dp_911 0x7f070425 +int dimen dp_912 0x7f070426 +int dimen dp_913 0x7f070427 +int dimen dp_914 0x7f070428 +int dimen dp_915 0x7f070429 +int dimen dp_916 0x7f07042a +int dimen dp_917 0x7f07042b +int dimen dp_918 0x7f07042c +int dimen dp_919 0x7f07042d +int dimen dp_92 0x7f07042e +int dimen dp_920 0x7f07042f +int dimen dp_921 0x7f070430 +int dimen dp_922 0x7f070431 +int dimen dp_923 0x7f070432 +int dimen dp_924 0x7f070433 +int dimen dp_925 0x7f070434 +int dimen dp_926 0x7f070435 +int dimen dp_927 0x7f070436 +int dimen dp_928 0x7f070437 +int dimen dp_929 0x7f070438 +int dimen dp_93 0x7f070439 +int dimen dp_930 0x7f07043a +int dimen dp_931 0x7f07043b +int dimen dp_932 0x7f07043c +int dimen dp_933 0x7f07043d +int dimen dp_934 0x7f07043e +int dimen dp_935 0x7f07043f +int dimen dp_936 0x7f070440 +int dimen dp_937 0x7f070441 +int dimen dp_938 0x7f070442 +int dimen dp_939 0x7f070443 +int dimen dp_94 0x7f070444 +int dimen dp_940 0x7f070445 +int dimen dp_941 0x7f070446 +int dimen dp_942 0x7f070447 +int dimen dp_943 0x7f070448 +int dimen dp_944 0x7f070449 +int dimen dp_945 0x7f07044a +int dimen dp_946 0x7f07044b +int dimen dp_947 0x7f07044c +int dimen dp_948 0x7f07044d +int dimen dp_949 0x7f07044e +int dimen dp_95 0x7f07044f +int dimen dp_950 0x7f070450 +int dimen dp_951 0x7f070451 +int dimen dp_952 0x7f070452 +int dimen dp_953 0x7f070453 +int dimen dp_954 0x7f070454 +int dimen dp_955 0x7f070455 +int dimen dp_956 0x7f070456 +int dimen dp_957 0x7f070457 +int dimen dp_958 0x7f070458 +int dimen dp_959 0x7f070459 +int dimen dp_96 0x7f07045a +int dimen dp_960 0x7f07045b +int dimen dp_961 0x7f07045c +int dimen dp_962 0x7f07045d +int dimen dp_963 0x7f07045e +int dimen dp_964 0x7f07045f +int dimen dp_965 0x7f070460 +int dimen dp_966 0x7f070461 +int dimen dp_967 0x7f070462 +int dimen dp_968 0x7f070463 +int dimen dp_969 0x7f070464 +int dimen dp_97 0x7f070465 +int dimen dp_970 0x7f070466 +int dimen dp_971 0x7f070467 +int dimen dp_972 0x7f070468 +int dimen dp_973 0x7f070469 +int dimen dp_974 0x7f07046a +int dimen dp_975 0x7f07046b +int dimen dp_976 0x7f07046c +int dimen dp_977 0x7f07046d +int dimen dp_978 0x7f07046e +int dimen dp_979 0x7f07046f +int dimen dp_98 0x7f070470 +int dimen dp_980 0x7f070471 +int dimen dp_981 0x7f070472 +int dimen dp_982 0x7f070473 +int dimen dp_983 0x7f070474 +int dimen dp_984 0x7f070475 +int dimen dp_985 0x7f070476 +int dimen dp_986 0x7f070477 +int dimen dp_987 0x7f070478 +int dimen dp_988 0x7f070479 +int dimen dp_989 0x7f07047a +int dimen dp_99 0x7f07047b +int dimen dp_990 0x7f07047c +int dimen dp_991 0x7f07047d +int dimen dp_992 0x7f07047e +int dimen dp_993 0x7f07047f +int dimen dp_994 0x7f070480 +int dimen dp_995 0x7f070481 +int dimen dp_996 0x7f070482 +int dimen dp_997 0x7f070483 +int dimen dp_998 0x7f070484 +int dimen dp_999 0x7f070485 +int dimen dp_m_1 0x7f070486 +int dimen dp_m_10 0x7f070487 +int dimen dp_m_12 0x7f070488 +int dimen dp_m_2 0x7f070489 +int dimen dp_m_20 0x7f07048a +int dimen dp_m_30 0x7f07048b +int dimen dp_m_5 0x7f07048c +int dimen dp_m_60 0x7f07048d +int dimen dp_m_8 0x7f07048e +int dimen exo_media_button_height 0x7f07048f +int dimen exo_media_button_width 0x7f070490 +int dimen fastscroll_default_thickness 0x7f070491 +int dimen fastscroll_margin 0x7f070492 +int dimen fastscroll_minimum_range 0x7f070493 +int dimen highlight_alpha_material_colored 0x7f070494 +int dimen highlight_alpha_material_dark 0x7f070495 +int dimen highlight_alpha_material_light 0x7f070496 +int dimen hint_alpha_material_dark 0x7f070497 +int dimen hint_alpha_material_light 0x7f070498 +int dimen hint_pressed_alpha_material_dark 0x7f070499 +int dimen hint_pressed_alpha_material_light 0x7f07049a +int dimen item_touch_helper_max_drag_scroll_per_frame 0x7f07049b +int dimen item_touch_helper_swipe_escape_max_velocity 0x7f07049c +int dimen item_touch_helper_swipe_escape_velocity 0x7f07049d +int dimen layout_margin_bottom 0x7f07049e +int dimen material_bottom_sheet_max_width 0x7f07049f +int dimen material_clock_display_padding 0x7f0704a0 +int dimen material_clock_face_margin_top 0x7f0704a1 +int dimen material_clock_hand_center_dot_radius 0x7f0704a2 +int dimen material_clock_hand_padding 0x7f0704a3 +int dimen material_clock_hand_stroke_width 0x7f0704a4 +int dimen material_clock_number_text_size 0x7f0704a5 +int dimen material_clock_period_toggle_height 0x7f0704a6 +int dimen material_clock_period_toggle_margin_left 0x7f0704a7 +int dimen material_clock_period_toggle_width 0x7f0704a8 +int dimen material_clock_size 0x7f0704a9 +int dimen material_cursor_inset_bottom 0x7f0704aa +int dimen material_cursor_inset_top 0x7f0704ab +int dimen material_cursor_width 0x7f0704ac +int dimen material_emphasis_disabled 0x7f0704ad +int dimen material_emphasis_high_type 0x7f0704ae +int dimen material_emphasis_medium 0x7f0704af +int dimen material_filled_edittext_font_1_3_padding_bottom 0x7f0704b0 +int dimen material_filled_edittext_font_1_3_padding_top 0x7f0704b1 +int dimen material_filled_edittext_font_2_0_padding_bottom 0x7f0704b2 +int dimen material_filled_edittext_font_2_0_padding_top 0x7f0704b3 +int dimen material_font_1_3_box_collapsed_padding_top 0x7f0704b4 +int dimen material_font_2_0_box_collapsed_padding_top 0x7f0704b5 +int dimen material_helper_text_default_padding_top 0x7f0704b6 +int dimen material_helper_text_font_1_3_padding_horizontal 0x7f0704b7 +int dimen material_helper_text_font_1_3_padding_top 0x7f0704b8 +int dimen material_input_text_to_prefix_suffix_padding 0x7f0704b9 +int dimen material_text_view_test_line_height 0x7f0704ba +int dimen material_text_view_test_line_height_override 0x7f0704bb +int dimen material_textinput_default_width 0x7f0704bc +int dimen material_textinput_max_width 0x7f0704bd +int dimen material_textinput_min_width 0x7f0704be +int dimen material_time_picker_minimum_screen_height 0x7f0704bf +int dimen material_time_picker_minimum_screen_width 0x7f0704c0 +int dimen material_timepicker_dialog_buttons_margin_top 0x7f0704c1 +int dimen module_commons_toast_icon_width 0x7f0704c2 +int dimen module_commons_toast_marginBottom 0x7f0704c3 +int dimen module_commons_toast_marginLeft 0x7f0704c4 +int dimen module_commons_toast_marginRight 0x7f0704c5 +int dimen module_commons_toast_marginTop 0x7f0704c6 +int dimen module_commons_toast_maxWidth 0x7f0704c7 +int dimen module_commons_toast_minWidth 0x7f0704c8 +int dimen module_commons_toast_space_between_icon_and_msg 0x7f0704c9 +int dimen module_commons_toast_textSize 0x7f0704ca +int dimen module_commons_toast_with_left_drawable_marginBottom 0x7f0704cb +int dimen module_commons_toast_with_left_drawable_marginLeft 0x7f0704cc +int dimen module_commons_toast_with_left_drawable_marginTop 0x7f0704cd +int dimen module_commons_toast_y_offset 0x7f0704ce +int dimen module_ext_arcView_center_text_size 0x7f0704cf +int dimen module_ext_arcView_des_text_size 0x7f0704d0 +int dimen module_ext_arcView_height 0x7f0704d1 +int dimen module_ext_arcView_stroke_with 0x7f0704d2 +int dimen module_ext_arcView_top 0x7f0704d3 +int dimen module_ext_arcView_width 0x7f0704d4 +int dimen module_ext_speed_height 0x7f0704d5 +int dimen module_ext_speed_padding 0x7f0704d6 +int dimen module_ext_speed_width 0x7f0704d7 +int dimen module_ext_speed_width_big_radius 0x7f0704d8 +int dimen module_ext_speed_width_sm_radius 0x7f0704d9 +int dimen module_hmi_autopilot_status_bg_big_radius 0x7f0704da +int dimen module_hmi_autopilot_status_bg_sm_radius 0x7f0704db +int dimen module_hmi_btn_size 0x7f0704dc +int dimen module_hmi_btn_text_size 0x7f0704dd +int dimen module_hmi_check_left 0x7f0704de +int dimen module_hmi_check_size 0x7f0704df +int dimen module_mogo_autopilot_status_bg_height 0x7f0704e0 +int dimen module_mogo_autopilot_status_bg_width 0x7f0704e1 +int dimen module_mogo_autopilot_status_icon_margin 0x7f0704e2 +int dimen module_mogo_autopilot_status_icon_width 0x7f0704e3 +int dimen module_mogo_autopilot_status_margin_left 0x7f0704e4 +int dimen module_mogo_autopilot_status_margin_top 0x7f0704e5 +int dimen module_mogo_autopilot_status_padding 0x7f0704e6 +int dimen module_mogo_autopilot_status_text_margin_start 0x7f0704e7 +int dimen module_mogo_autopilot_status_text_size 0x7f0704e8 +int dimen module_services_empty_tip_marginTop 0x7f0704e9 +int dimen module_services_empty_tip_textSize 0x7f0704ea +int dimen module_services_id_panel_item_avatar_border_width 0x7f0704eb +int dimen module_services_id_panel_item_distance_marginLeft 0x7f0704ec +int dimen module_services_load_strategy_marginRight 0x7f0704ed +int dimen module_services_load_strategy_paddingLeft 0x7f0704ee +int dimen module_services_load_strategy_paddingTop 0x7f0704ef +int dimen module_services_load_strategy_textSize 0x7f0704f0 +int dimen module_services_online_car_panel_recycler_view_margin_top 0x7f0704f1 +int dimen module_services_online_car_panel_title_margin_top 0x7f0704f2 +int dimen module_services_online_car_panel_title_text_size 0x7f0704f3 +int dimen module_services_panel_item_avatar_size 0x7f0704f4 +int dimen module_services_panel_item_corner 0x7f0704f5 +int dimen module_services_panel_item_detail_bkg_corner 0x7f0704f6 +int dimen module_services_panel_item_detail_padding 0x7f0704f7 +int dimen module_services_panel_item_detail_textSize 0x7f0704f8 +int dimen module_services_panel_item_distance_textSize 0x7f0704f9 +int dimen module_services_panel_item_marginBottom 0x7f0704fa +int dimen module_services_panel_item_nickname_marginLeft 0x7f0704fb +int dimen module_services_panel_item_nickname_textSize 0x7f0704fc +int dimen module_services_panel_item_padding 0x7f0704fd +int dimen module_services_panel_strategy_button_bkg_corner 0x7f0704fe +int dimen module_services_panel_strategy_button_marginTop 0x7f0704ff +int dimen module_switch_image 0x7f070500 +int dimen module_switch_image_circle 0x7f070501 +int dimen module_switch_map 0x7f070502 +int dimen module_switch_map_height 0x7f070503 +int dimen module_switch_margin_left 0x7f070504 +int dimen module_switch_text_size 0x7f070505 +int dimen module_vip_height 0x7f070506 +int dimen module_vip_margin_left 0x7f070507 +int dimen module_vip_margin_left_bus_passenger 0x7f070508 +int dimen module_vip_margin_left_taxi_passenger 0x7f070509 +int dimen module_vip_margin_top 0x7f07050a +int dimen module_vip_margin_top_passenger 0x7f07050b +int dimen module_vip_width 0x7f07050c +int dimen mtrl_alert_dialog_background_inset_bottom 0x7f07050d +int dimen mtrl_alert_dialog_background_inset_end 0x7f07050e +int dimen mtrl_alert_dialog_background_inset_start 0x7f07050f +int dimen mtrl_alert_dialog_background_inset_top 0x7f070510 +int dimen mtrl_alert_dialog_picker_background_inset 0x7f070511 +int dimen mtrl_badge_horizontal_edge_offset 0x7f070512 +int dimen mtrl_badge_long_text_horizontal_padding 0x7f070513 +int dimen mtrl_badge_radius 0x7f070514 +int dimen mtrl_badge_text_horizontal_edge_offset 0x7f070515 +int dimen mtrl_badge_text_size 0x7f070516 +int dimen mtrl_badge_toolbar_action_menu_item_horizontal_offset 0x7f070517 +int dimen mtrl_badge_toolbar_action_menu_item_vertical_offset 0x7f070518 +int dimen mtrl_badge_with_text_radius 0x7f070519 +int dimen mtrl_bottomappbar_fabOffsetEndMode 0x7f07051a +int dimen mtrl_bottomappbar_fab_bottom_margin 0x7f07051b +int dimen mtrl_bottomappbar_fab_cradle_margin 0x7f07051c +int dimen mtrl_bottomappbar_fab_cradle_rounded_corner_radius 0x7f07051d +int dimen mtrl_bottomappbar_fab_cradle_vertical_offset 0x7f07051e +int dimen mtrl_bottomappbar_height 0x7f07051f +int dimen mtrl_btn_corner_radius 0x7f070520 +int dimen mtrl_btn_dialog_btn_min_width 0x7f070521 +int dimen mtrl_btn_disabled_elevation 0x7f070522 +int dimen mtrl_btn_disabled_z 0x7f070523 +int dimen mtrl_btn_elevation 0x7f070524 +int dimen mtrl_btn_focused_z 0x7f070525 +int dimen mtrl_btn_hovered_z 0x7f070526 +int dimen mtrl_btn_icon_btn_padding_left 0x7f070527 +int dimen mtrl_btn_icon_padding 0x7f070528 +int dimen mtrl_btn_inset 0x7f070529 +int dimen mtrl_btn_letter_spacing 0x7f07052a +int dimen mtrl_btn_max_width 0x7f07052b +int dimen mtrl_btn_padding_bottom 0x7f07052c +int dimen mtrl_btn_padding_left 0x7f07052d +int dimen mtrl_btn_padding_right 0x7f07052e +int dimen mtrl_btn_padding_top 0x7f07052f +int dimen mtrl_btn_pressed_z 0x7f070530 +int dimen mtrl_btn_snackbar_margin_horizontal 0x7f070531 +int dimen mtrl_btn_stroke_size 0x7f070532 +int dimen mtrl_btn_text_btn_icon_padding 0x7f070533 +int dimen mtrl_btn_text_btn_padding_left 0x7f070534 +int dimen mtrl_btn_text_btn_padding_right 0x7f070535 +int dimen mtrl_btn_text_size 0x7f070536 +int dimen mtrl_btn_z 0x7f070537 +int dimen mtrl_calendar_action_confirm_button_min_width 0x7f070538 +int dimen mtrl_calendar_action_height 0x7f070539 +int dimen mtrl_calendar_action_padding 0x7f07053a +int dimen mtrl_calendar_bottom_padding 0x7f07053b +int dimen mtrl_calendar_content_padding 0x7f07053c +int dimen mtrl_calendar_day_corner 0x7f07053d +int dimen mtrl_calendar_day_height 0x7f07053e +int dimen mtrl_calendar_day_horizontal_padding 0x7f07053f +int dimen mtrl_calendar_day_today_stroke 0x7f070540 +int dimen mtrl_calendar_day_vertical_padding 0x7f070541 +int dimen mtrl_calendar_day_width 0x7f070542 +int dimen mtrl_calendar_days_of_week_height 0x7f070543 +int dimen mtrl_calendar_dialog_background_inset 0x7f070544 +int dimen mtrl_calendar_header_content_padding 0x7f070545 +int dimen mtrl_calendar_header_content_padding_fullscreen 0x7f070546 +int dimen mtrl_calendar_header_divider_thickness 0x7f070547 +int dimen mtrl_calendar_header_height 0x7f070548 +int dimen mtrl_calendar_header_height_fullscreen 0x7f070549 +int dimen mtrl_calendar_header_selection_line_height 0x7f07054a +int dimen mtrl_calendar_header_text_padding 0x7f07054b +int dimen mtrl_calendar_header_toggle_margin_bottom 0x7f07054c +int dimen mtrl_calendar_header_toggle_margin_top 0x7f07054d +int dimen mtrl_calendar_landscape_header_width 0x7f07054e +int dimen mtrl_calendar_maximum_default_fullscreen_minor_axis 0x7f07054f +int dimen mtrl_calendar_month_horizontal_padding 0x7f070550 +int dimen mtrl_calendar_month_vertical_padding 0x7f070551 +int dimen mtrl_calendar_navigation_bottom_padding 0x7f070552 +int dimen mtrl_calendar_navigation_height 0x7f070553 +int dimen mtrl_calendar_navigation_top_padding 0x7f070554 +int dimen mtrl_calendar_pre_l_text_clip_padding 0x7f070555 +int dimen mtrl_calendar_selection_baseline_to_top_fullscreen 0x7f070556 +int dimen mtrl_calendar_selection_text_baseline_to_bottom 0x7f070557 +int dimen mtrl_calendar_selection_text_baseline_to_bottom_fullscreen 0x7f070558 +int dimen mtrl_calendar_selection_text_baseline_to_top 0x7f070559 +int dimen mtrl_calendar_text_input_padding_top 0x7f07055a +int dimen mtrl_calendar_title_baseline_to_top 0x7f07055b +int dimen mtrl_calendar_title_baseline_to_top_fullscreen 0x7f07055c +int dimen mtrl_calendar_year_corner 0x7f07055d +int dimen mtrl_calendar_year_height 0x7f07055e +int dimen mtrl_calendar_year_horizontal_padding 0x7f07055f +int dimen mtrl_calendar_year_vertical_padding 0x7f070560 +int dimen mtrl_calendar_year_width 0x7f070561 +int dimen mtrl_card_checked_icon_margin 0x7f070562 +int dimen mtrl_card_checked_icon_size 0x7f070563 +int dimen mtrl_card_corner_radius 0x7f070564 +int dimen mtrl_card_dragged_z 0x7f070565 +int dimen mtrl_card_elevation 0x7f070566 +int dimen mtrl_card_spacing 0x7f070567 +int dimen mtrl_chip_pressed_translation_z 0x7f070568 +int dimen mtrl_chip_text_size 0x7f070569 +int dimen mtrl_edittext_rectangle_top_offset 0x7f07056a +int dimen mtrl_exposed_dropdown_menu_popup_elevation 0x7f07056b +int dimen mtrl_exposed_dropdown_menu_popup_vertical_offset 0x7f07056c +int dimen mtrl_exposed_dropdown_menu_popup_vertical_padding 0x7f07056d +int dimen mtrl_extended_fab_bottom_padding 0x7f07056e +int dimen mtrl_extended_fab_corner_radius 0x7f07056f +int dimen mtrl_extended_fab_disabled_elevation 0x7f070570 +int dimen mtrl_extended_fab_disabled_translation_z 0x7f070571 +int dimen mtrl_extended_fab_elevation 0x7f070572 +int dimen mtrl_extended_fab_end_padding 0x7f070573 +int dimen mtrl_extended_fab_end_padding_icon 0x7f070574 +int dimen mtrl_extended_fab_icon_size 0x7f070575 +int dimen mtrl_extended_fab_icon_text_spacing 0x7f070576 +int dimen mtrl_extended_fab_min_height 0x7f070577 +int dimen mtrl_extended_fab_min_width 0x7f070578 +int dimen mtrl_extended_fab_start_padding 0x7f070579 +int dimen mtrl_extended_fab_start_padding_icon 0x7f07057a +int dimen mtrl_extended_fab_top_padding 0x7f07057b +int dimen mtrl_extended_fab_translation_z_base 0x7f07057c +int dimen mtrl_extended_fab_translation_z_hovered_focused 0x7f07057d +int dimen mtrl_extended_fab_translation_z_pressed 0x7f07057e +int dimen mtrl_fab_elevation 0x7f07057f +int dimen mtrl_fab_min_touch_target 0x7f070580 +int dimen mtrl_fab_translation_z_hovered_focused 0x7f070581 +int dimen mtrl_fab_translation_z_pressed 0x7f070582 +int dimen mtrl_high_ripple_default_alpha 0x7f070583 +int dimen mtrl_high_ripple_focused_alpha 0x7f070584 +int dimen mtrl_high_ripple_hovered_alpha 0x7f070585 +int dimen mtrl_high_ripple_pressed_alpha 0x7f070586 +int dimen mtrl_large_touch_target 0x7f070587 +int dimen mtrl_low_ripple_default_alpha 0x7f070588 +int dimen mtrl_low_ripple_focused_alpha 0x7f070589 +int dimen mtrl_low_ripple_hovered_alpha 0x7f07058a +int dimen mtrl_low_ripple_pressed_alpha 0x7f07058b +int dimen mtrl_min_touch_target_size 0x7f07058c +int dimen mtrl_navigation_bar_item_default_icon_size 0x7f07058d +int dimen mtrl_navigation_bar_item_default_margin 0x7f07058e +int dimen mtrl_navigation_elevation 0x7f07058f +int dimen mtrl_navigation_item_horizontal_padding 0x7f070590 +int dimen mtrl_navigation_item_icon_padding 0x7f070591 +int dimen mtrl_navigation_item_icon_size 0x7f070592 +int dimen mtrl_navigation_item_shape_horizontal_margin 0x7f070593 +int dimen mtrl_navigation_item_shape_vertical_margin 0x7f070594 +int dimen mtrl_navigation_rail_active_text_size 0x7f070595 +int dimen mtrl_navigation_rail_compact_width 0x7f070596 +int dimen mtrl_navigation_rail_default_width 0x7f070597 +int dimen mtrl_navigation_rail_elevation 0x7f070598 +int dimen mtrl_navigation_rail_icon_margin 0x7f070599 +int dimen mtrl_navigation_rail_icon_size 0x7f07059a +int dimen mtrl_navigation_rail_margin 0x7f07059b +int dimen mtrl_navigation_rail_text_bottom_margin 0x7f07059c +int dimen mtrl_navigation_rail_text_size 0x7f07059d +int dimen mtrl_progress_circular_inset 0x7f07059e +int dimen mtrl_progress_circular_inset_extra_small 0x7f07059f +int dimen mtrl_progress_circular_inset_medium 0x7f0705a0 +int dimen mtrl_progress_circular_inset_small 0x7f0705a1 +int dimen mtrl_progress_circular_radius 0x7f0705a2 +int dimen mtrl_progress_circular_size 0x7f0705a3 +int dimen mtrl_progress_circular_size_extra_small 0x7f0705a4 +int dimen mtrl_progress_circular_size_medium 0x7f0705a5 +int dimen mtrl_progress_circular_size_small 0x7f0705a6 +int dimen mtrl_progress_circular_track_thickness_extra_small 0x7f0705a7 +int dimen mtrl_progress_circular_track_thickness_medium 0x7f0705a8 +int dimen mtrl_progress_circular_track_thickness_small 0x7f0705a9 +int dimen mtrl_progress_indicator_full_rounded_corner_radius 0x7f0705aa +int dimen mtrl_progress_track_thickness 0x7f0705ab +int dimen mtrl_shape_corner_size_large_component 0x7f0705ac +int dimen mtrl_shape_corner_size_medium_component 0x7f0705ad +int dimen mtrl_shape_corner_size_small_component 0x7f0705ae +int dimen mtrl_slider_halo_radius 0x7f0705af +int dimen mtrl_slider_label_padding 0x7f0705b0 +int dimen mtrl_slider_label_radius 0x7f0705b1 +int dimen mtrl_slider_label_square_side 0x7f0705b2 +int dimen mtrl_slider_thumb_elevation 0x7f0705b3 +int dimen mtrl_slider_thumb_radius 0x7f0705b4 +int dimen mtrl_slider_track_height 0x7f0705b5 +int dimen mtrl_slider_track_side_padding 0x7f0705b6 +int dimen mtrl_slider_track_top 0x7f0705b7 +int dimen mtrl_slider_widget_height 0x7f0705b8 +int dimen mtrl_snackbar_action_text_color_alpha 0x7f0705b9 +int dimen mtrl_snackbar_background_corner_radius 0x7f0705ba +int dimen mtrl_snackbar_background_overlay_color_alpha 0x7f0705bb +int dimen mtrl_snackbar_margin 0x7f0705bc +int dimen mtrl_snackbar_message_margin_horizontal 0x7f0705bd +int dimen mtrl_snackbar_padding_horizontal 0x7f0705be +int dimen mtrl_switch_thumb_elevation 0x7f0705bf +int dimen mtrl_textinput_box_corner_radius_medium 0x7f0705c0 +int dimen mtrl_textinput_box_corner_radius_small 0x7f0705c1 +int dimen mtrl_textinput_box_label_cutout_padding 0x7f0705c2 +int dimen mtrl_textinput_box_stroke_width_default 0x7f0705c3 +int dimen mtrl_textinput_box_stroke_width_focused 0x7f0705c4 +int dimen mtrl_textinput_counter_margin_start 0x7f0705c5 +int dimen mtrl_textinput_end_icon_margin_start 0x7f0705c6 +int dimen mtrl_textinput_outline_box_expanded_padding 0x7f0705c7 +int dimen mtrl_textinput_start_icon_margin_end 0x7f0705c8 +int dimen mtrl_toolbar_default_height 0x7f0705c9 +int dimen mtrl_tooltip_arrowSize 0x7f0705ca +int dimen mtrl_tooltip_cornerSize 0x7f0705cb +int dimen mtrl_tooltip_minHeight 0x7f0705cc +int dimen mtrl_tooltip_minWidth 0x7f0705cd +int dimen mtrl_tooltip_padding 0x7f0705ce +int dimen mtrl_transition_shared_axis_slide_distance 0x7f0705cf +int dimen notice_current_time_margin 0x7f0705d0 +int dimen notice_fullscreen_bt 0x7f0705d1 +int dimen notice_loading_bt 0x7f0705d2 +int dimen notice_play_bottom 0x7f0705d3 +int dimen notice_play_height 0x7f0705d4 +int dimen notice_play_marginleft 0x7f0705d5 +int dimen notice_play_marginleft_small 0x7f0705d6 +int dimen notice_play_marginright 0x7f0705d7 +int dimen notice_play_marginright_small 0x7f0705d8 +int dimen notice_seekbar_bottom 0x7f0705d9 +int dimen notice_seekbar_width 0x7f0705da +int dimen notice_seekbar_width_small 0x7f0705db +int dimen notice_time_bottom 0x7f0705dc +int dimen notification_action_icon_size 0x7f0705dd +int dimen notification_action_text_size 0x7f0705de +int dimen notification_big_circle_margin 0x7f0705df +int dimen notification_content_margin_start 0x7f0705e0 +int dimen notification_large_icon_height 0x7f0705e1 +int dimen notification_large_icon_width 0x7f0705e2 +int dimen notification_main_column_padding_top 0x7f0705e3 +int dimen notification_media_narrow_margin 0x7f0705e4 +int dimen notification_right_icon_size 0x7f0705e5 +int dimen notification_right_side_padding_top 0x7f0705e6 +int dimen notification_small_icon_background_padding 0x7f0705e7 +int dimen notification_small_icon_size_as_large 0x7f0705e8 +int dimen notification_subtext_size 0x7f0705e9 +int dimen notification_top_pad 0x7f0705ea +int dimen notification_top_pad_large_text 0x7f0705eb +int dimen seek_bar_image 0x7f0705ec +int dimen sp_10 0x7f0705ed +int dimen sp_11 0x7f0705ee +int dimen sp_12 0x7f0705ef +int dimen sp_120 0x7f0705f0 +int dimen sp_13 0x7f0705f1 +int dimen sp_14 0x7f0705f2 +int dimen sp_15 0x7f0705f3 +int dimen sp_16 0x7f0705f4 +int dimen sp_17 0x7f0705f5 +int dimen sp_18 0x7f0705f6 +int dimen sp_19 0x7f0705f7 +int dimen sp_20 0x7f0705f8 +int dimen sp_21 0x7f0705f9 +int dimen sp_22 0x7f0705fa +int dimen sp_23 0x7f0705fb +int dimen sp_24 0x7f0705fc +int dimen sp_25 0x7f0705fd +int dimen sp_28 0x7f0705fe +int dimen sp_30 0x7f0705ff +int dimen sp_32 0x7f070600 +int dimen sp_34 0x7f070601 +int dimen sp_36 0x7f070602 +int dimen sp_38 0x7f070603 +int dimen sp_40 0x7f070604 +int dimen sp_42 0x7f070605 +int dimen sp_46 0x7f070606 +int dimen sp_48 0x7f070607 +int dimen sp_6 0x7f070608 +int dimen sp_7 0x7f070609 +int dimen sp_76 0x7f07060a +int dimen sp_8 0x7f07060b +int dimen sp_9 0x7f07060c +int dimen test_mtrl_calendar_day_cornerSize 0x7f07060d +int dimen test_navigation_bar_active_item_max_width 0x7f07060e +int dimen test_navigation_bar_active_item_min_width 0x7f07060f +int dimen test_navigation_bar_active_text_size 0x7f070610 +int dimen test_navigation_bar_elevation 0x7f070611 +int dimen test_navigation_bar_height 0x7f070612 +int dimen test_navigation_bar_icon_size 0x7f070613 +int dimen test_navigation_bar_item_max_width 0x7f070614 +int dimen test_navigation_bar_item_min_width 0x7f070615 +int dimen test_navigation_bar_label_padding 0x7f070616 +int dimen test_navigation_bar_shadow_height 0x7f070617 +int dimen test_navigation_bar_text_size 0x7f070618 +int dimen time_textsize 0x7f070619 +int dimen tooltip_corner_radius 0x7f07061a +int dimen tooltip_horizontal_padding 0x7f07061b +int dimen tooltip_margin 0x7f07061c +int dimen tooltip_precise_anchor_extra_offset 0x7f07061d +int dimen tooltip_precise_anchor_threshold 0x7f07061e +int dimen tooltip_vertical_padding 0x7f07061f +int dimen tooltip_y_offset_non_touch 0x7f070620 +int dimen tooltip_y_offset_touch 0x7f070621 +int dimen video_progress_dialog_margin_top 0x7f070622 +int dimen video_volume_dialog_margin_left 0x7f070623 +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 avd_hide_password 0x7f08005c +int drawable avd_show_password 0x7f08005d +int drawable bg_v2x_event_type_blue 0x7f08005e +int drawable bg_v2x_event_type_orange 0x7f08005f +int drawable bg_v2x_event_type_orange_vr 0x7f080060 +int drawable bg_v2x_event_type_read 0x7f080061 +int drawable bg_v2x_event_type_red_vr 0x7f080062 +int drawable bg_waring_limiting_velocity 0x7f080063 +int drawable bg_waring_traffic_light_vr 0x7f080064 +int drawable bg_warning_bg 0x7f080065 +int drawable bottom_left 0x7f080066 +int drawable bottom_right 0x7f080067 +int drawable btn_checkbox_checked_mtrl 0x7f080068 +int drawable btn_checkbox_checked_to_unchecked_mtrl_animation 0x7f080069 +int drawable btn_checkbox_unchecked_mtrl 0x7f08006a +int drawable btn_checkbox_unchecked_to_checked_mtrl_animation 0x7f08006b +int drawable btn_radio_off_mtrl 0x7f08006c +int drawable btn_radio_off_to_on_mtrl_animation 0x7f08006d +int drawable btn_radio_on_mtrl 0x7f08006e +int drawable btn_radio_on_to_off_mtrl_animation 0x7f08006f +int drawable check_error_image 0x7f080070 +int drawable dark_color_close 0x7f080071 +int drawable design_fab_background 0x7f080072 +int drawable design_ic_visibility 0x7f080073 +int drawable design_ic_visibility_off 0x7f080074 +int drawable design_password_eye 0x7f080075 +int drawable design_snackbar_background 0x7f080076 +int drawable empty_drawable 0x7f080077 +int drawable exo_controls_fastforward 0x7f080078 +int drawable exo_controls_next 0x7f080079 +int drawable exo_controls_pause 0x7f08007a +int drawable exo_controls_play 0x7f08007b +int drawable exo_controls_previous 0x7f08007c +int drawable exo_controls_rewind 0x7f08007d +int drawable exo_edit_mode_logo 0x7f08007e +int drawable ic_amap_navi_cursor 0x7f08007f +int drawable ic_clock_black_24dp 0x7f080080 +int drawable ic_keyboard_black_24dp 0x7f080081 +int drawable ic_mtrl_checked_circle 0x7f080082 +int drawable ic_mtrl_chip_checked_black 0x7f080083 +int drawable ic_mtrl_chip_checked_circle 0x7f080084 +int drawable ic_mtrl_chip_close_circle 0x7f080085 +int drawable ic_navi_start 0x7f080086 +int drawable ic_navi_target 0x7f080087 +int drawable icon_autopilot_status 0x7f080088 +int drawable icon_autopilot_status_disabled 0x7f080089 +int drawable icon_car_red 0x7f08008a +int drawable icon_close_nor 0x7f08008b +int drawable icon_default 0x7f08008c +int drawable icon_default_user_head 0x7f08008d +int drawable icon_download_guide 0x7f08008e +int drawable icon_map_marker_car_gray 0x7f08008f +int drawable icon_map_marker_car_type_110 0x7f080090 +int drawable icon_map_marker_car_type_119 0x7f080091 +int drawable icon_map_marker_car_type_120 0x7f080092 +int drawable icon_map_marker_car_type_bus 0x7f080093 +int drawable icon_map_marker_car_type_taxi 0x7f080094 +int drawable icon_map_marker_location_yellow 0x7f080095 +int drawable icon_map_marker_location_yellow_vr 0x7f080096 +int drawable icon_map_marker_road_block_up 0x7f080097 +int drawable icon_map_marker_road_block_up2 0x7f080098 +int drawable icon_map_marker_road_block_up2_white 0x7f080099 +int drawable icon_map_marker_road_check2_white 0x7f08009a +int drawable icon_module_small_map_four_corners 0x7f08009b +int drawable icon_small_v2x_road_construction 0x7f08009c +int drawable icon_v2x_marker 0x7f08009d +int drawable icon_waring_traffic_light_green_vr 0x7f08009e +int drawable icon_waring_traffic_light_red_vr 0x7f08009f +int drawable icon_waring_traffic_light_yellow_vr 0x7f0800a0 +int drawable icon_warning_gas_station 0x7f0800a1 +int drawable icon_warning_road_hollow 0x7f0800a2 +int drawable icon_warning_take_over 0x7f0800a3 +int drawable icon_warning_v2x_abnormal_vehicle 0x7f0800a4 +int drawable icon_warning_v2x_blind_area_collision 0x7f0800a5 +int drawable icon_warning_v2x_collision_warning 0x7f0800a6 +int drawable icon_warning_v2x_congestion 0x7f0800a7 +int drawable icon_warning_v2x_emergency_brake 0x7f0800a8 +int drawable icon_warning_v2x_give_way 0x7f0800a9 +int drawable icon_warning_v2x_hump_bridge 0x7f0800aa +int drawable icon_warning_v2x_motobike 0x7f0800ab +int drawable icon_warning_v2x_motorcycle_collision 0x7f0800ac +int drawable icon_warning_v2x_no_parking 0x7f0800ad +int drawable icon_warning_v2x_no_tooting 0x7f0800ae +int drawable icon_warning_v2x_optimal_route 0x7f0800af +int drawable icon_warning_v2x_over_speed 0x7f0800b0 +int drawable icon_warning_v2x_pedestrian_crossing 0x7f0800b1 +int drawable icon_warning_v2x_reverse_overtaking 0x7f0800b2 +int drawable icon_warning_v2x_road_construction 0x7f0800b3 +int drawable icon_warning_v2x_road_dangerous 0x7f0800b4 +int drawable icon_warning_v2x_roundaboutpng 0x7f0800b5 +int drawable icon_warning_v2x_school 0x7f0800b6 +int drawable icon_warning_v2x_special_vehicle_access 0x7f0800b7 +int drawable icon_warning_v2x_test_section 0x7f0800b8 +int drawable icon_warning_v2x_traffic_light_gray 0x7f0800b9 +int drawable icon_warning_v2x_traffic_light_green 0x7f0800ba +int drawable icon_warning_v2x_traffic_light_red 0x7f0800bb +int drawable icon_warning_v2x_traffic_light_yellow 0x7f0800bc +int drawable icon_warning_v2x_traffic_lights_green 0x7f0800bd +int drawable icon_warning_v2x_traffic_lights_red 0x7f0800be +int drawable icon_warning_v2x_tramcar 0x7f0800bf +int drawable icon_warning_v2x_turn_left_sharp 0x7f0800c0 +int drawable icon_warning_v2x_turn_right_sharp 0x7f0800c1 +int drawable icon_warning_v2x_vehicle_control 0x7f0800c2 +int drawable icon_warning_v2x_vip_turn_light 0x7f0800c3 +int drawable lock 0x7f0800c4 +int drawable map_api_ic_current_location2 0x7f0800c5 +int drawable map_api_ic_current_location2_cursor 0x7f0800c6 +int drawable map_bus_icon 0x7f0800c7 +int drawable map_car_icon 0x7f0800c8 +int drawable material_cursor_drawable 0x7f0800c9 +int drawable material_ic_calendar_black_24dp 0x7f0800ca +int drawable material_ic_clear_black_24dp 0x7f0800cb +int drawable material_ic_edit_black_24dp 0x7f0800cc +int drawable material_ic_keyboard_arrow_left_black_24dp 0x7f0800cd +int drawable material_ic_keyboard_arrow_next_black_24dp 0x7f0800ce +int drawable material_ic_keyboard_arrow_previous_black_24dp 0x7f0800cf +int drawable material_ic_keyboard_arrow_right_black_24dp 0x7f0800d0 +int drawable material_ic_menu_arrow_down_black_24dp 0x7f0800d1 +int drawable material_ic_menu_arrow_up_black_24dp 0x7f0800d2 +int drawable module_camera_real_time_traffic 0x7f0800d3 +int drawable module_common_close_selector 0x7f0800d4 +int drawable module_common_close_selector_vr 0x7f0800d5 +int drawable module_common_ic_rc_accident3 0x7f0800d6 +int drawable module_common_ic_rc_accident3_white 0x7f0800d7 +int drawable module_common_ic_rc_dark_frog2 0x7f0800d8 +int drawable module_common_ic_rc_dark_frog2_white 0x7f0800d9 +int drawable module_common_ic_rc_freeze2 0x7f0800da +int drawable module_common_ic_rc_freeze2_white 0x7f0800db +int drawable module_common_ic_rc_illegal_park 0x7f0800dc +int drawable module_common_ic_rc_illegal_park_white 0x7f0800dd +int drawable module_common_icon_close 0x7f0800de +int drawable module_common_icon_close_press 0x7f0800df +int drawable module_common_icon_close_vr 0x7f0800e0 +int drawable module_common_icon_like_selected_vr 0x7f0800e1 +int drawable module_common_icon_like_vr 0x7f0800e2 +int drawable module_common_icon_map_marker_living 0x7f0800e3 +int drawable module_common_icon_map_marker_living_white 0x7f0800e4 +int drawable module_common_icon_map_marker_pondingl2 0x7f0800e5 +int drawable module_common_icon_map_marker_pondingl2_white 0x7f0800e6 +int drawable module_common_icon_map_marker_road_block_off2 0x7f0800e7 +int drawable module_common_icon_map_marker_road_block_off2_white 0x7f0800e8 +int drawable module_common_icon_map_marker_road_block_up2 0x7f0800e9 +int drawable module_common_icon_map_marker_road_block_up2_white 0x7f0800ea +int drawable module_common_icon_map_marker_road_check2 0x7f0800eb +int drawable module_common_icon_map_marker_road_check2_white 0x7f0800ec +int drawable module_common_icon_map_marker_road_work2 0x7f0800ed +int drawable module_common_icon_map_marker_road_work2_white 0x7f0800ee +int drawable module_common_icon_seek_help 0x7f0800ef +int drawable module_common_icon_unlike_selected_vr 0x7f0800f0 +int drawable module_common_icon_unlike_vr 0x7f0800f1 +int drawable module_common_like_vr 0x7f0800f2 +int drawable module_common_selector_call 0x7f0800f3 +int drawable module_common_unlike_vr 0x7f0800f4 +int drawable module_commons_dialog_bg 0x7f0800f5 +int drawable module_commons_dialog_left_bg 0x7f0800f6 +int drawable module_commons_dialog_right_bg 0x7f0800f7 +int drawable module_commons_toast_bkg 0x7f0800f8 +int drawable module_dw_common_corner_bkg_light 0x7f0800f9 +int drawable module_ext_check 0x7f0800fa +int drawable module_ext_drawable_shadow_bg 0x7f0800fb +int drawable module_ext_shadow_bkg 0x7f0800fc +int drawable module_ext_shadow_bkg_pressed 0x7f0800fd +int drawable module_hmi_autopilot_status_bg 0x7f0800fe +int drawable module_hmi_autopilot_status_checked_bg 0x7f0800ff +int drawable module_hmi_autopilot_status_disabled_bg 0x7f080100 +int drawable module_hmi_autopilot_status_enable_bg 0x7f080101 +int drawable module_hmi_warning_bkg_bottom 0x7f080102 +int drawable module_hmi_warning_bkg_left 0x7f080103 +int drawable module_hmi_warning_bkg_right 0x7f080104 +int drawable module_hmi_warning_bkg_right_bottom 0x7f080105 +int drawable module_hmi_warning_bkg_right_top 0x7f080106 +int drawable module_hmi_warning_bkg_top 0x7f080107 +int drawable module_services_marker_bkg 0x7f080108 +int drawable module_services_marker_vr_bkg 0x7f080109 +int drawable module_services_marker_vr_bkg_checked 0x7f08010a +int drawable module_small_map_view_border 0x7f08010b +int drawable module_small_map_view_border_north 0x7f08010c +int drawable module_small_map_view_my_location_logo 0x7f08010d +int drawable module_switch_map_angle 0x7f08010e +int drawable module_switch_map_bg 0x7f08010f +int drawable mogo_image_accident_small 0x7f080110 +int drawable mogo_image_daolushigong_nor 0x7f080111 +int drawable mogo_image_daolushigong_small 0x7f080112 +int drawable mogo_image_fenglu_nor 0x7f080113 +int drawable mogo_image_fenglu_small 0x7f080114 +int drawable mogo_image_jiaotongjiancha_nor 0x7f080115 +int drawable mogo_image_jiaotongjiancha_small 0x7f080116 +int drawable mogo_image_jiaotongshigu_nor 0x7f080117 +int drawable mogo_image_jiebing_nor 0x7f080118 +int drawable mogo_image_jiebing_small 0x7f080119 +int drawable mogo_image_jishui_nor 0x7f08011a +int drawable mogo_image_jishui_small 0x7f08011b +int drawable mogo_image_nongwu_nor 0x7f08011c +int drawable mogo_image_nongwu_small 0x7f08011d +int drawable mogo_image_shishilukuang_small 0x7f08011e +int drawable mogo_image_shishlukuang_nor 0x7f08011f +int drawable mogo_image_yongdu_nor 0x7f080120 +int drawable mogo_image_yongdu_small 0x7f080121 +int drawable mtrl_dialog_background 0x7f080122 +int drawable mtrl_dropdown_arrow 0x7f080123 +int drawable mtrl_ic_arrow_drop_down 0x7f080124 +int drawable mtrl_ic_arrow_drop_up 0x7f080125 +int drawable mtrl_ic_cancel 0x7f080126 +int drawable mtrl_ic_error 0x7f080127 +int drawable mtrl_navigation_bar_item_background 0x7f080128 +int drawable mtrl_popupmenu_background 0x7f080129 +int drawable mtrl_popupmenu_background_dark 0x7f08012a +int drawable mtrl_tabs_default_indicator 0x7f08012b +int drawable navigation_empty_icon 0x7f08012c +int drawable notice_banner_default 0x7f08012d +int drawable notice_banner_icon_video 0x7f08012e +int drawable notice_player_ic_circle_nor 0x7f08012f +int drawable notice_seekbar_style 0x7f080130 +int drawable notice_video_after_pause 0x7f080131 +int drawable notice_video_pause 0x7f080132 +int drawable notice_video_play 0x7f080133 +int drawable notification_action_background 0x7f080134 +int drawable notification_bg 0x7f080135 +int drawable notification_bg_low 0x7f080136 +int drawable notification_bg_low_normal 0x7f080137 +int drawable notification_bg_low_pressed 0x7f080138 +int drawable notification_bg_normal 0x7f080139 +int drawable notification_bg_normal_pressed 0x7f08013a +int drawable notification_icon_background 0x7f08013b +int drawable notification_template_icon_bg 0x7f08013c +int drawable notification_template_icon_low_bg 0x7f08013d +int drawable notification_tile_bg 0x7f08013e +int drawable notify_panel_notification_icon_bg 0x7f08013f +int drawable placeholder 0x7f080140 +int drawable selector_call_btn_normal 0x7f080141 +int drawable selector_call_btn_pressed 0x7f080142 +int drawable test_custom_background 0x7f080143 +int drawable tooltip_frame_dark 0x7f080144 +int drawable tooltip_frame_light 0x7f080145 +int drawable top_left 0x7f080146 +int drawable unlock 0x7f080147 +int drawable utils_toast_bg 0x7f080148 +int drawable v2x_icon_car_collide_warning 0x7f080149 +int drawable v2x_icon_daolushigong_vr 0x7f08014a +int drawable v2x_icon_fenglu_vr 0x7f08014b +int drawable v2x_icon_jiaotongjiancha_vr 0x7f08014c +int drawable v2x_icon_jiaotongshigu_vr 0x7f08014d +int drawable v2x_icon_jiebing_vr 0x7f08014e +int drawable v2x_icon_jishui_vr 0x7f08014f +int drawable v2x_icon_live_logo 0x7f080150 +int drawable v2x_icon_nongwu_vr 0x7f080151 +int drawable v2x_icon_yongdu_vr 0x7f080152 +int drawable v_to_x_event_ugc_yongdu 0x7f080153 +int drawable v_to_x_marker_1 0x7f080154 +int drawable v_to_x_marker_11 0x7f080155 +int drawable v_to_x_marker_16 0x7f080156 +int drawable v_to_x_marker_2 0x7f080157 +int drawable v_to_x_marker_3 0x7f080158 +int drawable v_to_x_marker_5 0x7f080159 +int drawable v_to_x_marker_6 0x7f08015a +int drawable v_to_x_marker_7 0x7f08015b +int drawable v_to_x_marker_8 0x7f08015c +int drawable v_to_x_marker_9 0x7f08015d +int drawable v_to_x_warning_car_red 0x7f08015e +int drawable video_back 0x7f08015f +int drawable video_backward_icon 0x7f080160 +int drawable video_brightness_6_white_36dp 0x7f080161 +int drawable video_click_error_selector 0x7f080162 +int drawable video_click_pause_selector 0x7f080163 +int drawable video_click_play_selector 0x7f080164 +int drawable video_dialog_progress 0x7f080165 +int drawable video_dialog_progress_bg 0x7f080166 +int drawable video_enlarge 0x7f080167 +int drawable video_error_normal 0x7f080168 +int drawable video_error_pressed 0x7f080169 +int drawable video_forward_icon 0x7f08016a +int drawable video_jump_btn_bg 0x7f08016b +int drawable video_loading 0x7f08016c +int drawable video_loading_bg 0x7f08016d +int drawable video_pause_normal 0x7f08016e +int drawable video_pause_pressed 0x7f08016f +int drawable video_play_normal 0x7f080170 +int drawable video_play_pressed 0x7f080171 +int drawable video_progress 0x7f080172 +int drawable video_seek_progress 0x7f080173 +int drawable video_seek_thumb 0x7f080174 +int drawable video_seek_thumb_normal 0x7f080175 +int drawable video_seek_thumb_pressed 0x7f080176 +int drawable video_shrink 0x7f080177 +int drawable video_small_close 0x7f080178 +int drawable video_title_bg 0x7f080179 +int drawable video_volume_icon 0x7f08017a +int drawable video_volume_progress_bg 0x7f08017b +int drawable yi_biao_pan_bg_nor 0x7f08017c +int drawable yi_biao_pan_bg_speeding 0x7f08017d +int id BOTTOM_END 0x7f0b0001 +int id BOTTOM_START 0x7f0b0002 +int id NO_DEBUG 0x7f0b0003 +int id SHOW_ALL 0x7f0b0004 +int id SHOW_PATH 0x7f0b0005 +int id SHOW_PROGRESS 0x7f0b0006 +int id TOP_END 0x7f0b0007 +int id TOP_START 0x7f0b0008 +int id accelerate 0x7f0b0009 +int id accessibility_action_clickable_span 0x7f0b000a +int id accessibility_custom_action_0 0x7f0b000b +int id accessibility_custom_action_1 0x7f0b000c +int id accessibility_custom_action_10 0x7f0b000d +int id accessibility_custom_action_11 0x7f0b000e +int id accessibility_custom_action_12 0x7f0b000f +int id accessibility_custom_action_13 0x7f0b0010 +int id accessibility_custom_action_14 0x7f0b0011 +int id accessibility_custom_action_15 0x7f0b0012 +int id accessibility_custom_action_16 0x7f0b0013 +int id accessibility_custom_action_17 0x7f0b0014 +int id accessibility_custom_action_18 0x7f0b0015 +int id accessibility_custom_action_19 0x7f0b0016 +int id accessibility_custom_action_2 0x7f0b0017 +int id accessibility_custom_action_20 0x7f0b0018 +int id accessibility_custom_action_21 0x7f0b0019 +int id accessibility_custom_action_22 0x7f0b001a +int id accessibility_custom_action_23 0x7f0b001b +int id accessibility_custom_action_24 0x7f0b001c +int id accessibility_custom_action_25 0x7f0b001d +int id accessibility_custom_action_26 0x7f0b001e +int id accessibility_custom_action_27 0x7f0b001f +int id accessibility_custom_action_28 0x7f0b0020 +int id accessibility_custom_action_29 0x7f0b0021 +int id accessibility_custom_action_3 0x7f0b0022 +int id accessibility_custom_action_30 0x7f0b0023 +int id accessibility_custom_action_31 0x7f0b0024 +int id accessibility_custom_action_4 0x7f0b0025 +int id accessibility_custom_action_5 0x7f0b0026 +int id accessibility_custom_action_6 0x7f0b0027 +int id accessibility_custom_action_7 0x7f0b0028 +int id accessibility_custom_action_8 0x7f0b0029 +int id accessibility_custom_action_9 0x7f0b002a +int id actionDown 0x7f0b002b +int id actionDownUp 0x7f0b002c +int id actionUp 0x7f0b002d +int id action_bar 0x7f0b002e +int id action_bar_activity_content 0x7f0b002f +int id action_bar_container 0x7f0b0030 +int id action_bar_root 0x7f0b0031 +int id action_bar_spinner 0x7f0b0032 +int id action_bar_subtitle 0x7f0b0033 +int id action_bar_title 0x7f0b0034 +int id action_container 0x7f0b0035 +int id action_context_bar 0x7f0b0036 +int id action_divider 0x7f0b0037 +int id action_image 0x7f0b0038 +int id action_menu_divider 0x7f0b0039 +int id action_menu_presenter 0x7f0b003a +int id action_mode_bar 0x7f0b003b +int id action_mode_bar_stub 0x7f0b003c +int id action_mode_close_button 0x7f0b003d +int id action_text 0x7f0b003e +int id actions 0x7f0b003f +int id activity_chooser_view_content 0x7f0b0040 +int id ad_full_id 0x7f0b0041 +int id ad_small_id 0x7f0b0042 +int id ad_time 0x7f0b0043 +int id add 0x7f0b0044 +int id alertTitle 0x7f0b0045 +int id aligned 0x7f0b0046 +int id allStates 0x7f0b0047 +int id animateToEnd 0x7f0b0048 +int id animateToStart 0x7f0b0049 +int id antiClockwise 0x7f0b004a +int id anticipate 0x7f0b004b +int id app_video_brightness 0x7f0b004c +int id app_video_brightness_box 0x7f0b004d +int id app_video_brightness_icon 0x7f0b004e +int id arc 0x7f0b004f +int id asConfigured 0x7f0b0050 +int id async 0x7f0b0051 +int id auto 0x7f0b0052 +int id autoComplete 0x7f0b0053 +int id autoCompleteToEnd 0x7f0b0054 +int id autoCompleteToStart 0x7f0b0055 +int id back 0x7f0b0056 +int id back_tiny 0x7f0b0057 +int id barrier 0x7f0b0058 +int id baseline 0x7f0b0059 +int id bestChoice 0x7f0b005a +int id blocking 0x7f0b005b +int id bottom 0x7f0b005c +int id bottom_progressbar 0x7f0b005d +int id bounce 0x7f0b005e +int id buttonPanel 0x7f0b005f +int id cancel_button 0x7f0b0060 +int id carryVelocity 0x7f0b0061 +int id center 0x7f0b0062 +int id centerCrop 0x7f0b0063 +int id centerInside 0x7f0b0064 +int id chain 0x7f0b0065 +int id checkbox 0x7f0b0066 +int id checked 0x7f0b0067 +int id chip 0x7f0b0068 +int id chip1 0x7f0b0069 +int id chip2 0x7f0b006a +int id chip3 0x7f0b006b +int id chip_group 0x7f0b006c +int id chronometer 0x7f0b006d +int id circle 0x7f0b006e +int id circle_center 0x7f0b006f +int id clear_text 0x7f0b0070 +int id clockwise 0x7f0b0071 +int id closest 0x7f0b0072 +int id color 0x7f0b0073 +int id confirm_button 0x7f0b0074 +int id constraint 0x7f0b0075 +int id container 0x7f0b0076 +int id content 0x7f0b0077 +int id contentPanel 0x7f0b0078 +int id contiguous 0x7f0b0079 +int id continuousVelocity 0x7f0b007a +int id coordinator 0x7f0b007b +int id cos 0x7f0b007c +int id counterclockwise 0x7f0b007d +int id current 0x7f0b007e +int id currentState 0x7f0b007f +int id custom 0x7f0b0080 +int id customPanel 0x7f0b0081 +int id cut 0x7f0b0082 +int id dash 0x7f0b0083 +int id date_picker_actions 0x7f0b0084 +int id decelerate 0x7f0b0085 +int id decelerateAndComplete 0x7f0b0086 +int id decor_content_parent 0x7f0b0087 +int id default_activity_button 0x7f0b0088 +int id deltaRelative 0x7f0b0089 +int id design_bottom_sheet 0x7f0b008a +int id design_menu_item_action_area 0x7f0b008b +int id design_menu_item_action_area_stub 0x7f0b008c +int id design_menu_item_text 0x7f0b008d +int id design_navigation_view 0x7f0b008e +int id dialog_button 0x7f0b008f +int id disjoint 0x7f0b0090 +int id dragAnticlockwise 0x7f0b0091 +int id dragClockwise 0x7f0b0092 +int id dragDown 0x7f0b0093 +int id dragEnd 0x7f0b0094 +int id dragLeft 0x7f0b0095 +int id dragRight 0x7f0b0096 +int id dragStart 0x7f0b0097 +int id dragUp 0x7f0b0098 +int id dropdown_menu 0x7f0b0099 +int id duration_image_tip 0x7f0b009a +int id duration_progressbar 0x7f0b009b +int id easeIn 0x7f0b009c +int id easeInOut 0x7f0b009d +int id easeOut 0x7f0b009e +int id east 0x7f0b009f +int id edit_query 0x7f0b00a0 +int id elastic 0x7f0b00a1 +int id end 0x7f0b00a2 +int id endToStart 0x7f0b00a3 +int id exo_artwork 0x7f0b00a4 +int id exo_content_frame 0x7f0b00a5 +int id exo_controller_placeholder 0x7f0b00a6 +int id exo_duration 0x7f0b00a7 +int id exo_ffwd 0x7f0b00a8 +int id exo_next 0x7f0b00a9 +int id exo_overlay 0x7f0b00aa +int id exo_pause 0x7f0b00ab +int id exo_play 0x7f0b00ac +int id exo_position 0x7f0b00ad +int id exo_prev 0x7f0b00ae +int id exo_progress 0x7f0b00af +int id exo_rew 0x7f0b00b0 +int id exo_shutter 0x7f0b00b1 +int id exo_subtitles 0x7f0b00b2 +int id expand_activities_button 0x7f0b00b3 +int id expanded_menu 0x7f0b00b4 +int id fade 0x7f0b00b5 +int id fill 0x7f0b00b6 +int id filled 0x7f0b00b7 +int id fit 0x7f0b00b8 +int id fitBottomStart 0x7f0b00b9 +int id fitCenter 0x7f0b00ba +int id fitEnd 0x7f0b00bb +int id fitStart 0x7f0b00bc +int id fitXY 0x7f0b00bd +int id fixed 0x7f0b00be +int id fixed_height 0x7f0b00bf +int id fixed_width 0x7f0b00c0 +int id flip 0x7f0b00c1 +int id floating 0x7f0b00c2 +int id focusCrop 0x7f0b00c3 +int id forever 0x7f0b00c4 +int id fragment_container_view_tag 0x7f0b00c5 +int id frost 0x7f0b00c6 +int id full_id 0x7f0b00c7 +int id fullscreen 0x7f0b00c8 +int id ghost_view 0x7f0b00c9 +int id ghost_view_holder 0x7f0b00ca +int id glide_custom_view_target_tag 0x7f0b00cb +int id gone 0x7f0b00cc +int id group_divider 0x7f0b00cd +int id guideline 0x7f0b00ce +int id header_title 0x7f0b00cf +int id home 0x7f0b00d0 +int id honorRequest 0x7f0b00d1 +int id horizontal 0x7f0b00d2 +int id horizontal_only 0x7f0b00d3 +int id icon 0x7f0b00d4 +int id icon_group 0x7f0b00d5 +int id ignore 0x7f0b00d6 +int id ignoreRequest 0x7f0b00d7 +int id image 0x7f0b00d8 +int id immediateStop 0x7f0b00d9 +int id included 0x7f0b00da +int id info 0x7f0b00db +int id invisible 0x7f0b00dc +int id inward 0x7f0b00dd +int id italic 0x7f0b00de +int id item_touch_helper_previous_elevation 0x7f0b00df +int id item_video_cover 0x7f0b00e0 +int id jumpToEnd 0x7f0b00e1 +int id jumpToStart 0x7f0b00e2 +int id jump_ad 0x7f0b00e3 +int id labeled 0x7f0b00e4 +int id layout 0x7f0b00e5 +int id layout_bottom 0x7f0b00e6 +int id layout_top 0x7f0b00e7 +int id left 0x7f0b00e8 +int id leftToRight 0x7f0b00e9 +int id line1 0x7f0b00ea +int id line3 0x7f0b00eb +int id linear 0x7f0b00ec +int id listMode 0x7f0b00ed +int id list_item 0x7f0b00ee +int id loading 0x7f0b00ef +int id lock_screen 0x7f0b00f0 +int id masked 0x7f0b00f1 +int id match_constraint 0x7f0b00f2 +int id match_parent 0x7f0b00f3 +int id material_clock_display 0x7f0b00f4 +int id material_clock_face 0x7f0b00f5 +int id material_clock_hand 0x7f0b00f6 +int id material_clock_period_am_button 0x7f0b00f7 +int id material_clock_period_pm_button 0x7f0b00f8 +int id material_clock_period_toggle 0x7f0b00f9 +int id material_hour_text_input 0x7f0b00fa +int id material_hour_tv 0x7f0b00fb +int id material_label 0x7f0b00fc +int id material_minute_text_input 0x7f0b00fd +int id material_minute_tv 0x7f0b00fe +int id material_textinput_timepicker 0x7f0b00ff +int id material_timepicker_cancel_button 0x7f0b0100 +int id material_timepicker_container 0x7f0b0101 +int id material_timepicker_edit_text 0x7f0b0102 +int id material_timepicker_mode_button 0x7f0b0103 +int id material_timepicker_ok_button 0x7f0b0104 +int id material_timepicker_view 0x7f0b0105 +int id material_value_index 0x7f0b0106 +int id message 0x7f0b0107 +int id middle 0x7f0b0108 +int id mini 0x7f0b0109 +int id module_commons_toast_left_drawable 0x7f0b010a +int id module_commons_toast_msg 0x7f0b010b +int id month_grid 0x7f0b010c +int id month_navigation_bar 0x7f0b010d +int id month_navigation_fragment_toggle 0x7f0b010e +int id month_navigation_next 0x7f0b010f +int id month_navigation_previous 0x7f0b0110 +int id month_title 0x7f0b0111 +int id motion_base 0x7f0b0112 +int id mtrl_anchor_parent 0x7f0b0113 +int id mtrl_calendar_day_selector_frame 0x7f0b0114 +int id mtrl_calendar_days_of_week 0x7f0b0115 +int id mtrl_calendar_frame 0x7f0b0116 +int id mtrl_calendar_main_pane 0x7f0b0117 +int id mtrl_calendar_months 0x7f0b0118 +int id mtrl_calendar_selection_frame 0x7f0b0119 +int id mtrl_calendar_text_input_frame 0x7f0b011a +int id mtrl_calendar_year_selector_frame 0x7f0b011b +int id mtrl_card_checked_layer_id 0x7f0b011c +int id mtrl_child_content_container 0x7f0b011d +int id mtrl_internal_children_alpha_tag 0x7f0b011e +int id mtrl_motion_snapshot_view 0x7f0b011f +int id mtrl_picker_fullscreen 0x7f0b0120 +int id mtrl_picker_header 0x7f0b0121 +int id mtrl_picker_header_selection_text 0x7f0b0122 +int id mtrl_picker_header_title_and_selection 0x7f0b0123 +int id mtrl_picker_header_toggle 0x7f0b0124 +int id mtrl_picker_text_input_date 0x7f0b0125 +int id mtrl_picker_text_input_range_end 0x7f0b0126 +int id mtrl_picker_text_input_range_start 0x7f0b0127 +int id mtrl_picker_title_text 0x7f0b0128 +int id mtrl_view_tag_bottom_padding 0x7f0b0129 +int id multiply 0x7f0b012a +int id navigation_bar_item_icon_view 0x7f0b012b +int id navigation_bar_item_labels_group 0x7f0b012c +int id navigation_bar_item_large_label_view 0x7f0b012d +int id navigation_bar_item_small_label_view 0x7f0b012e +int id navigation_header_container 0x7f0b012f +int id neverCompleteToEnd 0x7f0b0130 +int id neverCompleteToStart 0x7f0b0131 +int id noState 0x7f0b0132 +int id none 0x7f0b0133 +int id normal 0x7f0b0134 +int id north 0x7f0b0135 +int id notification_background 0x7f0b0136 +int id notification_main_column 0x7f0b0137 +int id notification_main_column_container 0x7f0b0138 +int id off 0x7f0b0139 +int id on 0x7f0b013a +int id outline 0x7f0b013b +int id outward 0x7f0b013c +int id overshoot 0x7f0b013d +int id packed 0x7f0b013e +int id parallax 0x7f0b013f +int id parent 0x7f0b0140 +int id parentPanel 0x7f0b0141 +int id parentRelative 0x7f0b0142 +int id parent_matrix 0x7f0b0143 +int id password_toggle 0x7f0b0144 +int id path 0x7f0b0145 +int id pathRelative 0x7f0b0146 +int id percent 0x7f0b0147 +int id pin 0x7f0b0148 +int id position 0x7f0b0149 +int id postLayout 0x7f0b014a +int id preview_layout 0x7f0b014b +int id progress 0x7f0b014c +int id progress_circular 0x7f0b014d +int id progress_horizontal 0x7f0b014e +int id radio 0x7f0b014f +int id rectangles 0x7f0b0150 +int id reverseSawtooth 0x7f0b0151 +int id right 0x7f0b0152 +int id rightToLeft 0x7f0b0153 +int id right_icon 0x7f0b0154 +int id right_side 0x7f0b0155 +int id round 0x7f0b0156 +int id round_rect 0x7f0b0157 +int id rounded 0x7f0b0158 +int id row_index_key 0x7f0b0159 +int id rtl 0x7f0b015a +int id save_non_transition_alpha 0x7f0b015b +int id save_overlay_view 0x7f0b015c +int id sawtooth 0x7f0b015d +int id scale 0x7f0b015e +int id screen 0x7f0b015f +int id scrollIndicatorDown 0x7f0b0160 +int id scrollIndicatorUp 0x7f0b0161 +int id scrollView 0x7f0b0162 +int id scrollable 0x7f0b0163 +int id search_badge 0x7f0b0164 +int id search_bar 0x7f0b0165 +int id search_button 0x7f0b0166 +int id search_close_btn 0x7f0b0167 +int id search_edit_frame 0x7f0b0168 +int id search_go_btn 0x7f0b0169 +int id search_mag_icon 0x7f0b016a +int id search_plate 0x7f0b016b +int id search_src_text 0x7f0b016c +int id search_voice_btn 0x7f0b016d +int id select_dialog_listview 0x7f0b016e +int id selected 0x7f0b016f +int id selection_type 0x7f0b0170 +int id shape_left_top 0x7f0b0171 +int id shape_right_top 0x7f0b0172 +int id sharedValueSet 0x7f0b0173 +int id sharedValueUnset 0x7f0b0174 +int id shortcut 0x7f0b0175 +int id sin 0x7f0b0176 +int id skipped 0x7f0b0177 +int id slide 0x7f0b0178 +int id small_close 0x7f0b0179 +int id small_id 0x7f0b017a +int id smooth 0x7f0b017b +int id snackbar_action 0x7f0b017c +int id snackbar_text 0x7f0b017d +int id south 0x7f0b017e +int id spacer 0x7f0b017f +int id special_effects_controller_view_tag 0x7f0b0180 +int id spline 0x7f0b0181 +int id split_action_bar 0x7f0b0182 +int id spread 0x7f0b0183 +int id spread_inside 0x7f0b0184 +int id spring 0x7f0b0185 +int id square 0x7f0b0186 +int id src_atop 0x7f0b0187 +int id src_in 0x7f0b0188 +int id src_over 0x7f0b0189 +int id standard 0x7f0b018a +int id start 0x7f0b018b +int id startHorizontal 0x7f0b018c +int id startToEnd 0x7f0b018d +int id startVertical 0x7f0b018e +int id staticLayout 0x7f0b018f +int id staticPostLayout 0x7f0b0190 +int id stop 0x7f0b0191 +int id stretch 0x7f0b0192 +int id submenuarrow 0x7f0b0193 +int id submit_area 0x7f0b0194 +int id surface_container 0x7f0b0195 +int id surface_view 0x7f0b0196 +int id tabMode 0x7f0b0197 +int id tag_accessibility_actions 0x7f0b0198 +int id tag_accessibility_clickable_spans 0x7f0b0199 +int id tag_accessibility_heading 0x7f0b019a +int id tag_accessibility_pane_title 0x7f0b019b +int id tag_click_time 0x7f0b019c +int id tag_on_apply_window_listener 0x7f0b019d +int id tag_on_receive_content_listener 0x7f0b019e +int id tag_on_receive_content_mime_types 0x7f0b019f +int id tag_screen_reader_focusable 0x7f0b01a0 +int id tag_state_description 0x7f0b01a1 +int id tag_transition_group 0x7f0b01a2 +int id tag_unhandled_key_event_manager 0x7f0b01a3 +int id tag_unhandled_key_listeners 0x7f0b01a4 +int id tag_window_insets_animation_callback 0x7f0b01a5 +int id test_checkbox_android_button_tint 0x7f0b01a6 +int id test_checkbox_app_button_tint 0x7f0b01a7 +int id test_radiobutton_android_button_tint 0x7f0b01a8 +int id test_radiobutton_app_button_tint 0x7f0b01a9 +int id text 0x7f0b01aa +int id text2 0x7f0b01ab +int id textSpacerNoButtons 0x7f0b01ac +int id textSpacerNoTitle 0x7f0b01ad +int id text_input_end_icon 0x7f0b01ae +int id text_input_error_icon 0x7f0b01af +int id text_input_start_icon 0x7f0b01b0 +int id textinput_counter 0x7f0b01b1 +int id textinput_error 0x7f0b01b2 +int id textinput_helper_text 0x7f0b01b3 +int id textinput_placeholder 0x7f0b01b4 +int id textinput_prefix_text 0x7f0b01b5 +int id textinput_suffix_text 0x7f0b01b6 +int id texture_view 0x7f0b01b7 +int id thumb 0x7f0b01b8 +int id thumbImage 0x7f0b01b9 +int id time 0x7f0b01ba +int id title 0x7f0b01bb +int id titleDividerNoCustom 0x7f0b01bc +int id title_template 0x7f0b01bd +int id top 0x7f0b01be +int id topPanel 0x7f0b01bf +int id total 0x7f0b01c0 +int id touch_outside 0x7f0b01c1 +int id transition_current_scene 0x7f0b01c2 +int id transition_layout_save 0x7f0b01c3 +int id transition_position 0x7f0b01c4 +int id transition_scene_layoutid_cache 0x7f0b01c5 +int id transition_transform 0x7f0b01c6 +int id triangle 0x7f0b01c7 +int id tv_current 0x7f0b01c8 +int id tv_duration 0x7f0b01c9 +int id unchecked 0x7f0b01ca +int id uniform 0x7f0b01cb +int id unlabeled 0x7f0b01cc +int id up 0x7f0b01cd +int id utvBottomIconView 0x7f0b01ce +int id utvLeftIconView 0x7f0b01cf +int id utvRightIconView 0x7f0b01d0 +int id utvTopIconView 0x7f0b01d1 +int id vertical 0x7f0b01d2 +int id vertical_only 0x7f0b01d3 +int id view_lifecycle_owner 0x7f0b01d4 +int id view_offset_helper 0x7f0b01d5 +int id view_transition 0x7f0b01d6 +int id view_tree_lifecycle_owner 0x7f0b01d7 +int id view_tree_saved_state_registry_owner 0x7f0b01d8 +int id view_tree_view_model_store_owner 0x7f0b01d9 +int id visible 0x7f0b01da +int id visible_removing_fragment_view_tag 0x7f0b01db +int id volume_progressbar 0x7f0b01dc +int id west 0x7f0b01dd +int id widget_container 0x7f0b01de +int id withinBounds 0x7f0b01df +int id worm 0x7f0b01e0 +int id wrap 0x7f0b01e1 +int id wrap_content 0x7f0b01e2 +int id wrap_content_constrained 0x7f0b01e3 +int id x_left 0x7f0b01e4 +int id x_right 0x7f0b01e5 +int id zero_corner_chip 0x7f0b01e6 +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 material_motion_duration_long_1 0x7f0c000a +int integer material_motion_duration_long_2 0x7f0c000b +int integer material_motion_duration_medium_1 0x7f0c000c +int integer material_motion_duration_medium_2 0x7f0c000d +int integer material_motion_duration_short_1 0x7f0c000e +int integer material_motion_duration_short_2 0x7f0c000f +int integer material_motion_path 0x7f0c0010 +int integer mtrl_badge_max_character_count 0x7f0c0011 +int integer mtrl_btn_anim_delay_ms 0x7f0c0012 +int integer mtrl_btn_anim_duration_ms 0x7f0c0013 +int integer mtrl_calendar_header_orientation 0x7f0c0014 +int integer mtrl_calendar_selection_text_lines 0x7f0c0015 +int integer mtrl_calendar_year_selector_span 0x7f0c0016 +int integer mtrl_card_anim_delay_ms 0x7f0c0017 +int integer mtrl_card_anim_duration_ms 0x7f0c0018 +int integer mtrl_chip_anim_duration 0x7f0c0019 +int integer mtrl_tab_indicator_anim_duration_ms 0x7f0c001a +int integer show_password_duration 0x7f0c001b +int integer status_bar_notification_info_maxnum 0x7f0c001c +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 custom_dialog 0x7f0e001d +int layout design_bottom_navigation_item 0x7f0e001e +int layout design_bottom_sheet_dialog 0x7f0e001f +int layout design_layout_snackbar 0x7f0e0020 +int layout design_layout_snackbar_include 0x7f0e0021 +int layout design_layout_tab_icon 0x7f0e0022 +int layout design_layout_tab_text 0x7f0e0023 +int layout design_menu_item_action_area 0x7f0e0024 +int layout design_navigation_item 0x7f0e0025 +int layout design_navigation_item_header 0x7f0e0026 +int layout design_navigation_item_separator 0x7f0e0027 +int layout design_navigation_item_subheader 0x7f0e0028 +int layout design_navigation_menu 0x7f0e0029 +int layout design_navigation_menu_item 0x7f0e002a +int layout design_text_input_end_icon 0x7f0e002b +int layout design_text_input_start_icon 0x7f0e002c +int layout exo_playback_control_view 0x7f0e002d +int layout exo_simple_player_view 0x7f0e002e +int layout item_notice_video 0x7f0e002f +int layout item_notice_video_small 0x7f0e0030 +int layout item_v2x_crossroad_live_video 0x7f0e0031 +int layout material_chip_input_combo 0x7f0e0032 +int layout material_clock_display 0x7f0e0033 +int layout material_clock_display_divider 0x7f0e0034 +int layout material_clock_period_toggle 0x7f0e0035 +int layout material_clock_period_toggle_land 0x7f0e0036 +int layout material_clockface_textview 0x7f0e0037 +int layout material_clockface_view 0x7f0e0038 +int layout material_radial_view_group 0x7f0e0039 +int layout material_textinput_timepicker 0x7f0e003a +int layout material_time_chip 0x7f0e003b +int layout material_time_input 0x7f0e003c +int layout material_timepicker 0x7f0e003d +int layout material_timepicker_dialog 0x7f0e003e +int layout material_timepicker_textinput_display 0x7f0e003f +int layout module_commons_layout_toast 0x7f0e0040 +int layout module_commons_layout_toast_with_left_drawable 0x7f0e0041 +int layout mtrl_alert_dialog 0x7f0e0042 +int layout mtrl_alert_dialog_actions 0x7f0e0043 +int layout mtrl_alert_dialog_title 0x7f0e0044 +int layout mtrl_alert_select_dialog_item 0x7f0e0045 +int layout mtrl_alert_select_dialog_multichoice 0x7f0e0046 +int layout mtrl_alert_select_dialog_singlechoice 0x7f0e0047 +int layout mtrl_calendar_day 0x7f0e0048 +int layout mtrl_calendar_day_of_week 0x7f0e0049 +int layout mtrl_calendar_days_of_week 0x7f0e004a +int layout mtrl_calendar_horizontal 0x7f0e004b +int layout mtrl_calendar_month 0x7f0e004c +int layout mtrl_calendar_month_labeled 0x7f0e004d +int layout mtrl_calendar_month_navigation 0x7f0e004e +int layout mtrl_calendar_months 0x7f0e004f +int layout mtrl_calendar_vertical 0x7f0e0050 +int layout mtrl_calendar_year 0x7f0e0051 +int layout mtrl_layout_snackbar 0x7f0e0052 +int layout mtrl_layout_snackbar_include 0x7f0e0053 +int layout mtrl_navigation_rail_item 0x7f0e0054 +int layout mtrl_picker_actions 0x7f0e0055 +int layout mtrl_picker_dialog 0x7f0e0056 +int layout mtrl_picker_fullscreen 0x7f0e0057 +int layout mtrl_picker_header_dialog 0x7f0e0058 +int layout mtrl_picker_header_fullscreen 0x7f0e0059 +int layout mtrl_picker_header_selection_text 0x7f0e005a +int layout mtrl_picker_header_title_text 0x7f0e005b +int layout mtrl_picker_header_toggle 0x7f0e005c +int layout mtrl_picker_text_input_date 0x7f0e005d +int layout mtrl_picker_text_input_date_range 0x7f0e005e +int layout notice_video_card_layout 0x7f0e005f +int layout notification_action 0x7f0e0060 +int layout notification_action_tombstone 0x7f0e0061 +int layout notification_template_custom_big 0x7f0e0062 +int layout notification_template_icon_group 0x7f0e0063 +int layout notification_template_part_chronometer 0x7f0e0064 +int layout notification_template_part_time 0x7f0e0065 +int layout select_dialog_item_material 0x7f0e0066 +int layout select_dialog_multichoice_material 0x7f0e0067 +int layout select_dialog_singlechoice_material 0x7f0e0068 +int layout support_simple_spinner_dropdown_item 0x7f0e0069 +int layout test_action_chip 0x7f0e006a +int layout test_chip_zero_corner_radius 0x7f0e006b +int layout test_design_checkbox 0x7f0e006c +int layout test_design_radiobutton 0x7f0e006d +int layout test_navigation_bar_item_layout 0x7f0e006e +int layout test_reflow_chipgroup 0x7f0e006f +int layout test_toolbar 0x7f0e0070 +int layout test_toolbar_custom_background 0x7f0e0071 +int layout test_toolbar_elevation 0x7f0e0072 +int layout test_toolbar_surface 0x7f0e0073 +int layout text_view_with_line_height_from_appearance 0x7f0e0074 +int layout text_view_with_line_height_from_layout 0x7f0e0075 +int layout text_view_with_line_height_from_style 0x7f0e0076 +int layout text_view_with_theme_line_height 0x7f0e0077 +int layout text_view_without_line_height 0x7f0e0078 +int layout utils_toast_view 0x7f0e0079 +int layout video_brightness 0x7f0e007a +int layout video_layout_ad 0x7f0e007b +int layout video_layout_custom 0x7f0e007c +int layout video_layout_normal 0x7f0e007d +int layout video_layout_sample_ad 0x7f0e007e +int layout video_layout_standard 0x7f0e007f +int layout video_progress_dialog 0x7f0e0080 +int layout video_volume_dialog 0x7f0e0081 +int plurals mtrl_badge_content_description 0x7f120001 +int raw chuzuche 0x7f130001 +int raw fangkuang 0x7f130002 +int raw hq_h9 0x7f130003 +int raw jiantou 0x7f130004 +int raw qfpz 0x7f130005 +int raw sanjiaozhui 0x7f130006 +int raw shexiangtou 0x7f130007 +int raw special_vehicle 0x7f130008 +int raw stopline 0x7f130009 +int raw traffic_daba 0x7f13000a +int raw traffic_daba_day 0x7f13000b +int raw traffic_kache 0x7f13000c +int raw traffic_motuoche 0x7f13000d +int raw traffic_motuoche_day 0x7f13000e +int raw traffic_people 0x7f13000f +int raw traffic_people_day 0x7f130010 +int raw traffic_tachexiaoche 0x7f130011 +int raw traffic_tachexiaoche_day 0x7f130012 +int raw traffic_unkonwn 0x7f130013 +int raw traffic_xiankuang 0x7f130014 +int raw traffic_ziche_day 0x7f130015 +int raw traffic_zixingche 0x7f130016 +int raw traffic_zixingche_day 0x7f130017 +int raw v2x_daolujiebing 0x7f130018 +int raw v2x_daolujishui 0x7f130019 +int raw v2x_daolushigong 0x7f13001a +int raw v2x_guzhangqiuzhu 0x7f13001b +int raw v2x_jiaotongjiancha 0x7f13001c +int raw v2x_nongwu 0x7f13001d +int raw v2x_shigong_warning 0x7f13001e +int raw v2x_shigu 0x7f13001f +int raw v2x_shishilukuang 0x7f130020 +int raw v2x_yongdu 0x7f130021 +int raw xiaobache 0x7f130022 +int raw xingren 0x7f130023 +int raw xingren_night 0x7f130024 +int raw ziche 0x7f130025 +int string N_A 0x7f140001 +int string TrackType_audio 0x7f140002 +int string TrackType_metadata 0x7f140003 +int string TrackType_subtitle 0x7f140004 +int string TrackType_timedtext 0x7f140005 +int string TrackType_unknown 0x7f140006 +int string TrackType_video 0x7f140007 +int string VideoView_ar_16_9_fit_parent 0x7f140008 +int string VideoView_ar_4_3_fit_parent 0x7f140009 +int string VideoView_ar_aspect_fill_parent 0x7f14000a +int string VideoView_ar_aspect_fit_parent 0x7f14000b +int string VideoView_ar_aspect_wrap_content 0x7f14000c +int string VideoView_ar_match_parent 0x7f14000d +int string VideoView_error_button 0x7f14000e +int string VideoView_error_text_invalid_progressive_playback 0x7f14000f +int string VideoView_error_text_unknown 0x7f140010 +int string VideoView_info_text_video_not_supported 0x7f140011 +int string VideoView_player_AndroidMediaPlayer 0x7f140012 +int string VideoView_player_IjkExoMediaPlayer 0x7f140013 +int string VideoView_player_IjkMediaPlayer 0x7f140014 +int string VideoView_player_none 0x7f140015 +int string VideoView_render_none 0x7f140016 +int string VideoView_render_surface_view 0x7f140017 +int string VideoView_render_texture_view 0x7f140018 +int string a_cache 0x7f140019 +int string abc_action_bar_home_description 0x7f14001a +int string abc_action_bar_up_description 0x7f14001b +int string abc_action_menu_overflow_description 0x7f14001c +int string abc_action_mode_done 0x7f14001d +int string abc_activity_chooser_view_see_all 0x7f14001e +int string abc_activitychooserview_choose_application 0x7f14001f +int string abc_capital_off 0x7f140020 +int string abc_capital_on 0x7f140021 +int string abc_font_family_body_1_material 0x7f140022 +int string abc_font_family_body_2_material 0x7f140023 +int string abc_font_family_button_material 0x7f140024 +int string abc_font_family_caption_material 0x7f140025 +int string abc_font_family_display_1_material 0x7f140026 +int string abc_font_family_display_2_material 0x7f140027 +int string abc_font_family_display_3_material 0x7f140028 +int string abc_font_family_display_4_material 0x7f140029 +int string abc_font_family_headline_material 0x7f14002a +int string abc_font_family_menu_material 0x7f14002b +int string abc_font_family_subhead_material 0x7f14002c +int string abc_font_family_title_material 0x7f14002d +int string abc_menu_alt_shortcut_label 0x7f14002e +int string abc_menu_ctrl_shortcut_label 0x7f14002f +int string abc_menu_delete_shortcut_label 0x7f140030 +int string abc_menu_enter_shortcut_label 0x7f140031 +int string abc_menu_function_shortcut_label 0x7f140032 +int string abc_menu_meta_shortcut_label 0x7f140033 +int string abc_menu_shift_shortcut_label 0x7f140034 +int string abc_menu_space_shortcut_label 0x7f140035 +int string abc_menu_sym_shortcut_label 0x7f140036 +int string abc_prepend_shortcut_label 0x7f140037 +int string abc_search_hint 0x7f140038 +int string abc_searchview_description_clear 0x7f140039 +int string abc_searchview_description_query 0x7f14003a +int string abc_searchview_description_search 0x7f14003b +int string abc_searchview_description_submit 0x7f14003c +int string abc_searchview_description_voice 0x7f14003d +int string abc_shareactionprovider_share_with 0x7f14003e +int string abc_shareactionprovider_share_with_application 0x7f14003f +int string abc_toolbar_collapse_description 0x7f140040 +int string androidx_startup 0x7f140041 +int string app_name 0x7f140042 +int string appbar_scrolling_view_behavior 0x7f140043 +int string bit_rate 0x7f140044 +int string bottom_sheet_behavior 0x7f140045 +int string bottomsheet_action_expand_halfway 0x7f140046 +int string character_counter_content_description 0x7f140047 +int string character_counter_overflowed_content_description 0x7f140048 +int string character_counter_pattern 0x7f140049 +int string chip_text 0x7f14004a +int string clear_text_end_icon_content_description 0x7f14004b +int string close 0x7f14004c +int string error_icon_content_description 0x7f14004d +int string exit 0x7f14004e +int string exo_controls_fastforward_description 0x7f14004f +int string exo_controls_next_description 0x7f140050 +int string exo_controls_pause_description 0x7f140051 +int string exo_controls_play_description 0x7f140052 +int string exo_controls_previous_description 0x7f140053 +int string exo_controls_rewind_description 0x7f140054 +int string exo_controls_stop_description 0x7f140055 +int string exposed_dropdown_menu_content_description 0x7f140056 +int string fab_transformation_scrim_behavior 0x7f140057 +int string fab_transformation_sheet_behavior 0x7f140058 +int string file_not_support 0x7f140059 +int string fps 0x7f14005a +int string hide_bottom_view_on_scroll_behavior 0x7f14005b +int string icon_content_description 0x7f14005c +int string ijkplayer_dummy 0x7f14005d +int string item_view_role_description 0x7f14005e +int string jump_ad 0x7f14005f +int string load_cost 0x7f140060 +int string material_clock_display_divider 0x7f140061 +int string material_clock_toggle_content_description 0x7f140062 +int string material_hour_selection 0x7f140063 +int string material_hour_suffix 0x7f140064 +int string material_minute_selection 0x7f140065 +int string material_minute_suffix 0x7f140066 +int string material_motion_easing_accelerated 0x7f140067 +int string material_motion_easing_decelerated 0x7f140068 +int string material_motion_easing_emphasized 0x7f140069 +int string material_motion_easing_linear 0x7f14006a +int string material_motion_easing_standard 0x7f14006b +int string material_slider_range_end 0x7f14006c +int string material_slider_range_start 0x7f14006d +int string material_timepicker_am 0x7f14006e +int string material_timepicker_clock_mode_description 0x7f14006f +int string material_timepicker_hour 0x7f140070 +int string material_timepicker_minute 0x7f140071 +int string material_timepicker_pm 0x7f140072 +int string material_timepicker_select_time 0x7f140073 +int string material_timepicker_text_input_mode_description 0x7f140074 +int string media_information 0x7f140075 +int string mi__selected_audio_track 0x7f140076 +int string mi__selected_subtitle_track 0x7f140077 +int string mi__selected_video_track 0x7f140078 +int string mi_bit_rate 0x7f140079 +int string mi_channels 0x7f14007a +int string mi_codec 0x7f14007b +int string mi_frame_rate 0x7f14007c +int string mi_language 0x7f14007d +int string mi_length 0x7f14007e +int string mi_media 0x7f14007f +int string mi_pixel_format 0x7f140080 +int string mi_player 0x7f140081 +int string mi_profile_level 0x7f140082 +int string mi_resolution 0x7f140083 +int string mi_sample_rate 0x7f140084 +int string mi_stream_fmt1 0x7f140085 +int string mi_type 0x7f140086 +int string module_map_model_faster 0x7f140087 +int string module_map_model_normal 0x7f140088 +int string mtrl_badge_numberless_content_description 0x7f140089 +int string mtrl_chip_close_icon_content_description 0x7f14008a +int string mtrl_exceed_max_badge_number_content_description 0x7f14008b +int string mtrl_exceed_max_badge_number_suffix 0x7f14008c +int string mtrl_picker_a11y_next_month 0x7f14008d +int string mtrl_picker_a11y_prev_month 0x7f14008e +int string mtrl_picker_announce_current_selection 0x7f14008f +int string mtrl_picker_cancel 0x7f140090 +int string mtrl_picker_confirm 0x7f140091 +int string mtrl_picker_date_header_selected 0x7f140092 +int string mtrl_picker_date_header_title 0x7f140093 +int string mtrl_picker_date_header_unselected 0x7f140094 +int string mtrl_picker_day_of_week_column_header 0x7f140095 +int string mtrl_picker_invalid_format 0x7f140096 +int string mtrl_picker_invalid_format_example 0x7f140097 +int string mtrl_picker_invalid_format_use 0x7f140098 +int string mtrl_picker_invalid_range 0x7f140099 +int string mtrl_picker_navigate_to_year_description 0x7f14009a +int string mtrl_picker_out_of_range 0x7f14009b +int string mtrl_picker_range_header_only_end_selected 0x7f14009c +int string mtrl_picker_range_header_only_start_selected 0x7f14009d +int string mtrl_picker_range_header_selected 0x7f14009e +int string mtrl_picker_range_header_title 0x7f14009f +int string mtrl_picker_range_header_unselected 0x7f1400a0 +int string mtrl_picker_save 0x7f1400a1 +int string mtrl_picker_text_input_date_hint 0x7f1400a2 +int string mtrl_picker_text_input_date_range_end_hint 0x7f1400a3 +int string mtrl_picker_text_input_date_range_start_hint 0x7f1400a4 +int string mtrl_picker_text_input_day_abbr 0x7f1400a5 +int string mtrl_picker_text_input_month_abbr 0x7f1400a6 +int string mtrl_picker_text_input_year_abbr 0x7f1400a7 +int string mtrl_picker_toggle_to_calendar_input_mode 0x7f1400a8 +int string mtrl_picker_toggle_to_day_selection 0x7f1400a9 +int string mtrl_picker_toggle_to_text_input_mode 0x7f1400aa +int string mtrl_picker_toggle_to_year_selection 0x7f1400ab +int string no_net 0x7f1400ac +int string no_url 0x7f1400ad +int string password_toggle_content_description 0x7f1400ae +int string path_password_eye 0x7f1400af +int string path_password_eye_mask_strike_through 0x7f1400b0 +int string path_password_eye_mask_visible 0x7f1400b1 +int string path_password_strike_through 0x7f1400b2 +int string recent 0x7f1400b3 +int string sample 0x7f1400b4 +int string search_menu_title 0x7f1400b5 +int string seek_cost 0x7f1400b6 +int string seek_load_cost 0x7f1400b7 +int string settings 0x7f1400b8 +int string show_info 0x7f1400b9 +int string status_bar_notification_info_overflow 0x7f1400ba +int string tcp_speed 0x7f1400bb +int string tips_not_wifi 0x7f1400bc +int string tips_not_wifi_cancel 0x7f1400bd +int string tips_not_wifi_confirm 0x7f1400be +int string toggle_player 0x7f1400bf +int string toggle_ratio 0x7f1400c0 +int string toggle_render 0x7f1400c1 +int string tracks 0x7f1400c2 +int string v_cache 0x7f1400c3 +int string vdec 0x7f1400c4 +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 Base_AlertDialog_AppCompat 0x7f15000a +int style Base_AlertDialog_AppCompat_Light 0x7f15000b +int style Base_Animation_AppCompat_Dialog 0x7f15000c +int style Base_Animation_AppCompat_DropDownUp 0x7f15000d +int style Base_Animation_AppCompat_Tooltip 0x7f15000e +int style Base_CardView 0x7f15000f +int style Base_DialogWindowTitleBackground_AppCompat 0x7f150010 +int style Base_DialogWindowTitle_AppCompat 0x7f150011 +int style Base_MaterialAlertDialog_MaterialComponents_Title_Icon 0x7f150012 +int style Base_MaterialAlertDialog_MaterialComponents_Title_Panel 0x7f150013 +int style Base_MaterialAlertDialog_MaterialComponents_Title_Text 0x7f150014 +int style Base_TextAppearance_AppCompat 0x7f150015 +int style Base_TextAppearance_AppCompat_Body1 0x7f150016 +int style Base_TextAppearance_AppCompat_Body2 0x7f150017 +int style Base_TextAppearance_AppCompat_Button 0x7f150018 +int style Base_TextAppearance_AppCompat_Caption 0x7f150019 +int style Base_TextAppearance_AppCompat_Display1 0x7f15001a +int style Base_TextAppearance_AppCompat_Display2 0x7f15001b +int style Base_TextAppearance_AppCompat_Display3 0x7f15001c +int style Base_TextAppearance_AppCompat_Display4 0x7f15001d +int style Base_TextAppearance_AppCompat_Headline 0x7f15001e +int style Base_TextAppearance_AppCompat_Inverse 0x7f15001f +int style Base_TextAppearance_AppCompat_Large 0x7f150020 +int style Base_TextAppearance_AppCompat_Large_Inverse 0x7f150021 +int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f150022 +int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f150023 +int style Base_TextAppearance_AppCompat_Medium 0x7f150024 +int style Base_TextAppearance_AppCompat_Medium_Inverse 0x7f150025 +int style Base_TextAppearance_AppCompat_Menu 0x7f150026 +int style Base_TextAppearance_AppCompat_SearchResult 0x7f150027 +int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x7f150028 +int style Base_TextAppearance_AppCompat_SearchResult_Title 0x7f150029 +int style Base_TextAppearance_AppCompat_Small 0x7f15002a +int style Base_TextAppearance_AppCompat_Small_Inverse 0x7f15002b +int style Base_TextAppearance_AppCompat_Subhead 0x7f15002c +int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x7f15002d +int style Base_TextAppearance_AppCompat_Title 0x7f15002e +int style Base_TextAppearance_AppCompat_Title_Inverse 0x7f15002f +int style Base_TextAppearance_AppCompat_Tooltip 0x7f150030 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f150031 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f150032 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f150033 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f150034 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f150035 +int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f150036 +int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f150037 +int style Base_TextAppearance_AppCompat_Widget_Button 0x7f150038 +int style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f150039 +int style Base_TextAppearance_AppCompat_Widget_Button_Colored 0x7f15003a +int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x7f15003b +int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x7f15003c +int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f15003d +int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f15003e +int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f15003f +int style Base_TextAppearance_AppCompat_Widget_Switch 0x7f150040 +int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f150041 +int style Base_TextAppearance_MaterialComponents_Badge 0x7f150042 +int style Base_TextAppearance_MaterialComponents_Button 0x7f150043 +int style Base_TextAppearance_MaterialComponents_Headline6 0x7f150044 +int style Base_TextAppearance_MaterialComponents_Subtitle2 0x7f150045 +int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f150046 +int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f150047 +int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f150048 +int style Base_ThemeOverlay_AppCompat 0x7f150049 +int style Base_ThemeOverlay_AppCompat_ActionBar 0x7f15004a +int style Base_ThemeOverlay_AppCompat_Dark 0x7f15004b +int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x7f15004c +int style Base_ThemeOverlay_AppCompat_Dialog 0x7f15004d +int style Base_ThemeOverlay_AppCompat_Dialog_Alert 0x7f15004e +int style Base_ThemeOverlay_AppCompat_Light 0x7f15004f +int style Base_ThemeOverlay_MaterialComponents_Dialog 0x7f150050 +int style Base_ThemeOverlay_MaterialComponents_Dialog_Alert 0x7f150051 +int style Base_ThemeOverlay_MaterialComponents_Dialog_Alert_Framework 0x7f150052 +int style Base_ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework 0x7f150053 +int style Base_ThemeOverlay_MaterialComponents_MaterialAlertDialog 0x7f150054 +int style Base_Theme_AppCompat 0x7f150055 +int style Base_Theme_AppCompat_CompactMenu 0x7f150056 +int style Base_Theme_AppCompat_Dialog 0x7f150057 +int style Base_Theme_AppCompat_DialogWhenLarge 0x7f150058 +int style Base_Theme_AppCompat_Dialog_Alert 0x7f150059 +int style Base_Theme_AppCompat_Dialog_FixedSize 0x7f15005a +int style Base_Theme_AppCompat_Dialog_MinWidth 0x7f15005b +int style Base_Theme_AppCompat_Light 0x7f15005c +int style Base_Theme_AppCompat_Light_DarkActionBar 0x7f15005d +int style Base_Theme_AppCompat_Light_Dialog 0x7f15005e +int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x7f15005f +int style Base_Theme_AppCompat_Light_Dialog_Alert 0x7f150060 +int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x7f150061 +int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x7f150062 +int style Base_Theme_MaterialComponents 0x7f150063 +int style Base_Theme_MaterialComponents_Bridge 0x7f150064 +int style Base_Theme_MaterialComponents_CompactMenu 0x7f150065 +int style Base_Theme_MaterialComponents_Dialog 0x7f150066 +int style Base_Theme_MaterialComponents_DialogWhenLarge 0x7f150067 +int style Base_Theme_MaterialComponents_Dialog_Alert 0x7f150068 +int style Base_Theme_MaterialComponents_Dialog_Bridge 0x7f150069 +int style Base_Theme_MaterialComponents_Dialog_FixedSize 0x7f15006a +int style Base_Theme_MaterialComponents_Dialog_MinWidth 0x7f15006b +int style Base_Theme_MaterialComponents_Light 0x7f15006c +int style Base_Theme_MaterialComponents_Light_Bridge 0x7f15006d +int style Base_Theme_MaterialComponents_Light_DarkActionBar 0x7f15006e +int style Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge 0x7f15006f +int style Base_Theme_MaterialComponents_Light_Dialog 0x7f150070 +int style Base_Theme_MaterialComponents_Light_DialogWhenLarge 0x7f150071 +int style Base_Theme_MaterialComponents_Light_Dialog_Alert 0x7f150072 +int style Base_Theme_MaterialComponents_Light_Dialog_Bridge 0x7f150073 +int style Base_Theme_MaterialComponents_Light_Dialog_FixedSize 0x7f150074 +int style Base_Theme_MaterialComponents_Light_Dialog_MinWidth 0x7f150075 +int style Base_V14_ThemeOverlay_MaterialComponents_BottomSheetDialog 0x7f150076 +int style Base_V14_ThemeOverlay_MaterialComponents_Dialog 0x7f150077 +int style Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert 0x7f150078 +int style Base_V14_ThemeOverlay_MaterialComponents_MaterialAlertDialog 0x7f150079 +int style Base_V14_Theme_MaterialComponents 0x7f15007a +int style Base_V14_Theme_MaterialComponents_Bridge 0x7f15007b +int style Base_V14_Theme_MaterialComponents_Dialog 0x7f15007c +int style Base_V14_Theme_MaterialComponents_Dialog_Bridge 0x7f15007d +int style Base_V14_Theme_MaterialComponents_Light 0x7f15007e +int style Base_V14_Theme_MaterialComponents_Light_Bridge 0x7f15007f +int style Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge 0x7f150080 +int style Base_V14_Theme_MaterialComponents_Light_Dialog 0x7f150081 +int style Base_V14_Theme_MaterialComponents_Light_Dialog_Bridge 0x7f150082 +int style Base_V21_ThemeOverlay_AppCompat_Dialog 0x7f150083 +int style Base_V21_ThemeOverlay_MaterialComponents_BottomSheetDialog 0x7f150084 +int style Base_V21_Theme_AppCompat 0x7f150085 +int style Base_V21_Theme_AppCompat_Dialog 0x7f150086 +int style Base_V21_Theme_AppCompat_Light 0x7f150087 +int style Base_V21_Theme_AppCompat_Light_Dialog 0x7f150088 +int style Base_V21_Theme_MaterialComponents 0x7f150089 +int style Base_V21_Theme_MaterialComponents_Dialog 0x7f15008a +int style Base_V21_Theme_MaterialComponents_Light 0x7f15008b +int style Base_V21_Theme_MaterialComponents_Light_Dialog 0x7f15008c +int style Base_V22_Theme_AppCompat 0x7f15008d +int style Base_V22_Theme_AppCompat_Light 0x7f15008e +int style Base_V23_Theme_AppCompat 0x7f15008f +int style Base_V23_Theme_AppCompat_Light 0x7f150090 +int style Base_V26_Theme_AppCompat 0x7f150091 +int style Base_V26_Theme_AppCompat_Light 0x7f150092 +int style Base_V26_Widget_AppCompat_Toolbar 0x7f150093 +int style Base_V28_Theme_AppCompat 0x7f150094 +int style Base_V28_Theme_AppCompat_Light 0x7f150095 +int style Base_V7_ThemeOverlay_AppCompat_Dialog 0x7f150096 +int style Base_V7_Theme_AppCompat 0x7f150097 +int style Base_V7_Theme_AppCompat_Dialog 0x7f150098 +int style Base_V7_Theme_AppCompat_Light 0x7f150099 +int style Base_V7_Theme_AppCompat_Light_Dialog 0x7f15009a +int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x7f15009b +int style Base_V7_Widget_AppCompat_EditText 0x7f15009c +int style Base_V7_Widget_AppCompat_Toolbar 0x7f15009d +int style Base_Widget_AppCompat_ActionBar 0x7f15009e +int style Base_Widget_AppCompat_ActionBar_Solid 0x7f15009f +int style Base_Widget_AppCompat_ActionBar_TabBar 0x7f1500a0 +int style Base_Widget_AppCompat_ActionBar_TabText 0x7f1500a1 +int style Base_Widget_AppCompat_ActionBar_TabView 0x7f1500a2 +int style Base_Widget_AppCompat_ActionButton 0x7f1500a3 +int style Base_Widget_AppCompat_ActionButton_CloseMode 0x7f1500a4 +int style Base_Widget_AppCompat_ActionButton_Overflow 0x7f1500a5 +int style Base_Widget_AppCompat_ActionMode 0x7f1500a6 +int style Base_Widget_AppCompat_ActivityChooserView 0x7f1500a7 +int style Base_Widget_AppCompat_AutoCompleteTextView 0x7f1500a8 +int style Base_Widget_AppCompat_Button 0x7f1500a9 +int style Base_Widget_AppCompat_ButtonBar 0x7f1500aa +int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x7f1500ab +int style Base_Widget_AppCompat_Button_Borderless 0x7f1500ac +int style Base_Widget_AppCompat_Button_Borderless_Colored 0x7f1500ad +int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f1500ae +int style Base_Widget_AppCompat_Button_Colored 0x7f1500af +int style Base_Widget_AppCompat_Button_Small 0x7f1500b0 +int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x7f1500b1 +int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x7f1500b2 +int style Base_Widget_AppCompat_CompoundButton_Switch 0x7f1500b3 +int style Base_Widget_AppCompat_DrawerArrowToggle 0x7f1500b4 +int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x7f1500b5 +int style Base_Widget_AppCompat_DropDownItem_Spinner 0x7f1500b6 +int style Base_Widget_AppCompat_EditText 0x7f1500b7 +int style Base_Widget_AppCompat_ImageButton 0x7f1500b8 +int style Base_Widget_AppCompat_Light_ActionBar 0x7f1500b9 +int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x7f1500ba +int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x7f1500bb +int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x7f1500bc +int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f1500bd +int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x7f1500be +int style Base_Widget_AppCompat_Light_PopupMenu 0x7f1500bf +int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x7f1500c0 +int style Base_Widget_AppCompat_ListMenuView 0x7f1500c1 +int style Base_Widget_AppCompat_ListPopupWindow 0x7f1500c2 +int style Base_Widget_AppCompat_ListView 0x7f1500c3 +int style Base_Widget_AppCompat_ListView_DropDown 0x7f1500c4 +int style Base_Widget_AppCompat_ListView_Menu 0x7f1500c5 +int style Base_Widget_AppCompat_PopupMenu 0x7f1500c6 +int style Base_Widget_AppCompat_PopupMenu_Overflow 0x7f1500c7 +int style Base_Widget_AppCompat_PopupWindow 0x7f1500c8 +int style Base_Widget_AppCompat_ProgressBar 0x7f1500c9 +int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x7f1500ca +int style Base_Widget_AppCompat_RatingBar 0x7f1500cb +int style Base_Widget_AppCompat_RatingBar_Indicator 0x7f1500cc +int style Base_Widget_AppCompat_RatingBar_Small 0x7f1500cd +int style Base_Widget_AppCompat_SearchView 0x7f1500ce +int style Base_Widget_AppCompat_SearchView_ActionBar 0x7f1500cf +int style Base_Widget_AppCompat_SeekBar 0x7f1500d0 +int style Base_Widget_AppCompat_SeekBar_Discrete 0x7f1500d1 +int style Base_Widget_AppCompat_Spinner 0x7f1500d2 +int style Base_Widget_AppCompat_Spinner_Underlined 0x7f1500d3 +int style Base_Widget_AppCompat_TextView 0x7f1500d4 +int style Base_Widget_AppCompat_TextView_SpinnerItem 0x7f1500d5 +int style Base_Widget_AppCompat_Toolbar 0x7f1500d6 +int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x7f1500d7 +int style Base_Widget_Design_TabLayout 0x7f1500d8 +int style Base_Widget_MaterialComponents_AutoCompleteTextView 0x7f1500d9 +int style Base_Widget_MaterialComponents_CheckedTextView 0x7f1500da +int style Base_Widget_MaterialComponents_Chip 0x7f1500db +int style Base_Widget_MaterialComponents_MaterialCalendar_NavigationButton 0x7f1500dc +int style Base_Widget_MaterialComponents_PopupMenu 0x7f1500dd +int style Base_Widget_MaterialComponents_PopupMenu_ContextMenu 0x7f1500de +int style Base_Widget_MaterialComponents_PopupMenu_ListPopupWindow 0x7f1500df +int style Base_Widget_MaterialComponents_PopupMenu_Overflow 0x7f1500e0 +int style Base_Widget_MaterialComponents_Slider 0x7f1500e1 +int style Base_Widget_MaterialComponents_Snackbar 0x7f1500e2 +int style Base_Widget_MaterialComponents_TextInputEditText 0x7f1500e3 +int style Base_Widget_MaterialComponents_TextInputLayout 0x7f1500e4 +int style Base_Widget_MaterialComponents_TextView 0x7f1500e5 +int style CardView 0x7f1500e6 +int style CardView_Dark 0x7f1500e7 +int style CardView_Light 0x7f1500e8 +int style EmptyTheme 0x7f1500e9 +int style ExoMediaButton 0x7f1500ea +int style ExoMediaButton_FastForward 0x7f1500eb +int style ExoMediaButton_Next 0x7f1500ec +int style ExoMediaButton_Pause 0x7f1500ed +int style ExoMediaButton_Play 0x7f1500ee +int style ExoMediaButton_Previous 0x7f1500ef +int style ExoMediaButton_Rewind 0x7f1500f0 +int style MaterialAlertDialog_MaterialComponents 0x7f1500f1 +int style MaterialAlertDialog_MaterialComponents_Body_Text 0x7f1500f2 +int style MaterialAlertDialog_MaterialComponents_Picker_Date_Calendar 0x7f1500f3 +int style MaterialAlertDialog_MaterialComponents_Picker_Date_Spinner 0x7f1500f4 +int style MaterialAlertDialog_MaterialComponents_Title_Icon 0x7f1500f5 +int style MaterialAlertDialog_MaterialComponents_Title_Icon_CenterStacked 0x7f1500f6 +int style MaterialAlertDialog_MaterialComponents_Title_Panel 0x7f1500f7 +int style MaterialAlertDialog_MaterialComponents_Title_Panel_CenterStacked 0x7f1500f8 +int style MaterialAlertDialog_MaterialComponents_Title_Text 0x7f1500f9 +int style MaterialAlertDialog_MaterialComponents_Title_Text_CenterStacked 0x7f1500fa +int style Platform_AppCompat 0x7f1500fb +int style Platform_AppCompat_Light 0x7f1500fc +int style Platform_MaterialComponents 0x7f1500fd +int style Platform_MaterialComponents_Dialog 0x7f1500fe +int style Platform_MaterialComponents_Light 0x7f1500ff +int style Platform_MaterialComponents_Light_Dialog 0x7f150100 +int style Platform_ThemeOverlay_AppCompat 0x7f150101 +int style Platform_ThemeOverlay_AppCompat_Dark 0x7f150102 +int style Platform_ThemeOverlay_AppCompat_Light 0x7f150103 +int style Platform_V21_AppCompat 0x7f150104 +int style Platform_V21_AppCompat_Light 0x7f150105 +int style Platform_V25_AppCompat 0x7f150106 +int style Platform_V25_AppCompat_Light 0x7f150107 +int style Platform_Widget_AppCompat_Spinner 0x7f150108 +int style RtlOverlay_DialogWindowTitle_AppCompat 0x7f150109 +int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x7f15010a +int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x7f15010b +int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x7f15010c +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x7f15010d +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut 0x7f15010e +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow 0x7f15010f +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x7f150110 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title 0x7f150111 +int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x7f150112 +int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x7f150113 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x7f150114 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x7f150115 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x7f150116 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x7f150117 +int style RtlUnderlay_Widget_AppCompat_ActionButton 0x7f150118 +int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x7f150119 +int style ShapeAppearanceOverlay 0x7f15011a +int style ShapeAppearanceOverlay_BottomLeftDifferentCornerSize 0x7f15011b +int style ShapeAppearanceOverlay_BottomRightCut 0x7f15011c +int style ShapeAppearanceOverlay_Cut 0x7f15011d +int style ShapeAppearanceOverlay_DifferentCornerSize 0x7f15011e +int style ShapeAppearanceOverlay_MaterialComponents_BottomSheet 0x7f15011f +int style ShapeAppearanceOverlay_MaterialComponents_Chip 0x7f150120 +int style ShapeAppearanceOverlay_MaterialComponents_ExtendedFloatingActionButton 0x7f150121 +int style ShapeAppearanceOverlay_MaterialComponents_FloatingActionButton 0x7f150122 +int style ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day 0x7f150123 +int style ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Window_Fullscreen 0x7f150124 +int style ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Year 0x7f150125 +int style ShapeAppearanceOverlay_MaterialComponents_TextInputLayout_FilledBox 0x7f150126 +int style ShapeAppearanceOverlay_TopLeftCut 0x7f150127 +int style ShapeAppearanceOverlay_TopRightDifferentCornerSize 0x7f150128 +int style ShapeAppearance_MaterialComponents 0x7f150129 +int style ShapeAppearance_MaterialComponents_LargeComponent 0x7f15012a +int style ShapeAppearance_MaterialComponents_MediumComponent 0x7f15012b +int style ShapeAppearance_MaterialComponents_SmallComponent 0x7f15012c +int style ShapeAppearance_MaterialComponents_Test 0x7f15012d +int style ShapeAppearance_MaterialComponents_Tooltip 0x7f15012e +int style TestStyleWithLineHeight 0x7f15012f +int style TestStyleWithLineHeightAppearance 0x7f150130 +int style TestStyleWithThemeLineHeightAttribute 0x7f150131 +int style TestStyleWithoutLineHeight 0x7f150132 +int style TestThemeWithLineHeight 0x7f150133 +int style TestThemeWithLineHeightDisabled 0x7f150134 +int style Test_ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day 0x7f150135 +int style Test_Theme_MaterialComponents_MaterialCalendar 0x7f150136 +int style Test_Widget_MaterialComponents_MaterialCalendar 0x7f150137 +int style Test_Widget_MaterialComponents_MaterialCalendar_Day 0x7f150138 +int style Test_Widget_MaterialComponents_MaterialCalendar_Day_Selected 0x7f150139 +int style TextAppearance_AppCompat 0x7f15013a +int style TextAppearance_AppCompat_Body1 0x7f15013b +int style TextAppearance_AppCompat_Body2 0x7f15013c +int style TextAppearance_AppCompat_Button 0x7f15013d +int style TextAppearance_AppCompat_Caption 0x7f15013e +int style TextAppearance_AppCompat_Display1 0x7f15013f +int style TextAppearance_AppCompat_Display2 0x7f150140 +int style TextAppearance_AppCompat_Display3 0x7f150141 +int style TextAppearance_AppCompat_Display4 0x7f150142 +int style TextAppearance_AppCompat_Headline 0x7f150143 +int style TextAppearance_AppCompat_Inverse 0x7f150144 +int style TextAppearance_AppCompat_Large 0x7f150145 +int style TextAppearance_AppCompat_Large_Inverse 0x7f150146 +int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f150147 +int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f150148 +int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f150149 +int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f15014a +int style TextAppearance_AppCompat_Medium 0x7f15014b +int style TextAppearance_AppCompat_Medium_Inverse 0x7f15014c +int style TextAppearance_AppCompat_Menu 0x7f15014d +int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f15014e +int style TextAppearance_AppCompat_SearchResult_Title 0x7f15014f +int style TextAppearance_AppCompat_Small 0x7f150150 +int style TextAppearance_AppCompat_Small_Inverse 0x7f150151 +int style TextAppearance_AppCompat_Subhead 0x7f150152 +int style TextAppearance_AppCompat_Subhead_Inverse 0x7f150153 +int style TextAppearance_AppCompat_Title 0x7f150154 +int style TextAppearance_AppCompat_Title_Inverse 0x7f150155 +int style TextAppearance_AppCompat_Tooltip 0x7f150156 +int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f150157 +int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f150158 +int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f150159 +int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f15015a +int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f15015b +int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f15015c +int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f15015d +int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f15015e +int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f15015f +int style TextAppearance_AppCompat_Widget_Button 0x7f150160 +int style TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f150161 +int style TextAppearance_AppCompat_Widget_Button_Colored 0x7f150162 +int style TextAppearance_AppCompat_Widget_Button_Inverse 0x7f150163 +int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f150164 +int style TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f150165 +int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f150166 +int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f150167 +int style TextAppearance_AppCompat_Widget_Switch 0x7f150168 +int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f150169 +int style TextAppearance_Compat_Notification 0x7f15016a +int style TextAppearance_Compat_Notification_Info 0x7f15016b +int style TextAppearance_Compat_Notification_Line2 0x7f15016c +int style TextAppearance_Compat_Notification_Time 0x7f15016d +int style TextAppearance_Compat_Notification_Title 0x7f15016e +int style TextAppearance_Design_CollapsingToolbar_Expanded 0x7f15016f +int style TextAppearance_Design_Counter 0x7f150170 +int style TextAppearance_Design_Counter_Overflow 0x7f150171 +int style TextAppearance_Design_Error 0x7f150172 +int style TextAppearance_Design_HelperText 0x7f150173 +int style TextAppearance_Design_Hint 0x7f150174 +int style TextAppearance_Design_Placeholder 0x7f150175 +int style TextAppearance_Design_Prefix 0x7f150176 +int style TextAppearance_Design_Snackbar_Message 0x7f150177 +int style TextAppearance_Design_Suffix 0x7f150178 +int style TextAppearance_Design_Tab 0x7f150179 +int style TextAppearance_MaterialComponents_Badge 0x7f15017a +int style TextAppearance_MaterialComponents_Body1 0x7f15017b +int style TextAppearance_MaterialComponents_Body2 0x7f15017c +int style TextAppearance_MaterialComponents_Button 0x7f15017d +int style TextAppearance_MaterialComponents_Caption 0x7f15017e +int style TextAppearance_MaterialComponents_Chip 0x7f15017f +int style TextAppearance_MaterialComponents_Headline1 0x7f150180 +int style TextAppearance_MaterialComponents_Headline2 0x7f150181 +int style TextAppearance_MaterialComponents_Headline3 0x7f150182 +int style TextAppearance_MaterialComponents_Headline4 0x7f150183 +int style TextAppearance_MaterialComponents_Headline5 0x7f150184 +int style TextAppearance_MaterialComponents_Headline6 0x7f150185 +int style TextAppearance_MaterialComponents_Overline 0x7f150186 +int style TextAppearance_MaterialComponents_Subtitle1 0x7f150187 +int style TextAppearance_MaterialComponents_Subtitle2 0x7f150188 +int style TextAppearance_MaterialComponents_TimePicker_Title 0x7f150189 +int style TextAppearance_MaterialComponents_Tooltip 0x7f15018a +int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f15018b +int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f15018c +int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f15018d +int style ThemeOverlayColorAccentRed 0x7f15018e +int style ThemeOverlay_AppCompat 0x7f15018f +int style ThemeOverlay_AppCompat_ActionBar 0x7f150190 +int style ThemeOverlay_AppCompat_Dark 0x7f150191 +int style ThemeOverlay_AppCompat_Dark_ActionBar 0x7f150192 +int style ThemeOverlay_AppCompat_DayNight 0x7f150193 +int style ThemeOverlay_AppCompat_DayNight_ActionBar 0x7f150194 +int style ThemeOverlay_AppCompat_Dialog 0x7f150195 +int style ThemeOverlay_AppCompat_Dialog_Alert 0x7f150196 +int style ThemeOverlay_AppCompat_Light 0x7f150197 +int style ThemeOverlay_Design_TextInputEditText 0x7f150198 +int style ThemeOverlay_MaterialComponents 0x7f150199 +int style ThemeOverlay_MaterialComponents_ActionBar 0x7f15019a +int style ThemeOverlay_MaterialComponents_ActionBar_Primary 0x7f15019b +int style ThemeOverlay_MaterialComponents_ActionBar_Surface 0x7f15019c +int style ThemeOverlay_MaterialComponents_AutoCompleteTextView 0x7f15019d +int style ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox 0x7f15019e +int style ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox_Dense 0x7f15019f +int style ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox 0x7f1501a0 +int style ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense 0x7f1501a1 +int style ThemeOverlay_MaterialComponents_BottomAppBar_Primary 0x7f1501a2 +int style ThemeOverlay_MaterialComponents_BottomAppBar_Surface 0x7f1501a3 +int style ThemeOverlay_MaterialComponents_BottomSheetDialog 0x7f1501a4 +int style ThemeOverlay_MaterialComponents_Dark 0x7f1501a5 +int style ThemeOverlay_MaterialComponents_Dark_ActionBar 0x7f1501a6 +int style ThemeOverlay_MaterialComponents_DayNight_BottomSheetDialog 0x7f1501a7 +int style ThemeOverlay_MaterialComponents_Dialog 0x7f1501a8 +int style ThemeOverlay_MaterialComponents_Dialog_Alert 0x7f1501a9 +int style ThemeOverlay_MaterialComponents_Dialog_Alert_Framework 0x7f1501aa +int style ThemeOverlay_MaterialComponents_Light 0x7f1501ab +int style ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework 0x7f1501ac +int style ThemeOverlay_MaterialComponents_MaterialAlertDialog 0x7f1501ad +int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Centered 0x7f1501ae +int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date 0x7f1501af +int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Calendar 0x7f1501b0 +int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text 0x7f1501b1 +int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text_Day 0x7f1501b2 +int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Spinner 0x7f1501b3 +int style ThemeOverlay_MaterialComponents_MaterialCalendar 0x7f1501b4 +int style ThemeOverlay_MaterialComponents_MaterialCalendar_Fullscreen 0x7f1501b5 +int style ThemeOverlay_MaterialComponents_TextInputEditText 0x7f1501b6 +int style ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox 0x7f1501b7 +int style ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense 0x7f1501b8 +int style ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox 0x7f1501b9 +int style ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense 0x7f1501ba +int style ThemeOverlay_MaterialComponents_TimePicker 0x7f1501bb +int style ThemeOverlay_MaterialComponents_TimePicker_Display 0x7f1501bc +int style ThemeOverlay_MaterialComponents_Toolbar_Primary 0x7f1501bd +int style ThemeOverlay_MaterialComponents_Toolbar_Surface 0x7f1501be +int style Theme_AppCompat 0x7f1501bf +int style Theme_AppCompat_CompactMenu 0x7f1501c0 +int style Theme_AppCompat_DayNight 0x7f1501c1 +int style Theme_AppCompat_DayNight_DarkActionBar 0x7f1501c2 +int style Theme_AppCompat_DayNight_Dialog 0x7f1501c3 +int style Theme_AppCompat_DayNight_DialogWhenLarge 0x7f1501c4 +int style Theme_AppCompat_DayNight_Dialog_Alert 0x7f1501c5 +int style Theme_AppCompat_DayNight_Dialog_MinWidth 0x7f1501c6 +int style Theme_AppCompat_DayNight_NoActionBar 0x7f1501c7 +int style Theme_AppCompat_Dialog 0x7f1501c8 +int style Theme_AppCompat_DialogWhenLarge 0x7f1501c9 +int style Theme_AppCompat_Dialog_Alert 0x7f1501ca +int style Theme_AppCompat_Dialog_MinWidth 0x7f1501cb +int style Theme_AppCompat_Empty 0x7f1501cc +int style Theme_AppCompat_Light 0x7f1501cd +int style Theme_AppCompat_Light_DarkActionBar 0x7f1501ce +int style Theme_AppCompat_Light_Dialog 0x7f1501cf +int style Theme_AppCompat_Light_DialogWhenLarge 0x7f1501d0 +int style Theme_AppCompat_Light_Dialog_Alert 0x7f1501d1 +int style Theme_AppCompat_Light_Dialog_MinWidth 0x7f1501d2 +int style Theme_AppCompat_Light_NoActionBar 0x7f1501d3 +int style Theme_AppCompat_NoActionBar 0x7f1501d4 +int style Theme_Design 0x7f1501d5 +int style Theme_Design_BottomSheetDialog 0x7f1501d6 +int style Theme_Design_Light 0x7f1501d7 +int style Theme_Design_Light_BottomSheetDialog 0x7f1501d8 +int style Theme_Design_Light_NoActionBar 0x7f1501d9 +int style Theme_Design_NoActionBar 0x7f1501da +int style Theme_MaterialComponents 0x7f1501db +int style Theme_MaterialComponents_BottomSheetDialog 0x7f1501dc +int style Theme_MaterialComponents_Bridge 0x7f1501dd +int style Theme_MaterialComponents_CompactMenu 0x7f1501de +int style Theme_MaterialComponents_DayNight 0x7f1501df +int style Theme_MaterialComponents_DayNight_BottomSheetDialog 0x7f1501e0 +int style Theme_MaterialComponents_DayNight_Bridge 0x7f1501e1 +int style Theme_MaterialComponents_DayNight_DarkActionBar 0x7f1501e2 +int style Theme_MaterialComponents_DayNight_DarkActionBar_Bridge 0x7f1501e3 +int style Theme_MaterialComponents_DayNight_Dialog 0x7f1501e4 +int style Theme_MaterialComponents_DayNight_DialogWhenLarge 0x7f1501e5 +int style Theme_MaterialComponents_DayNight_Dialog_Alert 0x7f1501e6 +int style Theme_MaterialComponents_DayNight_Dialog_Alert_Bridge 0x7f1501e7 +int style Theme_MaterialComponents_DayNight_Dialog_Bridge 0x7f1501e8 +int style Theme_MaterialComponents_DayNight_Dialog_FixedSize 0x7f1501e9 +int style Theme_MaterialComponents_DayNight_Dialog_FixedSize_Bridge 0x7f1501ea +int style Theme_MaterialComponents_DayNight_Dialog_MinWidth 0x7f1501eb +int style Theme_MaterialComponents_DayNight_Dialog_MinWidth_Bridge 0x7f1501ec +int style Theme_MaterialComponents_DayNight_NoActionBar 0x7f1501ed +int style Theme_MaterialComponents_DayNight_NoActionBar_Bridge 0x7f1501ee +int style Theme_MaterialComponents_Dialog 0x7f1501ef +int style Theme_MaterialComponents_DialogWhenLarge 0x7f1501f0 +int style Theme_MaterialComponents_Dialog_Alert 0x7f1501f1 +int style Theme_MaterialComponents_Dialog_Alert_Bridge 0x7f1501f2 +int style Theme_MaterialComponents_Dialog_Bridge 0x7f1501f3 +int style Theme_MaterialComponents_Dialog_FixedSize 0x7f1501f4 +int style Theme_MaterialComponents_Dialog_FixedSize_Bridge 0x7f1501f5 +int style Theme_MaterialComponents_Dialog_MinWidth 0x7f1501f6 +int style Theme_MaterialComponents_Dialog_MinWidth_Bridge 0x7f1501f7 +int style Theme_MaterialComponents_Light 0x7f1501f8 +int style Theme_MaterialComponents_Light_BarSize 0x7f1501f9 +int style Theme_MaterialComponents_Light_BottomSheetDialog 0x7f1501fa +int style Theme_MaterialComponents_Light_Bridge 0x7f1501fb +int style Theme_MaterialComponents_Light_DarkActionBar 0x7f1501fc +int style Theme_MaterialComponents_Light_DarkActionBar_Bridge 0x7f1501fd +int style Theme_MaterialComponents_Light_Dialog 0x7f1501fe +int style Theme_MaterialComponents_Light_DialogWhenLarge 0x7f1501ff +int style Theme_MaterialComponents_Light_Dialog_Alert 0x7f150200 +int style Theme_MaterialComponents_Light_Dialog_Alert_Bridge 0x7f150201 +int style Theme_MaterialComponents_Light_Dialog_Bridge 0x7f150202 +int style Theme_MaterialComponents_Light_Dialog_FixedSize 0x7f150203 +int style Theme_MaterialComponents_Light_Dialog_FixedSize_Bridge 0x7f150204 +int style Theme_MaterialComponents_Light_Dialog_MinWidth 0x7f150205 +int style Theme_MaterialComponents_Light_Dialog_MinWidth_Bridge 0x7f150206 +int style Theme_MaterialComponents_Light_LargeTouch 0x7f150207 +int style Theme_MaterialComponents_Light_NoActionBar 0x7f150208 +int style Theme_MaterialComponents_Light_NoActionBar_Bridge 0x7f150209 +int style Theme_MaterialComponents_NoActionBar 0x7f15020a +int style Theme_MaterialComponents_NoActionBar_Bridge 0x7f15020b +int style Widget_AppCompat_ActionBar 0x7f15020c +int style Widget_AppCompat_ActionBar_Solid 0x7f15020d +int style Widget_AppCompat_ActionBar_TabBar 0x7f15020e +int style Widget_AppCompat_ActionBar_TabText 0x7f15020f +int style Widget_AppCompat_ActionBar_TabView 0x7f150210 +int style Widget_AppCompat_ActionButton 0x7f150211 +int style Widget_AppCompat_ActionButton_CloseMode 0x7f150212 +int style Widget_AppCompat_ActionButton_Overflow 0x7f150213 +int style Widget_AppCompat_ActionMode 0x7f150214 +int style Widget_AppCompat_ActivityChooserView 0x7f150215 +int style Widget_AppCompat_AutoCompleteTextView 0x7f150216 +int style Widget_AppCompat_Button 0x7f150217 +int style Widget_AppCompat_ButtonBar 0x7f150218 +int style Widget_AppCompat_ButtonBar_AlertDialog 0x7f150219 +int style Widget_AppCompat_Button_Borderless 0x7f15021a +int style Widget_AppCompat_Button_Borderless_Colored 0x7f15021b +int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f15021c +int style Widget_AppCompat_Button_Colored 0x7f15021d +int style Widget_AppCompat_Button_Small 0x7f15021e +int style Widget_AppCompat_CompoundButton_CheckBox 0x7f15021f +int style Widget_AppCompat_CompoundButton_RadioButton 0x7f150220 +int style Widget_AppCompat_CompoundButton_Switch 0x7f150221 +int style Widget_AppCompat_DrawerArrowToggle 0x7f150222 +int style Widget_AppCompat_DropDownItem_Spinner 0x7f150223 +int style Widget_AppCompat_EditText 0x7f150224 +int style Widget_AppCompat_ImageButton 0x7f150225 +int style Widget_AppCompat_Light_ActionBar 0x7f150226 +int style Widget_AppCompat_Light_ActionBar_Solid 0x7f150227 +int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f150228 +int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f150229 +int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f15022a +int style Widget_AppCompat_Light_ActionBar_TabText 0x7f15022b +int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f15022c +int style Widget_AppCompat_Light_ActionBar_TabView 0x7f15022d +int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f15022e +int style Widget_AppCompat_Light_ActionButton 0x7f15022f +int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f150230 +int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f150231 +int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f150232 +int style Widget_AppCompat_Light_ActivityChooserView 0x7f150233 +int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f150234 +int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f150235 +int style Widget_AppCompat_Light_ListPopupWindow 0x7f150236 +int style Widget_AppCompat_Light_ListView_DropDown 0x7f150237 +int style Widget_AppCompat_Light_PopupMenu 0x7f150238 +int style Widget_AppCompat_Light_PopupMenu_Overflow 0x7f150239 +int style Widget_AppCompat_Light_SearchView 0x7f15023a +int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f15023b +int style Widget_AppCompat_ListMenuView 0x7f15023c +int style Widget_AppCompat_ListPopupWindow 0x7f15023d +int style Widget_AppCompat_ListView 0x7f15023e +int style Widget_AppCompat_ListView_DropDown 0x7f15023f +int style Widget_AppCompat_ListView_Menu 0x7f150240 +int style Widget_AppCompat_PopupMenu 0x7f150241 +int style Widget_AppCompat_PopupMenu_Overflow 0x7f150242 +int style Widget_AppCompat_PopupWindow 0x7f150243 +int style Widget_AppCompat_ProgressBar 0x7f150244 +int style Widget_AppCompat_ProgressBar_Horizontal 0x7f150245 +int style Widget_AppCompat_RatingBar 0x7f150246 +int style Widget_AppCompat_RatingBar_Indicator 0x7f150247 +int style Widget_AppCompat_RatingBar_Small 0x7f150248 +int style Widget_AppCompat_SearchView 0x7f150249 +int style Widget_AppCompat_SearchView_ActionBar 0x7f15024a +int style Widget_AppCompat_SeekBar 0x7f15024b +int style Widget_AppCompat_SeekBar_Discrete 0x7f15024c +int style Widget_AppCompat_Spinner 0x7f15024d +int style Widget_AppCompat_Spinner_DropDown 0x7f15024e +int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f15024f +int style Widget_AppCompat_Spinner_Underlined 0x7f150250 +int style Widget_AppCompat_TextView 0x7f150251 +int style Widget_AppCompat_TextView_SpinnerItem 0x7f150252 +int style Widget_AppCompat_Toolbar 0x7f150253 +int style Widget_AppCompat_Toolbar_Button_Navigation 0x7f150254 +int style Widget_Compat_NotificationActionContainer 0x7f150255 +int style Widget_Compat_NotificationActionText 0x7f150256 +int style Widget_Design_AppBarLayout 0x7f150257 +int style Widget_Design_BottomNavigationView 0x7f150258 +int style Widget_Design_BottomSheet_Modal 0x7f150259 +int style Widget_Design_CollapsingToolbar 0x7f15025a +int style Widget_Design_FloatingActionButton 0x7f15025b +int style Widget_Design_NavigationView 0x7f15025c +int style Widget_Design_ScrimInsetsFrameLayout 0x7f15025d +int style Widget_Design_Snackbar 0x7f15025e +int style Widget_Design_TabLayout 0x7f15025f +int style Widget_Design_TextInputEditText 0x7f150260 +int style Widget_Design_TextInputLayout 0x7f150261 +int style Widget_MaterialComponents_ActionBar_Primary 0x7f150262 +int style Widget_MaterialComponents_ActionBar_PrimarySurface 0x7f150263 +int style Widget_MaterialComponents_ActionBar_Solid 0x7f150264 +int style Widget_MaterialComponents_ActionBar_Surface 0x7f150265 +int style Widget_MaterialComponents_AppBarLayout_Primary 0x7f150266 +int style Widget_MaterialComponents_AppBarLayout_PrimarySurface 0x7f150267 +int style Widget_MaterialComponents_AppBarLayout_Surface 0x7f150268 +int style Widget_MaterialComponents_AutoCompleteTextView_FilledBox 0x7f150269 +int style Widget_MaterialComponents_AutoCompleteTextView_FilledBox_Dense 0x7f15026a +int style Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox 0x7f15026b +int style Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense 0x7f15026c +int style Widget_MaterialComponents_Badge 0x7f15026d +int style Widget_MaterialComponents_BottomAppBar 0x7f15026e +int style Widget_MaterialComponents_BottomAppBar_Colored 0x7f15026f +int style Widget_MaterialComponents_BottomAppBar_PrimarySurface 0x7f150270 +int style Widget_MaterialComponents_BottomNavigationView 0x7f150271 +int style Widget_MaterialComponents_BottomNavigationView_Colored 0x7f150272 +int style Widget_MaterialComponents_BottomNavigationView_PrimarySurface 0x7f150273 +int style Widget_MaterialComponents_BottomSheet 0x7f150274 +int style Widget_MaterialComponents_BottomSheet_Modal 0x7f150275 +int style Widget_MaterialComponents_Button 0x7f150276 +int style Widget_MaterialComponents_Button_Icon 0x7f150277 +int style Widget_MaterialComponents_Button_OutlinedButton 0x7f150278 +int style Widget_MaterialComponents_Button_OutlinedButton_Icon 0x7f150279 +int style Widget_MaterialComponents_Button_TextButton 0x7f15027a +int style Widget_MaterialComponents_Button_TextButton_Dialog 0x7f15027b +int style Widget_MaterialComponents_Button_TextButton_Dialog_Flush 0x7f15027c +int style Widget_MaterialComponents_Button_TextButton_Dialog_Icon 0x7f15027d +int style Widget_MaterialComponents_Button_TextButton_Icon 0x7f15027e +int style Widget_MaterialComponents_Button_TextButton_Snackbar 0x7f15027f +int style Widget_MaterialComponents_Button_UnelevatedButton 0x7f150280 +int style Widget_MaterialComponents_Button_UnelevatedButton_Icon 0x7f150281 +int style Widget_MaterialComponents_CardView 0x7f150282 +int style Widget_MaterialComponents_CheckedTextView 0x7f150283 +int style Widget_MaterialComponents_ChipGroup 0x7f150284 +int style Widget_MaterialComponents_Chip_Action 0x7f150285 +int style Widget_MaterialComponents_Chip_Choice 0x7f150286 +int style Widget_MaterialComponents_Chip_Entry 0x7f150287 +int style Widget_MaterialComponents_Chip_Filter 0x7f150288 +int style Widget_MaterialComponents_CircularProgressIndicator 0x7f150289 +int style Widget_MaterialComponents_CircularProgressIndicator_ExtraSmall 0x7f15028a +int style Widget_MaterialComponents_CircularProgressIndicator_Medium 0x7f15028b +int style Widget_MaterialComponents_CircularProgressIndicator_Small 0x7f15028c +int style Widget_MaterialComponents_CollapsingToolbar 0x7f15028d +int style Widget_MaterialComponents_CompoundButton_CheckBox 0x7f15028e +int style Widget_MaterialComponents_CompoundButton_RadioButton 0x7f15028f +int style Widget_MaterialComponents_CompoundButton_Switch 0x7f150290 +int style Widget_MaterialComponents_ExtendedFloatingActionButton 0x7f150291 +int style Widget_MaterialComponents_ExtendedFloatingActionButton_Icon 0x7f150292 +int style Widget_MaterialComponents_FloatingActionButton 0x7f150293 +int style Widget_MaterialComponents_Light_ActionBar_Solid 0x7f150294 +int style Widget_MaterialComponents_LinearProgressIndicator 0x7f150295 +int style Widget_MaterialComponents_MaterialButtonToggleGroup 0x7f150296 +int style Widget_MaterialComponents_MaterialCalendar 0x7f150297 +int style Widget_MaterialComponents_MaterialCalendar_Day 0x7f150298 +int style Widget_MaterialComponents_MaterialCalendar_DayTextView 0x7f150299 +int style Widget_MaterialComponents_MaterialCalendar_Day_Invalid 0x7f15029a +int style Widget_MaterialComponents_MaterialCalendar_Day_Selected 0x7f15029b +int style Widget_MaterialComponents_MaterialCalendar_Day_Today 0x7f15029c +int style Widget_MaterialComponents_MaterialCalendar_Fullscreen 0x7f15029d +int style Widget_MaterialComponents_MaterialCalendar_HeaderCancelButton 0x7f15029e +int style Widget_MaterialComponents_MaterialCalendar_HeaderConfirmButton 0x7f15029f +int style Widget_MaterialComponents_MaterialCalendar_HeaderDivider 0x7f1502a0 +int style Widget_MaterialComponents_MaterialCalendar_HeaderLayout 0x7f1502a1 +int style Widget_MaterialComponents_MaterialCalendar_HeaderSelection 0x7f1502a2 +int style Widget_MaterialComponents_MaterialCalendar_HeaderSelection_Fullscreen 0x7f1502a3 +int style Widget_MaterialComponents_MaterialCalendar_HeaderTitle 0x7f1502a4 +int style Widget_MaterialComponents_MaterialCalendar_HeaderToggleButton 0x7f1502a5 +int style Widget_MaterialComponents_MaterialCalendar_Item 0x7f1502a6 +int style Widget_MaterialComponents_MaterialCalendar_MonthNavigationButton 0x7f1502a7 +int style Widget_MaterialComponents_MaterialCalendar_MonthTextView 0x7f1502a8 +int style Widget_MaterialComponents_MaterialCalendar_Year 0x7f1502a9 +int style Widget_MaterialComponents_MaterialCalendar_YearNavigationButton 0x7f1502aa +int style Widget_MaterialComponents_MaterialCalendar_Year_Selected 0x7f1502ab +int style Widget_MaterialComponents_MaterialCalendar_Year_Today 0x7f1502ac +int style Widget_MaterialComponents_NavigationRailView 0x7f1502ad +int style Widget_MaterialComponents_NavigationRailView_Colored 0x7f1502ae +int style Widget_MaterialComponents_NavigationRailView_Colored_Compact 0x7f1502af +int style Widget_MaterialComponents_NavigationRailView_Compact 0x7f1502b0 +int style Widget_MaterialComponents_NavigationRailView_PrimarySurface 0x7f1502b1 +int style Widget_MaterialComponents_NavigationView 0x7f1502b2 +int style Widget_MaterialComponents_PopupMenu 0x7f1502b3 +int style Widget_MaterialComponents_PopupMenu_ContextMenu 0x7f1502b4 +int style Widget_MaterialComponents_PopupMenu_ListPopupWindow 0x7f1502b5 +int style Widget_MaterialComponents_PopupMenu_Overflow 0x7f1502b6 +int style Widget_MaterialComponents_ProgressIndicator 0x7f1502b7 +int style Widget_MaterialComponents_ShapeableImageView 0x7f1502b8 +int style Widget_MaterialComponents_Slider 0x7f1502b9 +int style Widget_MaterialComponents_Snackbar 0x7f1502ba +int style Widget_MaterialComponents_Snackbar_FullWidth 0x7f1502bb +int style Widget_MaterialComponents_Snackbar_TextView 0x7f1502bc +int style Widget_MaterialComponents_TabLayout 0x7f1502bd +int style Widget_MaterialComponents_TabLayout_Colored 0x7f1502be +int style Widget_MaterialComponents_TabLayout_PrimarySurface 0x7f1502bf +int style Widget_MaterialComponents_TextInputEditText_FilledBox 0x7f1502c0 +int style Widget_MaterialComponents_TextInputEditText_FilledBox_Dense 0x7f1502c1 +int style Widget_MaterialComponents_TextInputEditText_OutlinedBox 0x7f1502c2 +int style Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense 0x7f1502c3 +int style Widget_MaterialComponents_TextInputLayout_FilledBox 0x7f1502c4 +int style Widget_MaterialComponents_TextInputLayout_FilledBox_Dense 0x7f1502c5 +int style Widget_MaterialComponents_TextInputLayout_FilledBox_Dense_ExposedDropdownMenu 0x7f1502c6 +int style Widget_MaterialComponents_TextInputLayout_FilledBox_ExposedDropdownMenu 0x7f1502c7 +int style Widget_MaterialComponents_TextInputLayout_OutlinedBox 0x7f1502c8 +int style Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense 0x7f1502c9 +int style Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense_ExposedDropdownMenu 0x7f1502ca +int style Widget_MaterialComponents_TextInputLayout_OutlinedBox_ExposedDropdownMenu 0x7f1502cb +int style Widget_MaterialComponents_TextView 0x7f1502cc +int style Widget_MaterialComponents_TimePicker 0x7f1502cd +int style Widget_MaterialComponents_TimePicker_Button 0x7f1502ce +int style Widget_MaterialComponents_TimePicker_Clock 0x7f1502cf +int style Widget_MaterialComponents_TimePicker_Display 0x7f1502d0 +int style Widget_MaterialComponents_TimePicker_Display_TextInputEditText 0x7f1502d1 +int style Widget_MaterialComponents_TimePicker_ImageButton 0x7f1502d2 +int style Widget_MaterialComponents_TimePicker_ImageButton_ShapeAppearance 0x7f1502d3 +int style Widget_MaterialComponents_Toolbar 0x7f1502d4 +int style Widget_MaterialComponents_Toolbar_Primary 0x7f1502d5 +int style Widget_MaterialComponents_Toolbar_PrimarySurface 0x7f1502d6 +int style Widget_MaterialComponents_Toolbar_Surface 0x7f1502d7 +int style Widget_MaterialComponents_Tooltip 0x7f1502d8 +int style Widget_Support_CoordinatorLayout 0x7f1502d9 +int style video_popup_toast_anim 0x7f1502da +int style video_style_dialog_progress 0x7f1502db +int style video_vertical_progressBar 0x7f1502dc +int[] styleable ActionBar { 0x7f040048, 0x7f040050, 0x7f040051, 0x7f0400f9, 0x7f0400fa, 0x7f0400fb, 0x7f0400fc, 0x7f0400fd, 0x7f0400fe, 0x7f040125, 0x7f040138, 0x7f040139, 0x7f040157, 0x7f0401b2, 0x7f0401b9, 0x7f0401c0, 0x7f0401c1, 0x7f0401c4, 0x7f0401d5, 0x7f0401e7, 0x7f04025b, 0x7f0402bf, 0x7f0402f7, 0x7f040302, 0x7f040303, 0x7f040377, 0x7f04037b, 0x7f0403e4, 0x7f0403f0 } +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 { 0x7f040048, 0x7f040050, 0x7f0400d3, 0x7f0401b2, 0x7f04037b, 0x7f0403f0 } +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 { 0x7f04016b, 0x7f0401db } +int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 0 +int styleable ActivityChooserView_initialActivityCount 1 +int[] styleable AlertDialog { 0x10100f2, 0x7f040084, 0x7f040085, 0x7f040250, 0x7f040251, 0x7f0402bb, 0x7f04034d, 0x7f040350 } +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, 0x7f040157, 0x7f04016c, 0x7f040246, 0x7f040247, 0x7f040371 } +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 { 0x7f04036b, 0x7f04036c, 0x7f04036e, 0x7f04036f } +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 { 0x7f040243, 0x7f040244 } +int styleable AppBarLayout_Layout_layout_scrollFlags 0 +int styleable AppBarLayout_Layout_layout_scrollInterpolator 1 +int[] styleable AppCompatImageView { 0x1010119, 0x7f040362, 0x7f0403e2, 0x7f0403e3 } +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, 0x7f0403de, 0x7f0403df, 0x7f0403e0 } +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, 0x7f040042, 0x7f040043, 0x7f040044, 0x7f040045, 0x7f040046, 0x7f040147, 0x7f040148, 0x7f040149, 0x7f04014a, 0x7f04014c, 0x7f04014d, 0x7f04014e, 0x7f04014f, 0x7f040188, 0x7f04019e, 0x7f0401a7, 0x7f0401fd, 0x7f040249, 0x7f0403a4, 0x7f0403c6 } +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 { 0x7f040004, 0x7f040005, 0x7f040006, 0x7f040007, 0x7f040008, 0x7f040009, 0x7f04000a, 0x7f04000b, 0x7f04000c, 0x7f04000d, 0x7f04000e, 0x7f04000f, 0x7f040010, 0x7f040012, 0x7f040013, 0x7f040014, 0x7f040015, 0x7f040016, 0x7f040017, 0x7f040018, 0x7f040019, 0x7f04001a, 0x7f04001b, 0x7f04001c, 0x7f04001d, 0x7f04001e, 0x7f04001f, 0x7f040020, 0x7f040021, 0x7f040022, 0x7f040023, 0x7f040024, 0x7f040028, 0x7f04002e, 0x7f04002f, 0x7f040030, 0x7f040031, 0x10100ae, 0x1010057, 0x7f040041, 0x7f04006b, 0x7f04007d, 0x7f04007e, 0x7f04007f, 0x7f040080, 0x7f040081, 0x7f040086, 0x7f040087, 0x7f04009d, 0x7f0400a6, 0x7f0400db, 0x7f0400dc, 0x7f0400dd, 0x7f0400de, 0x7f0400df, 0x7f0400e0, 0x7f0400e1, 0x7f0400e8, 0x7f0400e9, 0x7f0400ef, 0x7f040108, 0x7f040134, 0x7f040135, 0x7f040136, 0x7f04013a, 0x7f04013c, 0x7f040151, 0x7f040152, 0x7f040154, 0x7f040155, 0x7f040156, 0x7f0401c0, 0x7f0401cf, 0x7f04024c, 0x7f04024d, 0x7f04024e, 0x7f04024f, 0x7f040252, 0x7f040253, 0x7f040254, 0x7f040255, 0x7f040256, 0x7f040257, 0x7f040258, 0x7f040259, 0x7f04025a, 0x7f0402d8, 0x7f0402d9, 0x7f0402da, 0x7f0402f6, 0x7f0402f8, 0x7f040309, 0x7f04030b, 0x7f04030c, 0x7f04030d, 0x7f04033a, 0x7f04033b, 0x7f04033c, 0x7f04033d, 0x7f04035a, 0x7f04035b, 0x7f040383, 0x7f0403af, 0x7f0403b1, 0x7f0403b2, 0x7f0403b3, 0x7f0403b5, 0x7f0403b6, 0x7f0403b7, 0x7f0403b8, 0x7f0403c0, 0x7f0403c1, 0x7f0403f2, 0x7f0403f3, 0x7f0403f4, 0x7f0403f5, 0x7f040418, 0x7f04042d, 0x7f04042e, 0x7f04042f, 0x7f040430, 0x7f040431, 0x7f040432, 0x7f040433, 0x7f040434, 0x7f040435, 0x7f040436 } +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 { 0x7f040317 } +int styleable AspectRatioFrameLayout_resize_mode 0 +int[] styleable Badge { 0x7f040049, 0x7f040054, 0x7f040056, 0x7f0401c2, 0x7f04027c, 0x7f0402c4, 0x7f040416 } +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, 0x7f0401b7, 0x7f0401d6, 0x7f040287, 0x7f040346, 0x7f040348, 0x7f0403fd, 0x7f040400, 0x7f040402 } +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 { 0x7f040052, 0x7f040157, 0x7f040178, 0x7f040179, 0x7f04017a, 0x7f04017b, 0x7f04017c, 0x7f0401ba, 0x7f0402d1, 0x7f0402d3, 0x7f0402d4 } +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 { 0x7f0401e2 } +int styleable BottomNavigationView_itemHorizontalTranslationEnabled 0 +int[] styleable BottomSheetBehavior_Layout { 0x1010440, 0x101011f, 0x7f040052, 0x7f04005e, 0x7f04005f, 0x7f040060, 0x7f040061, 0x7f040062, 0x7f040064, 0x7f040065, 0x7f040066, 0x7f0401ad, 0x7f0402d1, 0x7f0402d3, 0x7f0402d4, 0x7f0402d7, 0x7f040341, 0x7f040344 } +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 ButtonBarLayout { 0x7f040032 } +int styleable ButtonBarLayout_allowStacking 0 +int[] styleable CardView { 0x1010140, 0x101013f, 0x7f04008a, 0x7f04008b, 0x7f04008c, 0x7f04008e, 0x7f04008f, 0x7f040090, 0x7f0400ff, 0x7f040100, 0x7f040102, 0x7f040103, 0x7f040105 } +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 { 0x7f040092, 0x7f040093, 0x7f040094, 0x7f040095, 0x7f040096, 0x7f040097, 0x7f040098, 0x7f040099, 0x7f04009a, 0x7f04009b } +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, 0x7f0400a0, 0x7f0400a1, 0x7f0400a4, 0x7f0400a5, 0x7f0400a7, 0x7f0400a8, 0x7f0400a9, 0x7f0400ab, 0x7f0400ac, 0x7f0400ad, 0x7f0400ae, 0x7f0400af, 0x7f0400b0, 0x7f0400b1, 0x7f0400b6, 0x7f0400b7, 0x7f0400b8, 0x7f0400ba, 0x7f0400cc, 0x7f0400cd, 0x7f0400ce, 0x7f0400cf, 0x7f0400d0, 0x7f0400d1, 0x7f0400d2, 0x7f040163, 0x7f0401b8, 0x7f0401c5, 0x7f0401c9, 0x7f04031c, 0x7f040341, 0x7f040344, 0x7f04034a, 0x7f0403c2, 0x7f0403cb } +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 { 0x7f04009f, 0x7f0400b2, 0x7f0400b3, 0x7f0400b4, 0x7f04033e, 0x7f040351, 0x7f040352 } +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 CircularProgressIndicator { 0x7f0401d7, 0x7f0401d9, 0x7f0401da } +int styleable CircularProgressIndicator_indicatorDirectionCircular 0 +int styleable CircularProgressIndicator_indicatorInset 1 +int styleable CircularProgressIndicator_indicatorSize 2 +int[] styleable ClockFaceView { 0x7f0400c8, 0x7f0400cb } +int styleable ClockFaceView_clockFaceBackgroundColor 0 +int styleable ClockFaceView_clockNumberTextColor 1 +int[] styleable ClockHandView { 0x7f0400c9, 0x7f040274, 0x7f04033f } +int styleable ClockHandView_clockHandColor 0 +int styleable ClockHandView_materialCircleRadius 1 +int styleable ClockHandView_selectorSize 2 +int[] styleable CollapsingToolbarLayout { 0x7f0400d7, 0x7f0400d8, 0x7f040106, 0x7f04016e, 0x7f04016f, 0x7f040170, 0x7f040171, 0x7f040172, 0x7f040173, 0x7f040174, 0x7f040177, 0x7f0401a9, 0x7f04027f, 0x7f040331, 0x7f040333, 0x7f040372, 0x7f0403e4, 0x7f0403e6, 0x7f0403e7, 0x7f0403f1 } +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 { 0x7f040205, 0x7f040206 } +int styleable CollapsingToolbarLayout_Layout_layout_collapseMode 0 +int styleable CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier 1 +int[] styleable ColorStateListItem { 0x7f040033, 0x101031f, 0x10101a5 } +int styleable ColorStateListItem_alpha 0 +int styleable ColorStateListItem_android_alpha 1 +int styleable ColorStateListItem_android_color 2 +int[] styleable CompoundButton { 0x1010107, 0x7f040082, 0x7f040088, 0x7f040089 } +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, 0x7f040036, 0x7f040037, 0x7f040038, 0x7f040059, 0x7f04005a, 0x7f04005b, 0x7f04009c, 0x7f0400f4, 0x7f0400f5, 0x7f040146, 0x7f04018a, 0x7f04018b, 0x7f04018c, 0x7f04018d, 0x7f04018e, 0x7f04018f, 0x7f040190, 0x7f040191, 0x7f040192, 0x7f040193, 0x7f040194, 0x7f040195, 0x7f040196, 0x7f040198, 0x7f040199, 0x7f04019a, 0x7f04019b, 0x7f04019c, 0x7f040207, 0x7f040208, 0x7f040209, 0x7f04020a, 0x7f04020b, 0x7f04020c, 0x7f04020d, 0x7f04020e, 0x7f04020f, 0x7f040210, 0x7f040211, 0x7f040212, 0x7f040213, 0x7f040214, 0x7f040215, 0x7f040216, 0x7f040217, 0x7f040218, 0x7f040219, 0x7f04021a, 0x7f04021b, 0x7f04021c, 0x7f04021d, 0x7f04021e, 0x7f04021f, 0x7f040220, 0x7f040221, 0x7f040222, 0x7f040223, 0x7f040224, 0x7f040225, 0x7f040226, 0x7f040227, 0x7f040228, 0x7f040229, 0x7f04022a, 0x7f04022b, 0x7f04022c, 0x7f04022d, 0x7f04022e, 0x7f04022f, 0x7f040230, 0x7f040231, 0x7f040232, 0x7f040233, 0x7f040234, 0x7f040236, 0x7f040237, 0x7f040238, 0x7f040239, 0x7f04023a, 0x7f04023b, 0x7f04023c, 0x7f04023d, 0x7f04023e, 0x7f040241, 0x7f040245, 0x7f0402b5, 0x7f0402b6, 0x7f0402e0, 0x7f0402e7, 0x7f0402f4, 0x7f040304, 0x7f040305, 0x7f040306, 0x7f040405, 0x7f040407, 0x7f040409, 0x7f04041d } +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, 0x7f040059, 0x7f04005a, 0x7f04005b, 0x7f04009c, 0x7f0400bd, 0x7f0400be, 0x7f0400bf, 0x7f0400c0, 0x7f0400c1, 0x7f0400f1, 0x7f0400f4, 0x7f0400f5, 0x7f04018a, 0x7f04018b, 0x7f04018c, 0x7f04018d, 0x7f04018e, 0x7f04018f, 0x7f040190, 0x7f040191, 0x7f040192, 0x7f040193, 0x7f040194, 0x7f040195, 0x7f040196, 0x7f040198, 0x7f040199, 0x7f04019a, 0x7f04019b, 0x7f04019c, 0x7f0401ff, 0x7f040207, 0x7f040208, 0x7f040209, 0x7f04020a, 0x7f04020b, 0x7f04020c, 0x7f04020d, 0x7f04020e, 0x7f04020f, 0x7f040210, 0x7f040211, 0x7f040212, 0x7f040213, 0x7f040214, 0x7f040215, 0x7f040216, 0x7f040217, 0x7f040218, 0x7f040219, 0x7f04021a, 0x7f04021b, 0x7f04021c, 0x7f04021d, 0x7f04021e, 0x7f04021f, 0x7f040220, 0x7f040221, 0x7f040222, 0x7f040223, 0x7f040224, 0x7f040225, 0x7f040226, 0x7f040227, 0x7f040228, 0x7f040229, 0x7f04022a, 0x7f04022b, 0x7f04022c, 0x7f04022d, 0x7f04022e, 0x7f04022f, 0x7f040230, 0x7f040231, 0x7f040232, 0x7f040233, 0x7f040234, 0x7f040236, 0x7f040237, 0x7f040238, 0x7f040239, 0x7f04023a, 0x7f04023b, 0x7f04023c, 0x7f04023d, 0x7f04023e, 0x7f040241, 0x7f040242, 0x7f040245 } +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 { 0x7f04030e, 0x7f04030f, 0x7f040310, 0x7f040311 } +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 { 0x7f0400f7, 0x7f0402ed } +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, 0x7f040036, 0x7f040037, 0x7f040059, 0x7f04005a, 0x7f04005b, 0x7f04009c, 0x7f0400f4, 0x7f040146, 0x7f04018a, 0x7f04018b, 0x7f04018c, 0x7f04018d, 0x7f04018e, 0x7f04018f, 0x7f040190, 0x7f040191, 0x7f040192, 0x7f040193, 0x7f040194, 0x7f040195, 0x7f040196, 0x7f040198, 0x7f040199, 0x7f04019a, 0x7f04019b, 0x7f04019c, 0x7f040207, 0x7f040208, 0x7f040209, 0x7f04020d, 0x7f040211, 0x7f040212, 0x7f040213, 0x7f040216, 0x7f040217, 0x7f040218, 0x7f040219, 0x7f04021a, 0x7f04021b, 0x7f04021c, 0x7f04021d, 0x7f04021e, 0x7f04021f, 0x7f040220, 0x7f040221, 0x7f040224, 0x7f040229, 0x7f04022a, 0x7f04022d, 0x7f04022e, 0x7f04022f, 0x7f040230, 0x7f040231, 0x7f040232, 0x7f040233, 0x7f040234, 0x7f040236, 0x7f040237, 0x7f040238, 0x7f040239, 0x7f04023a, 0x7f04023b, 0x7f04023c, 0x7f04023d, 0x7f04023e, 0x7f040241, 0x7f040245, 0x7f0402b5, 0x7f0402b6, 0x7f0402b7, 0x7f0402e0, 0x7f0402e7, 0x7f0402f4, 0x7f040304, 0x7f040305, 0x7f040306, 0x7f040405, 0x7f040407, 0x7f040409, 0x7f04041d } +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 { 0x7f040001, 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, 0x7f040036, 0x7f040037, 0x7f040038, 0x7f040059, 0x7f04005a, 0x7f04005b, 0x7f04009c, 0x7f0400f4, 0x7f0400f5, 0x7f040133, 0x7f040146, 0x7f04018a, 0x7f04018b, 0x7f04018c, 0x7f04018d, 0x7f04018e, 0x7f04018f, 0x7f040190, 0x7f040191, 0x7f040192, 0x7f040193, 0x7f040194, 0x7f040195, 0x7f040196, 0x7f040198, 0x7f040199, 0x7f04019a, 0x7f04019b, 0x7f04019c, 0x7f040207, 0x7f040208, 0x7f040209, 0x7f04020a, 0x7f04020b, 0x7f04020c, 0x7f04020d, 0x7f04020e, 0x7f04020f, 0x7f040210, 0x7f040211, 0x7f040212, 0x7f040213, 0x7f040214, 0x7f040215, 0x7f040216, 0x7f040217, 0x7f040218, 0x7f04021a, 0x7f04021b, 0x7f04021c, 0x7f04021d, 0x7f04021e, 0x7f04021f, 0x7f040220, 0x7f040221, 0x7f040222, 0x7f040223, 0x7f040224, 0x7f040225, 0x7f040226, 0x7f040227, 0x7f040228, 0x7f040229, 0x7f04022a, 0x7f04022b, 0x7f04022c, 0x7f04022d, 0x7f04022e, 0x7f04022f, 0x7f040231, 0x7f040232, 0x7f040233, 0x7f040234, 0x7f040236, 0x7f040237, 0x7f040238, 0x7f040239, 0x7f04023a, 0x7f04023b, 0x7f04023c, 0x7f04023d, 0x7f04023e, 0x7f040241, 0x7f040245, 0x7f0402b5, 0x7f0402b6, 0x7f0402e0, 0x7f0402e7, 0x7f0402f4, 0x7f040306, 0x7f040407, 0x7f040409 } +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 { 0x7f0401f9, 0x7f040370 } +int styleable CoordinatorLayout_keylines 0 +int styleable CoordinatorLayout_statusBarBackground 1 +int[] styleable CoordinatorLayout_Layout { 0x10100b3, 0x7f040202, 0x7f040203, 0x7f040204, 0x7f040235, 0x7f04023f, 0x7f040240 } +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 { 0x7f04003f, 0x7f04011f, 0x7f040120, 0x7f040121, 0x7f040122, 0x7f040123, 0x7f040124, 0x7f040126, 0x7f040127, 0x7f040128, 0x7f040285 } +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 { 0x7f0400c2, 0x7f0400c3, 0x7f0400c4, 0x7f0400c5 } +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 DefaultTimeBar { 0x7f04002c, 0x7f04002d, 0x7f040058, 0x7f04007c, 0x7f0402f2, 0x7f040334, 0x7f040335, 0x7f040336, 0x7f040337, 0x7f0403fb, 0x7f04040f } +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 DrawerArrowToggle { 0x7f04003d, 0x7f04003e, 0x7f040057, 0x7f0400da, 0x7f04014b, 0x7f0401ac, 0x7f040359, 0x7f0403d2 } +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 { 0x7f0400d6, 0x7f040157, 0x7f040175, 0x7f0401b8, 0x7f04034a, 0x7f04034f } +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 { 0x7f04005c, 0x7f04005d } +int styleable ExtendedFloatingActionButton_Behavior_Layout_behavior_autoHide 0 +int styleable ExtendedFloatingActionButton_Behavior_Layout_behavior_autoShrink 1 +int[] styleable FloatingActionButton { 0x101000e, 0x7f040052, 0x7f040053, 0x7f04006a, 0x7f040157, 0x7f040163, 0x7f04017d, 0x7f04017e, 0x7f0401b8, 0x7f0401c3, 0x7f04027e, 0x7f0402fe, 0x7f04031c, 0x7f040341, 0x7f040344, 0x7f04034a, 0x7f040411 } +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 { 0x7f04005c } +int styleable FloatingActionButton_Behavior_Layout_behavior_autoHide 0 +int[] styleable FlowLayout { 0x7f0401f0, 0x7f04024a } +int styleable FlowLayout_itemSpacing 0 +int styleable FlowLayout_lineSpacing 1 +int[] styleable FontFamily { 0x7f04019f, 0x7f0401a0, 0x7f0401a1, 0x7f0401a2, 0x7f0401a3, 0x7f0401a4, 0x7f0401a5 } +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, 0x7f04019d, 0x7f0401a6, 0x7f0401a7, 0x7f0401a8, 0x7f04040e } +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, 0x7f0401aa } +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 { 0x7f04002a, 0x7f04004a, 0x7f04017f, 0x7f040180, 0x7f040181, 0x7f0402cf, 0x7f0402e8, 0x7f0402e9, 0x7f0402fd, 0x7f0402ff, 0x7f040300, 0x7f040301, 0x7f040318, 0x7f040319, 0x7f04031f, 0x7f040320, 0x7f040321, 0x7f040322, 0x7f040323, 0x7f040326, 0x7f040327, 0x7f040328, 0x7f040329, 0x7f04032a, 0x7f04032b, 0x7f04032c, 0x7f04032d, 0x7f04032e, 0x7f040417 } +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 ImageFilterView { 0x7f040035, 0x7f040067, 0x7f04007b, 0x7f040107, 0x7f04011c, 0x7f0401d0, 0x7f0401d1, 0x7f0401d2, 0x7f0401d3, 0x7f0402ce, 0x7f04031e, 0x7f040325, 0x7f04032f, 0x7f040426 } +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 IndicatorView { 0x7f04041f, 0x7f040420, 0x7f040421, 0x7f040422, 0x7f040423, 0x7f040424, 0x7f040425 } +int styleable IndicatorView_vpi_orientation 0 +int styleable IndicatorView_vpi_rtl 1 +int styleable IndicatorView_vpi_slide_mode 2 +int styleable IndicatorView_vpi_slider_checked_color 3 +int styleable IndicatorView_vpi_slider_normal_color 4 +int styleable IndicatorView_vpi_slider_radius 5 +int styleable IndicatorView_vpi_style 6 +int[] styleable Insets { 0x7f0402d1, 0x7f0402d3, 0x7f0402d4, 0x7f0402d7 } +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, 0x7f04011e, 0x7f0401ab, 0x7f0402b5, 0x7f0402b7, 0x7f040405, 0x7f040407, 0x7f040409 } +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, 0x7f04011e, 0x7f0401ab, 0x7f0402b5, 0x7f0402b7, 0x7f040407, 0x7f040409, 0x7f040428, 0x7f040429, 0x7f04042a, 0x7f04042b, 0x7f04042c } +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 { 0x7f04011e, 0x7f040146, 0x7f0401ab, 0x7f0401f7, 0x7f0402b7, 0x7f0402e0, 0x7f0402e2, 0x7f0402e3, 0x7f0402e4, 0x7f0402e5, 0x7f040353, 0x7f040407 } +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, 0x7f04011e, 0x7f0401ab, 0x7f0402b5, 0x7f0402b7, 0x7f040407, 0x7f040409, 0x7f040427, 0x7f040428, 0x7f040429, 0x7f04042a, 0x7f04042b } +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 { 0x7f0401ab, 0x7f0402b7, 0x7f0402b8, 0x7f0402b9, 0x7f0402c6, 0x7f0402c8, 0x7f0402c9, 0x7f04040b, 0x7f04040c, 0x7f04040d, 0x7f04041a, 0x7f04041b, 0x7f04041c } +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, 0x7f040059, 0x7f04005a, 0x7f04005b, 0x7f04009c, 0x7f0400f4, 0x7f0400f5, 0x7f040207, 0x7f040208, 0x7f040209, 0x7f04020a, 0x7f04020b, 0x7f04020c, 0x7f04020d, 0x7f04020e, 0x7f04020f, 0x7f040210, 0x7f040211, 0x7f040212, 0x7f040213, 0x7f040214, 0x7f040215, 0x7f040216, 0x7f040217, 0x7f040218, 0x7f040219, 0x7f04021a, 0x7f04021b, 0x7f04021c, 0x7f04021d, 0x7f04021e, 0x7f04021f, 0x7f040220, 0x7f040221, 0x7f040222, 0x7f040223, 0x7f040224, 0x7f040225, 0x7f040226, 0x7f040227, 0x7f040228, 0x7f04022a, 0x7f04022b, 0x7f04022c, 0x7f04022d, 0x7f04022e, 0x7f04022f, 0x7f040230, 0x7f040231, 0x7f040232, 0x7f040233, 0x7f040234, 0x7f040236, 0x7f040237, 0x7f040238, 0x7f040239, 0x7f04023a, 0x7f04023b, 0x7f04023c, 0x7f04023d, 0x7f04023e, 0x7f040241, 0x7f040245, 0x7f04027d, 0x7f040281, 0x7f040286, 0x7f04028a } +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, 0x7f040139, 0x7f04013b, 0x7f040282, 0x7f040349 } +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 { 0x7f0401d4, 0x7f0401d8 } +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 MaterialAlertDialog { 0x7f04004b, 0x7f04004c, 0x7f04004d, 0x7f04004e } +int styleable MaterialAlertDialog_backgroundInsetBottom 0 +int styleable MaterialAlertDialog_backgroundInsetEnd 1 +int styleable MaterialAlertDialog_backgroundInsetStart 2 +int styleable MaterialAlertDialog_backgroundInsetTop 3 +int[] styleable MaterialAlertDialogTheme { 0x7f04025d, 0x7f04025e, 0x7f04025f, 0x7f040260, 0x7f040261 } +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, 0x7f040052, 0x7f040053, 0x7f040110, 0x7f040157, 0x7f0401c4, 0x7f0401c6, 0x7f0401c7, 0x7f0401c8, 0x7f0401ca, 0x7f0401cb, 0x7f04031c, 0x7f040341, 0x7f040344, 0x7f040373, 0x7f040374 } +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 { 0x7f04009e, 0x7f04033e, 0x7f040352 } +int styleable MaterialButtonToggleGroup_checkedButton 0 +int styleable MaterialButtonToggleGroup_selectionRequired 1 +int styleable MaterialButtonToggleGroup_singleSelection 2 +int[] styleable MaterialCalendar { 0x101020d, 0x7f040129, 0x7f04012a, 0x7f04012b, 0x7f04012c, 0x7f0402c3, 0x7f04030a, 0x7f040437, 0x7f040438, 0x7f040439 } +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, 0x7f0401e0, 0x7f0401e9, 0x7f0401ea, 0x7f0401f1, 0x7f0401f2, 0x7f0401f6 } +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, 0x7f04008d, 0x7f0400a0, 0x7f0400a2, 0x7f0400a3, 0x7f0400a4, 0x7f04031c, 0x7f040341, 0x7f040344, 0x7f04036d, 0x7f040373, 0x7f040374 } +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 { 0x7f040088, 0x7f040412 } +int styleable MaterialCheckBox_buttonTint 0 +int styleable MaterialCheckBox_useMaterialThemeColors 1 +int[] styleable MaterialRadioButton { 0x7f040088, 0x7f040412 } +int styleable MaterialRadioButton_buttonTint 0 +int styleable MaterialRadioButton_useMaterialThemeColors 1 +int[] styleable MaterialShape { 0x7f040341, 0x7f040344 } +int styleable MaterialShape_shapeAppearance 0 +int styleable MaterialShape_shapeAppearanceOverlay 1 +int[] styleable MaterialTextAppearance { 0x10104b6, 0x101057f, 0x7f040249 } +int styleable MaterialTextAppearance_android_letterSpacing 0 +int styleable MaterialTextAppearance_android_lineHeight 1 +int styleable MaterialTextAppearance_lineHeight 2 +int[] styleable MaterialTextView { 0x101057f, 0x1010034, 0x7f040249 } +int styleable MaterialTextView_android_lineHeight 0 +int styleable MaterialTextView_android_textAppearance 1 +int styleable MaterialTextView_lineHeight 2 +int[] styleable MaterialTimePicker { 0x7f0400ca, 0x7f0401f8 } +int styleable MaterialTimePicker_clockIcon 0 +int styleable MaterialTimePicker_keyboardIcon 1 +int[] styleable MaterialToolbar { 0x7f0402be, 0x7f040378, 0x7f0403e5 } +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 { 0x7f040011, 0x7f040025, 0x7f040027, 0x7f040034, 0x10101e3, 0x10101e5, 0x1010106, 0x101000e, 0x1010002, 0x10100d0, 0x10101de, 0x10101e4, 0x101026f, 0x10101df, 0x10101e1, 0x10101e2, 0x1010194, 0x7f0400f8, 0x7f0401ca, 0x7f0401cb, 0x7f0402c5, 0x7f040347, 0x7f0403f7 } +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, 0x7f0402fc, 0x7f040375 } +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 { 0x7f040298, 0x7f040299, 0x7f04029a, 0x7f04029b, 0x7f04029c, 0x7f04029d } +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 { 0x7f04028b, 0x7f04028c, 0x7f04028d, 0x7f04028e, 0x7f04028f, 0x7f040290, 0x7f040291, 0x7f040292, 0x7f040293, 0x7f040294, 0x7f040295, 0x7f040296, 0x7f040297 } +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 { 0x7f040036, 0x7f040037, 0x7f040038, 0x7f040146, 0x7f0402b4, 0x7f0402b6, 0x7f0402e0, 0x7f040304, 0x7f040305, 0x7f040306, 0x7f040407 } +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 { 0x7f0402aa, 0x7f0402ab, 0x7f0402ac, 0x7f0402ad, 0x7f0402ae, 0x7f0402af, 0x7f0402b0, 0x7f0402b1 } +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 { 0x7f0402c7, 0x7f0402ca } +int styleable MotionHelper_onHide 0 +int styleable MotionHelper_onShow 1 +int[] styleable MotionLabel { 0x1010535, 0x10103ac, 0x10100af, 0x1010164, 0x101014f, 0x1010098, 0x1010095, 0x1010097, 0x1010096, 0x7f040068, 0x7f040069, 0x7f040330, 0x7f0403bb, 0x7f0403bc, 0x7f0403bd, 0x7f0403be, 0x7f0403bf, 0x7f0403c7, 0x7f0403c8, 0x7f0403c9, 0x7f0403ca, 0x7f0403cc, 0x7f0403cd, 0x7f0403ce, 0x7f0403cf } +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 { 0x7f04003b, 0x7f04011d, 0x7f0401ff, 0x7f04029e, 0x7f0402b5, 0x7f04034b } +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 { 0x7f04012d, 0x7f040200 } +int styleable MotionScene_defaultDuration 0 +int styleable MotionScene_layoutDuringTransition 1 +int[] styleable MotionTelltales { 0x7f0403a1, 0x7f0403a2, 0x7f0403a3 } +int styleable MotionTelltales_telltales_tailColor 0 +int styleable MotionTelltales_telltales_tailScale 1 +int styleable MotionTelltales_telltales_velocityMode 2 +int[] styleable NavigationBarView { 0x7f040052, 0x7f040157, 0x7f0401df, 0x7f0401e4, 0x7f0401e5, 0x7f0401e8, 0x7f0401f4, 0x7f0401f5, 0x7f0401f6, 0x7f0401fc, 0x7f040283 } +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 { 0x7f0401b1, 0x7f040284 } +int styleable NavigationRailView_headerLayout 0 +int styleable NavigationRailView_menuGravity 1 +int[] styleable NavigationView { 0x10100d4, 0x10100dd, 0x101011f, 0x7f040157, 0x7f0401b1, 0x7f0401df, 0x7f0401e1, 0x7f0401e3, 0x7f0401e4, 0x7f0401e5, 0x7f0401e6, 0x7f0401e9, 0x7f0401ea, 0x7f0401eb, 0x7f0401ec, 0x7f0401ed, 0x7f0401ee, 0x7f0401ef, 0x7f0401f3, 0x7f0401f6, 0x7f040283, 0x7f040341, 0x7f040344 } +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 { 0x7f0400c7, 0x7f0403a0 } +int styleable OnClick_clickAction 0 +int styleable OnClick_targetId 1 +int[] styleable OnSwipe { 0x7f040040, 0x7f040143, 0x7f040144, 0x7f040145, 0x7f040248, 0x7f040279, 0x7f040280, 0x7f0402ba, 0x7f0402c2, 0x7f0402cc, 0x7f04031d, 0x7f04035d, 0x7f04035e, 0x7f04035f, 0x7f040360, 0x7f040361, 0x7f0403f8, 0x7f0403f9, 0x7f0403fa } +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 { 0x7f040109, 0x7f040187, 0x7f04031b, 0x7f04034e } +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, 0x7f0402cd } +int styleable PopupWindow_android_popupAnimationStyle 0 +int styleable PopupWindow_android_popupBackground 1 +int styleable PopupWindow_overlapAnchor 2 +int[] styleable PopupWindowBackgroundState { 0x7f04036a } +int styleable PopupWindowBackgroundState_state_above_anchor 0 +int[] styleable PropertySet { 0x101031f, 0x10100dc, 0x7f040229, 0x7f0402b5, 0x7f04041d } +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 { 0x7f040274 } +int styleable RadialViewGroup_materialCircleRadius 0 +int[] styleable RangeSlider { 0x7f040288, 0x7f040415 } +int styleable RangeSlider_minSeparation 0 +int styleable RangeSlider_values 1 +int[] styleable RecycleListView { 0x7f0402d0, 0x7f0402d6 } +int styleable RecycleListView_paddingBottomNoButtons 0 +int styleable RecycleListView_paddingTopNoTitle 1 +int[] styleable RecyclerView { 0x10100eb, 0x10100f1, 0x10100c4, 0x7f040182, 0x7f040183, 0x7f040184, 0x7f040185, 0x7f040186, 0x7f040201, 0x7f04031a, 0x7f040358, 0x7f040363 } +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 { 0x7f040324 } +int styleable RoundLayout_roundLayoutRadius 0 +int[] styleable Scale { 0x7f040137 } +int styleable Scale_disappearedScale 0 +int[] styleable ScrimInsetsFrameLayout { 0x7f0401dc } +int styleable ScrimInsetsFrameLayout_insetForeground 0 +int[] styleable ScrollingViewBehavior_Layout { 0x7f040063 } +int styleable ScrollingViewBehavior_Layout_behavior_overlapTop 0 +int[] styleable SearchView { 0x10100da, 0x1010264, 0x1010220, 0x101011f, 0x7f0400cc, 0x7f0400f0, 0x7f04012e, 0x7f0401ae, 0x7f0401cc, 0x7f0401fe, 0x7f040307, 0x7f040308, 0x7f040338, 0x7f040339, 0x7f040376, 0x7f04037f, 0x7f04041e } +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 { 0x7f04010b, 0x7f04010c, 0x7f04010d, 0x7f04010e, 0x7f04010f, 0x7f040111, 0x7f040112, 0x7f040113, 0x7f040114, 0x7f040115 } +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 { 0x7f0400ff, 0x7f040100, 0x7f040101, 0x7f040102, 0x7f040103, 0x7f040104, 0x7f040105, 0x7f040341, 0x7f040344, 0x7f040373, 0x7f040374 } +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 { 0x7f040029, 0x7f04002a, 0x7f04002b, 0x7f04004a, 0x7f04017f, 0x7f040180, 0x7f040181, 0x7f0402cf, 0x7f0402e8, 0x7f0402e9, 0x7f0402fd, 0x7f0402ff, 0x7f040300, 0x7f040301, 0x7f040318, 0x7f040319, 0x7f04031f, 0x7f040320, 0x7f040321, 0x7f040322, 0x7f040323, 0x7f040326, 0x7f040327, 0x7f040328, 0x7f040329, 0x7f04032a, 0x7f04032b, 0x7f04032c, 0x7f04032d, 0x7f04032e, 0x7f040417 } +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 { 0x7f040109, 0x7f040130, 0x7f040187, 0x7f0401bb, 0x7f0402f3, 0x7f040317, 0x7f04031b, 0x7f04034e, 0x7f040380, 0x7f040413, 0x7f040414 } +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, 0x7f0401af, 0x7f0401b0, 0x7f0401fa, 0x7f0401fb, 0x7f0403d3, 0x7f0403d4, 0x7f0403d5, 0x7f0403d6, 0x7f0403d7, 0x7f0403db, 0x7f0403dc, 0x7f0403dd, 0x7f0403e1, 0x7f0403fd, 0x7f0403fe, 0x7f0403ff, 0x7f040401 } +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 { 0x7f040355, 0x7f040356, 0x7f040357 } +int styleable Snackbar_snackbarButtonStyle 0 +int styleable Snackbar_snackbarStyle 1 +int styleable Snackbar_snackbarTextViewStyle 2 +int[] styleable SnackbarLayout { 0x7f040026, 0x101011f, 0x7f040039, 0x7f04004f, 0x7f040052, 0x7f040053, 0x7f040157, 0x7f04027a } +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, 0x7f0402f7 } +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, 0x7f0400f6 } +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 { 0x7f04012f } +int styleable StateSet_defaultState 0 +int[] styleable SwitchCompat { 0x1010125, 0x1010124, 0x1010142, 0x7f04034c, 0x7f04035c, 0x7f040381, 0x7f040382, 0x7f040384, 0x7f0403d8, 0x7f0403d9, 0x7f0403da, 0x7f0403fc, 0x7f040403, 0x7f040404 } +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 { 0x7f040412 } +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 { 0x7f040385, 0x7f040386, 0x7f040387, 0x7f040388, 0x7f040389, 0x7f04038a, 0x7f04038b, 0x7f04038c, 0x7f04038d, 0x7f04038e, 0x7f04038f, 0x7f040390, 0x7f040391, 0x7f040392, 0x7f040393, 0x7f040394, 0x7f040395, 0x7f040396, 0x7f040397, 0x7f040398, 0x7f040399, 0x7f04039a, 0x7f04039b, 0x7f04039d, 0x7f04039e, 0x7f04039f } +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, 0x7f04019e, 0x7f0401a7, 0x7f0403a4, 0x7f0403c6 } +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, 0x7f040068, 0x7f040069, 0x7f0403c3, 0x7f0403c7, 0x7f0403c8 } +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 { 0x7f0403c4 } +int styleable TextInputEditText_textInputLayoutFocusedRectEnabled 0 +int[] styleable TextInputLayout { 0x101000e, 0x1010150, 0x101011f, 0x101013f, 0x101009a, 0x7f040070, 0x7f040071, 0x7f040072, 0x7f040073, 0x7f040074, 0x7f040075, 0x7f040076, 0x7f040077, 0x7f040078, 0x7f040079, 0x7f04007a, 0x7f040116, 0x7f040117, 0x7f040118, 0x7f040119, 0x7f04011a, 0x7f04011b, 0x7f04015b, 0x7f04015c, 0x7f04015d, 0x7f04015e, 0x7f04015f, 0x7f040160, 0x7f040164, 0x7f040165, 0x7f040166, 0x7f040167, 0x7f040168, 0x7f040169, 0x7f04016a, 0x7f04016d, 0x7f0401b3, 0x7f0401b4, 0x7f0401b5, 0x7f0401b6, 0x7f0401bc, 0x7f0401bd, 0x7f0401be, 0x7f0401bf, 0x7f0402db, 0x7f0402dc, 0x7f0402dd, 0x7f0402de, 0x7f0402df, 0x7f0402ea, 0x7f0402eb, 0x7f0402ec, 0x7f0402f9, 0x7f0402fa, 0x7f0402fb, 0x7f040341, 0x7f040344, 0x7f040365, 0x7f040366, 0x7f040367, 0x7f040368, 0x7f040369, 0x7f04037c, 0x7f04037d, 0x7f04037e } +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, 0x7f040161, 0x7f040162 } +int styleable ThemeEnforcement_android_textAppearance 0 +int styleable ThemeEnforcement_enforceMaterialTheme 1 +int styleable ThemeEnforcement_enforceTextAppearance 2 +int[] styleable Toolbar { 0x10100af, 0x1010140, 0x7f040083, 0x7f0400d4, 0x7f0400d5, 0x7f0400f9, 0x7f0400fa, 0x7f0400fb, 0x7f0400fc, 0x7f0400fd, 0x7f0400fe, 0x7f04025b, 0x7f04025c, 0x7f04027b, 0x7f040283, 0x7f0402bc, 0x7f0402bd, 0x7f0402f7, 0x7f040377, 0x7f040379, 0x7f04037a, 0x7f0403e4, 0x7f0403e8, 0x7f0403e9, 0x7f0403ea, 0x7f0403eb, 0x7f0403ec, 0x7f0403ed, 0x7f0403ee, 0x7f0403ef } +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, 0x7f040052 } +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, 0x7f040405 } +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, 0x7f040047, 0x7f0400f2, 0x7f0400f3, 0x7f040153, 0x7f040200, 0x7f0402b2, 0x7f0402e0, 0x7f040364, 0x7f040406, 0x7f040408 } +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 { 0x7f0400f6, 0x7f040313, 0x7f040314, 0x7f040315, 0x7f040316 } +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, 0x7f0402d2, 0x7f0402d5, 0x7f0403d0 } +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, 0x7f040052, 0x7f040053 } +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 { 0x7f040002, 0x7f040003, 0x10100d0, 0x7f0400c6, 0x7f040153, 0x7f0401cd, 0x7f0401ce, 0x7f0402b2, 0x7f0402b7, 0x7f0402cb, 0x7f0402e0, 0x7f040340, 0x7f040406, 0x7f040410, 0x7f040419 } +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 { 0x7f04013d, 0x7f04013e, 0x7f04013f, 0x7f040140, 0x7f040141, 0x7f040142 } +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 { 0x7f0400f1 } +int styleable include_constraintSet 0 +int[] styleable play { 0x7f0402ee, 0x7f0402ef, 0x7f0402f0, 0x7f0402f1 } +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 standalone_badge 0x7f180001 +int xml standalone_badge_gravity_bottom_end 0x7f180002 +int xml standalone_badge_gravity_bottom_start 0x7f180003 +int xml standalone_badge_gravity_top_start 0x7f180004 +int xml standalone_badge_offset 0x7f180005 +int xml util_code_provider_paths 0x7f180006 diff --git a/core/function-impl/mogo-core-function-msgbox/build/outputs/logs/manifest-merger-debug-report.txt b/core/function-impl/mogo-core-function-msgbox/build/outputs/logs/manifest-merger-debug-report.txt new file mode 100644 index 0000000000..df2c48ceda --- /dev/null +++ b/core/function-impl/mogo-core-function-msgbox/build/outputs/logs/manifest-merger-debug-report.txt @@ -0,0 +1,33 @@ +-- Merging decision tree log --- +manifest +ADDED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-msgbox/src/main/AndroidManifest.xml:2:1-6:12 +INJECTED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-msgbox/src/main/AndroidManifest.xml:2:1-6:12 +INJECTED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-msgbox/src/main/AndroidManifest.xml:2:1-6:12 +INJECTED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-msgbox/src/main/AndroidManifest.xml:2:1-6:12 +INJECTED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-msgbox/src/main/AndroidManifest.xml:2:1-6:12 + package + ADDED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-msgbox/src/main/AndroidManifest.xml:3:5-50 + INJECTED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-msgbox/src/main/AndroidManifest.xml + INJECTED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-msgbox/src/main/AndroidManifest.xml + android:versionCode + INJECTED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-msgbox/src/main/AndroidManifest.xml + ADDED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-msgbox/src/main/AndroidManifest.xml:2:1-6:12 + INJECTED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-msgbox/src/main/AndroidManifest.xml + xmlns:android + ADDED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-msgbox/src/main/AndroidManifest.xml:2:11-69 +application +ADDED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-msgbox/src/main/AndroidManifest.xml:4:5-5:19 +uses-sdk +INJECTED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-msgbox/src/main/AndroidManifest.xml reason: use-sdk injection requested +INJECTED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-msgbox/src/main/AndroidManifest.xml +INJECTED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-msgbox/src/main/AndroidManifest.xml +INJECTED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-msgbox/src/main/AndroidManifest.xml +INJECTED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-msgbox/src/main/AndroidManifest.xml + android:targetSdkVersion + INJECTED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-msgbox/src/main/AndroidManifest.xml + ADDED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-msgbox/src/main/AndroidManifest.xml + INJECTED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-msgbox/src/main/AndroidManifest.xml + android:minSdkVersion + INJECTED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-msgbox/src/main/AndroidManifest.xml + ADDED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-msgbox/src/main/AndroidManifest.xml + INJECTED from /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-msgbox/src/main/AndroidManifest.xml diff --git a/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/incApCache/debug/ap-classpath-entries.bin b/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/incApCache/debug/ap-classpath-entries.bin new file mode 100644 index 0000000000..acb782c443 Binary files /dev/null and b/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/incApCache/debug/ap-classpath-entries.bin differ diff --git a/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/incApCache/debug/apt-cache.bin b/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/incApCache/debug/apt-cache.bin new file mode 100644 index 0000000000..740230aef1 Binary files /dev/null and b/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/incApCache/debug/apt-cache.bin differ diff --git a/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/incApCache/debug/classpath-entries.bin b/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/incApCache/debug/classpath-entries.bin new file mode 100644 index 0000000000..07a3effe32 Binary files /dev/null and b/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/incApCache/debug/classpath-entries.bin differ diff --git a/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/incApCache/debug/classpath-structure.bin b/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/incApCache/debug/classpath-structure.bin new file mode 100644 index 0000000000..9e6a37d64e Binary files /dev/null and b/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/incApCache/debug/classpath-structure.bin differ diff --git a/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/incApCache/debug/java-cache.bin b/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/incApCache/debug/java-cache.bin new file mode 100644 index 0000000000..df480b2877 Binary files /dev/null and b/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/incApCache/debug/java-cache.bin differ diff --git a/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/incrementalData/debug/META-INF/mogo-core-function-msgbox_debug.kotlin_module b/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/incrementalData/debug/META-INF/mogo-core-function-msgbox_debug.kotlin_module new file mode 100644 index 0000000000..70f0f69f7a Binary files /dev/null and b/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/incrementalData/debug/META-INF/mogo-core-function-msgbox_debug.kotlin_module differ diff --git a/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/incrementalData/debug/com/mogo/eagle/core/function/msgbox/DataManager.class b/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/incrementalData/debug/com/mogo/eagle/core/function/msgbox/DataManager.class new file mode 100644 index 0000000000..1cbc2538ce Binary files /dev/null and b/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/incrementalData/debug/com/mogo/eagle/core/function/msgbox/DataManager.class differ diff --git a/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/incrementalData/debug/com/mogo/eagle/core/function/msgbox/MsgBoxConfig$Companion.class b/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/incrementalData/debug/com/mogo/eagle/core/function/msgbox/MsgBoxConfig$Companion.class new file mode 100644 index 0000000000..29c719606c Binary files /dev/null and b/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/incrementalData/debug/com/mogo/eagle/core/function/msgbox/MsgBoxConfig$Companion.class differ diff --git a/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/incrementalData/debug/com/mogo/eagle/core/function/msgbox/MsgBoxConfig.class b/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/incrementalData/debug/com/mogo/eagle/core/function/msgbox/MsgBoxConfig.class new file mode 100644 index 0000000000..6e4b084682 Binary files /dev/null and b/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/incrementalData/debug/com/mogo/eagle/core/function/msgbox/MsgBoxConfig.class differ diff --git a/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/incrementalData/debug/com/mogo/eagle/core/function/msgbox/MsgBoxProvider.class b/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/incrementalData/debug/com/mogo/eagle/core/function/msgbox/MsgBoxProvider.class new file mode 100644 index 0000000000..ed723740f4 Binary files /dev/null and b/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/incrementalData/debug/com/mogo/eagle/core/function/msgbox/MsgBoxProvider.class differ diff --git a/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/incrementalData/debug/com/mogo/eagle/core/function/msgbox/db/MsgBoxDao.class b/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/incrementalData/debug/com/mogo/eagle/core/function/msgbox/db/MsgBoxDao.class new file mode 100644 index 0000000000..b61aed2130 Binary files /dev/null and b/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/incrementalData/debug/com/mogo/eagle/core/function/msgbox/db/MsgBoxDao.class differ diff --git a/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/incrementalData/debug/com/mogo/eagle/core/function/msgbox/db/MsgBoxDb$Companion.class b/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/incrementalData/debug/com/mogo/eagle/core/function/msgbox/db/MsgBoxDb$Companion.class new file mode 100644 index 0000000000..1e9d3006d1 Binary files /dev/null and b/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/incrementalData/debug/com/mogo/eagle/core/function/msgbox/db/MsgBoxDb$Companion.class differ diff --git a/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/incrementalData/debug/com/mogo/eagle/core/function/msgbox/db/MsgBoxDb.class b/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/incrementalData/debug/com/mogo/eagle/core/function/msgbox/db/MsgBoxDb.class new file mode 100644 index 0000000000..5411bae098 Binary files /dev/null and b/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/incrementalData/debug/com/mogo/eagle/core/function/msgbox/db/MsgBoxDb.class differ diff --git a/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/incrementalData/debug/com/mogo/eagle/core/function/msgbox/db/MsgBoxInfo.class b/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/incrementalData/debug/com/mogo/eagle/core/function/msgbox/db/MsgBoxInfo.class new file mode 100644 index 0000000000..ca2cc48ba1 Binary files /dev/null and b/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/incrementalData/debug/com/mogo/eagle/core/function/msgbox/db/MsgBoxInfo.class differ diff --git a/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/stubs/debug/com/mogo/eagle/core/function/msgbox/DataManager.java b/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/stubs/debug/com/mogo/eagle/core/function/msgbox/DataManager.java new file mode 100644 index 0000000000..f138126baf --- /dev/null +++ b/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/stubs/debug/com/mogo/eagle/core/function/msgbox/DataManager.java @@ -0,0 +1,147 @@ +package com.mogo.eagle.core.function.msgbox; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000H\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\t\n\u0000\n\u0002\u0010!\n\u0002\u0018\u0002\n\u0002\b\u0011\n\u0002\u0018\u0002\n\u0002\u0010\u000e\n\u0002\b\u0004\n\u0002\u0018\u0002\n\u0002\b\u0007\n\u0002\u0010\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010 \n\u0002\b\u000f\b\u00c6\u0002\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002J\u0016\u0010&\u001a\u00020\'2\u0006\u0010(\u001a\u00020)2\u0006\u0010*\u001a\u00020\u0007J\u001f\u0010+\u001a\b\u0012\u0004\u0012\u00020\u00070,2\u0006\u0010(\u001a\u00020)H\u0082@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010-J\f\u0010.\u001a\b\u0012\u0004\u0012\u00020\u00070,J\f\u0010/\u001a\b\u0012\u0004\u0012\u00020\u00070,J\f\u00100\u001a\b\u0012\u0004\u0012\u00020\u00070,J\b\u00101\u001a\u00020\'H\u0002J\u000e\u00102\u001a\u00020\'2\u0006\u0010(\u001a\u00020)J\u0010\u00103\u001a\u00020\'2\u0006\u00104\u001a\u00020\u0007H\u0002J\u0016\u00105\u001a\u00020\'2\u0006\u00106\u001a\u00020\u001a2\u0006\u00107\u001a\u00020\u0001J\u000e\u00108\u001a\u00020\'2\u0006\u0010(\u001a\u00020)J\u000e\u00109\u001a\u00020\'2\u0006\u0010:\u001a\u00020\u0007R\u000e\u0010\u0003\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000R!\u0010\u0005\u001a\b\u0012\u0004\u0012\u00020\u00070\u00068BX\u0082\u0084\u0002\u00a2\u0006\f\n\u0004\b\n\u0010\u000b\u001a\u0004\b\b\u0010\tR!\u0010\f\u001a\b\u0012\u0004\u0012\u00020\u00070\u00068BX\u0082\u0084\u0002\u00a2\u0006\f\n\u0004\b\u000e\u0010\u000b\u001a\u0004\b\r\u0010\tR!\u0010\u000f\u001a\b\u0012\u0004\u0012\u00020\u00070\u00068BX\u0082\u0084\u0002\u00a2\u0006\f\n\u0004\b\u0011\u0010\u000b\u001a\u0004\b\u0010\u0010\tR!\u0010\u0012\u001a\b\u0012\u0004\u0012\u00020\u00070\u00068BX\u0082\u0084\u0002\u00a2\u0006\f\n\u0004\b\u0014\u0010\u000b\u001a\u0004\b\u0013\u0010\tR!\u0010\u0015\u001a\b\u0012\u0004\u0012\u00020\u00070\u00068BX\u0082\u0084\u0002\u00a2\u0006\f\n\u0004\b\u0017\u0010\u000b\u001a\u0004\b\u0016\u0010\tR\'\u0010\u0018\u001a\u000e\u0012\u0004\u0012\u00020\u001a\u0012\u0004\u0012\u00020\u00010\u00198BX\u0082\u0084\u0002\u00a2\u0006\f\n\u0004\b\u001d\u0010\u000b\u001a\u0004\b\u001b\u0010\u001cR\u001b\u0010\u001e\u001a\u00020\u001f8BX\u0082\u0084\u0002\u00a2\u0006\f\n\u0004\b\"\u0010\u000b\u001a\u0004\b \u0010!R!\u0010#\u001a\b\u0012\u0004\u0012\u00020\u00070\u00068BX\u0082\u0084\u0002\u00a2\u0006\f\n\u0004\b%\u0010\u000b\u001a\u0004\b$\u0010\t\u0082\u0002\u0004\n\u0002\b\u0019\u00a8\u0006;"}, d2 = {"Lcom/mogo/eagle/core/function/msgbox/DataManager;", "", "()V", "DISMISS_TIME", "", "cacheNotifyList", "", "Lcom/mogo/eagle/core/data/msgbox/MsgBoxBean;", "getCacheNotifyList", "()Ljava/util/List;", "cacheNotifyList$delegate", "Lkotlin/Lazy;", "cacheRecordList", "getCacheRecordList", "cacheRecordList$delegate", "cacheSysInfoList", "getCacheSysInfoList", "cacheSysInfoList$delegate", "notifyList", "getNotifyList", "notifyList$delegate", "recordBagList", "getRecordBagList", "recordBagList$delegate", "removedRecordMap", "Ljava/util/HashMap;", "", "getRemovedRecordMap", "()Ljava/util/HashMap;", "removedRecordMap$delegate", "scope", "Landroidx/lifecycle/LifecycleCoroutineScope;", "getScope", "()Landroidx/lifecycle/LifecycleCoroutineScope;", "scope$delegate", "sysInfoList", "getSysInfoList", "sysInfoList$delegate", "delMsgBoxBean", "", "context", "Landroid/content/Context;", "msgBoxBean", "getCacheMessages", "", "(Landroid/content/Context;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;", "getNotifyData", "getRecordBagData", "getSysInfoData", "initCache", "queryAllMessages", "realSaveMsg", "msg", "removeRecordInfo", "key", "value", "saveAllMessages2Disk", "saveMsg", "bean", "mogo-core-function-msgbox_debug"}) +public final class DataManager { + @org.jetbrains.annotations.NotNull() + public static final com.mogo.eagle.core.function.msgbox.DataManager INSTANCE = null; + public static final long DISMISS_TIME = 5000L; + private static final kotlin.Lazy notifyList$delegate = null; + + /** + * 当天缓存的通知消息 + */ + private static final kotlin.Lazy cacheNotifyList$delegate = null; + private static final kotlin.Lazy sysInfoList$delegate = null; + + /** + * 当天缓存的系统消息 + */ + private static final kotlin.Lazy cacheSysInfoList$delegate = null; + private static final kotlin.Lazy recordBagList$delegate = null; + + /** + * 当天缓存的录包消息 + */ + private static final kotlin.Lazy cacheRecordList$delegate = null; + private static final kotlin.Lazy scope$delegate = null; + + /** + * 用户取消给录制的Bag包打标签 + */ + private static final kotlin.Lazy removedRecordMap$delegate = null; + + private DataManager() { + super(); + } + + private final java.util.List getNotifyList() { + return null; + } + + /** + * 当天缓存的通知消息 + */ + private final java.util.List getCacheNotifyList() { + return null; + } + + private final java.util.List getSysInfoList() { + return null; + } + + /** + * 当天缓存的系统消息 + */ + private final java.util.List getCacheSysInfoList() { + return null; + } + + private final java.util.List getRecordBagList() { + return null; + } + + /** + * 当天缓存的录包消息 + */ + private final java.util.List getCacheRecordList() { + return null; + } + + private final androidx.lifecycle.LifecycleCoroutineScope getScope() { + return null; + } + + /** + * 用户取消给录制的Bag包打标签 + */ + private final java.util.HashMap getRemovedRecordMap() { + return null; + } + + /** + * 存储时保证按时序排列 + */ + public final void saveMsg(@org.jetbrains.annotations.NotNull() + com.mogo.eagle.core.data.msgbox.MsgBoxBean bean) { + } + + private final void realSaveMsg(com.mogo.eagle.core.data.msgbox.MsgBoxBean msg) { + } + + /** + * 通知消息:V2X、云公告、运营信息 + */ + @org.jetbrains.annotations.NotNull() + public final java.util.List getNotifyData() { + return null; + } + + /** + * 工控机Report信息 + */ + @org.jetbrains.annotations.NotNull() + public final java.util.List getSysInfoData() { + return null; + } + + /** + * 录包信息 + */ + @org.jetbrains.annotations.NotNull() + public final java.util.List getRecordBagData() { + return null; + } + + public final void removeRecordInfo(@org.jetbrains.annotations.NotNull() + java.lang.String key, @org.jetbrains.annotations.NotNull() + java.lang.Object value) { + } + + /** + * 从本地数据库中查询数据 + */ + public final void queryAllMessages(@org.jetbrains.annotations.NotNull() + android.content.Context context) { + } + + private final void initCache() { + } + + private final java.lang.Object getCacheMessages(android.content.Context context, kotlin.coroutines.Continuation> continuation) { + return null; + } + + /** + * 存储到本地数据库 + */ + public final void saveAllMessages2Disk(@org.jetbrains.annotations.NotNull() + android.content.Context context) { + } + + public final void delMsgBoxBean(@org.jetbrains.annotations.NotNull() + android.content.Context context, @org.jetbrains.annotations.NotNull() + com.mogo.eagle.core.data.msgbox.MsgBoxBean msgBoxBean) { + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/stubs/debug/com/mogo/eagle/core/function/msgbox/DataManager.kapt_metadata b/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/stubs/debug/com/mogo/eagle/core/function/msgbox/DataManager.kapt_metadata new file mode 100644 index 0000000000..dbda0d0e06 Binary files /dev/null and b/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/stubs/debug/com/mogo/eagle/core/function/msgbox/DataManager.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/stubs/debug/com/mogo/eagle/core/function/msgbox/MsgBoxConfig.java b/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/stubs/debug/com/mogo/eagle/core/function/msgbox/MsgBoxConfig.java new file mode 100644 index 0000000000..666e8d6c71 --- /dev/null +++ b/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/stubs/debug/com/mogo/eagle/core/function/msgbox/MsgBoxConfig.java @@ -0,0 +1,49 @@ +package com.mogo.eagle.core.function.msgbox; + +import java.lang.System; + +/** + * @author XuXinChao + * @description 消息盒子配置 + * @since: 2022/12/1 + */ +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000\f\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0003\u0018\u0000 \u00032\u00020\u0001:\u0001\u0003B\u0005\u00a2\u0006\u0002\u0010\u0002\u00a8\u0006\u0004"}, d2 = {"Lcom/mogo/eagle/core/function/msgbox/MsgBoxConfig;", "", "()V", "Companion", "mogo-core-function-msgbox_debug"}) +public final class MsgBoxConfig { + @org.jetbrains.annotations.NotNull() + public static final com.mogo.eagle.core.function.msgbox.MsgBoxConfig.Companion Companion = null; + private static final java.lang.String userRecord = "USER_RECORD"; + @org.jetbrains.annotations.NotNull() + @kotlin.jvm.JvmField() + public static java.util.ArrayList noticeList; + @org.jetbrains.annotations.NotNull() + @kotlin.jvm.JvmField() + public static java.util.ArrayList systemInfoList; + @org.jetbrains.annotations.NotNull() + @kotlin.jvm.JvmField() + public static java.util.ArrayList recordBagList; + + public MsgBoxConfig() { + super(); + } + + @kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u00000\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0003\n\u0002\u0010\u000e\n\u0000\n\u0002\u0010\b\n\u0000\n\u0002\u0010\u0002\n\u0002\b\u0002\b\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002J\u0006\u0010\u000b\u001a\u00020\fJ\u000e\u0010\r\u001a\u00020\u000e2\u0006\u0010\u000f\u001a\u00020\fR\"\u0010\u0003\u001a\u0012\u0012\u0004\u0012\u00020\u00050\u0004j\b\u0012\u0004\u0012\u00020\u0005`\u00068\u0006@\u0006X\u0087\u000e\u00a2\u0006\u0002\n\u0000R\"\u0010\u0007\u001a\u0012\u0012\u0004\u0012\u00020\u00050\u0004j\b\u0012\u0004\u0012\u00020\u0005`\u00068\u0006@\u0006X\u0087\u000e\u00a2\u0006\u0002\n\u0000R\"\u0010\b\u001a\u0012\u0012\u0004\u0012\u00020\u00050\u0004j\b\u0012\u0004\u0012\u00020\u0005`\u00068\u0006@\u0006X\u0087\u000e\u00a2\u0006\u0002\n\u0000R\u000e\u0010\t\u001a\u00020\nX\u0082T\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u0010"}, d2 = {"Lcom/mogo/eagle/core/function/msgbox/MsgBoxConfig$Companion;", "", "()V", "noticeList", "Ljava/util/ArrayList;", "Lcom/mogo/eagle/core/data/msgbox/MsgBoxBean;", "Lkotlin/collections/ArrayList;", "recordBagList", "systemInfoList", "userRecord", "", "getUserRecord", "", "setUserRecord", "", "record", "mogo-core-function-msgbox_debug"}) + public static final class Companion { + + private Companion() { + super(); + } + + /** + * 获取当前用户Tab选择记录 + */ + public final int getUserRecord() { + return 0; + } + + /** + * 设置当前用户Tab选择记录 + */ + public final void setUserRecord(int record) { + } + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/stubs/debug/com/mogo/eagle/core/function/msgbox/MsgBoxConfig.kapt_metadata b/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/stubs/debug/com/mogo/eagle/core/function/msgbox/MsgBoxConfig.kapt_metadata new file mode 100644 index 0000000000..e8af87e5d0 Binary files /dev/null and b/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/stubs/debug/com/mogo/eagle/core/function/msgbox/MsgBoxConfig.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/stubs/debug/com/mogo/eagle/core/function/msgbox/MsgBoxProvider.java b/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/stubs/debug/com/mogo/eagle/core/function/msgbox/MsgBoxProvider.java new file mode 100644 index 0000000000..e8597719dd --- /dev/null +++ b/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/stubs/debug/com/mogo/eagle/core/function/msgbox/MsgBoxProvider.java @@ -0,0 +1,67 @@ +package com.mogo.eagle.core.function.msgbox; + +import java.lang.System; + +@com.alibaba.android.arouter.facade.annotation.Route(path = "/msg_box/api") +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u00004\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0002\b\u0003\n\u0002\u0010 \n\u0002\u0018\u0002\n\u0002\b\u0003\n\u0002\u0010\t\n\u0000\n\u0002\u0010\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\b\b\u0007\u0018\u00002\u00020\u0001B\u0005\u00a2\u0006\u0002\u0010\u0002J\u000e\u0010\u0007\u001a\b\u0012\u0004\u0012\u00020\t0\bH\u0016J\u000e\u0010\n\u001a\b\u0012\u0004\u0012\u00020\t0\bH\u0016J\u000e\u0010\u000b\u001a\b\u0012\u0004\u0012\u00020\t0\bH\u0016J\b\u0010\f\u001a\u00020\rH\u0016J\u0010\u0010\u000e\u001a\u00020\u000f2\u0006\u0010\u0010\u001a\u00020\u0011H\u0016J\b\u0010\u0012\u001a\u00020\u000fH\u0016J\u0010\u0010\u0013\u001a\u00020\u000f2\u0006\u0010\u0010\u001a\u00020\u0011H\u0016J \u0010\u0014\u001a\u00020\u000f2\u0006\u0010\u0010\u001a\u00020\u00112\u0006\u0010\u0015\u001a\u00020\t2\u0006\u0010\u0016\u001a\u00020\u0004H\u0016J\u0010\u0010\u0017\u001a\u00020\u000f2\u0006\u0010\u0018\u001a\u00020\tH\u0016R\u0014\u0010\u0003\u001a\u00020\u00048VX\u0096\u0004\u00a2\u0006\u0006\u001a\u0004\b\u0005\u0010\u0006\u00a8\u0006\u0019"}, d2 = {"Lcom/mogo/eagle/core/function/msgbox/MsgBoxProvider;", "Lcom/mogo/eagle/core/function/api/msgbox/IMsgBoxProvider;", "()V", "functionName", "", "getFunctionName", "()Ljava/lang/String;", "getCachedNotifyData", "", "Lcom/mogo/eagle/core/data/msgbox/MsgBoxBean;", "getCachedRecordBagData", "getCachedSysInfoData", "getDismissTime", "", "init", "", "context", "Landroid/content/Context;", "onDestroy", "queryAllMessages", "removeRecordInfo", "msgBoxBean", "key", "saveMsg", "bean", "mogo-core-function-msgbox_debug"}) +public final class MsgBoxProvider implements com.mogo.eagle.core.function.api.msgbox.IMsgBoxProvider { + + public MsgBoxProvider() { + super(); + } + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + public java.lang.String getFunctionName() { + return null; + } + + @java.lang.Override() + public void init(@org.jetbrains.annotations.NotNull() + android.content.Context context) { + } + + @java.lang.Override() + public void queryAllMessages(@org.jetbrains.annotations.NotNull() + android.content.Context context) { + } + + @java.lang.Override() + public void saveMsg(@org.jetbrains.annotations.NotNull() + com.mogo.eagle.core.data.msgbox.MsgBoxBean bean) { + } + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + public java.util.List getCachedNotifyData() { + return null; + } + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + public java.util.List getCachedSysInfoData() { + return null; + } + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + public java.util.List getCachedRecordBagData() { + return null; + } + + @java.lang.Override() + public void removeRecordInfo(@org.jetbrains.annotations.NotNull() + android.content.Context context, @org.jetbrains.annotations.NotNull() + com.mogo.eagle.core.data.msgbox.MsgBoxBean msgBoxBean, @org.jetbrains.annotations.NotNull() + java.lang.String key) { + } + + @java.lang.Override() + public long getDismissTime() { + return 0L; + } + + @java.lang.Override() + public void onDestroy() { + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/stubs/debug/com/mogo/eagle/core/function/msgbox/MsgBoxProvider.kapt_metadata b/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/stubs/debug/com/mogo/eagle/core/function/msgbox/MsgBoxProvider.kapt_metadata new file mode 100644 index 0000000000..e8bb15f85a Binary files /dev/null and b/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/stubs/debug/com/mogo/eagle/core/function/msgbox/MsgBoxProvider.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/stubs/debug/com/mogo/eagle/core/function/msgbox/db/MsgBoxDao.java b/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/stubs/debug/com/mogo/eagle/core/function/msgbox/db/MsgBoxDao.java new file mode 100644 index 0000000000..350e344a9c --- /dev/null +++ b/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/stubs/debug/com/mogo/eagle/core/function/msgbox/db/MsgBoxDao.java @@ -0,0 +1,26 @@ +package com.mogo.eagle.core.function.msgbox.db; + +import java.lang.System; + +@androidx.room.Dao() +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000(\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010 \n\u0002\b\u0002\n\u0002\u0010\u0011\n\u0002\b\u0002\bg\u0018\u00002\u00020\u0001J\u0019\u0010\u0002\u001a\u00020\u00032\u0006\u0010\u0004\u001a\u00020\u0005H\u00a7@\u00f8\u0001\u0000\u00a2\u0006\u0002\u0010\u0006J\u000e\u0010\u0007\u001a\b\u0012\u0004\u0012\u00020\u00050\bH\'J\u0010\u0010\t\u001a\u00020\u00032\u0006\u0010\u0004\u001a\u00020\u0005H\'J!\u0010\n\u001a\u00020\u00032\u0012\u0010\u0004\u001a\n\u0012\u0006\b\u0001\u0012\u00020\u00050\u000b\"\u00020\u0005H\'\u00a2\u0006\u0002\u0010\f\u0082\u0002\u0004\n\u0002\b\u0019\u00a8\u0006\r"}, d2 = {"Lcom/mogo/eagle/core/function/msgbox/db/MsgBoxDao;", "", "deleteMsg", "", "info", "Lcom/mogo/eagle/core/function/msgbox/db/MsgBoxInfo;", "(Lcom/mogo/eagle/core/function/msgbox/db/MsgBoxInfo;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;", "getAllCachedMessages", "", "insertMessage", "insertMessages", "", "([Lcom/mogo/eagle/core/function/msgbox/db/MsgBoxInfo;)V", "mogo-core-function-msgbox_debug"}) +public abstract interface MsgBoxDao { + + @androidx.room.Insert(onConflict = androidx.room.OnConflictStrategy.REPLACE) + public abstract void insertMessage(@org.jetbrains.annotations.NotNull() + com.mogo.eagle.core.function.msgbox.db.MsgBoxInfo info); + + @androidx.room.Insert(onConflict = androidx.room.OnConflictStrategy.REPLACE) + public abstract void insertMessages(@org.jetbrains.annotations.NotNull() + com.mogo.eagle.core.function.msgbox.db.MsgBoxInfo... info); + + @org.jetbrains.annotations.Nullable() + @androidx.room.Delete() + public abstract java.lang.Object deleteMsg(@org.jetbrains.annotations.NotNull() + com.mogo.eagle.core.function.msgbox.db.MsgBoxInfo info, @org.jetbrains.annotations.NotNull() + kotlin.coroutines.Continuation continuation); + + @org.jetbrains.annotations.NotNull() + @androidx.room.Query(value = "SELECT * FROM t_msg_box") + public abstract java.util.List getAllCachedMessages(); +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/stubs/debug/com/mogo/eagle/core/function/msgbox/db/MsgBoxDao.kapt_metadata b/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/stubs/debug/com/mogo/eagle/core/function/msgbox/db/MsgBoxDao.kapt_metadata new file mode 100644 index 0000000000..35f0326c8a Binary files /dev/null and b/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/stubs/debug/com/mogo/eagle/core/function/msgbox/db/MsgBoxDao.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/stubs/debug/com/mogo/eagle/core/function/msgbox/db/MsgBoxDb.java b/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/stubs/debug/com/mogo/eagle/core/function/msgbox/db/MsgBoxDb.java new file mode 100644 index 0000000000..84ef6bef81 --- /dev/null +++ b/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/stubs/debug/com/mogo/eagle/core/function/msgbox/db/MsgBoxDb.java @@ -0,0 +1,42 @@ +package com.mogo.eagle.core.function.msgbox.db; + +import java.lang.System; + +@androidx.room.Database(entities = {com.mogo.eagle.core.function.msgbox.db.MsgBoxInfo.class}, version = 1, exportSchema = false) +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000\u0014\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\b\'\u0018\u0000 \u00052\u00020\u0001:\u0001\u0005B\u0005\u00a2\u0006\u0002\u0010\u0002J\b\u0010\u0003\u001a\u00020\u0004H&\u00a8\u0006\u0006"}, d2 = {"Lcom/mogo/eagle/core/function/msgbox/db/MsgBoxDb;", "Landroidx/room/RoomDatabase;", "()V", "monitorDao", "Lcom/mogo/eagle/core/function/msgbox/db/MsgBoxDao;", "Companion", "mogo-core-function-msgbox_debug"}) +public abstract class MsgBoxDb extends androidx.room.RoomDatabase { + @org.jetbrains.annotations.NotNull() + public static final com.mogo.eagle.core.function.msgbox.db.MsgBoxDb.Companion Companion = null; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String INTERNAL_DB_NAME = "msg_box.db"; + private static com.mogo.eagle.core.function.msgbox.db.MsgBoxDb db; + + public MsgBoxDb() { + super(); + } + + @org.jetbrains.annotations.NotNull() + public abstract com.mogo.eagle.core.function.msgbox.db.MsgBoxDao monitorDao(); + + @org.jetbrains.annotations.NotNull() + @kotlin.jvm.JvmStatic() + public static final com.mogo.eagle.core.function.msgbox.db.MsgBoxDb getDb(@org.jetbrains.annotations.NotNull() + android.content.Context context) { + return null; + } + + @kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000 \n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\b\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002J\u0010\u0010\u0007\u001a\u00020\u00062\u0006\u0010\b\u001a\u00020\tH\u0007R\u000e\u0010\u0003\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000R\u0010\u0010\u0005\u001a\u0004\u0018\u00010\u0006X\u0082\u000e\u00a2\u0006\u0002\n\u0000\u00a8\u0006\n"}, d2 = {"Lcom/mogo/eagle/core/function/msgbox/db/MsgBoxDb$Companion;", "", "()V", "INTERNAL_DB_NAME", "", "db", "Lcom/mogo/eagle/core/function/msgbox/db/MsgBoxDb;", "getDb", "context", "Landroid/content/Context;", "mogo-core-function-msgbox_debug"}) + public static final class Companion { + + private Companion() { + super(); + } + + @org.jetbrains.annotations.NotNull() + @kotlin.jvm.JvmStatic() + public final com.mogo.eagle.core.function.msgbox.db.MsgBoxDb getDb(@org.jetbrains.annotations.NotNull() + android.content.Context context) { + return null; + } + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/stubs/debug/com/mogo/eagle/core/function/msgbox/db/MsgBoxDb.kapt_metadata b/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/stubs/debug/com/mogo/eagle/core/function/msgbox/db/MsgBoxDb.kapt_metadata new file mode 100644 index 0000000000..3856d10067 Binary files /dev/null and b/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/stubs/debug/com/mogo/eagle/core/function/msgbox/db/MsgBoxDb.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/stubs/debug/com/mogo/eagle/core/function/msgbox/db/MsgBoxInfo.java b/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/stubs/debug/com/mogo/eagle/core/function/msgbox/db/MsgBoxInfo.java new file mode 100644 index 0000000000..94e151fd4c --- /dev/null +++ b/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/stubs/debug/com/mogo/eagle/core/function/msgbox/db/MsgBoxInfo.java @@ -0,0 +1,70 @@ +package com.mogo.eagle.core.function.msgbox.db; + +import java.lang.System; + +@androidx.room.Entity(tableName = "t_msg_box") +@kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000&\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\u000e\n\u0000\n\u0002\u0010\b\n\u0000\n\u0002\u0010\t\n\u0002\b\f\n\u0002\u0010\u000b\n\u0002\b\u0004\b\u0087\b\u0018\u00002\u00020\u0001B!\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u0012\b\b\u0002\u0010\u0004\u001a\u00020\u0005\u0012\b\b\u0002\u0010\u0006\u001a\u00020\u0007\u00a2\u0006\u0002\u0010\bJ\t\u0010\u000f\u001a\u00020\u0003H\u00c6\u0003J\t\u0010\u0010\u001a\u00020\u0005H\u00c6\u0003J\t\u0010\u0011\u001a\u00020\u0007H\u00c6\u0003J\'\u0010\u0012\u001a\u00020\u00002\b\b\u0002\u0010\u0002\u001a\u00020\u00032\b\b\u0002\u0010\u0004\u001a\u00020\u00052\b\b\u0002\u0010\u0006\u001a\u00020\u0007H\u00c6\u0001J\u0013\u0010\u0013\u001a\u00020\u00142\b\u0010\u0015\u001a\u0004\u0018\u00010\u0001H\u00d6\u0003J\t\u0010\u0016\u001a\u00020\u0005H\u00d6\u0001J\t\u0010\u0017\u001a\u00020\u0003H\u00d6\u0001R\u0016\u0010\u0002\u001a\u00020\u00038\u0006X\u0087\u0004\u00a2\u0006\b\n\u0000\u001a\u0004\b\t\u0010\nR\u0016\u0010\u0004\u001a\u00020\u00058\u0006X\u0087\u0004\u00a2\u0006\b\n\u0000\u001a\u0004\b\u000b\u0010\fR\u0016\u0010\u0006\u001a\u00020\u00078\u0006X\u0087\u0004\u00a2\u0006\b\n\u0000\u001a\u0004\b\r\u0010\u000e\u00a8\u0006\u0018"}, d2 = {"Lcom/mogo/eagle/core/function/msgbox/db/MsgBoxInfo;", "", "bean2Json", "", "obj2JsonType", "", "timeStamp", "", "(Ljava/lang/String;IJ)V", "getBean2Json", "()Ljava/lang/String;", "getObj2JsonType", "()I", "getTimeStamp", "()J", "component1", "component2", "component3", "copy", "equals", "", "other", "hashCode", "toString", "mogo-core-function-msgbox_debug"}) +public final class MsgBoxInfo { + @org.jetbrains.annotations.NotNull() + @androidx.room.ColumnInfo(name = "obj_json") + @androidx.room.PrimaryKey() + private final java.lang.String bean2Json = null; + @androidx.room.ColumnInfo(name = "json_obj_type") + private final int obj2JsonType = 0; + @androidx.room.ColumnInfo(name = "time_stamp") + private final long timeStamp = 0L; + + @org.jetbrains.annotations.NotNull() + public final com.mogo.eagle.core.function.msgbox.db.MsgBoxInfo copy(@org.jetbrains.annotations.NotNull() + java.lang.String bean2Json, int obj2JsonType, long timeStamp) { + return null; + } + + @java.lang.Override() + public boolean equals(@org.jetbrains.annotations.Nullable() + java.lang.Object other) { + return false; + } + + @java.lang.Override() + public int hashCode() { + return 0; + } + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + public java.lang.String toString() { + return null; + } + + public MsgBoxInfo(@org.jetbrains.annotations.NotNull() + java.lang.String bean2Json, int obj2JsonType, long timeStamp) { + super(); + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String component1() { + return null; + } + + @org.jetbrains.annotations.NotNull() + public final java.lang.String getBean2Json() { + return null; + } + + public final int component2() { + return 0; + } + + public final int getObj2JsonType() { + return 0; + } + + public final long component3() { + return 0L; + } + + public final long getTimeStamp() { + return 0L; + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/stubs/debug/com/mogo/eagle/core/function/msgbox/db/MsgBoxInfo.kapt_metadata b/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/stubs/debug/com/mogo/eagle/core/function/msgbox/db/MsgBoxInfo.kapt_metadata new file mode 100644 index 0000000000..ebd4826b8f Binary files /dev/null and b/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/stubs/debug/com/mogo/eagle/core/function/msgbox/db/MsgBoxInfo.kapt_metadata differ diff --git a/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/stubs/debug/error/NonExistentClass.java b/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/stubs/debug/error/NonExistentClass.java new file mode 100644 index 0000000000..73693e1c55 --- /dev/null +++ b/core/function-impl/mogo-core-function-msgbox/build/tmp/kapt3/stubs/debug/error/NonExistentClass.java @@ -0,0 +1,4 @@ +package error; + +public final class NonExistentClass { +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/META-INF/mogo-core-function-msgbox_debug.kotlin_module b/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/META-INF/mogo-core-function-msgbox_debug.kotlin_module new file mode 100644 index 0000000000..70f0f69f7a Binary files /dev/null and b/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/META-INF/mogo-core-function-msgbox_debug.kotlin_module differ diff --git a/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/DataManager$WhenMappings.class b/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/DataManager$WhenMappings.class new file mode 100644 index 0000000000..8b6bf529a1 Binary files /dev/null and b/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/DataManager$WhenMappings.class differ diff --git a/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/DataManager$cacheNotifyList$2.class b/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/DataManager$cacheNotifyList$2.class new file mode 100644 index 0000000000..fa7d5c1591 Binary files /dev/null and b/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/DataManager$cacheNotifyList$2.class differ diff --git a/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/DataManager$cacheRecordList$2.class b/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/DataManager$cacheRecordList$2.class new file mode 100644 index 0000000000..78970a86b3 Binary files /dev/null and b/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/DataManager$cacheRecordList$2.class differ diff --git a/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/DataManager$cacheSysInfoList$2.class b/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/DataManager$cacheSysInfoList$2.class new file mode 100644 index 0000000000..1efdcb9130 Binary files /dev/null and b/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/DataManager$cacheSysInfoList$2.class differ diff --git a/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/DataManager$delMsgBoxBean$1$1.class b/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/DataManager$delMsgBoxBean$1$1.class new file mode 100644 index 0000000000..dfaa666b3f Binary files /dev/null and b/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/DataManager$delMsgBoxBean$1$1.class differ diff --git a/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/DataManager$delMsgBoxBean$1.class b/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/DataManager$delMsgBoxBean$1.class new file mode 100644 index 0000000000..d12717e987 Binary files /dev/null and b/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/DataManager$delMsgBoxBean$1.class differ diff --git a/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/DataManager$getCacheMessages$2$1$1$1.class b/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/DataManager$getCacheMessages$2$1$1$1.class new file mode 100644 index 0000000000..53b06b2ea0 Binary files /dev/null and b/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/DataManager$getCacheMessages$2$1$1$1.class differ diff --git a/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/DataManager$getCacheMessages$2$1$2$1.class b/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/DataManager$getCacheMessages$2$1$2$1.class new file mode 100644 index 0000000000..e822acd515 Binary files /dev/null and b/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/DataManager$getCacheMessages$2$1$2$1.class differ diff --git a/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/DataManager$getCacheMessages$2$1$3$1.class b/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/DataManager$getCacheMessages$2$1$3$1.class new file mode 100644 index 0000000000..9d015ccafc Binary files /dev/null and b/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/DataManager$getCacheMessages$2$1$3$1.class differ diff --git a/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/DataManager$getCacheMessages$2$1$4$1.class b/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/DataManager$getCacheMessages$2$1$4$1.class new file mode 100644 index 0000000000..b7e02560bd Binary files /dev/null and b/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/DataManager$getCacheMessages$2$1$4$1.class differ diff --git a/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/DataManager$getCacheMessages$2$1$5$1.class b/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/DataManager$getCacheMessages$2$1$5$1.class new file mode 100644 index 0000000000..e0eacccd65 Binary files /dev/null and b/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/DataManager$getCacheMessages$2$1$5$1.class differ diff --git a/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/DataManager$getCacheMessages$2$1$6$1.class b/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/DataManager$getCacheMessages$2$1$6$1.class new file mode 100644 index 0000000000..3cbf4c2af8 Binary files /dev/null and b/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/DataManager$getCacheMessages$2$1$6$1.class differ diff --git a/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/DataManager$getCacheMessages$2.class b/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/DataManager$getCacheMessages$2.class new file mode 100644 index 0000000000..003c262a24 Binary files /dev/null and b/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/DataManager$getCacheMessages$2.class differ diff --git a/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/DataManager$notifyList$2.class b/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/DataManager$notifyList$2.class new file mode 100644 index 0000000000..e6cdf543a2 Binary files /dev/null and b/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/DataManager$notifyList$2.class differ diff --git a/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/DataManager$queryAllMessages$1.class b/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/DataManager$queryAllMessages$1.class new file mode 100644 index 0000000000..6a3d3c461f Binary files /dev/null and b/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/DataManager$queryAllMessages$1.class differ diff --git a/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/DataManager$recordBagList$2.class b/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/DataManager$recordBagList$2.class new file mode 100644 index 0000000000..8c8d5506ad Binary files /dev/null and b/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/DataManager$recordBagList$2.class differ diff --git a/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/DataManager$removedRecordMap$2.class b/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/DataManager$removedRecordMap$2.class new file mode 100644 index 0000000000..fd4e5a59d8 Binary files /dev/null and b/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/DataManager$removedRecordMap$2.class differ diff --git a/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/DataManager$saveMsg$1$1.class b/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/DataManager$saveMsg$1$1.class new file mode 100644 index 0000000000..e85769aafa Binary files /dev/null and b/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/DataManager$saveMsg$1$1.class differ diff --git a/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/DataManager$saveMsg$1.class b/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/DataManager$saveMsg$1.class new file mode 100644 index 0000000000..dd210775c5 Binary files /dev/null and b/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/DataManager$saveMsg$1.class differ diff --git a/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/DataManager$scope$2.class b/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/DataManager$scope$2.class new file mode 100644 index 0000000000..992fe55a2e Binary files /dev/null and b/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/DataManager$scope$2.class differ diff --git a/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/DataManager$sysInfoList$2.class b/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/DataManager$sysInfoList$2.class new file mode 100644 index 0000000000..e5502dba02 Binary files /dev/null and b/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/DataManager$sysInfoList$2.class differ diff --git a/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/DataManager.class b/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/DataManager.class new file mode 100644 index 0000000000..da176a5b78 Binary files /dev/null and b/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/DataManager.class differ diff --git a/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/MsgBoxConfig$Companion.class b/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/MsgBoxConfig$Companion.class new file mode 100644 index 0000000000..69a6b3fd48 Binary files /dev/null and b/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/MsgBoxConfig$Companion.class differ diff --git a/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/MsgBoxConfig.class b/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/MsgBoxConfig.class new file mode 100644 index 0000000000..2ea1ed88f6 Binary files /dev/null and b/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/MsgBoxConfig.class differ diff --git a/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/MsgBoxProvider.class b/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/MsgBoxProvider.class new file mode 100644 index 0000000000..fc336e6a04 Binary files /dev/null and b/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/MsgBoxProvider.class differ diff --git a/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/db/MsgBoxDao.class b/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/db/MsgBoxDao.class new file mode 100644 index 0000000000..6dae1ba768 Binary files /dev/null and b/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/db/MsgBoxDao.class differ diff --git a/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/db/MsgBoxDb$Companion.class b/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/db/MsgBoxDb$Companion.class new file mode 100644 index 0000000000..a0143af3ef Binary files /dev/null and b/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/db/MsgBoxDb$Companion.class differ diff --git a/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/db/MsgBoxDb.class b/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/db/MsgBoxDb.class new file mode 100644 index 0000000000..40bbb0ddc5 Binary files /dev/null and b/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/db/MsgBoxDb.class differ diff --git a/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/db/MsgBoxInfo.class b/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/db/MsgBoxInfo.class new file mode 100644 index 0000000000..4e10f30677 Binary files /dev/null and b/core/function-impl/mogo-core-function-msgbox/build/tmp/kotlin-classes/debug/com/mogo/eagle/core/function/msgbox/db/MsgBoxInfo.class differ diff --git a/core/function-impl/mogo-core-function-notice/build.gradle b/core/function-impl/mogo-core-function-notice/build.gradle index 111633d37e..dba27c088e 100644 --- a/core/function-impl/mogo-core-function-notice/build.gradle +++ b/core/function-impl/mogo-core-function-notice/build.gradle @@ -67,7 +67,6 @@ dependencies { if (Boolean.valueOf(USE_MAVEN_PACKAGE)) { implementation rootProject.ext.dependencies.mogocommons implementation rootProject.ext.dependencies.mogoserviceapi - implementation rootProject.ext.dependencies.modulecommon implementation rootProject.ext.dependencies.mogo_core_data implementation rootProject.ext.dependencies.mogo_core_utils @@ -77,7 +76,6 @@ dependencies { } else { implementation project(":foudations:mogo-commons") implementation project(':services:mogo-service-api') - implementation project(':modules:mogo-module-common') implementation project(':core:mogo-core-data') implementation project(':core:mogo-core-utils') diff --git a/core/function-impl/mogo-core-function-notice/src/main/java/com/mogo/eagle/core/function/notice/view/GlobalTools.kt b/core/function-impl/mogo-core-function-notice/src/main/java/com/mogo/eagle/core/function/notice/view/GlobalTools.kt index 888af184d2..0fe6e402e5 100644 --- a/core/function-impl/mogo-core-function-notice/src/main/java/com/mogo/eagle/core/function/notice/view/GlobalTools.kt +++ b/core/function-impl/mogo-core-function-notice/src/main/java/com/mogo/eagle/core/function/notice/view/GlobalTools.kt @@ -1,24 +1,6 @@ package com.mogo.eagle.core.function.notice.view -import android.content.Context import android.view.View -import com.alibaba.android.arouter.launcher.ARouter -import com.mogo.service.IMogoServiceApis - -/** - * @author congtaowang - * @since 2020/6/28 - * - * 描述 - */ -private var apis: IMogoServiceApis? = null - -fun getApis(context: Context): IMogoServiceApis { - if (apis == null) { - apis = ARouter.getInstance().build(com.mogo.eagle.core.data.constants.MogoServicePaths.PATH_SERVICE_APIS).navigation(context) as IMogoServiceApis; - } - return apis!! -} fun View.gone() { if (this.visibility != View.GONE) { diff --git a/core/function-impl/mogo-core-function-obu-mogo/build.gradle b/core/function-impl/mogo-core-function-obu-mogo/build.gradle index 4c4e538ab2..6e6159fc47 100644 --- a/core/function-impl/mogo-core-function-obu-mogo/build.gradle +++ b/core/function-impl/mogo-core-function-obu-mogo/build.gradle @@ -52,14 +52,12 @@ dependencies { if (Boolean.valueOf(USE_MAVEN_PACKAGE)) { api rootProject.ext.dependencies.mogoserviceapi - implementation rootProject.ext.dependencies.modulecommon implementation rootProject.ext.dependencies.mogo_core_data implementation rootProject.ext.dependencies.mogo_core_utils implementation rootProject.ext.dependencies.mogo_core_function_call } else { api project(':services:mogo-service-api') - implementation project(':modules:mogo-module-common') implementation project(':core:mogo-core-data') implementation project(':core:mogo-core-utils') diff --git a/core/function-impl/mogo-core-function-obu-mogo/src/main/java/com/mogo/eagle/core/function/obu/mogo/MogoPrivateObuManager.kt b/core/function-impl/mogo-core-function-obu-mogo/src/main/java/com/mogo/eagle/core/function/obu/mogo/MogoPrivateObuManager.kt index d687259f9d..455baa8490 100644 --- a/core/function-impl/mogo-core-function-obu-mogo/src/main/java/com/mogo/eagle/core/function/obu/mogo/MogoPrivateObuManager.kt +++ b/core/function-impl/mogo-core-function-obu-mogo/src/main/java/com/mogo/eagle/core/function/obu/mogo/MogoPrivateObuManager.kt @@ -2,14 +2,16 @@ package com.mogo.eagle.core.function.obu.mogo import android.content.Context import android.util.Log -import com.alibaba.android.arouter.launcher.ARouter import com.mogo.cloud.passport.MoGoAiCloudClientConfig -import com.mogo.commons.voice.AIAssist import com.mogo.eagle.core.data.app.AppConfigInfo import com.mogo.eagle.core.data.config.FunctionBuildConfig import com.mogo.eagle.core.data.config.HmiBuildConfig -import com.mogo.eagle.core.data.constants.MogoServicePaths +import com.mogo.eagle.core.data.enums.EventTypeEnum +import com.mogo.eagle.core.data.enums.EventTypeHelper import com.mogo.eagle.core.data.enums.WarningDirectionEnum +import com.mogo.eagle.core.data.msgbox.MsgBoxBean +import com.mogo.eagle.core.data.msgbox.MsgBoxType +import com.mogo.eagle.core.data.msgbox.V2XMsg import com.mogo.eagle.core.function.api.hmi.warning.IMoGoWarningStatusListener import com.mogo.eagle.core.function.call.autopilot.CallerAutoPilotStatusListenerManager import com.mogo.eagle.core.function.call.hmi.CallerHmiManager @@ -17,18 +19,12 @@ import com.mogo.eagle.core.function.call.map.CallerMapUIServiceManager import com.mogo.eagle.core.function.call.map.CallerVisualAngleManager import com.mogo.eagle.core.function.call.map.CallerVisualAngleManager.Scene.Default import com.mogo.eagle.core.function.call.map.CallerVisualAngleManager.Scene.TooClose +import com.mogo.eagle.core.function.call.msgbox.CallerMsgBoxManager import com.mogo.eagle.core.function.call.obu.CallerObuListenerManager import com.mogo.eagle.core.function.obu.mogo.utils.TrafficDataConvertUtils import com.mogo.eagle.core.utilcode.mogo.logger.CallerLogger import com.mogo.eagle.core.utilcode.mogo.logger.scene.SceneConstant.Companion.M_OBU import com.mogo.eagle.core.utilcode.mogo.storage.SharedPrefsMgr -import com.mogo.eagle.core.data.enums.EventTypeEnum -import com.mogo.eagle.core.data.enums.EventTypeHelper -import com.mogo.eagle.core.data.msgbox.MsgBoxBean -import com.mogo.eagle.core.data.msgbox.MsgBoxType -import com.mogo.eagle.core.data.msgbox.V2XMsg -import com.mogo.eagle.core.function.call.msgbox.CallerMsgBoxManager -import com.mogo.service.IMogoServiceApis import com.zhidao.support.obu.MogoObuManager import com.zhidao.support.obu.OnMogoObuListener import com.zhidao.support.obu.constants.ObuConstants @@ -49,14 +45,11 @@ class MogoPrivateObuManager private constructor() { } } - private var mMogoServiceApis: IMogoServiceApis? = null private var mContext: Context? = null private var mObuStatusInfo = CallerObuListenerManager.getObuStatusInfo() fun init(context: Context, ipAddress: String) { CallerLogger.d("$M_OBU${MogoObuConst.TAG_MOGO_OBU}", "obuManager初始化--") - mMogoServiceApis = ARouter.getInstance().build(MogoServicePaths.PATH_SERVICE_APIS) - .navigation(context) as IMogoServiceApis mContext = context //连接obu设备 connectObu(context, ipAddress) @@ -329,7 +322,8 @@ class MogoPrivateObuManager private constructor() { } //事故易发路段 0x1B -> { - appId = EventTypeEnum.TYPE_USECASE_ID_ROAD_COLLISION_WARNING.poiType + appId = + EventTypeEnum.TYPE_USECASE_ID_ROAD_COLLISION_WARNING.poiType } //环岛行驶 0x1C -> { @@ -376,16 +370,21 @@ class MogoPrivateObuManager private constructor() { // 添加 ObuConstants.STATUS.ADD -> { //不显示弹框,其它保留 - CallerLogger.d("$M_OBU${MogoObuConst.TAG_MOGO_OBU}", "old onCvxRtiThreatIndInfo ------> appId = $appId --- alertContent = $alertContent --- ttsContent = $ttsContent ") + CallerLogger.d( + "$M_OBU${MogoObuConst.TAG_MOGO_OBU}", + "old onCvxRtiThreatIndInfo ------> appId = $appId --- alertContent = $alertContent --- ttsContent = $ttsContent " + ) if (alertContent.isNullOrEmpty() || ttsContent.isNullOrEmpty()) { Log.d("MsgBox-PriObuManager4", "alertContent或ttsContent为空!") } CallerMsgBoxManager.saveMsgBox( MsgBoxBean( MsgBoxType.OBU, - V2XMsg(appId, + V2XMsg( + appId, alertContent, - ttsContent) + ttsContent + ) ) ) CallerHmiManager.warningV2X( @@ -503,16 +502,21 @@ class MogoPrivateObuManager private constructor() { // if (level == 2 || level == 3) { //不考虑level //显示警告红边 CallerHmiManager.showWarning(direction) - CallerLogger.d("$M_OBU${MogoObuConst.TAG_MOGO_OBU}", "old onCvxPtcThreatIndInfo ------> v2xType = $v2xType --- alertContent = $alertContent --- ttsContent = $ttsContent ") + CallerLogger.d( + "$M_OBU${MogoObuConst.TAG_MOGO_OBU}", + "old onCvxPtcThreatIndInfo ------> v2xType = $v2xType --- alertContent = $alertContent --- ttsContent = $ttsContent " + ) if (alertContent.isNullOrEmpty() || ttsContent.isNullOrEmpty()) { Log.d("MsgBox-PriObuManager5", "alertContent或ttsContent为空!") } CallerMsgBoxManager.saveMsgBox( MsgBoxBean( MsgBoxType.OBU, - V2XMsg(v2xType, + V2XMsg( + v2xType, alertContent, - ttsContent) + ttsContent + ) ) ) CallerHmiManager.warningV2X( @@ -729,7 +733,10 @@ class MogoPrivateObuManager private constructor() { 0x2 -> {//闯红灯 V2I_RLVW_VIOLATION_TYPE_RUNNING_RED_LIGHT ttsContent = EventTypeEnum.getWarningTts(appId.toString()) alertContent = EventTypeEnum.getWarningContent(appId.toString()) - CallerLogger.d("$M_OBU${MogoObuConst.TAG_MOGO_OBU}", "old changeTrafficLightStatus ------> appId.toString() = ${appId.toString()} --- alertContent = $alertContent --- ttsContent = $ttsContent ") + CallerLogger.d( + "$M_OBU${MogoObuConst.TAG_MOGO_OBU}", + "old changeTrafficLightStatus ------> appId.toString() = ${appId.toString()} --- alertContent = $alertContent --- ttsContent = $ttsContent " + ) if (alertContent.isNullOrEmpty() || ttsContent.isNullOrEmpty()) { Log.d("MsgBox-PriObuManager1", "alertContent或ttsContent为空!") } @@ -806,16 +813,21 @@ class MogoPrivateObuManager private constructor() { val maxSpeed = currentLight.glosa_suggested_speed_max.toInt() if (maxSpeed > 0) { - CallerLogger.d("$M_OBU${MogoObuConst.TAG_MOGO_OBU}", "old changeTrafficLightStatus ------> TYPE_USECASE_ID_IVP_GREEN --- alertContent = $alertContent --- ttsContent = $ttsContent ") + CallerLogger.d( + "$M_OBU${MogoObuConst.TAG_MOGO_OBU}", + "old changeTrafficLightStatus ------> TYPE_USECASE_ID_IVP_GREEN --- alertContent = $alertContent --- ttsContent = $ttsContent " + ) if (alertContent.isNullOrEmpty() || ttsContent.isNullOrEmpty()) { Log.d("MsgBox-PriObuManager2", "alertContent或ttsContent为空!") } CallerMsgBoxManager.saveMsgBox( MsgBoxBean( MsgBoxType.OBU, - V2XMsg(EventTypeEnum.TYPE_USECASE_ID_IVP_GREEN.poiType, + V2XMsg( + EventTypeEnum.TYPE_USECASE_ID_IVP_GREEN.poiType, alertContent, - ttsContent) + ttsContent + ) ) ) CallerHmiManager.warningV2X( @@ -942,7 +954,8 @@ class MogoPrivateObuManager private constructor() { ) if (level == 2 || level == 3) { //不显示顶部弹框,其它保留 - CallerLogger.d("$M_OBU${MogoObuConst.TAG_MOGO_OBU}", + CallerLogger.d( + "$M_OBU${MogoObuConst.TAG_MOGO_OBU}", "old handleSdkObu appId2 = $appId --- level = $level ---ttsContent = $ttsContent --- alertContent = $alertContent --- direction = $direction" ) if (alertContent.isNullOrEmpty() || ttsContent.isNullOrEmpty()) { @@ -951,9 +964,11 @@ class MogoPrivateObuManager private constructor() { CallerMsgBoxManager.saveMsgBox( MsgBoxBean( MsgBoxType.OBU, - V2XMsg(appId.toString(), + V2XMsg( + appId.toString(), alertContent, - ttsContent) + ttsContent + ) ) ) CallerHmiManager.warningV2X( diff --git a/core/function-impl/mogo-core-function-v2x/build.gradle b/core/function-impl/mogo-core-function-v2x/build.gradle index 0549db5dd0..ee22a219e5 100644 --- a/core/function-impl/mogo-core-function-v2x/build.gradle +++ b/core/function-impl/mogo-core-function-v2x/build.gradle @@ -52,26 +52,24 @@ dependencies { kapt rootProject.ext.dependencies.aroutercompiler implementation rootProject.ext.dependencies.mogo_v2x implementation rootProject.ext.dependencies.mogoaicloudtrafficlive + if (Boolean.valueOf(USE_MAVEN_PACKAGE)) { implementation rootProject.ext.dependencies.mogocommons - implementation rootProject.ext.dependencies.modulecommon - implementation rootProject.ext.dependencies.moduleservice implementation rootProject.ext.dependencies.mogo_core_data implementation rootProject.ext.dependencies.mogo_core_utils implementation rootProject.ext.dependencies.mogo_core_function_api implementation rootProject.ext.dependencies.mogo_core_function_call - //implementation rootProject.ext.dependencies.callchatprovider implementation rootProject.ext.dependencies.mogo_core_res } else { implementation project(":foudations:mogo-commons") - implementation project(':modules:mogo-module-common') implementation project(':core:mogo-core-data') implementation project(':core:mogo-core-utils') implementation project(':core:mogo-core-function-api') implementation project(':core:mogo-core-function-call') implementation project(':core:mogo-core-res') - implementation project(':libraries:mogo-adas') + implementation project(":libraries:mogo-map-api") + implementation project(":libraries:mogo-map") } } 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 86c0e3b634..0047affd45 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,6 +60,7 @@ import com.mogo.eagle.core.utilcode.util.TimeUtils import com.mogo.eagle.core.utilcode.util.Utils import com.mogo.map.listener.* import com.mogo.map.marker.* +import com.mogo.map.marker.MogoMarkersHandler.Companion.mogoMarkersHandler import com.mogo.v2x.* import com.mogo.v2x.callback.* import com.mogo.v2x.config.* @@ -80,7 +81,7 @@ import java.util.concurrent.atomic.* object V2XEventManager : IMoGoMapLocationListener, IMoGoTokenCallback, IV2XCallback, - IMogoMapListener, IMogoStatusChangedListener { + IMogoStatusChangedListener { private const val TAG = "V2XEventManager" @@ -129,31 +130,28 @@ object V2XEventManager : IMoGoMapLocationListener, IMoGoTokenCallback, IV2XCallb private fun registerListener() { V2XManager.addCallback(this) CallerMapLocationListenerManager.addListener(TAG, this, false) - BridgeApi.registerCenter()?.let { - it.registerMogoMapListener(MODULE_NAME, this) - it.registerMogoMarkerClickListener( - CARD_TYPE_ROAD_CONDITION, - object : IMogoMarkerClickListener { - override fun onMarkerClicked(marker: IMogoMarker?): Boolean { - handleRoadConditionMarkerClick(marker) - return false - } - }) - } - MogoStatusManager.getInstance().registerStatusChangedListener(MODULE_NAME, StatusDescriptor.ACC_STATUS, this) - MogoStatusManager.getInstance().registerStatusChangedListener(MODULE_NAME, StatusDescriptor.SEEK_HELPING, this) + mogoMarkersHandler.registerMarkerClickListener(CARD_TYPE_ROAD_CONDITION, + object : IMogoMarkerClickListener { + override fun onMarkerClicked(marker: IMogoMarker?): Boolean { + handleRoadConditionMarkerClick(marker) + return super.onMarkerClicked(marker) + } + }) + MogoStatusManager.getInstance() + .registerStatusChangedListener(MODULE_NAME, StatusDescriptor.ACC_STATUS, this) + MogoStatusManager.getInstance() + .registerStatusChangedListener(MODULE_NAME, StatusDescriptor.SEEK_HELPING, this) } private fun unRegisterListener() { V2XManager.removeCallback(this) CallerMapLocationListenerManager.removeListener(TAG, false) - BridgeApi.registerCenter()?.let { - it.unregisterMogoMapListener(MODULE_NAME) - it.unregisterMogoMarkerClickListener(CARD_TYPE_ROAD_CONDITION) - } - MogoStatusManager.getInstance().unregisterStatusChangedListener(MODULE_NAME, StatusDescriptor.ACC_STATUS, this) - MogoStatusManager.getInstance().unregisterStatusChangedListener(MODULE_NAME, StatusDescriptor.SEEK_HELPING, this) + mogoMarkersHandler.unregisterMarkerClickListener(CARD_TYPE_ROAD_CONDITION) + MogoStatusManager.getInstance() + .unregisterStatusChangedListener(MODULE_NAME, StatusDescriptor.ACC_STATUS, this) + MogoStatusManager.getInstance() + .unregisterStatusChangedListener(MODULE_NAME, StatusDescriptor.SEEK_HELPING, this) } @@ -356,7 +354,10 @@ object V2XEventManager : IMoGoMapLocationListener, IMoGoTokenCallback, IV2XCallb if (v2XRoadEventEntity != null) { // CallerLogger.w("$M_V2X$TAG", val distance = v2XRoadEventEntity.distance val min = if (EventTypeEnum.AI_ROAD_WORK.poiType == v2XRoadEventEntity.poiType) 0 else 5 - Logger.d(TAG, "--- trigger show before ---:data=>[${location.longitude}, ${location.latitude}, ${location.speed}], distance: $distance, minDistance: $min, poiType: ${v2XRoadEventEntity.poiType}") + Logger.d( + TAG, + "--- trigger show before ---:data=>[${location.longitude}, ${location.latitude}, ${location.speed}], distance: $distance, minDistance: $min, poiType: ${v2XRoadEventEntity.poiType}" + ) if (distance >= min) { Logger.d(TAG, "--- trigger show ---:poiType:" + v2XRoadEventEntity.poiType) TrackUtils.trackV2xRoadProduceEvent(1) @@ -441,7 +442,12 @@ object V2XEventManager : IMoGoMapLocationListener, IMoGoTokenCallback, IV2XCallb Pair(d.lon, d.lat) } - extra["gps_location"] = listOf(Pair(this.roadwork?.center?.point?.lon ?: 0.0, this.roadwork?.center?.point?.lat ?: 0.0)) + extra["gps_location"] = listOf( + Pair( + this.roadwork?.center?.point?.lon ?: 0.0, + this.roadwork?.center?.point?.lat ?: 0.0 + ) + ) } } l1.exploreWay = ArrayList().also { l2 -> @@ -449,7 +455,10 @@ object V2XEventManager : IMoGoMapLocationListener, IMoGoTokenCallback, IV2XCallb l3.poiType = this.roadwork?.poiType?.toString() l3.generateTime = this.roadwork?.detectTime ?: 0L l3.location = V2XMarkerLocation().also { l4 -> - val p = CoordinateUtils.transformWgsToGcj(this.roadwork?.center?.point?.lat ?: 0.0, this.roadwork?.center?.point?.lon ?: 0.0) + val p = CoordinateUtils.transformWgsToGcj( + this.roadwork?.center?.point?.lat ?: 0.0, + this.roadwork?.center?.point?.lon ?: 0.0 + ) l4.lon = p[0] l4.lat = p[1] l4.angle = this.roadwork?.center?.road?.bearing?.toDouble() ?: 0.0 @@ -457,7 +466,16 @@ object V2XEventManager : IMoGoMapLocationListener, IMoGoTokenCallback, IV2XCallb }) } - AiRoadMarker.receive(Marker(this.roadwork?.center?.point?.lat ?: 0.0, this.roadwork?.center?.point?.lon ?: 0.0, this.roadwork?.center?.road?.bearing?.toDouble() ?: 0.0, null, null, null)) + AiRoadMarker.receive( + Marker( + this.roadwork?.center?.point?.lat ?: 0.0, + this.roadwork?.center?.point?.lon ?: 0.0, + this.roadwork?.center?.road?.bearing?.toDouble() ?: 0.0, + null, + null, + null + ) + ) } // private fun buildRoadEntity(e: V2XMarkerExploreWay, extra: Map? = null): V2XRoadEventEntity { // 记录道路事件 @@ -513,7 +531,7 @@ object V2XEventManager : IMoGoMapLocationListener, IMoGoTokenCallback, IV2XCallb when (message.typeId) { 1001 -> { // 弱势交通碰撞预警 - EventTypeHelper.getVRU{ appId, tts, content -> + EventTypeHelper.getVRU { appId, tts, content -> tempAppId = appId tempTts = tts tempContent = content @@ -558,7 +576,7 @@ object V2XEventManager : IMoGoMapLocationListener, IMoGoTokenCallback, IV2XCallb } 2001 -> { // 最优车道100061 - EventTypeHelper.getOptLine{ appId, tts, content -> + EventTypeHelper.getOptLine { appId, tts, content -> tempAppId = appId tempTts = tts tempContent = content @@ -566,7 +584,7 @@ object V2XEventManager : IMoGoMapLocationListener, IMoGoTokenCallback, IV2XCallb } 3001 -> { // 前方道路拥堵预警 - EventTypeHelper.getTJW{ appId, tts, content -> + EventTypeHelper.getTJW { appId, tts, content -> tempAppId = appId tempTts = tts tempContent = content @@ -580,9 +598,11 @@ object V2XEventManager : IMoGoMapLocationListener, IMoGoTokenCallback, IV2XCallb CallerMsgBoxManager.saveMsgBox( MsgBoxBean( MsgBoxType.V2X, - V2XMsg(tempAppId.toString(), + V2XMsg( + tempAppId.toString(), tempContent, - tempTts) + tempTts + ) ) ) CallerHmiManager.warningV2X( diff --git a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/bridge/BridgeApi.kt b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/bridge/BridgeApi.kt index 2faa6952be..23e4ee2e89 100644 --- a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/bridge/BridgeApi.kt +++ b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/bridge/BridgeApi.kt @@ -7,7 +7,6 @@ import com.mogo.eagle.core.function.v2x.events.consts.MoGoV2XServicePaths import com.mogo.eagle.core.function.v2x.events.manager.* import com.mogo.eagle.core.function.v2x.events.network.V2XRefreshModel import com.mogo.eagle.core.utilcode.util.Utils -import com.mogo.module.common.MogoApisHandler import java.lang.ref.WeakReference import java.util.concurrent.atomic.AtomicReference @@ -21,10 +20,6 @@ internal object BridgeApi { AtomicReference() } - private val apis by lazy { - MogoApisHandler.getInstance().apis - } - private val v2xMarker by lazy { ARouter.getInstance().build(MoGoV2XServicePaths.PATH_V2X_MARKER_MANAGER).navigation(context()) as? IMoGoV2XMarkerManager } @@ -73,6 +68,4 @@ internal object BridgeApi { fun refreshModel(): V2XRefreshModel = v2xRefreshModel - fun registerCenter() = apis?.registerCenterApi - } \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/speedlimit/SpeedLimitDataManager.java b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/speedlimit/SpeedLimitDataManager.java index 15769c64cc..d683cebdbd 100644 --- a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/speedlimit/SpeedLimitDataManager.java +++ b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/speedlimit/SpeedLimitDataManager.java @@ -4,15 +4,15 @@ import static com.mogo.eagle.core.data.config.HmiBuildConfig.isShowObuLimitSpeed import static com.mogo.eagle.core.data.deva.bizconfig.FuncBizConfig.BIZ_SLW; import static com.mogo.eagle.core.data.deva.bizconfig.FuncBizConfig.V2I; -import android.location.Location; -import android.util.Log; +import androidx.annotation.Nullable; +import com.mogo.eagle.core.data.map.MogoLocation; +import com.mogo.eagle.core.function.api.map.listener.IMoGoMapLocationListener; import com.mogo.eagle.core.function.call.hmi.CallerHmiManager; +import com.mogo.eagle.core.function.call.map.CallerMapLocationListenerManager; import com.mogo.eagle.core.function.call.v2x.CallLimitingVelocityListenerManager; import com.mogo.eagle.core.utilcode.util.UiThreadHandler; import com.mogo.map.MogoMapUIController; -import com.mogo.map.navi.IMogoCarLocationChangedListener2; -import com.mogo.module.common.MogoApisHandler; import com.zhjt.service_biz.BizConfig; import java.util.Timer; @@ -23,10 +23,11 @@ import java.util.TimerTask; * * @author mogoauto */ -public class SpeedLimitDataManager implements IMogoCarLocationChangedListener2 { +public class SpeedLimitDataManager implements IMoGoMapLocationListener { + private final static String TAG = "SpeedLimitDataManager"; private static SpeedLimitDataManager instance; - private Location mLocation; + private MogoLocation mLocation; private SpeedLimitDataManager() { } @@ -42,6 +43,11 @@ public class SpeedLimitDataManager implements IMogoCarLocationChangedListener2 { return instance; } + @Override + public void onLocationChanged(@Nullable MogoLocation location, int from, boolean isGps) { + mLocation = location; + } + private class SpeedTimerTask extends TimerTask { @Override public void run() { @@ -52,7 +58,7 @@ public class SpeedLimitDataManager implements IMogoCarLocationChangedListener2 { } } - @BizConfig(biz = V2I,dependentBizNode = "",bizNode = BIZ_SLW) + @BizConfig(biz = V2I, dependentBizNode = "", bizNode = BIZ_SLW) private void getSpeedLimit() { if (!isShowObuLimitSpeedView) { int speedLimit = MogoMapUIController.getInstance().getLimitSpeed(mLocation.getLongitude(), mLocation.getLatitude(), mLocation.getBearing()); @@ -67,15 +73,9 @@ public class SpeedLimitDataManager implements IMogoCarLocationChangedListener2 { } public void start() { - MogoApisHandler.getInstance().getApis().getRegisterCenterApi().registerCarLocationChangedListener("SpeedLimitDataManager", this); + CallerMapLocationListenerManager.INSTANCE.addListener(TAG, this, false); Timer mTimer = new Timer(); mTimer.schedule(new SpeedTimerTask(), 3000, 1000); - - } - - @Override - public void onCarLocationChanged2(Location latLng) { - mLocation = latLng; } } diff --git a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/trafficlight/core/MogoTrafficLightManager.kt b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/trafficlight/core/MogoTrafficLightManager.kt index 332fe3ba85..008392a87c 100644 --- a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/trafficlight/core/MogoTrafficLightManager.kt +++ b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/trafficlight/core/MogoTrafficLightManager.kt @@ -1,12 +1,12 @@ package com.mogo.eagle.core.function.v2x.trafficlight.core import android.content.Context -import android.location.Location import android.os.Handler import android.os.Looper +import com.mogo.eagle.core.data.map.MogoLocation import com.mogo.eagle.core.data.trafficlight.* -import com.mogo.eagle.core.utilcode.mogo.logger.scene.SceneConstant.Companion.M_V2X -import com.mogo.eagle.core.utilcode.mogo.logger.CallerLogger +import com.mogo.eagle.core.function.api.map.listener.IMoGoMapLocationListener +import com.mogo.eagle.core.function.call.map.CallerMapLocationListenerManager import com.mogo.eagle.core.function.call.map.CallerMapUIServiceManager import com.mogo.eagle.core.function.call.trafficlight.CallerTrafficLightListenerManager import com.mogo.eagle.core.function.v2x.trafficlight.TrafficLightHMIManager @@ -15,10 +15,10 @@ import com.mogo.eagle.core.function.v2x.trafficlight.core.TrafficLightThreadHand import com.mogo.eagle.core.function.v2x.trafficlight.core.TrafficLightThreadHandler.Companion.MSG_WHAT_STOP_SEARCH_CROSS_ROAD import com.mogo.eagle.core.function.v2x.trafficlight.core.TrafficLightThreadHandler.Companion.MSG_WHAT_STOP_SEARCH_TRAFFIC_LIGHT import com.mogo.eagle.core.function.v2x.trafficlight.network.TrafficLightNetWorkModel -import com.mogo.map.navi.IMogoCarLocationChangedListener2 -import com.mogo.module.common.MogoApisHandler +import com.mogo.eagle.core.utilcode.mogo.logger.CallerLogger +import com.mogo.eagle.core.utilcode.mogo.logger.scene.SceneConstant.Companion.M_V2X -class MogoTrafficLightManager : IMogoCarLocationChangedListener2 { +class MogoTrafficLightManager : IMoGoMapLocationListener { companion object { @@ -31,7 +31,7 @@ class MogoTrafficLightManager : IMogoCarLocationChangedListener2 { private var mContext: Context? = null private val trafficLightNetWorkModel = TrafficLightNetWorkModel() - private var mLocation: Location? = null + private var mLocation: MogoLocation? = null private var roadIDResult: RoadIDResult? = null private var trafficLightResult: TrafficLightResult? = null @@ -42,18 +42,18 @@ class MogoTrafficLightManager : IMogoCarLocationChangedListener2 { fun initServer(context: Context) { mContext = context - MogoApisHandler.getInstance().apis - .registerCenterApi.registerCarLocationChangedListener(TAG, this) + CallerMapLocationListenerManager.addListener(TAG, this, false) mThreadHandler = TrafficLightThreadHandler(Looper.getMainLooper(), { //第一次查询路口时,如果红绿灯显示,则隐藏掉 - if(firstLoopCrossRoad && TrafficLightHMIManager.INSTANCE.isWarningTrafficLightShow()){ + if (firstLoopCrossRoad && TrafficLightHMIManager.INSTANCE.isWarningTrafficLightShow()) { TrafficLightHMIManager.INSTANCE.hideTrafficLight() CallerTrafficLightListenerManager.resetTrafficLightData() } firstLoopCrossRoad = false mLocation?.let { it -> - val tileId = CallerMapUIServiceManager.getMapUIController()?.getTileId(it.longitude, it.latitude) ?: 0 + val tileId = CallerMapUIServiceManager.getMapUIController() + ?.getTileId(it.longitude, it.latitude) ?: 0 trafficLightNetWorkModel.requestRoadID( tileId, it.latitude, it.longitude, it.bearing.toDouble(), { @@ -173,9 +173,9 @@ class MogoTrafficLightManager : IMogoCarLocationChangedListener2 { ) } - override fun onCarLocationChanged2(latLng: Location?) { - latLng?.let { - mLocation = latLng + override fun onLocationChanged(location: MogoLocation?, from: Int, isGps: Boolean) { + location?.let { + mLocation = it checkOutOfRange() } } @@ -187,4 +187,5 @@ class MogoTrafficLightManager : IMogoCarLocationChangedListener2 { trafficLightResult = null } + } \ No newline at end of file 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 0b2ca7cbbe..6c73c7205e 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 @@ -44,13 +44,6 @@ public class MogoServicePaths { @Deprecated public static final String PATH_REGISTER_CENTER = "/registercenter/api"; - /** - * 接口集合 - */ - @Keep - @Deprecated - public static final String PATH_SERVICE_APIS = "/mogoservice/apis"; - /** * 自研地图和高德地图切换 */ diff --git a/foudations/mogo-aicloud-services-sdk/build.gradle b/foudations/mogo-aicloud-services-sdk/build.gradle index dc14f8e35d..a6d986496f 100644 --- a/foudations/mogo-aicloud-services-sdk/build.gradle +++ b/foudations/mogo-aicloud-services-sdk/build.gradle @@ -37,19 +37,19 @@ dependencies { implementation rootProject.ext.dependencies.arouter annotationProcessor rootProject.ext.dependencies.aroutercompiler - implementation rootProject.ext.dependencies.mogoaicloudsocket + api rootProject.ext.dependencies.mogoaicloudsocket implementation rootProject.ext.dependencies.mogoaicloudlocation + api rootProject.ext.dependencies.mogoaicloudrealtime + + annotationProcessor 'com.elegant.spi:compiler:1.0.3' + if (Boolean.valueOf(USE_MAVEN_PACKAGE)) { implementation rootProject.ext.dependencies.mogo_core_utils - implementation rootProject.ext.dependencies.mogoserviceapi - implementation rootProject.ext.dependencies.mogo_core_data } else { implementation project(':core:mogo-core-utils') - implementation project(":services:mogo-service-api") - implementation project(':core:mogo-core-data') } diff --git a/modules/mogo-module-common/src/main/java/com/mogo/module/common/mock/RealTimeData.java b/foudations/mogo-aicloud-services-sdk/src/main/java/com/mogo/aicloud/services/locationinfo/RealTimeData.java similarity index 96% rename from modules/mogo-module-common/src/main/java/com/mogo/module/common/mock/RealTimeData.java rename to foudations/mogo-aicloud-services-sdk/src/main/java/com/mogo/aicloud/services/locationinfo/RealTimeData.java index 09d7622a76..9aef43bbdc 100644 --- a/modules/mogo-module-common/src/main/java/com/mogo/module/common/mock/RealTimeData.java +++ b/foudations/mogo-aicloud-services-sdk/src/main/java/com/mogo/aicloud/services/locationinfo/RealTimeData.java @@ -1,4 +1,4 @@ -package com.mogo.module.common.mock; +package com.mogo.aicloud.services.locationinfo; public class RealTimeData { diff --git a/modules/mogo-module-common/src/main/java/com/mogo/module/common/mock/SpiRealTimeProvider.java b/foudations/mogo-aicloud-services-sdk/src/main/java/com/mogo/aicloud/services/locationinfo/SpiRealTimeProvider.java similarity index 98% rename from modules/mogo-module-common/src/main/java/com/mogo/module/common/mock/SpiRealTimeProvider.java rename to foudations/mogo-aicloud-services-sdk/src/main/java/com/mogo/aicloud/services/locationinfo/SpiRealTimeProvider.java index c5e3e7655c..961fe0f189 100644 --- a/modules/mogo-module-common/src/main/java/com/mogo/module/common/mock/SpiRealTimeProvider.java +++ b/foudations/mogo-aicloud-services-sdk/src/main/java/com/mogo/aicloud/services/locationinfo/SpiRealTimeProvider.java @@ -1,4 +1,4 @@ -package com.mogo.module.common.mock; +package com.mogo.aicloud.services.locationinfo; import com.elegant.spi.annotations.Service; import com.mogo.cloud.passport.MoGoAiCloudClientConfig; diff --git a/libraries/mogo-map-api/src/main/java/com/mogo/map/listener/IMogoMapListenerRegister.java b/libraries/mogo-map-api/src/main/java/com/mogo/map/listener/IMogoMapListenerRegister.java index f5c4fbca6b..ae69a653d4 100644 --- a/libraries/mogo-map-api/src/main/java/com/mogo/map/listener/IMogoMapListenerRegister.java +++ b/libraries/mogo-map-api/src/main/java/com/mogo/map/listener/IMogoMapListenerRegister.java @@ -13,10 +13,10 @@ public interface IMogoMapListenerRegister { * * @param listener 回调事件 */ - void registerHostMapListener( IMogoMapListener listener ); + void registerHostMapListener(String tag, IMogoMapListener listener ); /** * 反注册注册地图事件 */ - void unregisterHostMapListener(); + void unregisterHostMapListener(String tag); } diff --git a/libraries/mogo-map-api/src/main/java/com/mogo/map/listener/MogoHosListenerRegister.java b/libraries/mogo-map-api/src/main/java/com/mogo/map/listener/MogoHosListenerRegister.java index eb26a6daa9..64079055df 100644 --- a/libraries/mogo-map-api/src/main/java/com/mogo/map/listener/MogoHosListenerRegister.java +++ b/libraries/mogo-map-api/src/main/java/com/mogo/map/listener/MogoHosListenerRegister.java @@ -33,23 +33,23 @@ public class MogoHosListenerRegister implements IMogoHosListenerRegister { @Override - public void registerHostMapListener( IMogoMapListener listener ) { - MogoMapListenerHandler.getInstance().registerHostMapListener( listener ); + public void registerHostMapListener(String tag, IMogoMapListener listener ) { + MogoMapListenerHandler.Companion.getMogoMapListenerHandler().registerHostMapListener(tag, listener ); } @Override - public void unregisterHostMapListener() { - MogoMapListenerHandler.getInstance().unregisterHostMapListener(); + public void unregisterHostMapListener(String tag) { + MogoMapListenerHandler.Companion.getMogoMapListenerHandler().unregisterHostMapListener(tag); } @Override - public void registerMarkerClickListener( IMogoMarkerClickListener listener ) { - MogoMarkersHandler.getInstance().registerMarkerClickListener( listener ); + public void registerMarkerClickListener( String tag,IMogoMarkerClickListener listener ) { + MogoMarkersHandler.Companion.getMogoMarkersHandler().registerMarkerClickListener(tag, listener ); } @Override - public void unregisterMarkerClickListener() { - MogoMarkersHandler.getInstance().unregisterMarkerClickListener(); + public void unregisterMarkerClickListener(String tag) { + MogoMarkersHandler.Companion.getMogoMarkersHandler().unregisterMarkerClickListener(tag); } } diff --git a/libraries/mogo-map-api/src/main/java/com/mogo/map/listener/MogoMapListenerHandler.java b/libraries/mogo-map-api/src/main/java/com/mogo/map/listener/MogoMapListenerHandler.java deleted file mode 100644 index 91aa8a9f53..0000000000 --- a/libraries/mogo-map-api/src/main/java/com/mogo/map/listener/MogoMapListenerHandler.java +++ /dev/null @@ -1,108 +0,0 @@ -package com.mogo.map.listener; - -import android.view.MotionEvent; - -import com.mogo.eagle.core.data.map.MogoLatLng; -import com.mogo.map.model.MogoPoi; -import com.mogo.map.uicontroller.EnumMapUI; -import com.mogo.map.uicontroller.VisualAngleMode; - -/** - * @author congtaowang - * @since 2019-12-24 - *

- * 地图监听注册管理 - */ -public class MogoMapListenerHandler implements IMogoMapListener, IMogoMapListenerRegister { - - private static volatile MogoMapListenerHandler sInstance; - - private MogoMapListenerHandler() { - } - - public static MogoMapListenerHandler getInstance() { - if (sInstance == null) { - synchronized (MogoMapListenerHandler.class) { - if (sInstance == null) { - sInstance = new MogoMapListenerHandler(); - } - } - } - return sInstance; - } - - public synchronized void release() { - sInstance = null; - } - - /** - * 上层模块代理对象 - */ - private IMogoMapListener mDelegateListener = null; - - @Override - public void registerHostMapListener(IMogoMapListener listener) { - mDelegateListener = listener; - } - - @Override - public void unregisterHostMapListener() { - mDelegateListener = null; - } - - @Override - public void onMapLoaded() { - if (mDelegateListener != null) { - mDelegateListener.onMapLoaded(); - } - } - - @Override - public void onTouch(MotionEvent motionEvent) { - if (mDelegateListener != null) { - mDelegateListener.onTouch(motionEvent); - } - } - - @Override - public void onPOIClick(MogoPoi poi) { - if (mDelegateListener != null) { - mDelegateListener.onPOIClick(poi); - } - } - - @Override - public void onMapClick(MogoLatLng latLng) { - if (mDelegateListener != null) { - mDelegateListener.onMapClick(latLng); - } - } - - @Override - public void onLockMap(boolean isLock) { - if (mDelegateListener != null) { - mDelegateListener.onLockMap(isLock); - } - } - - @Override - public void onMapModeChanged(EnumMapUI ui) { - if (mDelegateListener != null) { - mDelegateListener.onMapModeChanged(ui); - } - } - - @Override - public void onMapVisualAngleChanged(VisualAngleMode visualAngleMode) { - if (mDelegateListener != null) { - mDelegateListener.onMapVisualAngleChanged(visualAngleMode); - } - } - - @Override - public void onMapChanged(MogoLatLng location, float zoom, float tilt, float bearing) { - if (mDelegateListener != null) { - mDelegateListener.onMapChanged(location, zoom, tilt, bearing); - } - } -} diff --git a/libraries/mogo-map-api/src/main/java/com/mogo/map/listener/MogoMapListenerHandler.kt b/libraries/mogo-map-api/src/main/java/com/mogo/map/listener/MogoMapListenerHandler.kt new file mode 100644 index 0000000000..b91da90e59 --- /dev/null +++ b/libraries/mogo-map-api/src/main/java/com/mogo/map/listener/MogoMapListenerHandler.kt @@ -0,0 +1,93 @@ +package com.mogo.map.listener + +import android.view.MotionEvent +import com.mogo.eagle.core.data.map.MogoLatLng +import com.mogo.map.model.MogoPoi +import com.mogo.map.uicontroller.EnumMapUI +import com.mogo.map.uicontroller.VisualAngleMode +import java.util.concurrent.ConcurrentHashMap + +/** + * 地图监听注册管理 + */ +class MogoMapListenerHandler private constructor() : IMogoMapListener, IMogoMapListenerRegister { + + companion object { + val mogoMapListenerHandler by lazy(LazyThreadSafetyMode.SYNCHRONIZED) { + MogoMapListenerHandler() + } + } + + private val mMap: ConcurrentHashMap = ConcurrentHashMap() + + override fun registerHostMapListener(tag: String, listener: IMogoMapListener) { + if (mMap.containsKey(tag)) { + return + } + mMap[tag] = listener + } + + override fun unregisterHostMapListener(tag: String) { + if (!mMap.containsKey(tag)) { + return + } + mMap.remove(tag) + } + + override fun onMapLoaded() { + mMap.forEach { + val listener = it.value + listener.onMapLoaded() + } + } + + override fun onTouch(motionEvent: MotionEvent) { + mMap.forEach { + val listener = it.value + listener.onTouch(motionEvent) + } + } + + override fun onPOIClick(poi: MogoPoi) { + mMap.forEach { + val listener = it.value + listener.onPOIClick(poi) + } + } + + override fun onMapClick(latLng: MogoLatLng) { + mMap.forEach { + val listener = it.value + listener.onMapClick(latLng) + } + } + + override fun onLockMap(isLock: Boolean) { + mMap.forEach { + val listener = it.value + listener.onLockMap(isLock) + } + } + + override fun onMapModeChanged(ui: EnumMapUI) { + mMap.forEach { + val listener = it.value + listener.onMapModeChanged(ui) + } + } + + override fun onMapVisualAngleChanged(visualAngleMode: VisualAngleMode) { + mMap.forEach { + val listener = it.value + listener.onMapVisualAngleChanged(visualAngleMode) + } + } + + override fun onMapChanged(location: MogoLatLng, zoom: Float, tilt: Float, bearing: Float) { + mMap.forEach { + val listener = it.value + listener.onMapChanged(location, zoom, tilt, bearing) + } + } + +} \ No newline at end of file diff --git a/libraries/mogo-map-api/src/main/java/com/mogo/map/marker/IMogoMarkerClickListenerRegister.java b/libraries/mogo-map-api/src/main/java/com/mogo/map/marker/IMogoMarkerClickListenerRegister.java index 9ae5f8aa77..615904888c 100644 --- a/libraries/mogo-map-api/src/main/java/com/mogo/map/marker/IMogoMarkerClickListenerRegister.java +++ b/libraries/mogo-map-api/src/main/java/com/mogo/map/marker/IMogoMarkerClickListenerRegister.java @@ -13,11 +13,11 @@ public interface IMogoMarkerClickListenerRegister { * * @param listener */ - void registerMarkerClickListener( IMogoMarkerClickListener listener ); + void registerMarkerClickListener(String tag, IMogoMarkerClickListener listener ); /** * 注销marker回调,各业务模块不需要关注 */ - void unregisterMarkerClickListener(); + void unregisterMarkerClickListener(String tag); } diff --git a/libraries/mogo-map-api/src/main/java/com/mogo/map/marker/MogoMarkersHandler.java b/libraries/mogo-map-api/src/main/java/com/mogo/map/marker/MogoMarkersHandler.java deleted file mode 100644 index 0ddd98cd55..0000000000 --- a/libraries/mogo-map-api/src/main/java/com/mogo/map/marker/MogoMarkersHandler.java +++ /dev/null @@ -1,183 +0,0 @@ -package com.mogo.map.marker; - -import android.annotation.SuppressLint; -import android.os.Build; -import android.text.TextUtils; - -import androidx.annotation.RequiresApi; - -import com.mogo.map.listener.IMogoMapListener; -import com.mogo.map.listener.IMogoMapListenerRegister; - -import java.util.ArrayList; -import java.util.Arrays; -import java.util.Collection; -import java.util.HashMap; -import java.util.List; -import java.util.Map; -import java.util.concurrent.ConcurrentHashMap; - -/** - * @author congtaowang - * @since 2019-12-24 - *

- * 管理地图上的所有marker - */ -public class MogoMarkersHandler implements IMogoMarkerClickListener, IMogoMarkerClickListenerRegister { - - private static volatile MogoMarkersHandler sInstance; - private IMogoMarkerClickListener mDelegate; - - public static MogoMarkersHandler getInstance() { - if (sInstance == null) { - synchronized (MogoMarkersHandler.class) { - if (sInstance == null) { - sInstance = new MogoMarkersHandler(); - } - } - } - return sInstance; - } - - private final Map> mServicesMarkers = new ConcurrentHashMap<>(); - - private MogoMarkersHandler() { - } - - public synchronized void release() { - sInstance = null; - } - - @SuppressLint("NewApi") - public synchronized void visibleAll() { - mServicesMarkers.values().stream() - .filter(mogoMarkerList -> mogoMarkerList != null && !mogoMarkerList.isEmpty()) - .forEach(mogoMarkerList -> mogoMarkerList.forEach(mogoMarker -> mogoMarker.setVisible(true))); - } - - @SuppressLint("NewApi") - public synchronized void inVisibleAll() { - mServicesMarkers.values().stream() - .filter(mogoMarkerList -> mogoMarkerList != null && !mogoMarkerList.isEmpty()) - .forEach(mogoMarkerList -> mogoMarkerList.forEach(mogoMarker -> mogoMarker.setVisible(false))); - } - - @SuppressLint("NewApi") - public synchronized void inVisibleMarkers(String... owner) { - mServicesMarkers.values().stream() - .filter(mogoMarkerList -> mogoMarkerList != null && !mogoMarkerList.isEmpty()) - .forEach(mogoMarkerList -> mogoMarkerList.forEach(mogoMarker -> { - if (TextUtils.isEmpty(mogoMarker.getOwner())) { - mogoMarker.setVisible(false); - } - if (!Arrays.asList(owner).contains(mogoMarker.getOwner())){ - mogoMarker.setVisible(false); - } - })); - } - - public synchronized void removeAll() { - final Collection> mogoMarkers = mServicesMarkers.values(); - for (List mogoMarkerList : mogoMarkers) { - if (mogoMarkerList != null && !mogoMarkerList.isEmpty()) { - for (IMogoMarker mogoMarker : mogoMarkerList) { - try { - mogoMarker.destroy(); - } catch (Exception e) { - e.printStackTrace(); - } - } - } - } - mServicesMarkers.clear(); - } - - public synchronized void remove(String tag) { - List mogoMarkerList = mServicesMarkers.remove(tag); - if (mogoMarkerList != null && !mogoMarkerList.isEmpty()) { - for (IMogoMarker mogoMarker : mogoMarkerList) { - try { - mogoMarker.destroy(); - } catch (Exception e) { - e.printStackTrace(); - } - } - mogoMarkerList.clear(); - } - } - - public synchronized List getMarkers(String tag) { - return mServicesMarkers.get(tag); - } - - - public synchronized Map> getAllMarkers() { - return mServicesMarkers; - } - - - public synchronized void add(String tag, IMogoMarker marker) { - if (marker == null) { - return; - } - if (mServicesMarkers.get(tag) == null) { - mServicesMarkers.put(tag, new ArrayList()); - } - mServicesMarkers.get(tag).add(marker); - } - - public synchronized void add(String tag, List markers) { - if (markers == null || markers.isEmpty()) { - return; - } - if (mServicesMarkers.get(tag) == null) { - mServicesMarkers.put(tag, new ArrayList()); - } - mServicesMarkers.get(tag).addAll(markers); - } - - @Override - public void registerMarkerClickListener(IMogoMarkerClickListener listener) { - mDelegate = listener; - } - - @Override - public void unregisterMarkerClickListener() { - mDelegate = null; - } - - @Override - public boolean onMarkerClicked(IMogoMarker marker) { - if (mDelegate != null) { - return mDelegate.onMarkerClicked(marker); - } - return false; - } - - @Override - public boolean onStaticMarkerClicked(IMogoMarker marker) { - if (mDelegate != null) { - return mDelegate.onStaticMarkerClicked(marker); - } - return false; - } - - /** - * @param tag 需要保留的类型 - */ - public void deleteAllExcept(String tag) { - if (TextUtils.isEmpty(tag)) { - return; - } - List mogoMarkerList = mServicesMarkers.remove(tag); - for (List value : mServicesMarkers.values()) { - if (value != null && !value.isEmpty()) { - for (IMogoMarker mogoMarker : value) { - mogoMarker.destroy(); - } - value.clear(); - } - } - mServicesMarkers.put(tag, mogoMarkerList); - } -} diff --git a/libraries/mogo-map-api/src/main/java/com/mogo/map/marker/MogoMarkersHandler.kt b/libraries/mogo-map-api/src/main/java/com/mogo/map/marker/MogoMarkersHandler.kt new file mode 100644 index 0000000000..d5d12d8fae --- /dev/null +++ b/libraries/mogo-map-api/src/main/java/com/mogo/map/marker/MogoMarkersHandler.kt @@ -0,0 +1,176 @@ +package com.mogo.map.marker + +import android.annotation.SuppressLint +import android.text.TextUtils +import java.util.* +import java.util.concurrent.ConcurrentHashMap +import java.util.function.Consumer + +/** + * @author congtaowang + * @since 2019-12-24 + * + * + * 管理地图上的所有marker + */ +class MogoMarkersHandler private constructor() : IMogoMarkerClickListener, + IMogoMarkerClickListenerRegister { + + companion object { + val mogoMarkersHandler by lazy(LazyThreadSafetyMode.SYNCHRONIZED) { + MogoMarkersHandler() + } + } + + private val mMap: ConcurrentHashMap = ConcurrentHashMap() + private val mServicesMarkers: MutableMap?> = + ConcurrentHashMap() + + override fun registerMarkerClickListener(tag: String, listener: IMogoMarkerClickListener) { + if (mMap.containsKey(tag)) { + return + } + mMap[tag] = listener + } + + override fun unregisterMarkerClickListener(tag: String) { + if (!mMap.containsKey(tag)) { + return + } + mMap.remove(tag) + } + + @SuppressLint("NewApi") + @Synchronized + fun visibleAll() { + mServicesMarkers.values.stream() + .filter { mogoMarkerList: List? -> mogoMarkerList != null && !mogoMarkerList.isEmpty() } + .forEach { mogoMarkerList: List? -> + mogoMarkerList!!.forEach( + Consumer { mogoMarker: IMogoMarker -> mogoMarker.setVisible(true) }) + } + } + + @SuppressLint("NewApi") + @Synchronized + fun inVisibleAll() { + mServicesMarkers.values.stream() + .filter { mogoMarkerList: List? -> mogoMarkerList != null && !mogoMarkerList.isEmpty() } + .forEach { mogoMarkerList: List? -> + mogoMarkerList!!.forEach( + Consumer { mogoMarker: IMogoMarker -> mogoMarker.setVisible(false) }) + } + } + + @SuppressLint("NewApi") + @Synchronized + fun inVisibleMarkers(vararg owner: String?) { + mServicesMarkers.values.stream() + .filter { mogoMarkerList: List? -> mogoMarkerList != null && !mogoMarkerList.isEmpty() } + .forEach { mogoMarkerList: List? -> + mogoMarkerList!!.forEach( + Consumer { mogoMarker: IMogoMarker -> + if (TextUtils.isEmpty(mogoMarker.owner)) { + mogoMarker.setVisible(false) + } + if (!Arrays.asList(*owner).contains(mogoMarker.owner)) { + mogoMarker.setVisible(false) + } + }) + } + } + + @Synchronized + fun removeAll() { + val mogoMarkers: Collection?> = mServicesMarkers.values + for (mogoMarkerList in mogoMarkers) { + if (mogoMarkerList != null && !mogoMarkerList.isEmpty()) { + for (mogoMarker in mogoMarkerList) { + try { + mogoMarker.destroy() + } catch (e: Exception) { + e.printStackTrace() + } + } + } + } + mServicesMarkers.clear() + } + + @Synchronized + fun remove(tag: String) { + val mogoMarkerList = mServicesMarkers.remove(tag) + if (mogoMarkerList != null && !mogoMarkerList.isEmpty()) { + for (mogoMarker in mogoMarkerList) { + try { + mogoMarker.destroy() + } catch (e: Exception) { + e.printStackTrace() + } + } + mogoMarkerList.clear() + } + } + + @Synchronized + fun getMarkers(tag: String): List? { + return mServicesMarkers[tag] + } + + @get:Synchronized + val allMarkers: Map?> + get() = mServicesMarkers + + @Synchronized + fun add(tag: String, marker: IMogoMarker?) { + if (marker == null) { + return + } + if (mServicesMarkers[tag] == null) { + mServicesMarkers[tag] = ArrayList() + } + mServicesMarkers[tag]!!.add(marker) + } + + @Synchronized + fun add(tag: String, markers: List?) { + if (markers == null || markers.isEmpty()) { + return + } + if (mServicesMarkers[tag] == null) { + mServicesMarkers[tag] = ArrayList() + } + mServicesMarkers[tag]!!.addAll(markers) + } + + override fun onMarkerClicked(marker: IMogoMarker): Boolean { + val iMogoMarker = mMap[marker.owner] + return iMogoMarker?.onMarkerClicked(marker) ?: false + } + + override fun onStaticMarkerClicked(marker: IMogoMarker): Boolean { + val iMogoMarker = mMap[marker.owner] + return iMogoMarker?.onStaticMarkerClicked(marker) ?: false + } + + /** + * @param tag 需要保留的类型 + */ + fun deleteAllExcept(tag: String) { + if (TextUtils.isEmpty(tag)) { + return + } + val mogoMarkerList = mServicesMarkers.remove(tag) + for (value in mServicesMarkers.values) { + if (value != null && value.isNotEmpty()) { + for (mogoMarker in value) { + mogoMarker.destroy() + } + value.clear() + } + } + mServicesMarkers[tag] = mogoMarkerList + } + + +} \ No newline at end of file diff --git a/libraries/mogo-map/src/main/java/com/mogo/map/AMapMarkerClickHandler.java b/libraries/mogo-map/src/main/java/com/mogo/map/AMapMarkerClickHandler.java index 431f29d919..6f54a88028 100644 --- a/libraries/mogo-map/src/main/java/com/mogo/map/AMapMarkerClickHandler.java +++ b/libraries/mogo-map/src/main/java/com/mogo/map/AMapMarkerClickHandler.java @@ -55,7 +55,7 @@ public class AMapMarkerClickHandler { IMogoMarker iMogoMarker = new AMapMarkerWrapper(marker,new MogoMarkerOptions()); iMogoMarker.setOwner(MAP_STATIC); //TODO 后续可能由于类型比较多,需要owner匹配机制,以及控制owner细粒度 CallerLogger.INSTANCE.d("AMapMarkerWrapper", "traffic marker 点击回调"); - return MogoMarkersHandler.getInstance().onStaticMarkerClicked(iMogoMarker); + return MogoMarkersHandler.Companion.getMogoMarkersHandler().onStaticMarkerClicked(iMogoMarker); } Map mogoMarkerMap = MarkerWrapperClickHelper.getInstance().getMogoMarkerMap(); @@ -69,7 +69,7 @@ public class AMapMarkerClickHandler { return true; } } - return MogoMarkersHandler.getInstance().onMarkerClicked(mogoMarker); + return MogoMarkersHandler.Companion.getMogoMarkersHandler().onMarkerClicked(mogoMarker); } return false; } diff --git a/libraries/mogo-map/src/main/java/com/mogo/map/AMapViewWrapper.java b/libraries/mogo-map/src/main/java/com/mogo/map/AMapViewWrapper.java index 5cc8ad8048..d8fce9a944 100644 --- a/libraries/mogo-map/src/main/java/com/mogo/map/AMapViewWrapper.java +++ b/libraries/mogo-map/src/main/java/com/mogo/map/AMapViewWrapper.java @@ -677,9 +677,6 @@ public class AMapViewWrapper implements IMogoMapView, @Override public void changeMapViewAngle(int type) { - if (checkAMapView()) { - //mMapView.getMapAutoViewHelper().testMapViewAngle(type); - } } @Override @@ -783,18 +780,13 @@ public class AMapViewWrapper implements IMogoMapView, } else { mIsFirstLocated = true; mIsDelayed = false; -// try { -// CallerLogger.INSTANCE.d(M_MAP + TAG, "同步定位:" + GsonUtils.toJson(location)); -// } catch (Exception e) { -// e.printStackTrace(); -// } } } } @Override public void onMapClick(@Nullable LonLatPoint lonLatPoint) { - MogoMapListenerHandler.getInstance().onMapClick(ObjectUtils.fromAMap(lonLatPoint)); + MogoMapListenerHandler.Companion.getMogoMapListenerHandler().onMapClick(ObjectUtils.fromAMap(lonLatPoint)); } @@ -809,7 +801,7 @@ public class AMapViewWrapper implements IMogoMapView, @Override public void onMapInit() { CallerLogger.INSTANCE.i(M_MAP + TAG, "autoop--onMapInit: "); - MogoMapListenerHandler.getInstance().onMapLoaded(); + MogoMapListenerHandler.Companion.getMogoMapListenerHandler().onMapLoaded(); } @ChainLog( @@ -827,7 +819,7 @@ public class AMapViewWrapper implements IMogoMapView, if (checkAMapView()) { CameraPosition cameraPosition = mMapView.getMapAutoViewHelper().getCameraPosition(); Trace.beginSection("timer.onCameraChangeFinish"); - MogoMapListenerHandler.getInstance().onMapChanged(ObjectUtils.fromAMap(cameraPosition.getTarget()), + MogoMapListenerHandler.Companion.getMogoMapListenerHandler().onMapChanged(ObjectUtils.fromAMap(cameraPosition.getTarget()), cameraPosition.getZoom(), cameraPosition.getTilt(), cameraPosition.getBearing()); @@ -840,7 +832,7 @@ public class AMapViewWrapper implements IMogoMapView, @Override public boolean onTouch(@Nullable MotionEvent motionEvent) { - MogoMapListenerHandler.getInstance().onTouch(motionEvent); + MogoMapListenerHandler.Companion.getMogoMapListenerHandler().onTouch(motionEvent); return false; } @@ -857,14 +849,13 @@ public class AMapViewWrapper implements IMogoMapView, @Override public void onMapStatusChanged(int type, int value) { - //CallerLogger.INSTANCE.i(M_MAP+TAG, "mapop--onMapStatusChanged-: " + type + "," + value); } @Override public void onMapViewVisualAngleChange(int i) { CallerLogger.INSTANCE.d(M_MAP + TAG, " 地图自动更改视距 currentThread : " + Thread.currentThread().getName()); mVisualAngleMode = getVisualAngleMode(i); - MogoMapListenerHandler.getInstance().onMapVisualAngleChanged(mVisualAngleMode); + MogoMapListenerHandler.Companion.getMogoMapListenerHandler().onMapVisualAngleChanged(mVisualAngleMode); } /** @@ -894,15 +885,13 @@ public class AMapViewWrapper implements IMogoMapView, @Override public void onCameraChange(int type, int value) { - //CallerLogger.INSTANCE.i(M_MAP+TAG, "mapop--onCameraChange-: " + type + "," + value); } @Override public void onCameraChangeFinish(@Nullable CameraPosition cameraPosition) { - // CallerLogger.INSTANCE.i( M_MAP+TAG, "mapop--onCameraChangeFinish-: " + cameraPosition + "cost:" + ( System.currentTimeMillis() - startTime ) ); if (cameraPosition != null) { Trace.beginSection("timer.onCameraChangeFinish"); - MogoMapListenerHandler.getInstance().onMapChanged(ObjectUtils.fromAMap(cameraPosition.getTarget()), + MogoMapListenerHandler.Companion.getMogoMapListenerHandler().onMapChanged(ObjectUtils.fromAMap(cameraPosition.getTarget()), cameraPosition.getZoom(), cameraPosition.getTilt(), cameraPosition.getBearing()); @@ -935,7 +924,7 @@ public class AMapViewWrapper implements IMogoMapView, UiThreadHandler.post(() -> { try { CallerLogger.INSTANCE.d(M_MAP + TAG, "currentUI = " + mCurrentUI); - MogoMapListenerHandler.getInstance().onMapModeChanged(mCurrentUI); + MogoMapListenerHandler.Companion.getMogoMapListenerHandler().onMapModeChanged(mCurrentUI); CallerMapStyleListenerManager.INSTANCE.invokeMapStyleChange(styleId); } catch (Exception e) { e.printStackTrace(); diff --git a/libraries/mogo-map/src/main/java/com/mogo/map/AMapWrapper.java b/libraries/mogo-map/src/main/java/com/mogo/map/AMapWrapper.java index d2a1c9ab79..0d8706c008 100644 --- a/libraries/mogo-map/src/main/java/com/mogo/map/AMapWrapper.java +++ b/libraries/mogo-map/src/main/java/com/mogo/map/AMapWrapper.java @@ -101,7 +101,7 @@ public class AMapWrapper implements IMogoMap { } final IMogoMarker mogoMarker = new AMapMarkerWrapper(mAMap.addMarker(markerOptions), options); if (options.isAutoManager()) { - MogoMarkersHandler.getInstance().add(tag, mogoMarker); + MogoMarkersHandler.Companion.getMogoMarkersHandler().add(tag, mogoMarker); } return mogoMarker; } @@ -185,7 +185,7 @@ public class AMapWrapper implements IMogoMap { } mogoMarkers.add(new AMapMarkerWrapper(marker, options.get(i))); } - MogoMarkersHandler.getInstance().add(tag, mogoMarkers); + MogoMarkersHandler.Companion.getMogoMarkersHandler().add(tag, mogoMarkers); return mogoMarkers; } diff --git a/libraries/mogo-map/src/main/java/com/mogo/map/MogoMarkerManager.java b/libraries/mogo-map/src/main/java/com/mogo/map/MogoMarkerManager.java index 184dabddf4..b37d3934f3 100644 --- a/libraries/mogo-map/src/main/java/com/mogo/map/MogoMarkerManager.java +++ b/libraries/mogo-map/src/main/java/com/mogo/map/MogoMarkerManager.java @@ -102,44 +102,44 @@ public class MogoMarkerManager implements IMogoMarkerManager { @Override public void removeMarkers( String tag ) { CallMarkersClearManager.INSTANCE.invokeClearAllMarkersOfTag(tag); - MogoMarkersHandler.getInstance().remove( tag ); + MogoMarkersHandler.Companion.getMogoMarkersHandler().remove( tag ); } @Override public void removeMarkers() { CallMarkersClearManager.INSTANCE.invokeClearAllMarkers(); - MogoMarkersHandler.getInstance().removeAll(); + MogoMarkersHandler.Companion.getMogoMarkersHandler().removeAll(); } @Override public void visibleAllMarkers() { - MogoMarkersHandler.getInstance().visibleAll(); + MogoMarkersHandler.Companion.getMogoMarkersHandler().visibleAll(); } @Override public void inVisibleAllMarkers() { CallMarkersClearManager.INSTANCE.invokeClearAllMarkers(); - MogoMarkersHandler.getInstance().inVisibleAll(); + MogoMarkersHandler.Companion.getMogoMarkersHandler().inVisibleAll(); } @Override public void inVisibleWithoutMarkers(String ...owner) { - MogoMarkersHandler.getInstance().inVisibleMarkers(owner); + MogoMarkersHandler.Companion.getMogoMarkersHandler().inVisibleMarkers(owner); } @Override public List< IMogoMarker > getMarkers( String tag ) { - return MogoMarkersHandler.getInstance().getMarkers( tag ); + return MogoMarkersHandler.Companion.getMogoMarkersHandler().getMarkers( tag ); } @Override public Map< String, List< IMogoMarker > > getAllMarkers() { - return MogoMarkersHandler.getInstance().getAllMarkers(); + return MogoMarkersHandler.Companion.getMogoMarkersHandler().getAllMarkers(); } @Override public void removeMarkersExcept( String tag ) { - MogoMarkersHandler.getInstance().deleteAllExcept( tag ); + MogoMarkersHandler.Companion.getMogoMarkersHandler().deleteAllExcept( tag ); } @Override diff --git a/modules.txt b/modules.txt index b952d62967..7c940073d5 100644 --- a/modules.txt +++ b/modules.txt @@ -15,14 +15,12 @@ :libraries:mogo-map :libraries:mogo-adas-data :libraries:mogo-adas -:modules:mogo-module-common :test:crashreport :test:crashreport-apm :test:crashreport-noop :test:crashreport-upgrade :core:function-impl:mogo-core-function-obu-mogo :core:function-impl:mogo-core-function-check -:services:mogo-service :core:function-impl:mogo-core-function-autopilot :core:function-impl:mogo-core-function-hmi :core:function-impl:mogo-core-function-map diff --git a/modules/mogo-module-common/.gitignore b/modules/mogo-module-common/.gitignore deleted file mode 100644 index 796b96d1c4..0000000000 --- a/modules/mogo-module-common/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/build diff --git a/modules/mogo-module-common/build.gradle b/modules/mogo-module-common/build.gradle deleted file mode 100644 index 9c162e334c..0000000000 --- a/modules/mogo-module-common/build.gradle +++ /dev/null @@ -1,80 +0,0 @@ -plugins { - id 'com.android.library' - id 'kotlin-android' - id 'kotlin-android-extensions' - id 'kotlin-kapt' - id 'com.alibaba.arouter' -} - -android { - compileSdkVersion rootProject.ext.android.compileSdkVersion - // buildToolsVersion rootProject.ext.android.buildToolsVersion - defaultConfig { - minSdkVersion rootProject.ext.android.minSdkVersion - targetSdkVersion rootProject.ext.android.targetSdkVersion - versionCode Integer.valueOf(VERSION_CODE) - versionName getValueFromRootProperties("${project.name.replace("-", "_").toUpperCase()}_VERSION") - - testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" - - //ARouter apt 参数 - kapt { - useBuildCache = false - arguments { - arg("AROUTER_MODULE_NAME", project.getName()) - } - } - - } - buildTypes { - release { - minifyEnabled false - } - } - - compileOptions { - sourceCompatibility JavaVersion.VERSION_1_8 - targetCompatibility JavaVersion.VERSION_1_8 - } - - sourceSets { - main { - res.srcDirs = [ - 'src/main/res',// 默认资源目录 - ] - } - } -} - -dependencies { - implementation fileTree(dir: 'libs', include: ['*.jar']) - implementation rootProject.ext.dependencies.kotlinstdlibjdk7 - - implementation rootProject.ext.dependencies.arouter - kapt rootProject.ext.dependencies.aroutercompiler - - api rootProject.ext.dependencies.mogoaicloudrealtime - - annotationProcessor 'com.elegant.spi:compiler:1.0.3' - - if (Boolean.valueOf(USE_MAVEN_PACKAGE)) { - api rootProject.ext.dependencies.mogomap - api rootProject.ext.dependencies.mogomapapi - api rootProject.ext.dependencies.mogocommons - api rootProject.ext.dependencies.mogoserviceapi - api rootProject.ext.dependencies.mogo_core_utils - implementation rootProject.ext.dependencies.mogo_core_data - api rootProject.ext.dependencies.mogo_core_function_call - } else { - api project(":libraries:mogo-map") - api project(":libraries:mogo-map-api") - implementation project(':libraries:mogo-adas-data') - api project(":foudations:mogo-commons") - api project(':services:mogo-service-api') - api project(':core:mogo-core-utils') - implementation project(':core:mogo-core-data') - api project(':core:mogo-core-function-call') - } - -} - diff --git a/modules/mogo-module-common/gradle.properties b/modules/mogo-module-common/gradle.properties deleted file mode 100644 index 637280ff8c..0000000000 --- a/modules/mogo-module-common/gradle.properties +++ /dev/null @@ -1,3 +0,0 @@ -GROUP=com.mogo.module -POM_ARTIFACT_ID=module-common -VERSION_CODE=1 diff --git a/modules/mogo-module-common/src/main/AndroidManifest.xml b/modules/mogo-module-common/src/main/AndroidManifest.xml deleted file mode 100644 index b12147cb72..0000000000 --- a/modules/mogo-module-common/src/main/AndroidManifest.xml +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/modules/mogo-module-common/src/main/java/com/mogo/module/common/MogoApisHandler.java b/modules/mogo-module-common/src/main/java/com/mogo/module/common/MogoApisHandler.java deleted file mode 100644 index 3ca356c09c..0000000000 --- a/modules/mogo-module-common/src/main/java/com/mogo/module/common/MogoApisHandler.java +++ /dev/null @@ -1,52 +0,0 @@ -package com.mogo.module.common; - -import com.alibaba.android.arouter.launcher.ARouter; -import com.mogo.service.IMogoServiceApis; - -/** - * @author congtaowang - * @since 2020/9/21 - *

- * 描述 - */ -public final class MogoApisHandler { - - private IMogoServiceApis sApis; - - private static volatile MogoApisHandler sInstance; - - private MogoApisHandler() { - sApis = ARouter.getInstance().navigation( IMogoServiceApis.class ); - } - - public static MogoApisHandler getInstance() { - if ( sInstance == null ) { - synchronized ( MogoApisHandler.class ) { - if ( sInstance == null ) { - sInstance = new MogoApisHandler(); - } - } - } - return sInstance; - } - - public synchronized void release() { - sInstance = null; - } - - private Object readResolve() { - // 阻止反序列化,必须实现 Serializable 接口 - return sInstance; - } - - public IMogoServiceApis getApis() { - if ( sApis == null ) { - synchronized ( this ) { - if ( sApis == null ) { - sApis = ARouter.getInstance().navigation( IMogoServiceApis.class ); - } - } - } - return sApis; - } -} 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 deleted file mode 100644 index 20ee91eb06..0000000000 --- a/services/mogo-service-api/src/main/java/com/mogo/service/IMogoServiceApis.java +++ /dev/null @@ -1,23 +0,0 @@ -package com.mogo.service; - - -import com.alibaba.android.arouter.facade.template.IProvider; -import com.mogo.service.module.IMogoRegisterCenter; - -/** - * @author congtaowang - * @since 2020-03-06 - *

- * 描述 - */ - -public interface IMogoServiceApis extends IProvider { - - /** - * 各业务回调接口注册接口 - * - * @return - */ - IMogoRegisterCenter getRegisterCenterApi(); - -} diff --git a/services/mogo-service/.gitignore b/services/mogo-service/.gitignore deleted file mode 100644 index 796b96d1c4..0000000000 --- a/services/mogo-service/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/build diff --git a/services/mogo-service/README.md b/services/mogo-service/README.md deleted file mode 100644 index 3fbf9d1914..0000000000 --- a/services/mogo-service/README.md +++ /dev/null @@ -1,3 +0,0 @@ -#### 说明 -这里对mogo-service-api设计的接口进行实现,这里会依赖foudations、modules -# services-api 代理层 diff --git a/services/mogo-service/build.gradle b/services/mogo-service/build.gradle deleted file mode 100644 index fce6dd6a98..0000000000 --- a/services/mogo-service/build.gradle +++ /dev/null @@ -1,73 +0,0 @@ -plugins { - id 'com.android.library' - id 'kotlin-android' - id 'kotlin-android-extensions' - id 'kotlin-kapt' - id 'com.alibaba.arouter' -} - - -android { - compileSdkVersion rootProject.ext.android.compileSdkVersion - // buildToolsVersion rootProject.ext.android.buildToolsVersion - defaultConfig { - minSdkVersion rootProject.ext.android.minSdkVersion - targetSdkVersion rootProject.ext.android.targetSdkVersion - versionCode Integer.valueOf(VERSION_CODE) - versionName getValueFromRootProperties("${project.name.replace("-", "_").toUpperCase()}_VERSION") - - testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" - consumerProguardFiles 'consumer-rules.pro' - - //ARouter apt 参数 - kapt { - useBuildCache = false - arguments { - arg("AROUTER_MODULE_NAME", project.getName()) - } - } - } - - buildTypes { - release { - minifyEnabled false - proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' - } - } - - compileOptions { - sourceCompatibility JavaVersion.VERSION_1_8 - targetCompatibility JavaVersion.VERSION_1_8 - } - -} - -dependencies { - implementation fileTree(dir: 'libs', include: ['*.jar']) - - implementation rootProject.ext.dependencies.arouter - kapt rootProject.ext.dependencies.aroutercompiler - - if (Boolean.valueOf(USE_MAVEN_PACKAGE)) { - api rootProject.ext.dependencies.mogomap - implementation rootProject.ext.dependencies.mogomapapi - implementation rootProject.ext.dependencies.mogo_core_utils - implementation rootProject.ext.dependencies.mogocommons - implementation rootProject.ext.dependencies.mogoserviceapi - - implementation rootProject.ext.dependencies.mogo_core_data - implementation rootProject.ext.dependencies.mogo_core_function_check - } else { - api project(":libraries:mogo-map") - implementation project(":libraries:mogo-map-api") - implementation project(':core:mogo-core-utils') - implementation project(":foudations:mogo-commons") - implementation project(":services:mogo-service-api") - - implementation project(':core:function-impl:mogo-core-function-check') - implementation project(':core:mogo-core-data') - - } -} - -apply from: new File(rootProject.rootDir, "gradle/upload.gradle").toString() diff --git a/services/mogo-service/consumer-rules.pro b/services/mogo-service/consumer-rules.pro deleted file mode 100644 index f6c38c06bb..0000000000 --- a/services/mogo-service/consumer-rules.pro +++ /dev/null @@ -1,5 +0,0 @@ --keep class com.mogo.service.impl.adas.*{*;} --keep class com.mogo.service.impl.cloud.socket.MogoSocketManager{*;} --keep class com.mogo.service.impl.cloud.socket.MogoWebSocketManager{*;} --keep class com.mogo.service.impl.cloud.location.MogoLocationInfoService{*;} --keep class com.mogo.service.impl.cloud.passport.MogoPassportManager{*;} diff --git a/services/mogo-service/gradle.properties b/services/mogo-service/gradle.properties deleted file mode 100644 index 48b922dac7..0000000000 --- a/services/mogo-service/gradle.properties +++ /dev/null @@ -1,3 +0,0 @@ -GROUP=com.mogo.service -POM_ARTIFACT_ID=mogo-service -VERSION_CODE=1 diff --git a/services/mogo-service/proguard-rules.pro b/services/mogo-service/proguard-rules.pro deleted file mode 100644 index f1b424510d..0000000000 --- a/services/mogo-service/proguard-rules.pro +++ /dev/null @@ -1,21 +0,0 @@ -# Add project specific ProGuard rules here. -# You can control the set of applied configuration files using the -# proguardFiles setting in build.gradle. -# -# For more details, see -# http://developer.android.com/guide/developing/tools/proguard.html - -# If your project uses WebView with JS, uncomment the following -# and specify the fully qualified class name to the JavaScript interface -# class: -#-keepclassmembers class fqcn.of.javascript.interface.for.webview { -# public *; -#} - -# Uncomment this to preserve the line number information for -# debugging stack traces. -#-keepattributes SourceFile,LineNumberTable - -# If you keep the line number information, uncomment this to -# hide the original source file name. -#-renamesourcefileattribute SourceFile diff --git a/services/mogo-service/src/main/AndroidManifest.xml b/services/mogo-service/src/main/AndroidManifest.xml deleted file mode 100644 index 196728d1b6..0000000000 --- a/services/mogo-service/src/main/AndroidManifest.xml +++ /dev/null @@ -1,4 +0,0 @@ - - - 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 deleted file mode 100644 index 3449eeb4a1..0000000000 --- a/services/mogo-service/src/main/java/com/mogo/service/impl/MogoServiceApis.java +++ /dev/null @@ -1,50 +0,0 @@ -package com.mogo.service.impl; - -import android.content.Context; - -import com.alibaba.android.arouter.facade.annotation.Route; -import com.alibaba.android.arouter.facade.template.IProvider; -import com.alibaba.android.arouter.launcher.ARouter; -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.module.IMogoRegisterCenter; - -/** - * @author congtaowang - * @since 2020-03-06 - *

- * 描述 - */ - -@Route(path = MogoServicePaths.PATH_SERVICE_APIS) -public class MogoServiceApis implements IMogoServiceApis { - - private static final String TAG = "MogoServiceApis"; - - private static final Object sLock = new Object(); - - @Override - public void init(Context context) { - - } - - // 定位相关 需要拆分页面 MainActivity页面逻辑后,进行接口隔离 - @Override - public IMogoRegisterCenter getRegisterCenterApi() { - return getApiInstance(IMogoRegisterCenter.class, MogoServicePaths.PATH_REGISTER_CENTER); - } - - - private static T getApiInstance(Class clazz, String path) { - synchronized (sLock) { - T newInst = (T) ARouter.getInstance().build(path).navigation(); - try { - CallerLogger.INSTANCE.d(TAG, "keep IProvider instance to SingletonHolder: path = " + path); - } catch (Exception e) { - e.printStackTrace(); - } - return newInst; - } - } -} \ No newline at end of file diff --git a/settings.gradle b/settings.gradle index 42e5933255..8016c44322 100644 --- a/settings.gradle +++ b/settings.gradle @@ -53,7 +53,6 @@ include ':core:function-impl:mogo-core-function-datacenter' // 服务 include ':services:mogo-service-api' -include ':services:mogo-service' // 模块 include ':foudations:mogo-aicloud-services-sdk' @@ -66,9 +65,6 @@ include ':libraries:mogo-map' include ':libraries:mogo-adas' include ':libraries:mogo-adas-data' -// OLD业务模块 -include ':modules:mogo-module-common' - // 语音 include ':tts:tts-base' include ':tts:tts-pad'