diff options
Diffstat (limited to 'packages/SystemUI/res/layout/global_screenshot.xml')
-rw-r--r-- | packages/SystemUI/res/layout/global_screenshot.xml | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/packages/SystemUI/res/layout/global_screenshot.xml b/packages/SystemUI/res/layout/global_screenshot.xml index d416af9..8b337ea 100644 --- a/packages/SystemUI/res/layout/global_screenshot.xml +++ b/packages/SystemUI/res/layout/global_screenshot.xml @@ -19,23 +19,18 @@ <ImageView android:id="@+id/global_screenshot_background" android:layout_width="match_parent" android:layout_height="match_parent" - android:background="#FF000000" + android:src="@android:color/black" android:visibility="gone" /> - <FrameLayout - android:id="@+id/global_screenshot_container" + <ImageView android:id="@+id/global_screenshot" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center" android:background="@drawable/screenshot_panel" - android:visibility="gone"> - <ImageView android:id="@+id/global_screenshot" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:adjustViewBounds="true" /> - </FrameLayout> + android:visibility="gone" + android:adjustViewBounds="true" /> <ImageView android:id="@+id/global_screenshot_flash" android:layout_width="match_parent" android:layout_height="match_parent" - android:background="#FFFFFFFF" + android:src="@android:color/white" android:visibility="gone" /> </FrameLayout> |