[FRP] Theming for Pattern and Password screens
Basic theming for pattern and password screens. Create subclasses for
ChooseLockPassword and ChooseLockPattern, and copied their XML
layouts.
This CL mainly uses the buttons in the original screens as-is, with a
follow-up CL coming to change to use the nav bar buttons.
Bug: 18482708
Change-Id: I81751f781de633aff23fc68657589360007c235a
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 5c889f4..82b135f 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -1159,8 +1159,17 @@
android:excludeFromRecents="true"
/>
+ <activity android:name="SetupChooseLockPattern"
+ android:exported="false"
+ android:theme="@style/SetupWizardDisableAppStartingTheme" />
+
<activity android:name="ChooseLockPattern" android:exported="false"/>
+ <activity android:name="SetupChooseLockPassword"
+ android:exported="false"
+ android:theme="@style/SetupWizardDisableAppStartingTheme"
+ android:windowSoftInputMode="stateVisible|adjustResize" />
+
<activity android:name="ChooseLockPassword" android:exported="false"
android:windowSoftInputMode="stateVisible|adjustResize"/>