Loading packages/SimAppDialog/Android.bp +2 −1 Original line number Diff line number Diff line Loading @@ -7,7 +7,8 @@ android_app { static_libs: [ "androidx.legacy_legacy-support-v4", "setup-wizard-lib", "setupcompat", "setupdesign", ], resource_dirs: ["res"], Loading packages/SimAppDialog/AndroidManifest.xml +1 −1 Original line number Diff line number Diff line Loading @@ -23,7 +23,7 @@ android:name=".InstallCarrierAppActivity" android:exported="true" android:permission="android.permission.NETWORK_SETTINGS" android:theme="@style/SuwThemeGlif.Light"> android:theme="@style/SudThemeGlif.Light"> </activity> </application> </manifest> packages/SimAppDialog/res/layout/install_carrier_app_activity.xml +9 −10 Original line number Diff line number Diff line Loading @@ -14,18 +14,17 @@ See the License for the specific language governing permissions and limitations under the License. --> <com.android.setupwizardlib.GlifLayout <com.google.android.setupdesign.GlifLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" android:id="@+id/setup_wizard_layout" android:layout_width="match_parent" android:layout_height="match_parent" android:icon="@drawable/ic_signal_cellular_alt_rounded" app:suwHeaderText="@string/install_carrier_app_title" app:suwFooter="@layout/install_carrier_app_footer"> app:sucHeaderText="@string/install_carrier_app_title"> <LinearLayout style="@style/SuwContentFrame" style="@style/SudContentFrame" android:id="@+id/content_frame" android:layout_width="match_parent" android:layout_height="wrap_content" Loading @@ -33,12 +32,12 @@ <TextView android:id="@+id/install_carrier_app_description" style="@style/SuwDescription.Glif" style="@style/SudDescription.Glif" android:text="@string/install_carrier_app_description_default" android:layout_width="match_parent" android:layout_height="wrap_content"/> <com.android.setupwizardlib.view.FillContentLayout <com.google.android.setupdesign.view.FillContentLayout android:id="@+id/illo_container" android:layout_width="match_parent" android:layout_height="wrap_content" Loading @@ -47,12 +46,12 @@ <ImageView android:src="@drawable/illo_sim_app_dialog" style="@style/SuwContentIllustration" style="@style/SudContentIllustration" android:contentDescription="@string/install_carrier_app_image_content_description" android:layout_width="match_parent" android:layout_height="match_parent"/> </com.android.setupwizardlib.view.FillContentLayout> </com.google.android.setupdesign.view.FillContentLayout> </LinearLayout> </com.android.setupwizardlib.GlifLayout> </com.google.android.setupdesign.GlifLayout> packages/SimAppDialog/res/layout/install_carrier_app_footer.xml→packages/SimAppDialog/res/values/styles.xml +26 −0 Original line number Diff line number Diff line <?xml version="1.0" encoding="utf-8"?> <!-- Copyright (C) 2018 The Android Open Source Project Copyright (C) 2020 The Android Open Source Project Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. Loading @@ -14,30 +14,13 @@ See the License for the specific language governing permissions and limitations under the License. --> <resources> <com.android.setupwizardlib.view.ButtonBarLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/footer" style="@style/SuwGlifButtonBar.Stackable" android:layout_width="match_parent" android:layout_height="wrap_content"> <style name="SetupWizardPartnerResource"> <!-- Disable to use partner overlay theme for outside setupwizard flow. --> <item name="sucUsePartnerResource">false</item> <!-- Enable heavy theme style inside setupwizard flow. --> <item name="sudUsePartnerHeavyTheme">true</item> </style> <Button android:id="@+id/skip_button" style="@style/SuwGlifButton.Secondary" android:text="@string/install_carrier_app_defer_action" android:layout_width="wrap_content" android:layout_height="wrap_content"/> <Space android:layout_width="0dp" android:layout_height="0dp" android:layout_weight="1"/> <Button android:id="@+id/download_button" style="@style/SuwGlifButton.Primary" android:text="@string/install_carrier_app_download_action" android:layout_width="wrap_content" android:layout_height="wrap_content"/> </com.android.setupwizardlib.view.ButtonBarLayout> </resources> packages/SimAppDialog/src/com/android/simappdialog/InstallCarrierAppActivity.java +39 −21 Original line number Diff line number Diff line Loading @@ -17,14 +17,17 @@ package com.android.simappdialog; import android.app.Activity; import android.content.Intent; import android.content.res.Resources; import android.os.Bundle; import android.sysprop.SetupWizardProperties; import android.text.TextUtils; import android.view.View; import android.widget.Button; import android.widget.TextView; import com.android.setupwizardlib.util.WizardManagerHelper; import com.google.android.setupcompat.template.FooterBarMixin; import com.google.android.setupcompat.template.FooterButton; import com.google.android.setupdesign.GlifLayout; import com.google.android.setupdesign.util.ThemeResolver; /** * Activity that gives a user the choice to download the SIM app or defer until a later time Loading @@ -35,7 +38,7 @@ import com.android.setupwizardlib.util.WizardManagerHelper; * Can display the carrier app name if its passed into the intent with key * {@link #BUNDLE_KEY_CARRIER_NAME} */ public class InstallCarrierAppActivity extends Activity implements View.OnClickListener { public class InstallCarrierAppActivity extends Activity { /** * Key for the carrier app name that will be displayed as the app to download. If unset, a * default description will be used Loading @@ -50,20 +53,33 @@ public class InstallCarrierAppActivity extends Activity implements View.OnClickL protected void onCreate(Bundle icicle) { // Setup theme for aosp/pixel setTheme( WizardManagerHelper.getThemeRes( SetupWizardProperties.theme().orElse(""), R.style.SuwThemeGlif_Light ) ); new ThemeResolver.Builder() .setDefaultTheme(R.style.SudThemeGlifV3_Light) .build() .resolve(SetupWizardProperties.theme().orElse(""), /* suppressDayNight= */ false)); super.onCreate(icicle); setContentView(R.layout.install_carrier_app_activity); Button notNowButton = findViewById(R.id.skip_button); notNowButton.setOnClickListener(this); GlifLayout layout = findViewById(R.id.setup_wizard_layout); FooterBarMixin mixin = layout.getMixin(FooterBarMixin.class); mixin.setSecondaryButton( new FooterButton.Builder(this) .setText(R.string.install_carrier_app_defer_action) .setListener(this::onSkipButtonClick) .setButtonType(FooterButton.ButtonType.SKIP) .setTheme(R.style.SudGlifButton_Secondary) .build()); mixin.setPrimaryButton( new FooterButton.Builder(this) .setText(R.string.install_carrier_app_download_action) .setListener(this::onDownloadButtonClick) .setButtonType(FooterButton.ButtonType.OTHER) .setTheme(R.style.SudGlifButton_Primary) .build()); Button downloadButton = findViewById(R.id.download_button); downloadButton.setOnClickListener(this); // Show/hide illo depending on whether one was provided in a resource overlay boolean showIllo = getResources().getBoolean(R.bool.show_sim_app_dialog_illo); Loading @@ -82,15 +98,17 @@ public class InstallCarrierAppActivity extends Activity implements View.OnClickL } @Override public void onClick(View v) { switch (v.getId()) { case R.id.skip_button: protected void onApplyThemeResource(Resources.Theme theme, int resid, boolean first) { theme.applyStyle(R.style.SetupWizardPartnerResource, true); super.onApplyThemeResource(theme, resid, first); } protected void onSkipButtonClick(View view) { finish(DEFER_RESULT); break; case R.id.download_button: finish(DOWNLOAD_RESULT); break; } protected void onDownloadButtonClick(View view) { finish(DOWNLOAD_RESULT); } private void finish(int resultCode) { Loading Loading
packages/SimAppDialog/Android.bp +2 −1 Original line number Diff line number Diff line Loading @@ -7,7 +7,8 @@ android_app { static_libs: [ "androidx.legacy_legacy-support-v4", "setup-wizard-lib", "setupcompat", "setupdesign", ], resource_dirs: ["res"], Loading
packages/SimAppDialog/AndroidManifest.xml +1 −1 Original line number Diff line number Diff line Loading @@ -23,7 +23,7 @@ android:name=".InstallCarrierAppActivity" android:exported="true" android:permission="android.permission.NETWORK_SETTINGS" android:theme="@style/SuwThemeGlif.Light"> android:theme="@style/SudThemeGlif.Light"> </activity> </application> </manifest>
packages/SimAppDialog/res/layout/install_carrier_app_activity.xml +9 −10 Original line number Diff line number Diff line Loading @@ -14,18 +14,17 @@ See the License for the specific language governing permissions and limitations under the License. --> <com.android.setupwizardlib.GlifLayout <com.google.android.setupdesign.GlifLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" android:id="@+id/setup_wizard_layout" android:layout_width="match_parent" android:layout_height="match_parent" android:icon="@drawable/ic_signal_cellular_alt_rounded" app:suwHeaderText="@string/install_carrier_app_title" app:suwFooter="@layout/install_carrier_app_footer"> app:sucHeaderText="@string/install_carrier_app_title"> <LinearLayout style="@style/SuwContentFrame" style="@style/SudContentFrame" android:id="@+id/content_frame" android:layout_width="match_parent" android:layout_height="wrap_content" Loading @@ -33,12 +32,12 @@ <TextView android:id="@+id/install_carrier_app_description" style="@style/SuwDescription.Glif" style="@style/SudDescription.Glif" android:text="@string/install_carrier_app_description_default" android:layout_width="match_parent" android:layout_height="wrap_content"/> <com.android.setupwizardlib.view.FillContentLayout <com.google.android.setupdesign.view.FillContentLayout android:id="@+id/illo_container" android:layout_width="match_parent" android:layout_height="wrap_content" Loading @@ -47,12 +46,12 @@ <ImageView android:src="@drawable/illo_sim_app_dialog" style="@style/SuwContentIllustration" style="@style/SudContentIllustration" android:contentDescription="@string/install_carrier_app_image_content_description" android:layout_width="match_parent" android:layout_height="match_parent"/> </com.android.setupwizardlib.view.FillContentLayout> </com.google.android.setupdesign.view.FillContentLayout> </LinearLayout> </com.android.setupwizardlib.GlifLayout> </com.google.android.setupdesign.GlifLayout>
packages/SimAppDialog/res/layout/install_carrier_app_footer.xml→packages/SimAppDialog/res/values/styles.xml +26 −0 Original line number Diff line number Diff line <?xml version="1.0" encoding="utf-8"?> <!-- Copyright (C) 2018 The Android Open Source Project Copyright (C) 2020 The Android Open Source Project Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. Loading @@ -14,30 +14,13 @@ See the License for the specific language governing permissions and limitations under the License. --> <resources> <com.android.setupwizardlib.view.ButtonBarLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/footer" style="@style/SuwGlifButtonBar.Stackable" android:layout_width="match_parent" android:layout_height="wrap_content"> <style name="SetupWizardPartnerResource"> <!-- Disable to use partner overlay theme for outside setupwizard flow. --> <item name="sucUsePartnerResource">false</item> <!-- Enable heavy theme style inside setupwizard flow. --> <item name="sudUsePartnerHeavyTheme">true</item> </style> <Button android:id="@+id/skip_button" style="@style/SuwGlifButton.Secondary" android:text="@string/install_carrier_app_defer_action" android:layout_width="wrap_content" android:layout_height="wrap_content"/> <Space android:layout_width="0dp" android:layout_height="0dp" android:layout_weight="1"/> <Button android:id="@+id/download_button" style="@style/SuwGlifButton.Primary" android:text="@string/install_carrier_app_download_action" android:layout_width="wrap_content" android:layout_height="wrap_content"/> </com.android.setupwizardlib.view.ButtonBarLayout> </resources>
packages/SimAppDialog/src/com/android/simappdialog/InstallCarrierAppActivity.java +39 −21 Original line number Diff line number Diff line Loading @@ -17,14 +17,17 @@ package com.android.simappdialog; import android.app.Activity; import android.content.Intent; import android.content.res.Resources; import android.os.Bundle; import android.sysprop.SetupWizardProperties; import android.text.TextUtils; import android.view.View; import android.widget.Button; import android.widget.TextView; import com.android.setupwizardlib.util.WizardManagerHelper; import com.google.android.setupcompat.template.FooterBarMixin; import com.google.android.setupcompat.template.FooterButton; import com.google.android.setupdesign.GlifLayout; import com.google.android.setupdesign.util.ThemeResolver; /** * Activity that gives a user the choice to download the SIM app or defer until a later time Loading @@ -35,7 +38,7 @@ import com.android.setupwizardlib.util.WizardManagerHelper; * Can display the carrier app name if its passed into the intent with key * {@link #BUNDLE_KEY_CARRIER_NAME} */ public class InstallCarrierAppActivity extends Activity implements View.OnClickListener { public class InstallCarrierAppActivity extends Activity { /** * Key for the carrier app name that will be displayed as the app to download. If unset, a * default description will be used Loading @@ -50,20 +53,33 @@ public class InstallCarrierAppActivity extends Activity implements View.OnClickL protected void onCreate(Bundle icicle) { // Setup theme for aosp/pixel setTheme( WizardManagerHelper.getThemeRes( SetupWizardProperties.theme().orElse(""), R.style.SuwThemeGlif_Light ) ); new ThemeResolver.Builder() .setDefaultTheme(R.style.SudThemeGlifV3_Light) .build() .resolve(SetupWizardProperties.theme().orElse(""), /* suppressDayNight= */ false)); super.onCreate(icicle); setContentView(R.layout.install_carrier_app_activity); Button notNowButton = findViewById(R.id.skip_button); notNowButton.setOnClickListener(this); GlifLayout layout = findViewById(R.id.setup_wizard_layout); FooterBarMixin mixin = layout.getMixin(FooterBarMixin.class); mixin.setSecondaryButton( new FooterButton.Builder(this) .setText(R.string.install_carrier_app_defer_action) .setListener(this::onSkipButtonClick) .setButtonType(FooterButton.ButtonType.SKIP) .setTheme(R.style.SudGlifButton_Secondary) .build()); mixin.setPrimaryButton( new FooterButton.Builder(this) .setText(R.string.install_carrier_app_download_action) .setListener(this::onDownloadButtonClick) .setButtonType(FooterButton.ButtonType.OTHER) .setTheme(R.style.SudGlifButton_Primary) .build()); Button downloadButton = findViewById(R.id.download_button); downloadButton.setOnClickListener(this); // Show/hide illo depending on whether one was provided in a resource overlay boolean showIllo = getResources().getBoolean(R.bool.show_sim_app_dialog_illo); Loading @@ -82,15 +98,17 @@ public class InstallCarrierAppActivity extends Activity implements View.OnClickL } @Override public void onClick(View v) { switch (v.getId()) { case R.id.skip_button: protected void onApplyThemeResource(Resources.Theme theme, int resid, boolean first) { theme.applyStyle(R.style.SetupWizardPartnerResource, true); super.onApplyThemeResource(theme, resid, first); } protected void onSkipButtonClick(View view) { finish(DEFER_RESULT); break; case R.id.download_button: finish(DOWNLOAD_RESULT); break; } protected void onDownloadButtonClick(View view) { finish(DOWNLOAD_RESULT); } private void finish(int resultCode) { Loading