diff options
author | Beth Thibodeau <ethibodeau@google.com> | 2019-03-20 16:00:26 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2019-03-20 16:00:26 +0000 |
commit | 4144961dc672ae91ad81a7e6c2ff6a46914d9f66 (patch) | |
tree | 3007895970bdf90ebf6f4c7d684e7071b41e3151 | |
parent | 5f9ec2c1c60c725285b5c82894c6a0637d993c51 (diff) | |
parent | 93dc8e9e708417da3d4259eb43a7cdbbcfe4fe62 (diff) |
Merge "Use system theme for screen recording dialog"
-rw-r--r-- | packages/SystemUI/res/layout/screen_record_dialog.xml | 17 |
1 files changed, 6 insertions, 11 deletions
diff --git a/packages/SystemUI/res/layout/screen_record_dialog.xml b/packages/SystemUI/res/layout/screen_record_dialog.xml index 6c5c7fac3ed6..3d63b7d19c4f 100644 --- a/packages/SystemUI/res/layout/screen_record_dialog.xml +++ b/packages/SystemUI/res/layout/screen_record_dialog.xml @@ -5,26 +5,25 @@ android:clipChildren="false" android:clipToPadding="false" android:gravity="top" - android:orientation="vertical"> - - <Space - android:layout_width="match_parent" - android:layout_height="10dp"/> + android:orientation="vertical" + android:padding="@dimen/global_actions_padding" + android:background="@drawable/rounded_bg_full"> <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" - android:orientation="vertical" - android:background="@android:color/white"> + android:orientation="vertical"> <CheckBox android:id="@+id/checkbox_mic" android:layout_width="match_parent" android:layout_height="wrap_content" + android:textAppearance="?android:attr/textAppearanceMedium" android:text="@string/screenrecord_mic_label"/> <CheckBox android:id="@+id/checkbox_taps" android:layout_width="match_parent" android:layout_height="wrap_content" + android:textAppearance="?android:attr/textAppearanceMedium" android:text="@string/screenrecord_taps_label"/> <Button android:id="@+id/record_button" @@ -34,8 +33,4 @@ /> </LinearLayout> - <Space - android:layout_width="match_parent" - android:layout_height="10dp"/> - </LinearLayout> |