Merge "Provide content description for WorkLockActivity." into oc-dev

am: f044e0b87f

Change-Id: Ib3df83d82eb2646a0f657606e05225250b5db2e5
This commit is contained in:
Pavel Grafov
2017-06-21 21:24:47 +00:00
committed by android-build-merger

View File

@@ -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);
} }