From 63ece8c44329781bc55a6e87b208323d7ad07b00 Mon Sep 17 00:00:00 2001 From: Beth Thibodeau Date: Wed, 6 May 2020 15:02:50 -0400 Subject: [PATCH] Add title for dialog Fixes: 153521335 Test: manual Change-Id: I738135f2f233e3b212f93d084107f85a6ae142eb --- .../com/android/systemui/screenrecord/ScreenRecordDialog.java | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/SystemUI/src/com/android/systemui/screenrecord/ScreenRecordDialog.java b/packages/SystemUI/src/com/android/systemui/screenrecord/ScreenRecordDialog.java index c247328078a7a..abd7e7159260d 100644 --- a/packages/SystemUI/src/com/android/systemui/screenrecord/ScreenRecordDialog.java +++ b/packages/SystemUI/src/com/android/systemui/screenrecord/ScreenRecordDialog.java @@ -72,6 +72,7 @@ public class ScreenRecordDialog extends Activity { window.getDecorView(); window.setLayout(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT); window.setGravity(Gravity.TOP); + setTitle(R.string.screenrecord_name); setContentView(R.layout.screen_record_dialog);