summaryrefslogtreecommitdiffstats
path: root/tests/HwAccelerationTest/AndroidManifest.xml
diff options
context:
space:
mode:
authorChet Haase <chet@google.com>2012-05-01 15:57:24 -0700
committerChet Haase <chet@google.com>2012-05-02 10:44:33 -0700
commit810a8676df1d504da17bad80c7bd6638bdd97711 (patch)
tree3ddfda87c49bd6f19d436e9677d9daa1ea459037 /tests/HwAccelerationTest/AndroidManifest.xml
parent73b61d67109c9a4267b93c238bb9cbab7b1304c4 (diff)
downloadframeworks_base-810a8676df1d504da17bad80c7bd6638bdd97711.zip
frameworks_base-810a8676df1d504da17bad80c7bd6638bdd97711.tar.gz
frameworks_base-810a8676df1d504da17bad80c7bd6638bdd97711.tar.bz2
Corrects invalidation logic for layered views
A bug in the invalidation logic meant that changes to a view would not cause parents in the view hiearchy that were set to have a layer (e.g., View.LAYER_TYPE_HARDWARE) to get invalidated properly. So even though the child view was all set to recreate its display list according to the property change, the layer in the tree above it would stay as-is, meaning that the change would not show up on the screen. Issue #5887530 DropTarget text does not change color with the icon Change-Id: Ie6eac4f406d172cb437822d9fe76340ab2afaf1c
Diffstat (limited to 'tests/HwAccelerationTest/AndroidManifest.xml')
-rw-r--r--tests/HwAccelerationTest/AndroidManifest.xml9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/HwAccelerationTest/AndroidManifest.xml b/tests/HwAccelerationTest/AndroidManifest.xml
index 3775f9f..786cba3 100644
--- a/tests/HwAccelerationTest/AndroidManifest.xml
+++ b/tests/HwAccelerationTest/AndroidManifest.xml
@@ -675,5 +675,14 @@
</intent-filter>
</activity>
+ <activity
+ android:name="ViewLayerInvalidationActivity"
+ android:label="_ViewLayerInvalidation">
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN" />
+ <category android:name="android.intent.category.LAUNCHER" />
+ </intent-filter>
+ </activity>
+
</application>
</manifest>