Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit dbecb1d1 authored by Timi's avatar Timi Committed by Myles Watson
Browse files

Bluetooth: sync dialog layout for consistency



 * Sync ´Turning on Bluetooth´-dialog layout with
   frameworks/base/core/res/res/layout/progress_dialog_material.xml

Bug: 188222741
Test: adb shell am start com.android.bluetooth/.opp.BluetoothOppBtEnablingActivity,
verify ´Turning on Bluetooth´ -dialog looks OK.
Change-Id: I0416b6cf9e4c2fd2f8ad79f47fd334972af0d226
Signed-off-by: default avatarTimi Rautamäki <timi.rautamaki@gmail.com>
parent 0cf0ca7f
Loading
Loading
Loading
Loading
+13 −8
Original line number Diff line number Diff line
@@ -25,21 +25,26 @@
    <LinearLayout
        android:orientation="horizontal"
        android:layout_width="match_parent"
        android:layout_height="match_parent">
        android:layout_height="match_parent"
        android:baselineAligned="false"
        android:paddingStart="?android:attr/dialogPreferredPadding"
        android:paddingTop="@*android:dimen/dialog_padding_top_material"
        android:paddingEnd="?android:attr/dialogPreferredPadding"
        android:paddingBottom="@*android:dimen/dialog_padding_top_material">

        <ProgressBar android:id="@+id/progress"
        <ProgressBar
            android:id="@+id/progress"
            style="?android:attr/progressBarStyle"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />
            android:layout_height="wrap_content"
            android:max="10000"
            android:layout_marginEnd="?android:attr/dialogPreferredPadding" />

        <TextView
            android:id="@+id/progress_info"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginLeft="20dip"
            android:layout_marginRight="20dip"
            android:layout_gravity="center_vertical"
            android:textAppearance="?android:attr/textAppearanceMedium" />

            android:layout_gravity="center_vertical" />
     </LinearLayout>

 </ScrollView>