2018-01-18 11:48:05 -08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?><!--
|
2017-11-10 11:42:13 -08:00
|
|
|
Copyright (C) 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.
|
|
|
|
|
-->
|
2021-03-19 16:42:07 -07:00
|
|
|
<!-- NOTE! don't add dimensions for margins / paddings / sizes that change per orientation to this
|
|
|
|
|
file, they need to be loaded at runtime. -->
|
2018-05-21 11:59:48 -07:00
|
|
|
<com.android.quickstep.views.TaskView
|
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2023-01-24 15:05:08 -08:00
|
|
|
xmlns:androidprv="http://schemas.android.com/apk/prv/res/android"
|
|
|
|
|
xmlns:launcher="http://schemas.android.com/apk/res-auto"
|
2017-11-10 11:42:13 -08:00
|
|
|
android:layout_width="match_parent"
|
2018-01-18 11:48:05 -08:00
|
|
|
android:layout_height="match_parent"
|
2021-02-04 17:05:40 -08:00
|
|
|
android:clipChildren="false"
|
2018-06-06 15:39:13 -07:00
|
|
|
android:defaultFocusHighlightEnabled="false"
|
2023-01-24 15:05:08 -08:00
|
|
|
android:focusable="true"
|
2023-09-21 21:54:56 +08:00
|
|
|
launcher:borderColor="?attr/colorAccentPrimary">
|
2017-11-10 11:42:13 -08:00
|
|
|
|
2018-03-13 09:57:05 -07:00
|
|
|
<com.android.quickstep.views.TaskThumbnailView
|
2017-11-10 11:42:13 -08:00
|
|
|
android:id="@+id/snapshot"
|
|
|
|
|
android:layout_width="match_parent"
|
2021-03-19 16:42:07 -07:00
|
|
|
android:layout_height="match_parent"/>
|
2018-01-18 11:48:05 -08:00
|
|
|
|
2023-01-03 19:37:58 +00:00
|
|
|
<!-- Filtering affects only alpha instead of the visibility since visibility can be altered
|
|
|
|
|
separately through RecentsView#resetFromSplitSelectionState() -->
|
2022-10-20 06:56:25 +00:00
|
|
|
<ImageView
|
|
|
|
|
android:id="@+id/show_windows"
|
|
|
|
|
android:layout_height="@dimen/recents_filter_icon_size"
|
|
|
|
|
android:layout_width="@dimen/recents_filter_icon_size"
|
|
|
|
|
android:layout_gravity="end"
|
2023-01-03 19:37:58 +00:00
|
|
|
android:alpha="0"
|
2022-10-20 06:56:25 +00:00
|
|
|
android:tint="@color/recents_filter_icon"
|
|
|
|
|
android:contentDescription="@string/recents_filter_icon_desc"
|
|
|
|
|
android:importantForAccessibility="no"
|
|
|
|
|
android:src="@drawable/ic_select_windows" />
|
|
|
|
|
|
2018-05-02 15:36:59 -07:00
|
|
|
<com.android.quickstep.views.IconView
|
2017-11-10 11:42:13 -08:00
|
|
|
android:id="@+id/icon"
|
2017-11-15 15:34:07 -08:00
|
|
|
android:layout_width="@dimen/task_thumbnail_icon_size"
|
|
|
|
|
android:layout_height="@dimen/task_thumbnail_icon_size"
|
2018-05-21 11:59:48 -07:00
|
|
|
android:focusable="false"
|
2019-05-29 01:09:06 -07:00
|
|
|
android:importantForAccessibility="no"/>
|
2018-03-13 09:57:05 -07:00
|
|
|
</com.android.quickstep.views.TaskView>
|