/src/com/android/settings/SetupChooseLockPassword.java

http://github.com/CyanogenMod/android_packages_apps_Settings · Java · 93 lines · 59 code · 12 blank · 22 comment · 0 complexity · 4b834e04eea48a8e4973b1f610190b27 MD5 · raw file

  1. /*
  2. * Copyright (C) 2014 The Android Open Source Project
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package com.android.settings;
  17. import android.app.Fragment;
  18. import android.content.Context;
  19. import android.content.Intent;
  20. import android.content.res.Resources;
  21. import android.os.Bundle;
  22. import android.widget.LinearLayout;
  23. /**
  24. * Setup Wizard's version of ChooseLockPassword screen. It inherits the logic and basic structure
  25. * from ChooseLockPassword class, and should remain similar to that behaviorally. This class should
  26. * only overload base methods for minor theme and behavior differences specific to Setup Wizard.
  27. * Other changes should be done to ChooseLockPassword class instead and let this class inherit
  28. * those changes.
  29. */
  30. public class SetupChooseLockPassword extends ChooseLockPassword {
  31. public static Intent createIntent(Context context, int quality,
  32. int minLength, final int maxLength, boolean requirePasswordToDecrypt,
  33. boolean confirmCredentials) {
  34. Intent intent = ChooseLockPassword.createIntent(context, quality, minLength,
  35. maxLength, requirePasswordToDecrypt, confirmCredentials);
  36. intent.setClass(context, SetupChooseLockPassword.class);
  37. intent.putExtra(EXTRA_PREFS_SHOW_BUTTON_BAR, false);
  38. return intent;
  39. }
  40. public static Intent createIntent(Context context, int quality,
  41. int minLength, final int maxLength, boolean requirePasswordToDecrypt, String password) {
  42. Intent intent = ChooseLockPassword.createIntent(context, quality, minLength, maxLength,
  43. requirePasswordToDecrypt, password);
  44. intent.setClass(context, SetupChooseLockPassword.class);
  45. intent.putExtra(EXTRA_PREFS_SHOW_BUTTON_BAR, false);
  46. return intent;
  47. }
  48. public static Intent createIntent(Context context, int quality,
  49. int minLength, final int maxLength, boolean requirePasswordToDecrypt, long challenge) {
  50. Intent intent = ChooseLockPassword.createIntent(context, quality, minLength, maxLength,
  51. requirePasswordToDecrypt, challenge);
  52. intent.setClass(context, SetupChooseLockPassword.class);
  53. intent.putExtra(EXTRA_PREFS_SHOW_BUTTON_BAR, false);
  54. return intent;
  55. }
  56. @Override
  57. protected boolean isValidFragment(String fragmentName) {
  58. return SetupChooseLockPasswordFragment.class.getName().equals(fragmentName);
  59. }
  60. @Override
  61. /* package */ Class<? extends Fragment> getFragmentClass() {
  62. return SetupChooseLockPasswordFragment.class;
  63. }
  64. @Override
  65. protected void onCreate(Bundle savedInstance) {
  66. super.onCreate(savedInstance);
  67. LinearLayout layout = (LinearLayout) findViewById(R.id.content_parent);
  68. layout.setFitsSystemWindows(false);
  69. }
  70. @Override
  71. protected void onApplyThemeResource(Resources.Theme theme, int resid, boolean first) {
  72. resid = SetupWizardUtils.getTheme(getIntent());
  73. super.onApplyThemeResource(theme, resid, first);
  74. }
  75. public static class SetupChooseLockPasswordFragment extends ChooseLockPasswordFragment {
  76. @Override
  77. protected Intent getRedactionInterstitialIntent(Context context) {
  78. return null;
  79. }
  80. }
  81. }