blob: 28ea66d8345d138aba50f36f0fca86934ff144c7 [file] [log] [blame]
Sid Soundararajanb58c46a2016-01-26 15:39:27 -08001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2016 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<com.android.systemui.recents.tv.views.RecentsTvView
17 xmlns:android="http://schemas.android.com/apk/res/android"
18 android:id="@+id/recents_view"
19 android:layout_width="match_parent"
20 android:layout_height="match_parent"
21 android:clipChildren="false"
Jaewan Kim8f584b82016-03-22 22:16:59 +090022 android:clipToPadding="false">
Sid Soundararajanb58c46a2016-01-26 15:39:27 -080023 <com.android.systemui.recents.tv.views.TaskStackHorizontalGridView
24 android:id="@+id/task_list"
25 android:layout_width="wrap_content"
26 android:layout_height="wrap_content"
27 android:clipChildren="false"
28 android:clipToPadding="false"
29 android:descendantFocusability="beforeDescendants"
Sid Soundararajan4bdb6872016-03-18 13:42:10 -070030 android:layout_marginTop="@dimen/recents_tv_gird_row_top_margin"
Jaewan Kim8f584b82016-03-22 22:16:59 +090031 android:focusable="true"
32 android:layoutDirection="rtl" />
33
Jaewan Kima0d4d252016-03-31 13:37:10 +090034 <!-- Placeholder view to give focus to the PIP menus. -->
Jaewan Kimc92a7d12016-02-15 17:33:25 -080035 <View
Jaewan Kima0d4d252016-03-31 13:37:10 +090036 android:id="@+id/pip"
37 android:layout_width="0dp"
38 android:layout_height="0dp"
39 android:focusable="true"
40 android:visibility="gone" />
Jaewan Kim8f584b82016-03-22 22:16:59 +090041
Sid Soundararajanb58c46a2016-01-26 15:39:27 -080042</com.android.systemui.recents.tv.views.RecentsTvView>