Shelter/app/src/main/res/layout/progress_dialog.xml
Peter Cai 7774395819
fix: DummyActivity: implement installation progress dialog
* This fixes the apparent stalling when installing / cloning
  applications.
* Also moves apk reading to another thread.
2020-06-22 10:55:47 +08:00

18 lines
644 B
XML

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center">
<ProgressBar
android:id="@+id/progress"
style="@android:style/Widget.Material.ProgressBar.Horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="20dp"
android:layout_marginEnd="20dp"
android:layout_marginTop="10dp"
android:indeterminate="false"
android:max="100"/>
</FrameLayout>