|
|
|
|
@@ -3,500 +3,459 @@
|
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:clickable="true"
|
|
|
|
|
android:background="#2D2E3D"
|
|
|
|
|
android:clickable="true"
|
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
|
|
|
|
|
>
|
|
|
|
|
<RelativeLayout
|
|
|
|
|
android:id="@+id/rl_navi_setting_title"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="@dimen/dp_80"
|
|
|
|
|
android:layout_marginLeft="@dimen/dp_60"
|
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
|
android:layout_marginTop="@dimen/dp_30"
|
|
|
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
|
>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
|
android:id="@+id/iv_back"
|
|
|
|
|
android:layout_width="@dimen/dp_80"
|
|
|
|
|
android:layout_height="@dimen/dp_80"
|
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
|
android:src="@mipmap/icon_back"
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
|
android:layout_marginLeft="@dimen/dp_20"
|
|
|
|
|
android:layout_toRightOf="@id/iv_back"
|
|
|
|
|
android:text="@string/navi_setting"
|
|
|
|
|
android:textColor="@color/white"
|
|
|
|
|
android:textSize="@dimen/txt_title"
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<ScrollView
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:paddingRight="@dimen/module_search_dp_160"
|
|
|
|
|
android:paddingLeft="@dimen/module_search_dp_160"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/rl_navi_setting_title"
|
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
|
android:layout_height="0dp">
|
|
|
|
|
|
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
|
|
|
<RelativeLayout
|
|
|
|
|
android:id="@+id/rl_navi_setting_title"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:paddingBottom="@dimen/module_search_dp_150"
|
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
android:layout_height="@dimen/dp_80"
|
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
|
android:layout_marginLeft="@dimen/dp_60"
|
|
|
|
|
android:layout_marginTop="@dimen/dp_30"
|
|
|
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
|
|
app:layout_constraintTop_toTopOf="parent">
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="@dimen/module_search_180dp"
|
|
|
|
|
android:layout_height="@dimen/module_search_dp_120"
|
|
|
|
|
android:layout_marginTop="@dimen/dp_24"
|
|
|
|
|
android:background="@drawable/shape_round_gray"
|
|
|
|
|
android:orientation="horizontal"
|
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
|
android:id="@+id/ll_navi_sound"
|
|
|
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/tv_navi_sound"
|
|
|
|
|
>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:id="@+id/iv_sound_minus"
|
|
|
|
|
android:src="@mipmap/icon_navi_sound_low"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:scaleType="center"
|
|
|
|
|
android:layout_weight="1"
|
|
|
|
|
/>
|
|
|
|
|
<View
|
|
|
|
|
android:layout_width="@dimen/dp_3"
|
|
|
|
|
android:layout_height="@dimen/dp_71"
|
|
|
|
|
android:background="@color/white_10"
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:scaleType="center"
|
|
|
|
|
|
|
|
|
|
android:id="@+id/iv_sound_plus"
|
|
|
|
|
android:src="@mipmap/icon_navi_sound_plus"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:layout_weight="1"
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
|
android:layout_width="@dimen/dp_80"
|
|
|
|
|
app:layout_constraintTop_toTopOf="@id/ll_navi_sound"
|
|
|
|
|
app:layout_constraintBottom_toBottomOf="@id/ll_navi_sound"
|
|
|
|
|
app:layout_constraintLeft_toRightOf="@id/ll_navi_sound"
|
|
|
|
|
android:layout_height="@dimen/dp_80"
|
|
|
|
|
android:src="@mipmap/icon_sound_low"
|
|
|
|
|
android:id="@+id/iv_navi_sound_low"
|
|
|
|
|
android:layout_marginLeft="@dimen/dp_40"
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
|
android:layout_width="@dimen/dp_80"
|
|
|
|
|
android:src="@mipmap/icon_sound_high"
|
|
|
|
|
android:id="@+id/iv_navi_sound_high"
|
|
|
|
|
app:layout_constraintTop_toTopOf="@id/ll_navi_sound"
|
|
|
|
|
app:layout_constraintBottom_toBottomOf="@id/ll_navi_sound"
|
|
|
|
|
app:layout_constraintRight_toRightOf="@id/ll_navi_path"
|
|
|
|
|
android:layout_height="@dimen/dp_80"
|
|
|
|
|
android:layout_marginLeft="@dimen/dp_40"
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<SeekBar
|
|
|
|
|
android:id="@+id/sb_navi_volume_progress"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:splitTrack="false"
|
|
|
|
|
android:layout_marginLeft="@dimen/dp_40"
|
|
|
|
|
android:layout_marginRight="@dimen/dp_40"
|
|
|
|
|
android:maxHeight="@dimen/dp_11"
|
|
|
|
|
android:progressDrawable="@drawable/shape_seek_bar"
|
|
|
|
|
android:thumb="@mipmap/icon_pb_thumb"
|
|
|
|
|
android:progress="30"
|
|
|
|
|
app:layout_constraintLeft_toRightOf="@id/iv_navi_sound_low"
|
|
|
|
|
app:layout_constraintRight_toLeftOf="@id/iv_navi_sound_high"
|
|
|
|
|
app:layout_constraintTop_toTopOf="@id/iv_navi_sound_low"
|
|
|
|
|
app:layout_constraintBottom_toBottomOf="@id/iv_navi_sound_low"
|
|
|
|
|
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/ll_navi_path"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginBottom="26dp"
|
|
|
|
|
android:layout_marginTop="@dimen/dp_12"
|
|
|
|
|
android:orientation="horizontal"
|
|
|
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/tv_navi_prefer"
|
|
|
|
|
>
|
|
|
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
|
android:id="@+id/rb_navi_jam"
|
|
|
|
|
android:layout_marginRight="20dp"
|
|
|
|
|
android:checked="true"
|
|
|
|
|
android:text="@string/navi_prefer_jam"
|
|
|
|
|
style="@style/rb_setting"
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
|
android:id="@+id/rb_navi_fee"
|
|
|
|
|
android:layout_marginRight="20dp"
|
|
|
|
|
android:text="@string/navi_prefer_fee"
|
|
|
|
|
style="@style/rb_setting"
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
|
android:id="@+id/rb_navi_no_high_way"
|
|
|
|
|
android:layout_marginRight="20dp"
|
|
|
|
|
android:text="@string/navi_prefer_no_high_way"
|
|
|
|
|
style="@style/rb_setting"
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
|
android:id="@+id/rb_navi_high_way"
|
|
|
|
|
android:text="@string/navi_prefer_high_way"
|
|
|
|
|
style="@style/rb_setting"
|
|
|
|
|
/>
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/tv_navi_sound"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="@dimen/module_search_txt_setting_width"
|
|
|
|
|
android:layout_marginTop="@dimen/dp_32"
|
|
|
|
|
android:text="@string/navi_setting_sound"
|
|
|
|
|
android:textColor="@color/white_80"
|
|
|
|
|
android:textSize="@dimen/txt_normal"
|
|
|
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/ll_navi_path"
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/tv_navi_prefer"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="@dimen/module_search_txt_setting_width"
|
|
|
|
|
android:layout_marginTop="@dimen/dp_40"
|
|
|
|
|
android:text="@string/preference_navi"
|
|
|
|
|
android:textColor="@color/white_80"
|
|
|
|
|
android:textSize="@dimen/txt_normal"
|
|
|
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/tv_navi_sound_type"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="@dimen/module_search_txt_setting_width"
|
|
|
|
|
android:layout_marginTop="@dimen/dp_40"
|
|
|
|
|
android:text="@string/preference_navi_sound_type"
|
|
|
|
|
android:textColor="@color/white_80"
|
|
|
|
|
android:textSize="@dimen/txt_normal"
|
|
|
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/ll_navi_sound"
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<RadioGroup
|
|
|
|
|
android:id="@+id/rg_navi_sound_type"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginBottom="26dp"
|
|
|
|
|
android:layout_marginTop="@dimen/dp_12"
|
|
|
|
|
android:orientation="horizontal"
|
|
|
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/tv_navi_sound_type"
|
|
|
|
|
>
|
|
|
|
|
|
|
|
|
|
<RadioButton
|
|
|
|
|
android:id="@+id/rb_navi_detail"
|
|
|
|
|
android:layout_marginRight="20dp"
|
|
|
|
|
android:checked="true"
|
|
|
|
|
android:text="@string/navi_prefer_detail"
|
|
|
|
|
style="@style/rb_setting"
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<RadioButton
|
|
|
|
|
android:id="@+id/rb_navi_draft"
|
|
|
|
|
android:text="@string/navi_prefer_draft"
|
|
|
|
|
style="@style/rb_setting"
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
</RadioGroup>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/tv_navi_day_night"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="@dimen/module_search_txt_setting_width"
|
|
|
|
|
android:layout_marginTop="@dimen/dp_40"
|
|
|
|
|
android:text="@string/preference_navi_day_mode"
|
|
|
|
|
android:textColor="@color/white_80"
|
|
|
|
|
android:textSize="@dimen/txt_normal"
|
|
|
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/rg_navi_sound_type"
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<RadioGroup
|
|
|
|
|
android:id="@+id/rg_navi_day_night"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginBottom="26dp"
|
|
|
|
|
android:layout_marginTop="@dimen/dp_12"
|
|
|
|
|
android:orientation="horizontal"
|
|
|
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/tv_navi_day_night"
|
|
|
|
|
>
|
|
|
|
|
|
|
|
|
|
<RadioButton
|
|
|
|
|
android:id="@+id/rb_navi_day"
|
|
|
|
|
android:layout_marginRight="20dp"
|
|
|
|
|
android:checked="true"
|
|
|
|
|
android:text="@string/navi_prefer_day"
|
|
|
|
|
style="@style/rb_setting"
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<RadioButton
|
|
|
|
|
android:id="@+id/rb_navi_night"
|
|
|
|
|
android:layout_marginRight="20dp"
|
|
|
|
|
|
|
|
|
|
android:text="@string/navi_prefer_night"
|
|
|
|
|
style="@style/rb_setting"
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
<RadioButton
|
|
|
|
|
android:id="@+id/rb_navi_auto"
|
|
|
|
|
android:text="@string/navi_prefer_auto"
|
|
|
|
|
style="@style/rb_setting"
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
</RadioGroup>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/aimlessMode"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="@dimen/module_search_txt_setting_width"
|
|
|
|
|
android:layout_marginTop="@dimen/dp_40"
|
|
|
|
|
android:text="@string/module_search_aimless_mode_anchor"
|
|
|
|
|
android:textColor="@color/white_80"
|
|
|
|
|
android:textSize="@dimen/txt_normal"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/rg_navi_day_night"
|
|
|
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
<RadioGroup
|
|
|
|
|
android:id="@+id/aimlessModeGroup"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginBottom="26dp"
|
|
|
|
|
android:layout_marginTop="@dimen/dp_12"
|
|
|
|
|
android:orientation="horizontal"
|
|
|
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/aimlessMode"
|
|
|
|
|
>
|
|
|
|
|
|
|
|
|
|
<RadioButton
|
|
|
|
|
android:id="@+id/aimlessModeClose"
|
|
|
|
|
android:layout_marginRight="20dp"
|
|
|
|
|
android:checked="true"
|
|
|
|
|
android:text="@string/module_search_aimless_mode_close"
|
|
|
|
|
style="@style/rb_setting"
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<RadioButton
|
|
|
|
|
android:id="@+id/aimlessModeOpen"
|
|
|
|
|
android:layout_marginRight="20dp"
|
|
|
|
|
android:text="@string/module_search_aimless_mode_open"
|
|
|
|
|
style="@style/rb_setting"
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
</RadioGroup>
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/tv_navi_address"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="@dimen/module_search_txt_setting_width"
|
|
|
|
|
android:layout_marginTop="@dimen/dp_40"
|
|
|
|
|
android:text="@string/preference_navi_address"
|
|
|
|
|
android:textColor="@color/white_80"
|
|
|
|
|
android:textSize="@dimen/txt_normal"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/aimlessModeGroup"
|
|
|
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:orientation="horizontal"
|
|
|
|
|
android:id="@+id/ll_navi_set_home"
|
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
|
android:layout_marginTop="@dimen/dp_24"
|
|
|
|
|
android:background="@drawable/shape_round_gray_margin"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/tv_navi_address"
|
|
|
|
|
android:layout_height="@dimen/dp_120">
|
|
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
|
android:layout_marginLeft="@dimen/dp_40"
|
|
|
|
|
android:src="@mipmap/icon_navi_go_home"
|
|
|
|
|
android:id="@+id/iv_back"
|
|
|
|
|
android:layout_width="@dimen/dp_80"
|
|
|
|
|
android:layout_height="@dimen/dp_80"/>
|
|
|
|
|
android:layout_height="@dimen/dp_80"
|
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
|
android:src="@mipmap/icon_back" />
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/tv_navi_home_address"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_weight="1"
|
|
|
|
|
android:text="@string/navi_set_home"
|
|
|
|
|
android:textSize="@dimen/dp_40"
|
|
|
|
|
android:textColor="@color/white_80"
|
|
|
|
|
android:layout_marginLeft="@dimen/dp_32"
|
|
|
|
|
android:layout_height="wrap_content"/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/tv_navi_clear_home_address"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:text="@string/navi_clear"
|
|
|
|
|
android:textSize="@dimen/dp_40"
|
|
|
|
|
android:textColor="@color/txt_blue"
|
|
|
|
|
android:layout_marginRight="@dimen/dp_88"
|
|
|
|
|
android:layout_marginLeft="@dimen/dp_32"
|
|
|
|
|
android:layout_height="wrap_content"/>
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
|
android:layout_marginLeft="@dimen/dp_20"
|
|
|
|
|
android:layout_toRightOf="@id/iv_back"
|
|
|
|
|
android:text="@string/navi_setting"
|
|
|
|
|
android:textColor="@color/white"
|
|
|
|
|
android:textSize="@dimen/txt_title" />
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<ScrollView
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="0dp"
|
|
|
|
|
android:overScrollMode="never"
|
|
|
|
|
android:paddingLeft="@dimen/module_search_dp_160"
|
|
|
|
|
android:paddingRight="@dimen/module_search_dp_160"
|
|
|
|
|
android:scrollbars="none"
|
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/rl_navi_setting_title">
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:orientation="horizontal"
|
|
|
|
|
android:id="@+id/ll_navi_set_company"
|
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
|
android:layout_marginTop="@dimen/dp_40"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/ll_navi_set_home"
|
|
|
|
|
android:background="@drawable/shape_round_gray_margin"
|
|
|
|
|
android:layout_height="@dimen/dp_120">
|
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:paddingBottom="@dimen/module_search_dp_150">
|
|
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
|
android:layout_marginLeft="@dimen/dp_40"
|
|
|
|
|
android:src="@mipmap/icon_navi_go_company"
|
|
|
|
|
android:layout_width="@dimen/dp_80"
|
|
|
|
|
android:layout_height="@dimen/dp_80"/>
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/tv_navi_company_address"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_weight="1"
|
|
|
|
|
android:text="@string/navi_set_company"
|
|
|
|
|
android:textSize="@dimen/dp_40"
|
|
|
|
|
android:textColor="@color/white_80"
|
|
|
|
|
android:layout_marginLeft="@dimen/dp_32"
|
|
|
|
|
android:layout_height="wrap_content"/>
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/ll_navi_sound"
|
|
|
|
|
android:layout_width="@dimen/module_search_180dp"
|
|
|
|
|
android:layout_height="@dimen/module_search_dp_120"
|
|
|
|
|
android:layout_marginTop="@dimen/dp_24"
|
|
|
|
|
android:background="@drawable/shape_round_gray"
|
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
|
android:orientation="horizontal"
|
|
|
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/tv_navi_sound">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/tv_navi_clear_company_address"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:text="@string/navi_clear"
|
|
|
|
|
android:textSize="@dimen/dp_40"
|
|
|
|
|
android:textColor="@color/txt_blue"
|
|
|
|
|
android:layout_marginRight="@dimen/dp_88"
|
|
|
|
|
android:layout_marginLeft="@dimen/dp_32"
|
|
|
|
|
android:layout_height="wrap_content"/>
|
|
|
|
|
<ImageView
|
|
|
|
|
android:id="@+id/iv_sound_minus"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:layout_weight="1"
|
|
|
|
|
android:scaleType="center"
|
|
|
|
|
android:src="@mipmap/icon_navi_sound_low" />
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
<View
|
|
|
|
|
android:layout_width="@dimen/dp_3"
|
|
|
|
|
android:layout_height="@dimen/dp_71"
|
|
|
|
|
android:background="@color/white_10" />
|
|
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
|
android:id="@+id/iv_sound_plus"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:layout_weight="1"
|
|
|
|
|
android:scaleType="center"
|
|
|
|
|
android:src="@mipmap/icon_navi_sound_plus" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/tv_navi_simulator"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="@dimen/module_search_txt_setting_width"
|
|
|
|
|
android:layout_marginTop="@dimen/dp_40"
|
|
|
|
|
android:text="调试模式"
|
|
|
|
|
android:textColor="@color/white_80"
|
|
|
|
|
android:textSize="@dimen/txt_normal"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/ll_navi_set_company"
|
|
|
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
|
|
/>
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:orientation="horizontal"
|
|
|
|
|
android:id="@+id/ll_navi_simulator"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
|
android:layout_marginTop="@dimen/dp_40"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/tv_navi_simulator">
|
|
|
|
|
|
|
|
|
|
<ToggleButton
|
|
|
|
|
android:id="@+id/tb_navi"
|
|
|
|
|
android:textOn="模拟导航开"
|
|
|
|
|
android:textOff="模拟导航关"
|
|
|
|
|
android:checked="false"
|
|
|
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
|
|
android:textColor="@color/white_80"
|
|
|
|
|
android:textSize="@dimen/module_search_txt_setting_width"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"/>
|
|
|
|
|
<ImageView
|
|
|
|
|
android:id="@+id/iv_navi_sound_low"
|
|
|
|
|
android:layout_width="@dimen/dp_80"
|
|
|
|
|
android:layout_height="@dimen/dp_80"
|
|
|
|
|
android:layout_marginLeft="@dimen/dp_40"
|
|
|
|
|
android:src="@mipmap/icon_sound_low"
|
|
|
|
|
app:layout_constraintBottom_toBottomOf="@id/ll_navi_sound"
|
|
|
|
|
app:layout_constraintLeft_toRightOf="@id/ll_navi_sound"
|
|
|
|
|
app:layout_constraintTop_toTopOf="@id/ll_navi_sound" />
|
|
|
|
|
|
|
|
|
|
<ToggleButton
|
|
|
|
|
android:id="@+id/tb_gps"
|
|
|
|
|
android:layout_marginLeft="50dp"
|
|
|
|
|
android:checked="false"
|
|
|
|
|
android:textOn="模拟GPS开"
|
|
|
|
|
android:textOff="模拟GPS关"
|
|
|
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
|
|
android:textColor="@color/white_80"
|
|
|
|
|
android:textSize="@dimen/module_search_txt_setting_width"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"/>
|
|
|
|
|
<ImageView
|
|
|
|
|
android:id="@+id/iv_navi_sound_high"
|
|
|
|
|
android:layout_width="@dimen/dp_80"
|
|
|
|
|
android:layout_height="@dimen/dp_80"
|
|
|
|
|
android:layout_marginLeft="@dimen/dp_40"
|
|
|
|
|
android:src="@mipmap/icon_sound_high"
|
|
|
|
|
app:layout_constraintBottom_toBottomOf="@id/ll_navi_sound"
|
|
|
|
|
app:layout_constraintRight_toRightOf="@id/ll_navi_path"
|
|
|
|
|
app:layout_constraintTop_toTopOf="@id/ll_navi_sound" />
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|
|
<SeekBar
|
|
|
|
|
android:id="@+id/sb_navi_volume_progress"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginLeft="@dimen/dp_40"
|
|
|
|
|
android:layout_marginRight="@dimen/dp_40"
|
|
|
|
|
android:maxHeight="@dimen/dp_11"
|
|
|
|
|
android:progress="30"
|
|
|
|
|
android:progressDrawable="@drawable/shape_seek_bar"
|
|
|
|
|
android:splitTrack="false"
|
|
|
|
|
android:thumb="@mipmap/icon_pb_thumb"
|
|
|
|
|
app:layout_constraintBottom_toBottomOf="@id/iv_navi_sound_low"
|
|
|
|
|
app:layout_constraintLeft_toRightOf="@id/iv_navi_sound_low"
|
|
|
|
|
app:layout_constraintRight_toLeftOf="@id/iv_navi_sound_high"
|
|
|
|
|
app:layout_constraintTop_toTopOf="@id/iv_navi_sound_low"
|
|
|
|
|
|
|
|
|
|
</ScrollView>
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/ll_navi_path"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginTop="@dimen/dp_12"
|
|
|
|
|
android:layout_marginBottom="26dp"
|
|
|
|
|
android:orientation="horizontal"
|
|
|
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/tv_navi_prefer">
|
|
|
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
|
android:id="@+id/rb_navi_jam"
|
|
|
|
|
style="@style/rb_setting"
|
|
|
|
|
android:layout_marginRight="20dp"
|
|
|
|
|
android:checked="true"
|
|
|
|
|
android:text="@string/navi_prefer_jam" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
|
android:id="@+id/rb_navi_fee"
|
|
|
|
|
style="@style/rb_setting"
|
|
|
|
|
android:layout_marginRight="20dp"
|
|
|
|
|
android:text="@string/navi_prefer_fee" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
|
android:id="@+id/rb_navi_no_high_way"
|
|
|
|
|
style="@style/rb_setting"
|
|
|
|
|
android:layout_marginRight="20dp"
|
|
|
|
|
android:text="@string/navi_prefer_no_high_way" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
|
android:id="@+id/rb_navi_high_way"
|
|
|
|
|
style="@style/rb_setting"
|
|
|
|
|
android:text="@string/navi_prefer_high_way" />
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/tv_navi_sound"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="@dimen/module_search_txt_setting_width"
|
|
|
|
|
android:layout_marginTop="@dimen/dp_32"
|
|
|
|
|
android:text="@string/navi_setting_sound"
|
|
|
|
|
android:textColor="@color/white_80"
|
|
|
|
|
android:textSize="@dimen/txt_normal"
|
|
|
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/ll_navi_path" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/tv_navi_prefer"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="@dimen/module_search_txt_setting_width"
|
|
|
|
|
android:layout_marginTop="@dimen/dp_40"
|
|
|
|
|
android:text="@string/preference_navi"
|
|
|
|
|
android:textColor="@color/white_80"
|
|
|
|
|
android:textSize="@dimen/txt_normal"
|
|
|
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/tv_navi_sound_type"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="@dimen/module_search_txt_setting_width"
|
|
|
|
|
android:layout_marginTop="@dimen/dp_40"
|
|
|
|
|
android:text="@string/preference_navi_sound_type"
|
|
|
|
|
android:textColor="@color/white_80"
|
|
|
|
|
android:textSize="@dimen/txt_normal"
|
|
|
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/ll_navi_sound" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<RadioGroup
|
|
|
|
|
android:id="@+id/rg_navi_sound_type"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginTop="@dimen/dp_12"
|
|
|
|
|
android:layout_marginBottom="26dp"
|
|
|
|
|
android:orientation="horizontal"
|
|
|
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/tv_navi_sound_type">
|
|
|
|
|
|
|
|
|
|
<RadioButton
|
|
|
|
|
android:id="@+id/rb_navi_detail"
|
|
|
|
|
style="@style/rb_setting"
|
|
|
|
|
android:layout_marginRight="20dp"
|
|
|
|
|
android:checked="true"
|
|
|
|
|
android:text="@string/navi_prefer_detail" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<RadioButton
|
|
|
|
|
android:id="@+id/rb_navi_draft"
|
|
|
|
|
style="@style/rb_setting"
|
|
|
|
|
android:text="@string/navi_prefer_draft" />
|
|
|
|
|
|
|
|
|
|
</RadioGroup>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/tv_navi_day_night"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="@dimen/module_search_txt_setting_width"
|
|
|
|
|
android:layout_marginTop="@dimen/dp_40"
|
|
|
|
|
android:text="@string/preference_navi_day_mode"
|
|
|
|
|
android:textColor="@color/white_80"
|
|
|
|
|
android:textSize="@dimen/txt_normal"
|
|
|
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/rg_navi_sound_type" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<RadioGroup
|
|
|
|
|
android:id="@+id/rg_navi_day_night"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginTop="@dimen/dp_12"
|
|
|
|
|
android:layout_marginBottom="26dp"
|
|
|
|
|
android:orientation="horizontal"
|
|
|
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/tv_navi_day_night">
|
|
|
|
|
|
|
|
|
|
<RadioButton
|
|
|
|
|
android:id="@+id/rb_navi_day"
|
|
|
|
|
style="@style/rb_setting"
|
|
|
|
|
android:layout_marginRight="20dp"
|
|
|
|
|
android:checked="true"
|
|
|
|
|
android:text="@string/navi_prefer_day" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<RadioButton
|
|
|
|
|
android:id="@+id/rb_navi_night"
|
|
|
|
|
style="@style/rb_setting"
|
|
|
|
|
|
|
|
|
|
android:layout_marginRight="20dp"
|
|
|
|
|
android:text="@string/navi_prefer_night" />
|
|
|
|
|
|
|
|
|
|
<RadioButton
|
|
|
|
|
android:id="@+id/rb_navi_auto"
|
|
|
|
|
style="@style/rb_setting"
|
|
|
|
|
android:text="@string/navi_prefer_auto" />
|
|
|
|
|
|
|
|
|
|
</RadioGroup>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/aimlessMode"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="@dimen/module_search_txt_setting_width"
|
|
|
|
|
android:layout_marginTop="@dimen/dp_40"
|
|
|
|
|
android:text="@string/module_search_aimless_mode_anchor"
|
|
|
|
|
android:textColor="@color/white_80"
|
|
|
|
|
android:textSize="@dimen/txt_normal"
|
|
|
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/rg_navi_day_night" />
|
|
|
|
|
|
|
|
|
|
<RadioGroup
|
|
|
|
|
android:id="@+id/aimlessModeGroup"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginTop="@dimen/dp_12"
|
|
|
|
|
android:layout_marginBottom="26dp"
|
|
|
|
|
android:orientation="horizontal"
|
|
|
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/aimlessMode">
|
|
|
|
|
|
|
|
|
|
<RadioButton
|
|
|
|
|
android:id="@+id/aimlessModeClose"
|
|
|
|
|
style="@style/rb_setting"
|
|
|
|
|
android:layout_marginRight="20dp"
|
|
|
|
|
android:checked="true"
|
|
|
|
|
android:text="@string/module_search_aimless_mode_close" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<RadioButton
|
|
|
|
|
android:id="@+id/aimlessModeOpen"
|
|
|
|
|
style="@style/rb_setting"
|
|
|
|
|
android:layout_marginRight="20dp"
|
|
|
|
|
android:text="@string/module_search_aimless_mode_open" />
|
|
|
|
|
|
|
|
|
|
</RadioGroup>
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/tv_navi_address"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="@dimen/module_search_txt_setting_width"
|
|
|
|
|
android:layout_marginTop="@dimen/dp_40"
|
|
|
|
|
android:text="@string/preference_navi_address"
|
|
|
|
|
android:textColor="@color/white_80"
|
|
|
|
|
android:textSize="@dimen/txt_normal"
|
|
|
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/aimlessModeGroup" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/ll_navi_set_home"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="@dimen/dp_120"
|
|
|
|
|
android:layout_marginTop="@dimen/dp_24"
|
|
|
|
|
android:background="@drawable/shape_round_gray_margin"
|
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
|
android:orientation="horizontal"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/tv_navi_address">
|
|
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
|
android:layout_width="@dimen/dp_80"
|
|
|
|
|
android:layout_height="@dimen/dp_80"
|
|
|
|
|
android:layout_marginLeft="@dimen/dp_40"
|
|
|
|
|
android:src="@mipmap/icon_navi_go_home" />
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/tv_navi_home_address"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginLeft="@dimen/dp_32"
|
|
|
|
|
android:layout_weight="1"
|
|
|
|
|
android:text="@string/navi_set_home"
|
|
|
|
|
android:textColor="@color/white_80"
|
|
|
|
|
android:textSize="@dimen/dp_40" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/tv_navi_clear_home_address"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginLeft="@dimen/dp_32"
|
|
|
|
|
android:layout_marginRight="@dimen/dp_88"
|
|
|
|
|
android:text="@string/navi_clear"
|
|
|
|
|
android:textColor="@color/txt_blue"
|
|
|
|
|
android:textSize="@dimen/dp_40" />
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/ll_navi_set_company"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="@dimen/dp_120"
|
|
|
|
|
android:layout_marginTop="@dimen/dp_40"
|
|
|
|
|
android:background="@drawable/shape_round_gray_margin"
|
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
|
android:orientation="horizontal"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/ll_navi_set_home">
|
|
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
|
android:layout_width="@dimen/dp_80"
|
|
|
|
|
android:layout_height="@dimen/dp_80"
|
|
|
|
|
android:layout_marginLeft="@dimen/dp_40"
|
|
|
|
|
android:src="@mipmap/icon_navi_go_company" />
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/tv_navi_company_address"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginLeft="@dimen/dp_32"
|
|
|
|
|
android:layout_weight="1"
|
|
|
|
|
android:text="@string/navi_set_company"
|
|
|
|
|
android:textColor="@color/white_80"
|
|
|
|
|
android:textSize="@dimen/dp_40" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/tv_navi_clear_company_address"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginLeft="@dimen/dp_32"
|
|
|
|
|
android:layout_marginRight="@dimen/dp_88"
|
|
|
|
|
android:text="@string/navi_clear"
|
|
|
|
|
android:textColor="@color/txt_blue"
|
|
|
|
|
android:textSize="@dimen/dp_40" />
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/tv_navi_simulator"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="@dimen/module_search_txt_setting_width"
|
|
|
|
|
android:layout_marginTop="@dimen/dp_40"
|
|
|
|
|
android:text="调试模式"
|
|
|
|
|
android:textColor="@color/white_80"
|
|
|
|
|
android:textSize="@dimen/txt_normal"
|
|
|
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/ll_navi_set_company" />
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/ll_navi_simulator"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginTop="@dimen/dp_40"
|
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
|
android:orientation="horizontal"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/tv_navi_simulator">
|
|
|
|
|
|
|
|
|
|
<ToggleButton
|
|
|
|
|
android:id="@+id/tb_navi"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:checked="false"
|
|
|
|
|
android:textColor="@color/white_80"
|
|
|
|
|
android:textOff="模拟导航关"
|
|
|
|
|
android:textOn="模拟导航开"
|
|
|
|
|
android:textSize="@dimen/module_search_txt_setting_width"
|
|
|
|
|
app:layout_constraintLeft_toLeftOf="parent" />
|
|
|
|
|
|
|
|
|
|
<ToggleButton
|
|
|
|
|
android:id="@+id/tb_gps"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginLeft="50dp"
|
|
|
|
|
android:checked="false"
|
|
|
|
|
android:textColor="@color/white_80"
|
|
|
|
|
android:textOff="模拟GPS关"
|
|
|
|
|
android:textOn="模拟GPS开"
|
|
|
|
|
android:textSize="@dimen/module_search_txt_setting_width"
|
|
|
|
|
app:layout_constraintLeft_toLeftOf="parent" />
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|
|
|
|
|
|
|
</ScrollView>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|