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

Commit 4f88170a authored by Jim Miller's avatar Jim Miller
Browse files

Fix 3324645: Fix text wrapping issue in RecentApps

This fixes a problem where the application label and descriptions
would wrap to the next line.  It now correctly stays within the
reserved space.

Change-Id: I586b15b1f69b61f260eb612e69b82260f6c9f84a
parent 826fbd54
Loading
Loading
Loading
Loading
+11 −4
Original line number Diff line number Diff line
@@ -58,26 +58,33 @@
    />

    <TextView android:id="@+id/app_label"
        android:layout_width="113dip"
        android:layout_width="97dip"
        android:layout_height="wrap_content"
        android:textSize="18dip"
        android:fadingEdge="none"
        android:fadingEdgeLength="0dp"
        android:fadingEdge="horizontal"
        android:fadingEdgeLength="10dip"
        android:scrollHorizontally="true"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        android:layout_marginLeft="16dip"
        android:layout_marginTop="32dip"
        android:singleLine="true"
        android:ellipsize="marquee"
    />

    <TextView android:id="@+id/app_description"
        android:layout_width="wrap_content"
        android:layout_width="97dip"
        android:layout_height="wrap_content"
        android:textSize="18dip"
        android:fadingEdge="horizontal"
        android:fadingEdgeLength="10dip"
        android:scrollHorizontally="true"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        android:layout_marginLeft="16dip"
        android:layout_marginTop="61dip"
        android:singleLine="true"
        android:ellipsize="marquee"
    />

</RelativeLayout>