-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Glimpse: Allow specifying where to apply the wallpaper
Change-Id: I655e88d4c00cdee1014d15e4880214617623929e
- Loading branch information
1 parent
185ea88
commit a18c53a
Showing
5 changed files
with
65 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- | ||
SPDX-FileCopyrightText: 2019 The Android Open Source Project | ||
SPDX-License-Identifier: Apache-2.0 | ||
--> | ||
|
||
<!-- | ||
This layout file is used by the AlertDialog when displaying a list of items. | ||
This layout file is inflated and used as the TextView to display individual | ||
items. | ||
--> | ||
<TextView xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:id="@android:id/text1" | ||
style="?attr/materialAlertDialogBodyTextStyle" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:ellipsize="marquee" | ||
android:gravity="center_vertical" | ||
android:minHeight="?attr/listPreferredItemHeightSmall" | ||
android:paddingStart="?attr/listPreferredItemPaddingLeft" | ||
android:paddingEnd="?attr/listPreferredItemPaddingRight" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- | ||
SPDX-FileCopyrightText: 2024 The LineageOS Project | ||
SPDX-License-Identifier: Apache-2.0 | ||
--> | ||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> | ||
<string-array translatable="false" name="set_wallpaper_items"> | ||
<item>@string/set_wallpaper_home_screen</item> | ||
<item>@string/set_wallpaper_lock_screen</item> | ||
<item>@string/set_wallpaper_both</item> | ||
</string-array> | ||
</resources> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters