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

Commit 7daf95d5 authored by Michael Jurka's avatar Michael Jurka
Browse files

Fixing accessibility support in Recent Apps

- also switching "Recent applications" to "Recent apps" as per our new language guidelines

Change-Id: Ib625429ad22ce75ede782d59c0f45894d00c8502
parent 55b039f1
Loading
Loading
Loading
Loading
+11 −13
Original line number Diff line number Diff line
@@ -44,13 +44,10 @@
                android:layout_height="@dimen/status_bar_recents_thumbnail_height"
                android:visibility="invisible"
            />
        </FrameLayout>

            <ImageView android:id="@+id/app_icon"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
            android:layout_alignLeft="@id/app_thumbnail"
            android:layout_alignTop="@id/app_thumbnail"
                android:layout_marginTop="@dimen/status_bar_recents_app_icon_top_margin"
                android:layout_marginLeft="@dimen/status_bar_recents_app_icon_left_margin"
                android:maxWidth="@dimen/status_bar_recents_app_icon_max_width"
@@ -58,6 +55,7 @@
                android:adjustViewBounds="true"
                android:visibility="invisible"
            />
        </FrameLayout>

        <TextView android:id="@+id/app_label"
            android:layout_width="@dimen/status_bar_recents_app_label_width"
+0 −9
Original line number Diff line number Diff line
@@ -75,13 +75,4 @@
        android:layout_height="match_parent"
        android:visibility="invisible" />

    <View android:id="@+id/recents_dismiss_button"
        android:layout_width="80px"
        android:layout_height="@*android:dimen/status_bar_height"
        android:layout_alignParentBottom="true"
        android:layout_alignParentLeft="true"
        android:background="@drawable/ic_sysbar_back_ime"
        android:visibility="gone"
    />

</com.android.systemui.recent.RecentsPanelView>
+9 −13
Original line number Diff line number Diff line
@@ -42,20 +42,16 @@
                android:layout_height="@dimen/status_bar_recents_thumbnail_height"
                android:visibility="invisible"
            />
        </FrameLayout>

            <ImageView android:id="@+id/app_icon"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
            android:layout_alignLeft="@id/app_thumbnail"
            android:layout_alignTop="@id/app_thumbnail"
                android:layout_marginLeft="@dimen/status_bar_recents_app_icon_left_margin"
                android:layout_marginTop="@dimen/status_bar_recents_app_icon_top_margin"
                android:maxWidth="@dimen/status_bar_recents_app_icon_max_width"
                android:maxHeight="@dimen/status_bar_recents_app_icon_max_height"
                android:adjustViewBounds="true"
            />

        </FrameLayout>
        <TextView android:id="@+id/app_label"
            android:layout_width="@dimen/status_bar_recents_app_label_width"
            android:layout_height="wrap_content"
+0 −9
Original line number Diff line number Diff line
@@ -73,13 +73,4 @@
        android:layout_height="match_parent"
        android:visibility="invisible" />

    <View android:id="@+id/recents_dismiss_button"
        android:layout_width="80px"
        android:layout_height="@*android:dimen/status_bar_height"
        android:layout_alignParentBottom="true"
        android:layout_alignParentLeft="true"
        android:background="@drawable/ic_sysbar_back_ime"
        android:visibility="gone"
    />

</com.android.systemui.recent.RecentsPanelView>
+1 −1
Original line number Diff line number Diff line
@@ -73,7 +73,7 @@
                    android:layout_width="80dip"
                    android:layout_height="match_parent"
                    android:src="@drawable/ic_sysbar_recent"
                    android:contentDescription="@string/accessibility_menu"
                    android:contentDescription="@string/accessibility_recent"
                    systemui:glowBackground="@drawable/ic_sysbar_highlight"
                    />
                <com.android.systemui.statusbar.policy.KeyButtonView android:id="@+id/menu"
Loading