]> git.saurik.com Git - android/aapt.git/commit
Support changing style parent in overlays
authorMartin Nordholts <martin.nordholts@sonyericsson.com>
Wed, 2 Jun 2010 13:42:28 +0000 (15:42 +0200)
committerJohan Redestig <johan.redestig@sonyericsson.com>
Tue, 17 Aug 2010 11:18:59 +0000 (13:18 +0200)
commitb7195c9da541575e2beabef44ac9c506e6c973fd
treed1084245f126536e2b2a5c34623da8fa9188bd26
parentca72a28fca8dc0ea3224945d01977d8cc268f332
Support changing style parent in overlays

Package overlays makes it possible for vendors to tweak the look of
the platform and the applications without touching any platform or
application code directly. This makes package overlays an important
mechanism in the Android build system.

There is currently a limitation that forbids changing the parent of a
style. If vendors could change the parent of e.g. ‘CalendarTheme’
from Android’s vanilla ‘Theme’ to ‘VendorTheme’, then vendor
specific adjustments could be done without changing any code directly.

From looking at the code it can be seen that the parent value of a
style is stored temporarily in ResourceTable::Entry::mParent while
overlays are gone through in buildResources(), and processed (in
ResourceTable::Entry::assignResourceIds()) at first after all overlays
have been handled, so there aren’t any obvious reasons why changing
parent in an overlay should be forbidden.

Change-Id: I5969bb8aab90df437e1967fc504cc0da79107d13
ResourceTable.cpp