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

Commit b5d73d0f authored by Romain Guy's avatar Romain Guy
Browse files

Make EditTextPreference scrollable.

Bug #2549257

Change-Id: If2f69f957681e15977a7603a1f6533e9d1fea9f7
parent 252573cb
Loading
Loading
Loading
Loading
+19 −12
Original line number Diff line number Diff line
@@ -15,9 +15,14 @@
-->

<!-- Layout used as the dialog's content View for EditTextPreference. -->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:overscrollMode="ifContentScrolls">

    <LinearLayout
        android:id="@+android:id/edittext_container"
    android:layout_width="wrap_content"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:padding="5dip"
        android:orientation="vertical">
@@ -29,3 +34,5 @@
            android:textColor="?android:attr/textColorSecondary" />
            
    </LinearLayout>

</ScrollView>