feat: SettingsLib验证通过-使用App module启用
This commit is contained in:
79
CarSettings/res/layout/car_setting_activity.xml
Normal file
79
CarSettings/res/layout/car_setting_activity.xml
Normal file
@@ -0,0 +1,79 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright 2017 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
android:id="@+id/car_settings_activity_wrapper"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<FrameLayout
|
||||
android:id="@+id/top_level_menu_container"
|
||||
android:layout_width="@dimen/top_level_menu_width"
|
||||
android:layout_height="match_parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintEnd_toStartOf="@id/top_level_divider">
|
||||
|
||||
<fragment
|
||||
class="com.android.car.settings.common.TopLevelMenuFragment"
|
||||
android:id="@+id/top_level_menu"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"/>
|
||||
</FrameLayout>
|
||||
|
||||
<View
|
||||
android:id="@+id/top_level_divider"
|
||||
android:layout_width="@dimen/top_level_divider_width"
|
||||
android:layout_height="match_parent"
|
||||
app:layout_constraintStart_toEndOf="@id/top_level_menu_container"
|
||||
app:layout_constraintEnd_toStartOf="@id/top_level_divider"
|
||||
style="@style/CarSettingsActivityDividerStyle"/>
|
||||
|
||||
<FrameLayout
|
||||
android:id="@+id/fragment_container_wrapper"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="match_parent"
|
||||
app:layout_constraintStart_toEndOf="@id/top_level_divider"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
style="@style/CarSettingsFragmentContainerStyle">
|
||||
|
||||
<com.android.car.settings.common.rotary.SettingsFocusParkingView
|
||||
android:id="@+id/settings_focus_parking_view"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"/>
|
||||
|
||||
<FrameLayout
|
||||
android:id="@+id/fragment_container"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"/>
|
||||
|
||||
<!-- set the text clickable to true so that it blocks touch event -->
|
||||
<TextView
|
||||
android:id="@+id/restricted_message"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:background="?android:attr/colorPrimary"
|
||||
android:clickable="true"
|
||||
android:focusable="false"
|
||||
android:gravity="center"
|
||||
android:text="@string/restricted_while_driving"
|
||||
android:textAppearance="?android:attr/textAppearanceLarge"
|
||||
android:visibility="gone"/>
|
||||
|
||||
</FrameLayout>
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
Reference in New Issue
Block a user