diff options
-rw-r--r-- | AndroidManifest.xml | 2 | ||||
-rw-r--r-- | src/com/android/settings/CryptKeeper.java | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml index e8ddf2d..fea3b01 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -1351,7 +1351,7 @@ </intent-filter> </activity> - <activity android:name=".CryptKeeper$Blank" + <activity android:name=".CryptKeeper$FadeToBlack" android:immersive="true" android:launchMode="singleTop" android:theme="@style/CryptKeeperBlankTheme" diff --git a/src/com/android/settings/CryptKeeper.java b/src/com/android/settings/CryptKeeper.java index d5f13d9..55435a0 100644 --- a/src/com/android/settings/CryptKeeper.java +++ b/src/com/android/settings/CryptKeeper.java @@ -109,7 +109,7 @@ public class CryptKeeper extends Activity implements TextView.OnEditorActionList /** * Activity used to fade the screen to black after the password is entered. */ - private static class FadeToBlack extends Activity { + public static class FadeToBlack extends Activity { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); |