mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-20 03:08:19 +00:00
Pin widget sheet should open from bottom up and close on drag down. Behaviour with navigation bar is similar to that of widgets bottom sheet. Add a drag layer and reuse AbstractSlideInView for open-close animation. Test: Tested manually- opening, closing through dragging/ cancel button/ back button. Adding widget to screen by dragging/ add to home screen button. Bug: 186124244 Change-Id: I4b77d5bdd4ed1689b651847dfed69d19cafa7456
101 lines
3.8 KiB
XML
101 lines
3.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
/*
|
|
** Copyright 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.
|
|
*/
|
|
-->
|
|
<com.android.launcher3.dragndrop.AddItemDragLayer
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/add_item_drag_layer"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:clipChildren="false"
|
|
android:clipToPadding="false"
|
|
android:importantForAccessibility="no">
|
|
|
|
<com.android.launcher3.widget.AddItemWidgetsBottomSheet
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/add_item_bottom_sheet"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@drawable/add_item_dialog_background"
|
|
android:padding="24dp"
|
|
android:theme="?attr/widgetsTheme"
|
|
android:layout_gravity="bottom"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
style="@style/TextHeadline"
|
|
android:id="@+id/widget_appName"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center_horizontal"
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
android:textSize="24sp"
|
|
android:ellipsize="end"
|
|
android:fadingEdge="horizontal"
|
|
android:singleLine="true"
|
|
android:maxLines="1" />
|
|
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center_horizontal"
|
|
android:paddingVertical="8dp"
|
|
android:text="@string/add_item_request_drag_hint"
|
|
android:textSize="14sp"
|
|
android:textColor="?android:attr/textColorSecondary"
|
|
android:alpha="0.7"
|
|
android:importantForAccessibility="no"/>
|
|
|
|
<include layout="@layout/widget_cell"
|
|
android:id="@+id/widget_cell"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1"
|
|
android:layout_marginVertical="16dp" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="end"
|
|
android:padding="8dp"
|
|
android:orientation="horizontal">
|
|
<Button
|
|
style="@style/Widget.DeviceDefault.Button.Rounded.Colored"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:paddingHorizontal="16dp"
|
|
android:onClick="onCancelClick"
|
|
android:text="@android:string/cancel" />
|
|
|
|
<Space
|
|
android:layout_width="4dp"
|
|
android:layout_height="wrap_content" />
|
|
|
|
<Button
|
|
style="@style/Widget.DeviceDefault.Button.Rounded.Colored"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:paddingHorizontal="16dp"
|
|
android:onClick="onPlaceAutomaticallyClick"
|
|
android:text="@string/add_to_home_screen"/>
|
|
</LinearLayout>
|
|
</com.android.launcher3.widget.AddItemWidgetsBottomSheet>
|
|
|
|
</com.android.launcher3.dragndrop.AddItemDragLayer>
|
|
|
|
|