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

Commit 602013be authored by Yukako Murakami's avatar Yukako Murakami Committed by Hiroaki Kuriyama
Browse files

Apply scrollable to app pinning text area

Symptom:
When pinning an application, the instruction screen is not completely
displayed in landscape mode when display settings are largest.

Solution:
by applying scrollable to the layout of app pinning text area

Bug: 176455738
Change-Id: Idbd91f3103bf259168c35179f841b5490a5910a3
parent 6bc7032b
Loading
Loading
Loading
Loading
+61 −54
Original line number Diff line number Diff line
@@ -16,7 +16,12 @@
 * limitations under the License.
 */
-->
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:fillViewport="true">

    <RelativeLayout
        android:id="@+id/screen_pinning_text_area"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
@@ -78,3 +83,5 @@
            android:textSize="14sp" />

    </RelativeLayout>

</ScrollView>