mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-18 18:28:20 +00:00
even when the touch is started from outside the panel Removing various instanceOf checks in onNewIntent and onBackPress and moving all the corresponding logging in the FloatingView This simplifies handling of panel specific log and avoids missing a particular panel type in the if-else statement. Bug: 64751884 Bug: 64751923 Change-Id: I98f5aae18560a64be73c9efcf495479740d49a00
67 lines
2.7 KiB
XML
67 lines
2.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- Copyright (C) 2016 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.
|
|
-->
|
|
|
|
<com.android.launcher3.AppWidgetResizeFrame
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@drawable/widget_resize_shadow"
|
|
android:foreground="@drawable/widget_resize_frame"
|
|
android:foregroundTint="?attr/workspaceTextColor"
|
|
android:padding="0dp">
|
|
|
|
<FrameLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" >
|
|
|
|
<!-- Left -->
|
|
<ImageView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="left|center_vertical"
|
|
android:layout_marginLeft="@dimen/widget_handle_margin"
|
|
android:src="@drawable/ic_widget_resize_handle"
|
|
android:tint="?attr/workspaceTextColor" />
|
|
|
|
<!-- Top -->
|
|
<ImageView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="top|center_horizontal"
|
|
android:layout_marginTop="@dimen/widget_handle_margin"
|
|
android:src="@drawable/ic_widget_resize_handle"
|
|
android:tint="?attr/workspaceTextColor" />
|
|
|
|
<!-- Right -->
|
|
<ImageView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="right|center_vertical"
|
|
android:layout_marginRight="@dimen/widget_handle_margin"
|
|
android:src="@drawable/ic_widget_resize_handle"
|
|
android:tint="?attr/workspaceTextColor" />
|
|
|
|
<!-- Bottom -->
|
|
<ImageView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="bottom|center_horizontal"
|
|
android:layout_marginBottom="@dimen/widget_handle_margin"
|
|
android:src="@drawable/ic_widget_resize_handle"
|
|
android:tint="?attr/workspaceTextColor" />
|
|
|
|
</FrameLayout>
|
|
</com.android.launcher3.AppWidgetResizeFrame> |