Moves GlobalScreenshot into two different files: GlobalScreenshot (with the new corner flow) and GlobalScreenshotLegacy (with the previous notifications flow). This is to allow easier iteration on the new flow; once it is fully tested, the notification/legacy version will eventually be removed. Bug: 137153302 Bug: 147423001 Test: tested old and new flows to ensure no user-visible changes; also tested smart screenshots in old flow to ensure no behavior change Change-Id: Ia776e2a7c2e8d0d298ea3e0f18f3419aa2b64415
43 lines
1.9 KiB
XML
43 lines
1.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- Copyright (C) 2011 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.
|
|
-->
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<ImageView android:id="@+id/global_screenshot_legacy_background"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:src="@android:color/black"
|
|
android:visibility="gone" />
|
|
<ImageView android:id="@+id/global_screenshot_legacy"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:background="@drawable/screenshot_panel"
|
|
android:visibility="gone"
|
|
android:adjustViewBounds="true" />
|
|
<ImageView android:id="@+id/global_screenshot_legacy_flash"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:src="@android:color/white"
|
|
android:visibility="gone" />
|
|
<com.android.systemui.screenshot.ScreenshotSelectorView
|
|
android:id="@+id/global_screenshot_legacy_selector"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:visibility="gone"
|
|
android:pointerIcon="crosshair"/>
|
|
</FrameLayout>
|