mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-18 10:18:20 +00:00
76 lines
2.9 KiB
XML
76 lines
2.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- 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.
|
|
-->
|
|
|
|
<com.google.android.apps.nexuslauncher.CustomBottomSheet
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingTop="28dp"
|
|
android:background="@drawable/top_round_rect_primary"
|
|
android:elevation="@dimen/deep_shortcuts_elevation"
|
|
android:layout_gravity="bottom"
|
|
android:id="@+id/content"
|
|
android:theme="?attr/widgetsTheme">
|
|
|
|
<ImageView
|
|
android:id="@+id/icon"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal"
|
|
android:paddingBottom="12dp"/>
|
|
|
|
<android.support.v7.widget.AppCompatTextView
|
|
style="@style/TextTitle"
|
|
android:id="@+id/title"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center_horizontal"
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
android:textSize="24sp"
|
|
android:layout_marginBottom="32dp"/>
|
|
|
|
<EditText
|
|
style="@style/TextTitle"
|
|
android:id="@+id/edit_title"
|
|
android:background="@android:color/transparent"
|
|
android:visibility="gone"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center_horizontal"
|
|
android:singleLine="true"
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
android:textSize="24sp"
|
|
android:layout_marginBottom="32dp"
|
|
app:customFontType="title"/>
|
|
|
|
<fragment
|
|
android:id="@+id/sheet_prefs"
|
|
android:name="com.google.android.apps.nexuslauncher.CustomBottomSheet$PrefsFragment"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="40dp" />
|
|
|
|
<View
|
|
android:id="@+id/nav_bar_bg"
|
|
android:background="?attr/bottomSheetNavBarColor"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_gravity="bottom"
|
|
android:focusable="false" />
|
|
|
|
</com.google.android.apps.nexuslauncher.CustomBottomSheet> |