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

Commit b35b11f4 authored by Pavel Grafov's avatar Pavel Grafov
Browse files

Provide content description for WorkLockActivity.

This way the activity can be brought to foreground using TalkBack
in split-screen and free-form window mode.

Bug: 62814166
Test: Manually.
Change-Id: Idf3a0235fe7ec076b0f1d1f7b88e8b9e237e2d46
parent e139434e
Loading
Loading
Loading
Loading
+2 −0
Original line number Original line Diff line number Diff line
@@ -38,6 +38,7 @@ import android.util.Log;
import android.view.View;
import android.view.View;


import com.android.internal.annotations.VisibleForTesting;
import com.android.internal.annotations.VisibleForTesting;
import com.android.systemui.R;


/**
/**
 * Bouncer between work activities and the activity used to confirm credentials before unlocking
 * Bouncer between work activities and the activity used to confirm credentials before unlocking
@@ -83,6 +84,7 @@ public class WorkLockActivity extends Activity {
        // Blank out the activity. When it is on-screen it will look like a Recents thumbnail with
        // Blank out the activity. When it is on-screen it will look like a Recents thumbnail with
        // redaction switched on.
        // redaction switched on.
        final View blankView = new View(this);
        final View blankView = new View(this);
        blankView.setContentDescription(getString(R.string.accessibility_desc_work_lock));
        blankView.setBackgroundColor(getPrimaryColor());
        blankView.setBackgroundColor(getPrimaryColor());
        setContentView(blankView);
        setContentView(blankView);
    }
    }