blob: da1255d76b10f9bae4a2830b9aaa93d40bb8dd39 [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<!--
~ Copyright (C) 2020 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.
-->
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<com.android.car.ui.FocusParkingView
android:id="@+id/fpv"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<com.android.car.ui.TestFocusArea
android:id="@+id/focus_area1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:startBoundOffset="10dp"
app:endBoundOffset="20dp"
app:topBoundOffset="30dp"
app:bottomBoundOffset="40dp">
<View
android:id="@+id/view1"
android:focusable="true"
android:layout_width="100dp"
android:layout_height="100dp"/>
<Button
android:id="@+id/button1"
android:layout_width="100dp"
android:layout_height="100dp"/>
</com.android.car.ui.TestFocusArea>
<com.android.car.ui.TestFocusArea
android:id="@+id/focus_area2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:defaultFocus="@+id/default_focus2"
app:highlightPaddingHorizontal="10dp"
app:highlightPaddingVertical="20dp"
app:highlightPaddingStart="30dp"
app:highlightPaddingTop="40dp"
app:startBoundOffset="50dp">
<View
android:id="@+id/view2"
android:focusable="true"
android:layout_width="100dp"
android:layout_height="100dp"/>
<View
android:id="@+id/default_focus2"
android:focusable="true"
android:layout_width="100dp"
android:layout_height="100dp"/>
</com.android.car.ui.TestFocusArea>
<com.android.car.ui.TestFocusArea
android:id="@+id/focus_area3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:nudgeShortcut="@+id/nudge_shortcut3"
app:nudgeShortcutDirection="right">
<View
android:id="@+id/view3"
android:focusable="true"
android:layout_width="100dp"
android:layout_height="100dp"/>
<View
android:focusable="true"
android:layout_width="100dp"
android:layout_height="100dp"/>
<View
android:id="@+id/nudge_shortcut3"
android:focusable="true"
android:layout_width="100dp"
android:layout_height="100dp"/>
</com.android.car.ui.TestFocusArea>
<com.android.car.ui.TestFocusArea
android:id="@+id/focus_area4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:nudgeLeft="@+id/focus_area2">
<View
android:id="@+id/view4"
android:focusable="true"
android:layout_width="100dp"
android:layout_height="100dp"/>
</com.android.car.ui.TestFocusArea>
</LinearLayout>