The way Android framework is built is definitely following the template pattern, which is its strength but also its weakness. Because this pattern suggests to implement only some part of the module, it gets pretty easy to obtain a quick and simple result without involving too many efforts.
However, as its is based on inheritance, this can get really nasty once you start thinking about extending the framework, or deal with cross-concerns pattern. Most of android framework require to extend an Activity in order to be used, and as multi-inheritance is not an option, this limits the way you can compose your features.
An approach that favors composition over inheritance would have been more than welcome, and the only reason I can imagine why this choice has been made is performance problems.