[8.2.8][i18n] OCH\charter\passenger 中文抽取
This commit is contained in:
@@ -2,7 +2,9 @@ package com.mogo.och.charter.passenger.bean.response
|
||||
|
||||
import com.mogo.commons.AbsMogoApplication
|
||||
import com.mogo.eagle.core.data.BaseData
|
||||
import com.mogo.eagle.core.utilcode.util.StringUtils
|
||||
import com.mogo.och.bridge.utils.CoordinateCalculateRouteUtil
|
||||
import com.mogo.och.charter.passenger.R
|
||||
import com.mogo.och.common.module.utils.DateTimeUtil
|
||||
|
||||
/**
|
||||
@@ -73,10 +75,14 @@ data class OrderInfoResponse(val data: OrderInfo?) : BaseData() {
|
||||
|
||||
fun getProductTypeName(): String {
|
||||
return when (productType) {
|
||||
M1_LOVE -> "爱情号"
|
||||
M1_FAMILY -> "家庭号"
|
||||
M1_FRIENDLY -> "朋友号"
|
||||
else -> "未知"
|
||||
// M1_LOVE -> "爱情号"
|
||||
M1_LOVE -> StringUtils.getString(R.string.module_och_m1_love)
|
||||
// M1_FAMILY -> "家庭号"
|
||||
M1_FAMILY -> StringUtils.getString(R.string.module_och_m1_family)
|
||||
// M1_FRIENDLY -> "朋友号"
|
||||
M1_FRIENDLY -> StringUtils.getString(R.string.module_och_m1_friendly)
|
||||
// else -> "未知"
|
||||
else -> StringUtils.getString(R.string.module_core_unknown)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -440,7 +440,8 @@ object CharterPassengerModel {
|
||||
GcjLon = null,
|
||||
seq = null,
|
||||
type = null,
|
||||
introduction = "简介"
|
||||
// introduction = "简介"
|
||||
introduction = StringUtils.getString(R.string.module_och_synopsis)
|
||||
)
|
||||
return Pair(lineInfo, targetSizt)
|
||||
}
|
||||
|
||||
@@ -1,6 +1,8 @@
|
||||
package com.mogo.och.charter.passenger.presenter
|
||||
|
||||
import androidx.lifecycle.LifecycleOwner
|
||||
import com.mogo.eagle.core.utilcode.util.StringUtils
|
||||
import com.mogo.och.charter.passenger.R
|
||||
import com.mogo.och.charter.passenger.bean.response.OrderInfoResponse
|
||||
import com.mogo.och.charter.passenger.model.CharterPassengerModel
|
||||
import com.mogo.och.charter.passenger.ui.dialogfragment.NoviceGuidanceFragment
|
||||
@@ -33,13 +35,16 @@ class CharterPassengerNoviceGuidancePresenter(view: NoviceGuidanceFragment?) :
|
||||
}
|
||||
when (it.productType) {
|
||||
OrderInfoResponse.M1_LOVE -> {
|
||||
mView?.setProductType("爱情号")
|
||||
// mView?.setProductType("爱情号")
|
||||
mView?.setProductType(StringUtils.getString(R.string.module_och_m1_love))
|
||||
}
|
||||
OrderInfoResponse.M1_FAMILY -> {
|
||||
mView?.setProductType("家庭号")
|
||||
// mView?.setProductType("家庭号")
|
||||
mView?.setProductType(StringUtils.getString(R.string.module_och_m1_family))
|
||||
}
|
||||
OrderInfoResponse.M1_FRIENDLY -> {
|
||||
mView?.setProductType("朋友号")
|
||||
// mView?.setProductType("朋友号")
|
||||
mView?.setProductType(StringUtils.getString(R.string.module_och_m1_friendly))
|
||||
}
|
||||
else -> {
|
||||
mView?.setProductType("")
|
||||
|
||||
@@ -6,6 +6,7 @@ import com.mogo.eagle.core.utilcode.mogo.logger.CallerLogger
|
||||
import com.mogo.eagle.core.utilcode.mogo.logger.scene.SceneConstant
|
||||
import com.mogo.eagle.core.utilcode.util.ActivityUtils
|
||||
import com.mogo.eagle.core.utilcode.util.GsonUtils
|
||||
import com.mogo.eagle.core.utilcode.util.StringUtils
|
||||
import com.mogo.eagle.core.utilcode.util.UiThreadHandler
|
||||
import com.mogo.och.charter.passenger.R
|
||||
import com.mogo.och.charter.passenger.bean.response.OrderInfoResponse
|
||||
@@ -52,7 +53,8 @@ object DriverMessage: IReceivedMsgListener {
|
||||
}
|
||||
if(msg.isPlay){
|
||||
VoiceNotice.showNotice(msg.msg, AIAssist.LEVEL1)
|
||||
if(msg.msg.contains("核销成功")){
|
||||
// if(msg.msg.contains("核销成功")){
|
||||
if(msg.msg.contains(StringUtils.getString(R.string.module_och_verification_success))){
|
||||
val string = SkinResources.getInstance().getString(R.string.charter_p_welcome_tts)
|
||||
VoiceNotice.showNotice(string, AIAssist.LEVEL1,4_000)
|
||||
}
|
||||
|
||||
@@ -215,14 +215,16 @@ class NoviceGuidanceFragment :
|
||||
include_welcome.visibility = View.VISIBLE
|
||||
actv_start_guildance.visibility = View.VISIBLE
|
||||
group_complete_guidance.visibility = View.GONE
|
||||
actv_click_go_explore.text = "点击开始探索"
|
||||
// actv_click_go_explore.text = "点击开始探索"
|
||||
actv_click_go_explore.text = StringUtils.getString(R.string.module_och_click_start)
|
||||
pageStatus = PageStatus.Startpage
|
||||
}
|
||||
if (complierGuidance) {
|
||||
include_welcome.visibility = View.VISIBLE
|
||||
actv_start_guildance.visibility = View.GONE
|
||||
group_complete_guidance.visibility = View.VISIBLE
|
||||
actv_click_go_explore.text = "点我进入主页"
|
||||
// actv_click_go_explore.text = "点我进入主页"
|
||||
actv_click_go_explore.text = StringUtils.getString(R.string.module_och_click_home)
|
||||
pageStatus = PageStatus.EndPage
|
||||
mPresenter?.exitDialogFragment()
|
||||
}
|
||||
@@ -316,7 +318,10 @@ class NoviceGuidanceFragment :
|
||||
}
|
||||
|
||||
fun setProductType(type: String) {
|
||||
actv_start_guildance.text = "欢迎乘坐${SkinResources.getInstance().getString(R.string.operation_platform_name)}车联自动驾驶$type!"
|
||||
// actv_start_guildance.text = "欢迎乘坐${SkinResources.getInstance().getString(R.string.operation_platform_name)}车联自动驾驶$type!"
|
||||
actv_start_guildance.text = "${StringUtils.getString(R.string.module_och_welcome_ride)}${
|
||||
SkinResources.getInstance().getString(R.string.operation_platform_name)
|
||||
}${StringUtils.getString(R.string.module_och_welcome_ride1)}$type!"
|
||||
}
|
||||
|
||||
companion object {
|
||||
|
||||
@@ -10,6 +10,7 @@ import android.view.MotionEvent
|
||||
import android.view.View
|
||||
import androidx.constraintlayout.widget.ConstraintLayout
|
||||
import com.mogo.eagle.core.utilcode.mogo.logger.CallerLogger
|
||||
import com.mogo.eagle.core.utilcode.util.StringUtils
|
||||
import com.mogo.eagle.core.utilcode.util.UiThreadHandler
|
||||
import com.mogo.och.charter.passenger.R
|
||||
import kotlinx.android.synthetic.main.charter_p_devices_unlock.view.aciv_only_unlock
|
||||
@@ -133,17 +134,20 @@ class UnlockView : ConstraintLayout, LockManager.LockStatusCallback {
|
||||
when (isLock) {
|
||||
LockManager.LockStatus.LOCKED -> {
|
||||
// 锁定
|
||||
actv_lock_status.text = "长按开锁键2秒,快速解锁"
|
||||
// actv_lock_status.text = "长按开锁键2秒,快速解锁"
|
||||
actv_lock_status.text = StringUtils.getString(R.string.module_och_long_click_unlock)
|
||||
aciv_only_unlock.setImageResource(R.drawable.charter_p_only_lock)
|
||||
}
|
||||
LockManager.LockStatus.UNLOCKING -> {
|
||||
// 开锁中
|
||||
actv_lock_status.text = "开锁中.."
|
||||
// actv_lock_status.text = "开锁中.."
|
||||
actv_lock_status.text = StringUtils.getString(R.string.module_och_long_click_unlocking)
|
||||
aciv_only_unlock.setImageResource(R.drawable.charter_p_only_unlocking)
|
||||
}
|
||||
LockManager.LockStatus.UNLOCK -> {
|
||||
// 解锁成功
|
||||
actv_lock_status.text = "已解锁"
|
||||
// actv_lock_status.text = "已解锁"
|
||||
actv_lock_status.text = StringUtils.getString(R.string.module_och_long_click_unlocked)
|
||||
aciv_only_unlock.setImageResource(R.drawable.charter_p_only_unlock)
|
||||
}
|
||||
}
|
||||
|
||||
@@ -8,6 +8,7 @@ import androidx.constraintlayout.widget.ConstraintLayout
|
||||
import androidx.lifecycle.ViewModelProvider
|
||||
import androidx.lifecycle.findViewTreeViewModelStoreOwner
|
||||
import com.mogo.eagle.core.utilcode.kotlin.onClick
|
||||
import com.mogo.eagle.core.utilcode.util.StringUtils
|
||||
import com.mogo.och.charter.passenger.R
|
||||
import com.mogo.och.charter.passenger.callback.IClearViewCallback
|
||||
import kotlinx.android.synthetic.main.charter_p_devices_fragment.view.actv_contain_order
|
||||
@@ -86,7 +87,8 @@ class OrderInfoView : ConstraintLayout, OrderInfoViewModel.ItineraryViewCallback
|
||||
}
|
||||
|
||||
override fun setLeftTime(leftTime:String){
|
||||
actv_left_time.text = "剩余时间 $leftTime"
|
||||
// actv_left_time.text = "剩余时间 $leftTime"
|
||||
actv_left_time.text = "${StringUtils.getString(R.string.module_och_time_remaining)} $leftTime"
|
||||
}
|
||||
|
||||
override fun setStartTimeAndEndTime(startTime:String,endTime:String){
|
||||
|
||||
@@ -4,6 +4,7 @@ import androidx.lifecycle.ViewModel
|
||||
import com.mogo.eagle.core.data.BaseData
|
||||
import com.mogo.eagle.core.utilcode.mogo.logger.CallerLogger
|
||||
import com.mogo.eagle.core.utilcode.mogo.logger.scene.SceneConstant
|
||||
import com.mogo.eagle.core.utilcode.util.StringUtils
|
||||
import com.mogo.eagle.core.utilcode.util.UiThreadHandler
|
||||
import com.mogo.och.charter.passenger.R
|
||||
import com.mogo.och.charter.passenger.callback.ITimeCallback
|
||||
@@ -51,7 +52,8 @@ class OrderInfoViewModel: ViewModel(), ITimeCallback {
|
||||
}else{
|
||||
viewCallback?.setPhone("----")
|
||||
viewCallback?.setStartTimeAndEndTime("--:---", "--:--")
|
||||
viewCallback?.setLeftTime("剩余时间 --:--")
|
||||
// viewCallback?.setLeftTime("剩余时间 --:--")
|
||||
viewCallback?.setLeftTime("${StringUtils.getString(R.string.module_och_time_remaining)} --:--")
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -25,6 +25,7 @@ import com.mogo.eagle.core.utilcode.mogo.logger.CallerLogger
|
||||
import com.mogo.eagle.core.utilcode.mogo.logger.scene.SceneConstant
|
||||
import com.mogo.commons.storage.SharedPrefsMgr
|
||||
import com.mogo.eagle.core.utilcode.util.ClickUtils
|
||||
import com.mogo.eagle.core.utilcode.util.StringUtils
|
||||
import com.mogo.eagle.core.utilcode.util.UiThreadHandler
|
||||
import com.mogo.och.charter.passenger.R
|
||||
import com.mogo.och.charter.passenger.bean.Temperature
|
||||
@@ -547,7 +548,8 @@ class SoftControlView : ConstraintLayout, SoftControlViewModel.SoftControlCallba
|
||||
}
|
||||
SoundPoolHelper.getSoundPoolHelper().playSoundWithRedId(context, R.raw.m1_voice_di)
|
||||
if (isChecked) {//打开
|
||||
tv_aircondition_switch.setText("关闭空调")
|
||||
// tv_aircondition_switch.setText("关闭空调")
|
||||
tv_aircondition_switch.setText(StringUtils.getString(R.string.module_och_off_air_conditioner))
|
||||
if (rg_setting_pattern.checkedRadioButtonId == R.id.rb_pattern_heating) {
|
||||
openHeater()// 打开暖风机
|
||||
} else {
|
||||
@@ -555,7 +557,8 @@ class SoftControlView : ConstraintLayout, SoftControlViewModel.SoftControlCallba
|
||||
}
|
||||
showAni()
|
||||
} else {// 关闭
|
||||
tv_aircondition_switch.setText("打开空调")
|
||||
// tv_aircondition_switch.setText("打开空调")
|
||||
tv_aircondition_switch.setText(StringUtils.getString(R.string.module_och_on_air_conditioner))
|
||||
closeHeater()// 关闭暖风机
|
||||
closeAircondition()//关闭空调
|
||||
}
|
||||
@@ -725,11 +728,13 @@ class SoftControlView : ConstraintLayout, SoftControlViewModel.SoftControlCallba
|
||||
) {
|
||||
tv_aircondition_switch?.let {
|
||||
if (!airIsOpen && !heaterIsOpen) {
|
||||
tv_aircondition_switch.text = "打开空调"
|
||||
// tv_aircondition_switch.text = "打开空调"
|
||||
tv_aircondition_switch.text = StringUtils.getString(R.string.module_och_on_air_conditioner)
|
||||
tv_aircondition_switch.isChecked = false
|
||||
dbv_wind.visibility = View.GONE
|
||||
} else {
|
||||
tv_aircondition_switch.text = "关闭空调"
|
||||
// tv_aircondition_switch.text = "关闭空调"
|
||||
tv_aircondition_switch.text = StringUtils.getString(R.string.module_och_off_air_conditioner)
|
||||
tv_aircondition_switch.isChecked = true
|
||||
dbv_wind.visibility = View.VISIBLE
|
||||
}
|
||||
|
||||
@@ -19,6 +19,7 @@ import com.mogo.eagle.core.function.call.devatools.CallerDevaToolsManager
|
||||
import com.mogo.eagle.core.function.call.telematic.CallerTelematicManager
|
||||
import com.mogo.eagle.core.utilcode.mogo.logger.CallerLogger
|
||||
import com.mogo.eagle.core.utilcode.util.ClickUtils
|
||||
import com.mogo.eagle.core.utilcode.util.StringUtils
|
||||
import com.mogo.eagle.core.utilcode.util.UiThreadHandler
|
||||
import com.mogo.och.charter.passenger.R
|
||||
import com.mogo.och.charter.passenger.bean.response.OrderInfoResponse
|
||||
@@ -122,7 +123,8 @@ class StatusBarView @JvmOverloads constructor(
|
||||
|
||||
private fun setAutoPilotStatusInfo(state: Int) {
|
||||
if (FunctionBuildConfig.isDemoMode) {// 美化模式
|
||||
actv_auto_status.text = "自动驾驶中"
|
||||
// actv_auto_status.text = "自动驾驶中"
|
||||
actv_auto_status.text = StringUtils.getString(R.string.module_och_autonomous_driving)
|
||||
when (CharterPassengerModel.getCurrentOrderStatus()) {
|
||||
OrderStatusEnum.Nothing -> {// 初始状态
|
||||
//是否强制绘制引导线
|
||||
@@ -160,16 +162,20 @@ class StatusBarView @JvmOverloads constructor(
|
||||
}else{
|
||||
when (state) {
|
||||
IMoGoAutopilotStatusListener.STATUS_AUTOPILOT_DISABLE -> {
|
||||
actv_auto_status.text = "安全接管中"
|
||||
// actv_auto_status.text = "安全接管中"
|
||||
actv_auto_status.text = StringUtils.getString(R.string.module_och_during_safe_handover_process)
|
||||
}
|
||||
IMoGoAutopilotStatusListener.STATUS_AUTOPILOT_ENABLE -> {
|
||||
actv_auto_status.text = "安全接管中"
|
||||
// actv_auto_status.text = "安全接管中"
|
||||
actv_auto_status.text = StringUtils.getString(R.string.module_och_during_safe_handover_process)
|
||||
}
|
||||
IMoGoAutopilotStatusListener.STATUS_AUTOPILOT_RUNNING -> {
|
||||
actv_auto_status.text = "自动驾驶中"
|
||||
// actv_auto_status.text = "自动驾驶中"
|
||||
actv_auto_status.text = StringUtils.getString(R.string.module_och_autonomous_driving)
|
||||
}
|
||||
IMoGoAutopilotStatusListener.STATUS_PARALLEL_DRIVING -> {
|
||||
actv_auto_status.text = "远程代驾中"
|
||||
// actv_auto_status.text = "远程代驾中"
|
||||
actv_auto_status.text = StringUtils.getString(R.string.module_och_parallel_driving)
|
||||
}
|
||||
else -> {}
|
||||
}
|
||||
|
||||
@@ -26,13 +26,13 @@
|
||||
android:layout_width="@dimen/dp_193"
|
||||
android:layout_height="@dimen/dp_107"/>
|
||||
|
||||
|
||||
<!-- app:charterPBottomTitle="靠边停车"-->
|
||||
<com.mogo.och.charter.passenger.ui.bottom.impl.StopSiteView
|
||||
android:id="@+id/actv_stop_site"
|
||||
app:charterPBackageViewId="@+id/actv_stop_site_press"
|
||||
app:charterPselectedDrawable="@drawable/charter_p_bottom_stopsite_press"
|
||||
app:charterPnormalDrawable="@drawable/charter_p_bottom_stopsite_normal"
|
||||
app:charterPBottomTitle="靠边停车"
|
||||
app:charterPBottomTitle="@string/module_core_pull_over"
|
||||
app:layout_constraintStart_toEndOf="@+id/aciv_center_image"
|
||||
app:layout_constraintEnd_toStartOf="@+id/actv_close_door"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
@@ -50,12 +50,13 @@
|
||||
android:layout_width="@dimen/dp_193"
|
||||
android:layout_height="@dimen/dp_107"/>
|
||||
|
||||
<!-- app:charterPBottomTitle="关车门"-->
|
||||
<com.mogo.och.charter.passenger.ui.bottom.impl.CloseDoorView
|
||||
android:id="@+id/actv_close_door"
|
||||
app:charterPBackageViewId="@+id/actv_close_door_press"
|
||||
app:charterPselectedDrawable="@drawable/charter_p_bottom_closedoor_press"
|
||||
app:charterPnormalDrawable="@drawable/charter_p_bottom_closedoor_normal"
|
||||
app:charterPBottomTitle="关车门"
|
||||
app:charterPBottomTitle="@string/module_och_close_car_door"
|
||||
app:layout_constraintStart_toEndOf="@+id/actv_stop_site"
|
||||
app:layout_constraintEnd_toStartOf="@+id/actv_open_door"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
@@ -73,13 +74,14 @@
|
||||
android:layout_width="@dimen/dp_193"
|
||||
android:layout_height="@dimen/dp_107"/>
|
||||
|
||||
<!-- app:charterPBottomTitle="开车门"-->
|
||||
<com.mogo.och.charter.passenger.ui.bottom.impl.OpenDoorView
|
||||
android:id="@+id/actv_open_door"
|
||||
android:gravity="center"
|
||||
app:charterPBackageViewId="@+id/actv_open_door_press"
|
||||
app:charterPselectedDrawable="@drawable/charter_p_bottom_opendoor_press"
|
||||
app:charterPnormalDrawable="@drawable/charter_p_bottom_opendoor_normal"
|
||||
app:charterPBottomTitle="开车门"
|
||||
app:charterPBottomTitle="@string/module_och_open_car_door"
|
||||
app:layout_constraintStart_toEndOf="@+id/actv_close_door"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
@@ -120,12 +122,13 @@
|
||||
android:layout_width="@dimen/dp_193"
|
||||
android:layout_height="@dimen/dp_107"/>
|
||||
|
||||
<!-- app:charterPBottomTitle="音乐"-->
|
||||
<com.mogo.och.charter.passenger.ui.bottom.impl.MusicCheckView
|
||||
android:id="@+id/actv_music"
|
||||
app:charterPBackageViewId="@+id/actv_music_press"
|
||||
app:charterPselectedDrawable="@drawable/charter_p_bottom_music_press"
|
||||
app:charterPnormalDrawable="@drawable/charter_p_bottom_music_normal"
|
||||
app:charterPBottomTitle="音乐"
|
||||
app:charterPBottomTitle="@string/module_och_music"
|
||||
app:charterPBottomClick="false"
|
||||
app:layout_constraintEnd_toStartOf="@+id/actv_setting"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
@@ -143,12 +146,13 @@
|
||||
android:layout_width="@dimen/dp_193"
|
||||
android:layout_height="@dimen/dp_107"/>
|
||||
|
||||
<!-- app:charterPBottomTitle="设置"-->
|
||||
<com.mogo.och.charter.passenger.ui.bottom.BottomCheckView
|
||||
android:id="@+id/actv_setting"
|
||||
app:charterPBackageViewId="@+id/actv_setting_press"
|
||||
app:charterPselectedDrawable="@drawable/charter_p_bottom_softsettiing_press"
|
||||
app:charterPnormalDrawable="@drawable/charter_p_bottom_softsettiing_normal"
|
||||
app:charterPBottomTitle="设置"
|
||||
app:charterPBottomTitle="@string/module_och_settings"
|
||||
app:charterPBottomClick="false"
|
||||
app:layout_constraintEnd_toStartOf="@+id/actv_line"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
@@ -166,12 +170,13 @@
|
||||
android:layout_width="@dimen/dp_193"
|
||||
android:layout_height="@dimen/dp_107"/>
|
||||
|
||||
<!-- app:charterPBottomTitle="线路"-->
|
||||
<com.mogo.och.charter.passenger.ui.bottom.BottomCheckView
|
||||
android:id="@+id/actv_line"
|
||||
app:charterPBackageViewId="@+id/actv_line_press"
|
||||
app:charterPselectedDrawable="@drawable/charter_p_bottom_line_press"
|
||||
app:charterPnormalDrawable="@drawable/charter_p_bottom_line_normal"
|
||||
app:charterPBottomTitle="线路"
|
||||
app:charterPBottomTitle="@string/module_och_lines"
|
||||
app:charterPBottomClick="false"
|
||||
app:layout_constraintEnd_toStartOf="@+id/aciv_center_image"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
|
||||
@@ -19,6 +19,7 @@
|
||||
android:layout_width="73dp"
|
||||
android:layout_height="@dimen/dp_53"/>
|
||||
|
||||
<!-- android:text="出发"-->
|
||||
<androidx.appcompat.widget.AppCompatTextView
|
||||
android:id="@+id/actv_go_title"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
@@ -28,7 +29,7 @@
|
||||
android:textSize="@dimen/dp_48"
|
||||
android:textColor="@android:color/white"
|
||||
android:layout_marginEnd="@dimen/dp_7"
|
||||
android:text="出发"
|
||||
android:text="@string/module_och_depart"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"/>
|
||||
|
||||
|
||||
@@ -7,11 +7,12 @@
|
||||
tools:ignore="MissingDefaultResource"
|
||||
tools:parentTag="androidx.constraintlayout.widget.ConstraintLayout">
|
||||
|
||||
<!-- android:text="订单空空~"-->
|
||||
<androidx.appcompat.widget.AppCompatTextView
|
||||
android:id="@+id/actv_order_null"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="订单空空~"
|
||||
android:text="@string/module_och_order_empty"
|
||||
android:textColor="@color/charter_p_090f28"
|
||||
android:textSize="@dimen/dp_36"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
@@ -30,12 +31,13 @@
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent" />
|
||||
|
||||
<!-- android:text="剩余包车时长"-->
|
||||
<androidx.appcompat.widget.AppCompatTextView
|
||||
android:id="@+id/actv_order_end_time_title"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginBottom="@dimen/dp_7_5"
|
||||
android:text="剩余包车时长"
|
||||
android:text="@string/module_och_order_end_time"
|
||||
android:textColor="@color/charter_p_090f28"
|
||||
android:textSize="@dimen/dp_20"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
|
||||
@@ -8,24 +8,28 @@
|
||||
tools:parentTag="androidx.constraintlayout.widget.ConstraintLayout"
|
||||
tools:ignore="MissingDefaultResource">
|
||||
|
||||
<!-- android:text="到站"-->
|
||||
<TextView
|
||||
android:text="到站"
|
||||
android:text="@string/module_och_arrive_station"
|
||||
android:id="@+id/debug_arrive_dest"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"/>
|
||||
<!-- android:text="展示引导页面"-->
|
||||
<TextView
|
||||
android:text="展示引导页面"
|
||||
android:text="@string/module_och_show_novice_guidance"
|
||||
android:id="@+id/debug_show_noviceGuidance"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"/>
|
||||
<!-- android:text="切换模型"-->
|
||||
<TextView
|
||||
android:text="切换模型"
|
||||
android:text="@string/module_och_change_mode"
|
||||
android:id="@+id/debug_change_modle"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"/>
|
||||
|
||||
<!-- android:text="显示结束页面"-->
|
||||
<TextView
|
||||
android:text="显示结束页面"
|
||||
android:text="@string/module_och_show_end_view"
|
||||
android:id="@+id/debug_show_endview"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"/>
|
||||
|
||||
@@ -39,18 +39,20 @@
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"/>
|
||||
|
||||
<!-- android:text="用车时间"-->
|
||||
<androidx.appcompat.widget.AppCompatTextView
|
||||
android:id="@+id/actv_order_times_title"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintBottom_toTopOf="@+id/actv_end_order"
|
||||
android:layout_marginBottom="@dimen/dp_25"
|
||||
android:text="用车时间"
|
||||
android:text="@string/module_och_order_times"
|
||||
android:textSize="@dimen/dp_18"
|
||||
android:textColor="@color/charter_p_112b57"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"/>
|
||||
|
||||
<!-- android:text="结束用车"-->
|
||||
<androidx.appcompat.widget.AppCompatTextView
|
||||
android:id="@+id/actv_end_order"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
@@ -59,7 +61,7 @@
|
||||
android:layout_marginBottom="@dimen/dp_27"
|
||||
android:background="@drawable/charter_p_shape_end_order"
|
||||
android:gravity="center"
|
||||
android:text="结束用车"
|
||||
android:text="@string/module_och_end_order"
|
||||
android:textSize="@dimen/dp_18"
|
||||
android:paddingEnd="@dimen/dp_42"
|
||||
android:paddingStart="@dimen/dp_42"
|
||||
@@ -91,9 +93,10 @@
|
||||
android:layout_width="@dimen/dp_66"
|
||||
android:layout_height="@dimen/dp_68"/>
|
||||
|
||||
<!-- android:text="剩余时间 --:--"-->
|
||||
<androidx.appcompat.widget.AppCompatTextView
|
||||
android:id="@+id/actv_left_time"
|
||||
android:text="剩余时间 --:--"
|
||||
android:text="@string/module_och_time_remaining1"
|
||||
android:textSize="@dimen/dp_20"
|
||||
android:textColor="@color/charter_p_5F7096"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
@@ -118,9 +121,10 @@
|
||||
android:layout_height="wrap_content"
|
||||
app:isUseSkin="true"/>
|
||||
|
||||
<!-- android:text="结束用车"-->
|
||||
<androidx.appcompat.widget.AppCompatTextView
|
||||
android:id="@+id/actv_end_order_submit"
|
||||
android:text="结束用车"
|
||||
android:text="@string/module_och_end_order"
|
||||
android:textSize="@dimen/dp_24"
|
||||
android:textColor="@android:color/white"
|
||||
android:layout_marginBottom="@dimen/dp_27"
|
||||
@@ -136,9 +140,10 @@
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"/>
|
||||
|
||||
<!-- android:text="继续用车"-->
|
||||
<androidx.appcompat.widget.AppCompatTextView
|
||||
android:id="@+id/actv_contain_order"
|
||||
android:text="继续用车"
|
||||
android:text="@string/module_och_contain_order"
|
||||
android:textSize="@dimen/dp_24"
|
||||
android:textColor="@android:color/white"
|
||||
android:background="@drawable/charter_p_shape_end_order"
|
||||
|
||||
@@ -27,9 +27,10 @@
|
||||
android:layout_width="@dimen/dp_180"
|
||||
android:layout_height="@dimen/dp_180"/>
|
||||
|
||||
<!-- android:text="长按开锁键2秒杀,快速解锁"-->
|
||||
<androidx.appcompat.widget.AppCompatTextView
|
||||
android:id="@+id/actv_lock_status"
|
||||
android:text="长按开锁键2秒杀,快速解锁"
|
||||
android:text="@string/module_och_long_click_unlock"
|
||||
app:layout_constraintStart_toStartOf="@+id/aciv_only_unlock"
|
||||
app:layout_constraintEnd_toEndOf="@+id/aciv_only_unlock"
|
||||
app:layout_constraintTop_toBottomOf="@+id/aciv_only_unlock"
|
||||
|
||||
@@ -6,9 +6,10 @@
|
||||
android:layout_height="@dimen/dp_440"
|
||||
tools:parentTag="androidx.constraintlayout.widget.ConstraintLayout">
|
||||
|
||||
<!-- android:text="音乐列表"-->
|
||||
<TextView
|
||||
android:id="@+id/tv_music_title"
|
||||
android:text="音乐列表"
|
||||
android:text="@string/module_och_music_playlist"
|
||||
android:textColor="@color/charter_p_253A5A"
|
||||
android:textSize="@dimen/dp_18"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
|
||||
@@ -6,6 +6,7 @@
|
||||
android:layout_height="@dimen/dp_51"
|
||||
tools:parentTag="androidx.constraintlayout.widget.ConstraintLayout">
|
||||
|
||||
<!-- android:text="音乐名称"-->
|
||||
<TextView
|
||||
android:id="@+id/tv_song_name"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
@@ -13,7 +14,7 @@
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
android:textColor="@color/charter_p_303C52"
|
||||
android:layout_marginStart="@dimen/dp_45"
|
||||
android:text="音乐名称"
|
||||
android:text="@string/module_och_music_name"
|
||||
android:textSize="@dimen/dp_18"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"/>
|
||||
@@ -29,6 +30,7 @@
|
||||
android:layout_width="@dimen/dp_20"
|
||||
android:layout_height="@dimen/dp_16"/>
|
||||
|
||||
<!-- android:text="轻柔"-->
|
||||
<TextView
|
||||
android:id="@+id/tv_tag"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
@@ -40,7 +42,7 @@
|
||||
android:paddingStart="@dimen/dp_4"
|
||||
android:paddingEnd="@dimen/dp_4"
|
||||
android:layout_marginEnd="@dimen/dp_43"
|
||||
android:text="轻柔"
|
||||
android:text="@string/module_och_music_soft"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"/>
|
||||
|
||||
|
||||
@@ -21,6 +21,7 @@
|
||||
android:layout_height="wrap_content"
|
||||
app:isUseSkin="true"/>
|
||||
|
||||
<!-- android:text="太棒了!"-->
|
||||
<androidx.appcompat.widget.AppCompatTextView
|
||||
android:id="@+id/actv_complete_guidance_title"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
@@ -28,7 +29,7 @@
|
||||
android:layout_marginTop="@dimen/dp_158"
|
||||
android:layout_marginStart="@dimen/dp_280"
|
||||
android:visibility="gone"
|
||||
android:text="太棒了!"
|
||||
android:text="@string/module_och_great"
|
||||
android:textSize="@dimen/dp_63"
|
||||
android:textStyle="bold"
|
||||
android:textColor="@color/charter_p_101c35"
|
||||
@@ -66,13 +67,14 @@
|
||||
android:layout_width="@dimen/dp_631"
|
||||
android:layout_height="@dimen/dp_583"/>
|
||||
|
||||
<!-- android:text="用户信息:"-->
|
||||
<androidx.appcompat.widget.AppCompatTextView
|
||||
android:id="@+id/actv_userinfo_title"
|
||||
app:layout_constraintTop_toTopOf="@+id/actv_contain_order_info"
|
||||
app:layout_constraintStart_toStartOf="@+id/actv_contain_order_info"
|
||||
android:layout_marginTop="@dimen/dp_74"
|
||||
android:layout_marginStart="@dimen/dp_100"
|
||||
android:text="用户信息:"
|
||||
android:text="@string/module_och_user_info"
|
||||
android:textColor="@color/charter_p_20418D"
|
||||
android:textSize="@dimen/dp_30"
|
||||
android:layout_width="wrap_content"
|
||||
@@ -90,12 +92,13 @@
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"/>
|
||||
|
||||
<!-- android:text="用车时间:"-->
|
||||
<androidx.appcompat.widget.AppCompatTextView
|
||||
android:id="@+id/actv_order_time_title"
|
||||
app:layout_constraintTop_toBottomOf="@+id/actv_userinfo"
|
||||
app:layout_constraintStart_toStartOf="@+id/actv_userinfo"
|
||||
android:layout_marginTop="@dimen/dp_60"
|
||||
android:text="用车时间:"
|
||||
android:text="@string/module_och_order_times1"
|
||||
android:textColor="@color/charter_p_20418D"
|
||||
android:textSize="@dimen/dp_30"
|
||||
android:layout_width="wrap_content"
|
||||
@@ -123,6 +126,7 @@
|
||||
android:layout_width="@dimen/dp_360"
|
||||
android:layout_height="@dimen/dp_80"/>
|
||||
|
||||
<!-- android:text="点击开始探索"-->
|
||||
<androidx.appcompat.widget.AppCompatTextView
|
||||
android:id="@+id/actv_click_go_explore"
|
||||
app:layout_constraintStart_toStartOf="@+id/v_clikc_go_explore_bg"
|
||||
@@ -131,7 +135,7 @@
|
||||
app:layout_constraintHorizontal_chainStyle="packed"
|
||||
app:layout_constraintBottom_toBottomOf="@+id/v_clikc_go_explore_bg"
|
||||
android:layout_marginEnd="@dimen/dp_10"
|
||||
android:text="点击开始探索"
|
||||
android:text="@string/module_och_click_go_explore"
|
||||
android:textStyle="bold"
|
||||
android:textColor="@android:color/white"
|
||||
android:textSize="@dimen/dp_30"
|
||||
|
||||
@@ -45,22 +45,24 @@
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toEndOf="@+id/iv_end_order_opendoor" />
|
||||
|
||||
<!-- android:text="开车门"-->
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="@dimen/dp_19"
|
||||
android:text="开车门"
|
||||
android:text="@string/module_och_open_car_door"
|
||||
android:textColor="@color/charter_p_23293b"
|
||||
android:textSize="@dimen/dp_28"
|
||||
app:layout_constraintEnd_toEndOf="@+id/iv_end_order_opendoor"
|
||||
app:layout_constraintStart_toStartOf="@+id/iv_end_order_opendoor"
|
||||
app:layout_constraintTop_toBottomOf="@+id/iv_end_order_opendoor" />
|
||||
|
||||
<!-- android:text="关车门"-->
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="@dimen/dp_19"
|
||||
android:text="关车门"
|
||||
android:text="@string/module_och_close_car_door"
|
||||
android:textColor="@color/charter_p_23293b"
|
||||
android:textSize="@dimen/dp_28"
|
||||
app:layout_constraintEnd_toEndOf="@+id/iv_end_order_closedoor"
|
||||
|
||||
@@ -81,7 +81,7 @@
|
||||
android:textSize="@dimen/dp_20"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toStartOf="@+id/gl_site_cancle_submit_guide" />
|
||||
|
||||
<!-- android:text="确认"-->
|
||||
<TextView
|
||||
android:id="@+id/tv_site_submit"
|
||||
android:layout_width="wrap_content"
|
||||
@@ -94,7 +94,7 @@
|
||||
android:paddingTop="@dimen/dp_14"
|
||||
android:paddingEnd="@dimen/dp_56"
|
||||
android:paddingBottom="@dimen/dp_13"
|
||||
android:text="确认"
|
||||
android:text="@string/module_och_affirm"
|
||||
android:textColor="@android:color/white"
|
||||
android:textSize="@dimen/dp_20"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
@@ -163,12 +163,13 @@
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent" />
|
||||
|
||||
<!-- android:text="确认完毕!"-->
|
||||
<androidx.appcompat.widget.AppCompatTextView
|
||||
android:id="@+id/aciv_driver_agree_title_top"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="@dimen/dp_34"
|
||||
android:text="确认完毕!"
|
||||
android:text="@string/module_och_affirm_complete"
|
||||
android:textColor="@color/charter_p_112b57"
|
||||
android:textSize="@dimen/dp_34"
|
||||
android:textStyle="bold"
|
||||
@@ -176,11 +177,12 @@
|
||||
app:layout_constraintStart_toStartOf="@+id/aciv_driver_agree_image"
|
||||
app:layout_constraintTop_toBottomOf="@+id/aciv_driver_agree_image" />
|
||||
|
||||
<!-- android:text="小助手已记录您的选择。"-->
|
||||
<androidx.appcompat.widget.AppCompatTextView
|
||||
android:id="@+id/aciv_driver_agree_title_bottom"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="小助手已记录您的选择。"
|
||||
android:text="@string/module_och_driver_agree"
|
||||
android:textColor="@color/charter_p_112b57"
|
||||
android:textSize="@dimen/dp_29"
|
||||
app:layout_constraintEnd_toEndOf="@+id/aciv_driver_agree_image"
|
||||
@@ -207,13 +209,14 @@
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent" />
|
||||
|
||||
<!-- android:text="啊哦,加载失败了\n联系车内领航员,或尝试再次提交。"-->
|
||||
<androidx.appcompat.widget.AppCompatTextView
|
||||
android:id="@+id/aciv_driver_refuse_title"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="@dimen/dp_35"
|
||||
android:gravity="center"
|
||||
android:text="啊哦,加载失败了\n联系车内领航员,或尝试再次提交。"
|
||||
android:text="@string/module_och_driver_refuse"
|
||||
android:textColor="@color/charter_p_112b57"
|
||||
android:textSize="@dimen/dp_34"
|
||||
app:layout_constraintEnd_toEndOf="@+id/aciv_driver_refuse_image"
|
||||
|
||||
@@ -22,12 +22,13 @@
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
app:layout_constraintVertical_bias="0.372" />
|
||||
|
||||
<!-- android:text="加载中 请稍等"-->
|
||||
<TextView
|
||||
android:id="@+id/tv_loading_wait_driver_title"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="63dp"
|
||||
android:text="加载中 请稍等"
|
||||
android:text="@string/module_och_loading_wait"
|
||||
android:gravity="center"
|
||||
android:textColor="@color/charter_p_4a5375"
|
||||
android:textSize="@dimen/dp_30"
|
||||
|
||||
@@ -33,11 +33,12 @@
|
||||
android:textColor="@color/charter_p_112b57"
|
||||
android:textSize="@dimen/dp_29" />
|
||||
|
||||
<!-- android:text="网络不佳"-->
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="@dimen/dp_42"
|
||||
android:text="网络不佳"
|
||||
android:text="@string/module_och_network_not_good"
|
||||
android:textStyle="bold"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
|
||||
@@ -15,8 +15,9 @@
|
||||
android:src="@drawable/charter_p_order_noorder"
|
||||
android:layout_width="@dimen/dp_274"
|
||||
android:layout_height="@dimen/dp_219"/>
|
||||
<!-- android:text="当前暂无订单"-->
|
||||
<TextView
|
||||
android:text="当前暂无订单"
|
||||
android:text="@string/module_och_no_order"
|
||||
android:layout_marginTop="@dimen/dp_42"
|
||||
android:textSize="@dimen/dp_30"
|
||||
android:textColor="@color/charter_p_4a5375"
|
||||
|
||||
@@ -28,6 +28,7 @@
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
|
||||
<!-- android:text="空 调"-->
|
||||
<RadioButton
|
||||
android:id="@+id/tv_setting_aircondition"
|
||||
android:layout_width="@dimen/dp_160"
|
||||
@@ -38,10 +39,11 @@
|
||||
android:drawableLeft="@drawable/charter_p_function_airconditon_left_selector"
|
||||
android:drawablePadding="-20dp"
|
||||
android:gravity="center"
|
||||
android:text="空 调"
|
||||
android:text="@string/module_och_air_conditioner"
|
||||
android:textColor="@drawable/charter_p_function_airconditon_text_color_selector"
|
||||
android:textSize="@dimen/dp_24" />
|
||||
|
||||
<!-- android:text="灯 光"-->
|
||||
<RadioButton
|
||||
android:id="@+id/tv_setting_lighting"
|
||||
android:layout_width="@dimen/dp_160"
|
||||
@@ -52,10 +54,11 @@
|
||||
android:drawableLeft="@drawable/charter_p_function_light_left_selector"
|
||||
android:drawablePadding="-20dp"
|
||||
android:gravity="center"
|
||||
android:text="灯 光"
|
||||
android:text="@string/module_och_lighting"
|
||||
android:textColor="@drawable/charter_p_function_airconditon_text_color_selector"
|
||||
android:textSize="@dimen/dp_24" />
|
||||
|
||||
<!-- android:text="声 音"-->
|
||||
<RadioButton
|
||||
android:id="@+id/tv_setting_voice"
|
||||
android:layout_width="@dimen/dp_160"
|
||||
@@ -65,7 +68,7 @@
|
||||
android:drawableLeft="@drawable/charter_p_function_voice_left_selector"
|
||||
android:drawablePadding="-20dp"
|
||||
android:gravity="center"
|
||||
android:text="声 音"
|
||||
android:text="@string/module_och_voice"
|
||||
android:textColor="@drawable/charter_p_function_airconditon_text_color_selector"
|
||||
android:textSize="@dimen/dp_24" />
|
||||
</RadioGroup>
|
||||
@@ -93,6 +96,7 @@
|
||||
app:layout_constraintHeight_percent="0.5"
|
||||
app:layout_constraintStart_toStartOf="@+id/iv_aircondition" />
|
||||
|
||||
<!-- android:text="打开空调"-->
|
||||
<com.mogo.och.charter.passenger.ui.softcontrol.view.DrawableCheckBox
|
||||
android:id="@+id/tv_aircondition_switch"
|
||||
android:layout_width="0dp"
|
||||
@@ -103,7 +107,7 @@
|
||||
android:button="@null"
|
||||
android:checked="false"
|
||||
android:drawableLeft="@drawable/charter_p_function_switch_left_selector"
|
||||
android:text="打开空调"
|
||||
android:text="@string/module_och_on_air_conditioner"
|
||||
android:gravity="left|center_vertical"
|
||||
android:drawablePadding="@dimen/dp_13"
|
||||
android:textColor="@drawable/charter_p_function_airconditon_text_color_selector"
|
||||
@@ -156,11 +160,12 @@
|
||||
app:layout_constraintTop_toBottomOf="@+id/tv_aircondition_switch"
|
||||
app:layout_constraintWidth_percent="0.244" />
|
||||
|
||||
<!-- android:text="设置"-->
|
||||
<TextView
|
||||
android:id="@+id/tv_aircondition_pattern_title"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="设置"
|
||||
android:text="@string/module_och_settings"
|
||||
android:textColor="@color/charter_p_47576e"
|
||||
android:textSize="@dimen/dp_24"
|
||||
app:layout_constraintBottom_toBottomOf="@+id/rg_setting_pattern"
|
||||
@@ -425,12 +430,13 @@
|
||||
app:layout_constraintVertical_bias="0.404"
|
||||
app:layout_constraintWidth_percent="0.253" />
|
||||
|
||||
<!-- android:text="音量"-->
|
||||
<TextView
|
||||
android:id="@+id/tv_voice_title"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginBottom="@dimen/dp_19"
|
||||
android:text="音量"
|
||||
android:text="@string/module_och_volume"
|
||||
android:textColor="#374968"
|
||||
android:textSize="@dimen/dp_24"
|
||||
app:layout_constraintBottom_toTopOf="@+id/sb_voice_bar"
|
||||
|
||||
@@ -20,12 +20,14 @@
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="@dimen/dp_47"/>
|
||||
|
||||
<!-- android:format12Hour="HH:mm MM月dd日 EEEE"-->
|
||||
<!-- android:format24Hour="HH:mm MM月dd日 EEEE"-->
|
||||
<TextClock
|
||||
android:id="@+id/viewTextClock"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="@dimen/dp_47"
|
||||
android:format12Hour="HH:mm MM月dd日 EEEE"
|
||||
android:format24Hour="HH:mm MM月dd日 EEEE"
|
||||
android:format12Hour="@string/module_och_format_hour"
|
||||
android:format24Hour="@string/module_och_format_hour"
|
||||
android:gravity="center"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
|
||||
@@ -57,9 +57,10 @@
|
||||
android:layout_width="@dimen/dp_180"
|
||||
android:layout_height="@dimen/dp_68"/>
|
||||
|
||||
<!-- android:text="确认"-->
|
||||
<androidx.appcompat.widget.AppCompatTextView
|
||||
android:id="@+id/actv_password_submit"
|
||||
android:text="确认"
|
||||
android:text="@string/module_och_affirm"
|
||||
app:layout_constraintTop_toBottomOf="@+id/acet_close"
|
||||
app:layout_constraintEnd_toEndOf="@+id/acet_close"
|
||||
android:gravity="center"
|
||||
|
||||
@@ -106,6 +106,7 @@
|
||||
tools:itemCount="6"
|
||||
tools:listitem="@layout/sweeper_operate_item_task_info" />
|
||||
|
||||
<!-- android:text="确认"-->
|
||||
<TextView
|
||||
android:id="@+id/tvTaskConfirm"
|
||||
android:layout_width="match_parent"
|
||||
@@ -114,7 +115,7 @@
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
android:text="确认"
|
||||
android:text="@string/module_och_affirm"
|
||||
android:textColor="#999999"
|
||||
android:gravity="center"
|
||||
android:textSize="@dimen/dp_42"
|
||||
|
||||
@@ -34,13 +34,14 @@
|
||||
app:layout_constraintBottom_toTopOf="@+id/tv_report_error_point_reason"
|
||||
app:layout_constraintTop_toBottomOf="@+id/tv_cancle_title" />
|
||||
|
||||
<!-- android:text="确认"-->
|
||||
<TextView
|
||||
android:id="@+id/tv_report_cancle_reason"
|
||||
android:layout_width="@dimen/dp_356"
|
||||
android:layout_height="@dimen/dp_120"
|
||||
android:background="@drawable/common_button_cancle"
|
||||
android:gravity="center"
|
||||
android:text="确认"
|
||||
android:text="@string/module_och_affirm"
|
||||
android:textColor="@color/taxi_color_2eacff"
|
||||
android:textSize="@dimen/sp_40"
|
||||
android:textStyle="bold"
|
||||
|
||||
@@ -40,12 +40,14 @@
|
||||
android:orientation="horizontal"
|
||||
android:weightSum="2"
|
||||
android:layout_below="@+id/line_deliver_h">
|
||||
|
||||
<!-- android:text="确认"-->
|
||||
<TextView
|
||||
android:id="@+id/order_cancel_commit_tv"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_weight="1"
|
||||
android:text="确认"
|
||||
android:text="@string/module_och_affirm"
|
||||
android:textColor="#FFFFFF"
|
||||
android:textSize="@dimen/dp_52"
|
||||
android:gravity="center"/>
|
||||
|
||||
@@ -6,6 +6,7 @@
|
||||
android:layout_height="@dimen/dp_91"
|
||||
tools:parentTag="androidx.constraintlayout.widget.ConstraintLayout">
|
||||
|
||||
<!-- android:text="音乐名称"-->
|
||||
<TextView
|
||||
android:id="@+id/tv_song_name"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
@@ -13,7 +14,7 @@
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
android:textColor="@color/taxi_cp_303C52"
|
||||
android:layout_marginStart="@dimen/dp_187"
|
||||
android:text="音乐名称"
|
||||
android:text="@string/module_och_music_name"
|
||||
android:textSize="@dimen/dp_32"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"/>
|
||||
@@ -30,6 +31,7 @@
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"/>
|
||||
|
||||
<!-- android:text="轻柔"-->
|
||||
<TextView
|
||||
android:id="@+id/tv_tag"
|
||||
app:layout_constraintStart_toEndOf="@+id/tv_song_name"
|
||||
@@ -42,7 +44,7 @@
|
||||
android:paddingStart="@dimen/dp_10"
|
||||
android:paddingEnd="@dimen/dp_10"
|
||||
android:layout_marginEnd="@dimen/dp_45"
|
||||
android:text="轻柔"
|
||||
android:text="@string/module_och_music_soft"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"/>
|
||||
|
||||
|
||||
@@ -335,13 +335,66 @@
|
||||
<string name="module_och_empty_line">暂无线路</string>
|
||||
<string name="module_och_empty_task">暂无班次</string>
|
||||
<string name="module_och_please_turn">请尽快操作车辆至适当位置掉头!</string>
|
||||
<string name="module_och_verification_success">核销成功</string>
|
||||
<string name="module_och_verification_success">核销成功</string><!--TODO 国际化 需要域控提供对应的英文 否则切换英文冷启动将会出现问题-->
|
||||
<string name="module_och_route_need_turn">即将前往路线%s、站点%s;如需掉头请尽快操作车辆至适当位置!</string>
|
||||
<string name="module_och_pull_over_no_response">靠边停车无响应,注意随时接管</string>
|
||||
<string name="module_och_pull_over_failed">靠边停车失败,注意随时接管</string>
|
||||
<string name="module_och_start_pull_over">开始靠边停车</string>
|
||||
<string name="module_och_swipe_right">向右滑动</string>
|
||||
<string name="module_och_upload_all_Route">上传全路径</string>
|
||||
<string name="module_och_m1_love">爱情号</string>
|
||||
<string name="module_och_m1_family">家庭号</string>
|
||||
<string name="module_och_m1_friendly">朋友号</string>
|
||||
<string name="module_och_synopsis">简介</string>
|
||||
<string name="module_och_click_start">点击开始探索</string>
|
||||
<string name="module_och_click_home">点我进入主页</string>
|
||||
<string name="module_och_welcome_ride">欢迎乘坐</string>
|
||||
<string name="module_och_welcome_ride1">车联自动驾驶</string>
|
||||
<string name="module_och_long_click_unlock">长按开锁键2秒,快速解锁</string>
|
||||
<string name="module_och_long_click_unlocking">开锁中..</string>
|
||||
<string name="module_och_long_click_unlocked">已解锁</string>
|
||||
<string name="module_och_time_remaining">剩余时间</string>
|
||||
<string name="module_och_time_remaining1">剩余时间 --:--</string>
|
||||
<string name="module_och_air_conditioner">空 调</string>
|
||||
<string name="module_och_off_air_conditioner">关闭空调</string>
|
||||
<string name="module_och_on_air_conditioner">打开空调</string>
|
||||
<string name="module_och_autonomous_driving">自动驾驶中</string>
|
||||
<string name="module_och_during_safe_handover_process">安全接管中</string>
|
||||
<string name="module_och_parallel_driving">远程代驾中</string>
|
||||
<string name="module_och_close_car_door">关车门</string>
|
||||
<string name="module_och_open_car_door">开车门</string>
|
||||
<string name="module_och_music">音乐</string>
|
||||
<string name="module_och_music_playlist">音乐列表</string>
|
||||
<string name="module_och_music_name">音乐名称</string>
|
||||
<string name="module_och_music_soft">轻柔</string>
|
||||
<string name="module_och_settings">设置</string>
|
||||
<string name="module_och_lines">线路</string>
|
||||
<string name="module_och_depart">出发</string>
|
||||
<string name="module_och_order_empty">订单空空~</string>
|
||||
<string name="module_och_order_end_time">剩余包车时长</string>
|
||||
<string name="module_och_arrive_station">到站</string>
|
||||
<string name="module_och_show_novice_guidance">展示引导页面</string>
|
||||
<string name="module_och_change_mode">切换模型</string>
|
||||
<string name="module_och_show_end_view">显示结束页面</string>
|
||||
<string name="module_och_order_times">用车时间</string>
|
||||
<string name="module_och_order_times1">用车时间:</string>
|
||||
<string name="module_och_end_order">结束用车</string>
|
||||
<string name="module_och_contain_order">继续用车</string>
|
||||
<string name="module_och_great">太棒了!</string>
|
||||
<string name="module_och_user_info">用户信息:</string>
|
||||
<string name="module_och_click_go_explore">点击开始探索</string>
|
||||
<string name="module_och_affirm">确认</string>
|
||||
<string name="module_och_affirm_complete">确认完毕!</string>
|
||||
<string name="module_och_driver_agree">小助手已记录您的选择。</string>
|
||||
<string name="module_och_driver_refuse">啊哦,加载失败了\n联系车内领航员,或尝试再次提交。</string>
|
||||
<string name="module_och_loading_wait">加载中 请稍等</string>
|
||||
<string name="module_och_network_not_good">网络不佳</string>
|
||||
<string name="module_och_no_order">当前暂无订单</string>
|
||||
<string name="module_och_lighting">灯 光</string>
|
||||
<string name="module_och_voice">声 音</string>
|
||||
<string name="module_och_volume">音量</string>
|
||||
<string name="module_och_format_hour">HH:mm MM月dd日 EEEE</string>
|
||||
|
||||
|
||||
|
||||
<string name="module_tts_init_fail">PadTTS 模块初始化异常</string>
|
||||
|
||||
Reference in New Issue
Block a user