diff options
| author | 2010-11-08 15:10:19 -0800 | |
|---|---|---|
| committer | 2010-11-08 15:10:19 -0800 | |
| commit | 98b8bc7f9a314d614817aec2d60883b3f1a0a3fd (patch) | |
| tree | a4675f683c0d263c448c754a98a99ec8a53568fd | |
| parent | 1bc0177328ed5103f3ce49eadbaeb2f363a00bc8 (diff) | |
| parent | 646f46eddf897bff4aebcc8454004539589e0965 (diff) | |
Merge "make the resolver activity's items visible"
| -rw-r--r-- | core/res/res/layout/resolve_list_item.xml | 4 | ||||
| -rw-r--r-- | services/java/com/android/server/PackageManagerService.java | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/core/res/res/layout/resolve_list_item.xml b/core/res/res/layout/resolve_list_item.xml index caa82d495204..66e3b8a62e24 100644 --- a/core/res/res/layout/resolve_list_item.xml +++ b/core/res/res/layout/resolve_list_item.xml @@ -39,14 +39,14 @@ android:layout_height="wrap_content" > <!-- Activity name --> <TextView android:id="@android:id/text1" - android:textAppearance="?android:attr/textAppearanceLargeInverse" + android:textAppearance="?android:attr/textAppearanceLarge" android:layout_width="wrap_content" android:layout_height="wrap_content" android:maxLines="2" android:paddingLeft="10dip" /> <!-- Extended activity info to distinguish between duplicate activity names --> <TextView android:id="@android:id/text2" - android:textAppearance="?android:attr/textAppearanceMediumInverse" + android:textAppearance="?android:attr/textAppearanceMedium" android:layout_width="wrap_content" android:layout_height="wrap_content" android:maxLines="2" diff --git a/services/java/com/android/server/PackageManagerService.java b/services/java/com/android/server/PackageManagerService.java index 7ad95da94b60..4707bbfd988d 100644 --- a/services/java/com/android/server/PackageManagerService.java +++ b/services/java/com/android/server/PackageManagerService.java @@ -2853,7 +2853,7 @@ class PackageManagerService extends IPackageManager.Stub { mResolveActivity.processName = mAndroidApplication.processName; mResolveActivity.launchMode = ActivityInfo.LAUNCH_MULTIPLE; mResolveActivity.flags = ActivityInfo.FLAG_EXCLUDE_FROM_RECENTS; - mResolveActivity.theme = com.android.internal.R.style.Theme_Dialog_Alert; + mResolveActivity.theme = com.android.internal.R.style.Theme_Holo_Dialog_Alert; mResolveActivity.exported = true; mResolveActivity.enabled = true; mResolveInfo.activityInfo = mResolveActivity; |