diff options
| author | 2020-05-12 13:46:27 +0000 | |
|---|---|---|
| committer | 2020-05-12 13:46:27 +0000 | |
| commit | 28c447af31c69d0f279ca41afe4b5110b6f64414 (patch) | |
| tree | 4e0795d523bef9def5edac05afb76c0b2e72a623 | |
| parent | 701957749856236419d08b979019731654d00615 (diff) | |
| parent | 63ece8c44329781bc55a6e87b208323d7ad07b00 (diff) | |
Merge "Add title for dialog" into rvc-dev
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/screenrecord/ScreenRecordDialog.java | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/packages/SystemUI/src/com/android/systemui/screenrecord/ScreenRecordDialog.java b/packages/SystemUI/src/com/android/systemui/screenrecord/ScreenRecordDialog.java index c247328078a7..abd7e7159260 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); |