Home | History | Annotate | Download | only in layout
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <!-- Copyright (C) 2017 The Android Open Source Project
      3 
      4      Licensed under the Apache License, Version 2.0 (the "License");
      5      you may not use this file except in compliance with the License.
      6      You may obtain a copy of the License at
      7 
      8           http://www.apache.org/licenses/LICENSE-2.0
      9 
     10      Unless required by applicable law or agreed to in writing, software
     11      distributed under the License is distributed on an "AS IS" BASIS,
     12      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     13      See the License for the specific language governing permissions and
     14      limitations under the License.
     15 -->
     16 <androidx.car.moderator.SpeedBumpView
     17     xmlns:android="http://schemas.android.com/apk/res/android"
     18     android:layout_width="match_parent"
     19     android:layout_height="match_parent">
     20 
     21     <LinearLayout
     22         android:orientation="horizontal"
     23         android:layout_width="match_parent"
     24         android:layout_height="match_parent">
     25 
     26         <LinearLayout
     27             android:layout_height="match_parent"
     28             android:layout_width="0dp"
     29             android:layout_weight="1"
     30             android:orientation="vertical"
     31             android:gravity="center">
     32             <TextView
     33                 android:id="@+id/driving_state"
     34                 android:layout_gravity="center"
     35                 android:layout_width="match_parent"
     36                 android:textAppearance="?android:textAppearanceLarge"
     37                 android:layout_height="wrap_content" />
     38             <TextView
     39                 android:id="@+id/do_status"
     40                 android:layout_gravity="center"
     41                 android:layout_width="match_parent"
     42                 android:textAppearance="?android:textAppearanceLarge"
     43                 android:layout_height="wrap_content" />
     44             <TextView
     45                 android:id="@+id/uxr_status"
     46                 android:layout_gravity="center"
     47                 android:layout_width="match_parent"
     48                 android:textAppearance="?android:textAppearanceLarge"
     49                 android:layout_height="wrap_content" />
     50             <Button
     51                 android:id="@+id/toggle_status"
     52                 android:layout_width="match_parent"
     53                 android:layout_height="wrap_content"
     54                 android:text="Disable Ux Restrictions"
     55                 android:textSize="32sp"/>
     56         </LinearLayout>
     57 
     58         <androidx.car.widget.PagedListView
     59             android:id="@+id/paged_list_view"
     60             android:layout_width="0dp"
     61             android:layout_height="match_parent"
     62             android:layout_weight="4" />
     63     </LinearLayout>
     64 
     65 </androidx.car.moderator.SpeedBumpView>
     66 
     67 
     68