diff options
author | Dianne Hackborn <hackbod@google.com> | 2010-05-12 18:59:50 -0700 |
---|---|---|
committer | Dianne Hackborn <hackbod@google.com> | 2010-05-13 13:36:10 -0700 |
commit | b4bc78b16a05554c57508b488e21dd8eca4e13e6 (patch) | |
tree | 47225a4365970686ce167f3f583366da59ca3d4d /core/java/android/app/Instrumentation.java | |
parent | bdfb5312c02c57d490ede380445f80cff00efe21 (diff) | |
download | frameworks_base-b4bc78b16a05554c57508b488e21dd8eca4e13e6.zip frameworks_base-b4bc78b16a05554c57508b488e21dd8eca4e13e6.tar.gz frameworks_base-b4bc78b16a05554c57508b488e21dd8eca4e13e6.tar.bz2 |
Further work on fragments:
- Implement all of the state saving and restoring machinery. This
caused some flux in the API.
- Add ability to have fragments that are retained across activity
instances.
- Fix some bugs.
Change-Id: Ib6b5b0752d7f8d667cfdcd3e76d127cc9b6d901b
Diffstat (limited to 'core/java/android/app/Instrumentation.java')
-rw-r--r-- | core/java/android/app/Instrumentation.java | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/core/java/android/app/Instrumentation.java b/core/java/android/app/Instrumentation.java index b937dd6..cbb1c1a 100644 --- a/core/java/android/app/Instrumentation.java +++ b/core/java/android/app/Instrumentation.java @@ -997,8 +997,10 @@ public class Instrumentation { IllegalAccessException { Activity activity = (Activity)clazz.newInstance(); ActivityThread aThread = null; - activity.attach(context, aThread, this, token, application, intent, info, title, - parent, id, lastNonConfigurationInstance, new Configuration()); + activity.attach(context, aThread, this, token, application, intent, + info, title, parent, id, + (Activity.NonConfigurationInstances)lastNonConfigurationInstance, + new Configuration()); return activity; } |