blob: 524de8dbe494756af400601cc77404297f4aa966 [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">
<View
android:focusable="true"
android:layout_width="100dp"
android:layout_height="100dp"/>
<com.android.car.ui.TestFocusArea
android:id="@+id/focus_area"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:defaultFocus="@+id/default_focus"
app:startBoundOffset="10dp"
app:endBoundOffset="20dp"
app:topBoundOffset="30dp"
app:bottomBoundOffset="40dp">
<View
android:id="@+id/child"
android:focusable="true"
android:layout_width="100dp"
android:layout_height="100dp"/>
<View
android:id="@+id/default_focus"
android:focusable="true"
android:layout_width="100dp"
android:layout_height="100dp"/>
</com.android.car.ui.TestFocusArea>
<View
android:id="@+id/non_child"
android:focusable="true"
android:layout_width="100dp"
android:layout_height="100dp"/>
<com.android.car.ui.TestFocusArea
android:id="@+id/focus_area2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:highlightPaddingHorizontal="10dp"
app:highlightPaddingVertical="20dp"
app:highlightPaddingStart="30dp"
app:highlightPaddingTop="40dp"
app:startBoundOffset="50dp">
<View
android:id="@+id/child1"
android:focusable="true"
android:layout_width="100dp"
android:layout_height="100dp"/>
<View
android:id="@+id/child2"
android:focusable="true"
android:layout_width="100dp"
android:layout_height="100dp"/>
</com.android.car.ui.TestFocusArea>
</LinearLayout>