mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-27 15:26:58 +00:00
When forcing the rounded corners, the radius may be smaller than the default one. When this happens, we should change how the frame is drawn to only use that reduced radius, or this looks weird. Bug: 183097166 Test: Manual tests with top 1P App Widgets Change-Id: I6ce232515ce14059e1168e16735719ea2370132c
77 lines
3.1 KiB
XML
77 lines
3.1 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:padding="0dp">
|
|
|
|
<FrameLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" >
|
|
|
|
<!-- Frame -->
|
|
<ImageView
|
|
android:id="@+id/widget_resize_frame"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="center"
|
|
android:layout_margin="@dimen/resize_frame_margin"
|
|
android:src="@drawable/widget_resize_frame" />
|
|
|
|
<!-- Left -->
|
|
<ImageView
|
|
android:id="@+id/widget_resize_left_handle"
|
|
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="?android:attr/colorAccent" />
|
|
|
|
<!-- Top -->
|
|
<ImageView
|
|
android:id="@+id/widget_resize_top_handle"
|
|
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="?android:attr/colorAccent" />
|
|
|
|
<!-- Right -->
|
|
<ImageView
|
|
android:id="@+id/widget_resize_right_handle"
|
|
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="?android:attr/colorAccent" />
|
|
|
|
<!-- Bottom -->
|
|
<ImageView
|
|
android:id="@+id/widget_resize_bottom_handle"
|
|
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="?android:attr/colorAccent" />
|
|
|
|
</FrameLayout>
|
|
</com.android.launcher3.AppWidgetResizeFrame> |