diff options
| author | Madan Ankapura <mankapur@sta.samsung.com> | 2010-06-24 15:55:55 -0700 |
|---|---|---|
| committer | Steve Kondik <shade@chemlab.org> | 2010-08-16 17:51:04 -0400 |
| commit | 3a9d55331bb86f5e16565ab2cb099679da153434 (patch) | |
| tree | 154c619d6cab0cf7004f43ae8ffd8979fa8d0b04 | |
| parent | 41584ec5bcdefefc9156a6eed7535b6e53eaf8ca (diff) | |
| download | android_development-3a9d55331bb86f5e16565ab2cb099679da153434.tar.gz android_development-3a9d55331bb86f5e16565ab2cb099679da153434.tar.bz2 android_development-3a9d55331bb86f5e16565ab2cb099679da153434.zip | |
Activity/provider used is restricted to the application's Package, but can be spread across other packages as well.
A better way to construct the activity name should be by getting the substring from the fully qualified classname
itself and not using the PackageInfo.
Credit:Ritu Srivastava
Change-Id: I9ff5a27d828d5d3836bb55101cb947f670ea5941
| -rw-r--r-- | apps/Development/src/com/android/development/PackageSummary.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/Development/src/com/android/development/PackageSummary.java b/apps/Development/src/com/android/development/PackageSummary.java index 58ab0f7f6..d621d4e67 100644 --- a/apps/Development/src/com/android/development/PackageSummary.java +++ b/apps/Development/src/com/android/development/PackageSummary.java @@ -251,7 +251,7 @@ public class PackageSummary extends Activity { private final static void setItemText(Button item, PackageInfo pi, String className) { - item.setText(className.substring(pi.packageName.length()+1)); + item.setText(className.substring(className.lastIndexOf('.')+1)); } private final class ActivityOnClick implements View.OnClickListener |
