summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPaul Lawrence <paullawrence@google.com>2014-07-11 07:34:44 -0700
committerPaul Lawrence <paullawrence@google.com>2014-07-16 08:07:35 -0700
commit89c7570dd42ce6945ce8e092892a22ec79c30c82 (patch)
tree14e07f7f9782c4a5a4e3c845358450efe33178c1 /src
parent6f877156e0345dc6a70b513e38cd5a32a97783b9 (diff)
downloadpackages_apps_Settings-89c7570dd42ce6945ce8e092892a22ec79c30c82.tar.gz
packages_apps_Settings-89c7570dd42ce6945ce8e092892a22ec79c30c82.tar.bz2
packages_apps_Settings-89c7570dd42ce6945ce8e092892a22ec79c30c82.zip
Make crypt dialogs material
White on black material theme Center text Remove fade to black task Fix emergency call button Note - does not implement all requirements of frames in the defect. More to follow. Bug: 15328359 Change-Id: I878e59dccffff366ba2484bb77482e168cbd2b81
Diffstat (limited to 'src')
-rw-r--r--src/com/android/settings/CryptKeeper.java31
1 files changed, 3 insertions, 28 deletions
diff --git a/src/com/android/settings/CryptKeeper.java b/src/com/android/settings/CryptKeeper.java
index 7f159ab34..0ddeb50b7 100644
--- a/src/com/android/settings/CryptKeeper.java
+++ b/src/com/android/settings/CryptKeeper.java
@@ -148,22 +148,6 @@ public class CryptKeeper extends Activity implements TextView.OnEditorActionList
}
}
- /**
- * Activity used to fade the screen to black after the password is entered.
- */
- public static class FadeToBlack extends Activity {
- @Override
- public void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.crypt_keeper_blank);
- }
- /** Ignore all back events. */
- @Override
- public void onBackPressed() {
- return;
- }
- }
-
private class DecryptTask extends AsyncTask<String, Void, Integer> {
@Override
protected Integer doInBackground(String... params) {
@@ -179,13 +163,8 @@ public class CryptKeeper extends Activity implements TextView.OnEditorActionList
@Override
protected void onPostExecute(Integer failedAttempts) {
if (failedAttempts == 0) {
- // The password was entered successfully. Start the Blank activity
- // so this activity animates to black before the devices starts. Note
- // It has 1 second to complete the animation or it will be frozen
- // until the boot animation comes back up.
- Intent intent = new Intent(CryptKeeper.this, FadeToBlack.class);
- finish();
- startActivity(intent);
+ // The password was entered successfully. Simply do nothing
+ // and wait for the service restart to switch to surfacefligner
} else if (failedAttempts == MAX_FAILED_ATTEMPTS) {
// Factory reset the device.
sendBroadcast(new Intent("android.intent.action.MASTER_CLEAR"));
@@ -862,14 +841,10 @@ public class CryptKeeper extends Activity implements TextView.OnEditorActionList
int textId;
if (getPhoneManager().isInAPhoneCall()) {
- // Show "return to call" text and show phone icon
+ // Show "return to call"
textId = R.string.cryptkeeper_return_to_call;
- final int phoneCallIcon = R.drawable.stat_sys_phone_call;
- emergencyCall.setCompoundDrawablesWithIntrinsicBounds(phoneCallIcon, 0, 0, 0);
} else {
textId = R.string.cryptkeeper_emergency_call;
- final int emergencyIcon = R.drawable.ic_emergency;
- emergencyCall.setCompoundDrawablesWithIntrinsicBounds(emergencyIcon, 0, 0, 0);
}
emergencyCall.setText(textId);
}