mirror of
https://github.com/YTVanced/VancedManager
synced 2025-01-03 14:10:59 +00:00
prevent screen from sleeping when installation dialog is visible
This commit is contained in:
parent
64fd410d43
commit
e9ff1bfd9d
3 changed files with 4 additions and 12 deletions
|
@ -8,7 +8,6 @@
|
|||
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
|
||||
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
|
||||
<uses-permission android:name="android.permission.INTERNET" />
|
||||
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
||||
|
||||
<!-- is required for some Android 5.x devices -->
|
||||
<uses-permission
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
tools:context=".ui.dialogs.AppDownloadDialog"
|
||||
android:keepScreenOn="true"
|
||||
style="@style/DialogCard">
|
||||
|
||||
<RelativeLayout
|
||||
|
|
|
@ -2,11 +2,9 @@
|
|||
<com.google.android.material.card.MaterialCardView xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
app:contentPaddingLeft="16dp"
|
||||
app:contentPaddingRight="16dp"
|
||||
tools:context=".ui.dialogs.ManagerUpdateDialog"
|
||||
style="@style/MaterialCard">
|
||||
android:keepScreenOn="true"
|
||||
style="@style/DialogCard">
|
||||
|
||||
<RelativeLayout
|
||||
android:layout_width="match_parent"
|
||||
|
@ -19,15 +17,9 @@
|
|||
|
||||
<TextView
|
||||
android:id="@+id/manager_update_patient"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentEnd="true"
|
||||
android:layout_alignParentStart="true"
|
||||
android:layout_below="@id/manager_update_header"
|
||||
android:layout_marginTop="8dp"
|
||||
android:gravity="center"
|
||||
android:text="@string/checking_updates"
|
||||
android:textSize="16sp" />
|
||||
style="@style/DialogCardSubtitle"/>
|
||||
|
||||
<com.google.android.material.progressindicator.LinearProgressIndicator
|
||||
android:id="@+id/manager_update_progressbar"
|
||||
|
|
Loading…
Reference in a new issue