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

Commit ab924c90 authored by Romain Guy's avatar Romain Guy Committed by Android (Google) Code Review
Browse files

Merge "Make EditTextPreference scrollable. Bug #2549257" into froyo

parents 3e9032e6 b5d73d0f
Loading
Loading
Loading
Loading
+19 −12
Original line number Original line Diff line number Diff line
@@ -15,9 +15,14 @@
-->
-->


<!-- Layout used as the dialog's content View for EditTextPreference. -->
<!-- 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:id="@+android:id/edittext_container"
    android:layout_width="wrap_content"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_height="wrap_content"
        android:padding="5dip"
        android:padding="5dip"
        android:orientation="vertical">
        android:orientation="vertical">
@@ -29,3 +34,5 @@
            android:textColor="?android:attr/textColorSecondary" />
            android:textColor="?android:attr/textColorSecondary" />
            
            
    </LinearLayout>
    </LinearLayout>

</ScrollView>