diff options
author | Maksymilian Osowski <maxosowski@google.com> | 2010-09-14 13:14:45 +0100 |
---|---|---|
committer | Maksymilian Osowski <maxosowski@google.com> | 2010-09-14 14:23:07 +0100 |
commit | a7e2ca9a1c2ffc9d4e703d325270cd0ea1cde251 (patch) | |
tree | ee65c0e8dd35f431528d049270e71e1d2a55cfb9 /tests/DumpRenderTree2/res | |
parent | c54df24fa9bfd0a2b53404139e7914e68f192af4 (diff) | |
download | frameworks_base-a7e2ca9a1c2ffc9d4e703d325270cd0ea1cde251.zip frameworks_base-a7e2ca9a1c2ffc9d4e703d325270cd0ea1cde251.tar.gz frameworks_base-a7e2ca9a1c2ffc9d4e703d325270cd0ea1cde251.tar.bz2 |
Gets rid of flickering when executing tests.
Achieves it by setting Executor background to white.
Change-Id: Id07c743114c6cce9e9446439136a5efd72857dc4
Diffstat (limited to 'tests/DumpRenderTree2/res')
-rw-r--r-- | tests/DumpRenderTree2/res/values/style.xml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/DumpRenderTree2/res/values/style.xml b/tests/DumpRenderTree2/res/values/style.xml new file mode 100644 index 0000000..35f3419 --- /dev/null +++ b/tests/DumpRenderTree2/res/values/style.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- +Copyright (C) 2010 The Android Open Source Project + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +--> +<resources> + <style name="WhiteBackground"> + <item name="android:background">@android:color/white</item> + </style> +</resources>
\ No newline at end of file |