Maurice Lam | ecd2b7b | 2014-12-01 10:41:49 -0800 | [diff] [blame] | 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 | |
| 17 | package com.android.settings; |
| 18 | |
Maurice Lam | ecd2b7b | 2014-12-01 10:41:49 -0800 | [diff] [blame] | 19 | import android.content.Intent; |
| 20 | import android.content.res.Resources; |
Maurice Lam | ecd2b7b | 2014-12-01 10:41:49 -0800 | [diff] [blame] | 21 | import android.os.Bundle; |
Maurice Lam | ecd2b7b | 2014-12-01 10:41:49 -0800 | [diff] [blame] | 22 | import android.view.View; |
Maurice Lam | 190ec1c | 2016-04-22 16:41:18 -0700 | [diff] [blame] | 23 | import android.widget.Button; |
Maurice Lam | 25e3081 | 2015-06-04 17:17:07 -0700 | [diff] [blame] | 24 | |
| 25 | import com.android.settings.notification.RedactionInterstitial; |
Maurice Lam | ecd2b7b | 2014-12-01 10:41:49 -0800 | [diff] [blame] | 26 | |
| 27 | /** |
| 28 | * Setup Wizard's version of RedactionInterstitial screen. It inherits the logic and basic structure |
| 29 | * from RedactionInterstitial class, and should remain similar to that behaviorally. This class |
| 30 | * should only overload base methods for minor theme and behavior differences specific to Setup |
| 31 | * Wizard. Other changes should be done to RedactionInterstitial class instead and let this class |
| 32 | * inherit those changes. |
| 33 | */ |
Maurice Lam | 83301b5 | 2015-04-18 20:11:59 -0700 | [diff] [blame] | 34 | public class SetupRedactionInterstitial extends RedactionInterstitial { |
Maurice Lam | ecd2b7b | 2014-12-01 10:41:49 -0800 | [diff] [blame] | 35 | |
Maurice Lam | ecd2b7b | 2014-12-01 10:41:49 -0800 | [diff] [blame] | 36 | @Override |
| 37 | public Intent getIntent() { |
| 38 | Intent modIntent = new Intent(super.getIntent()); |
| 39 | modIntent.putExtra(EXTRA_SHOW_FRAGMENT, |
Udam Saini | dd05ab7 | 2016-03-21 17:35:08 -0700 | [diff] [blame] | 40 | SetupRedactionInterstitialFragment.class.getName()); |
Maurice Lam | ecd2b7b | 2014-12-01 10:41:49 -0800 | [diff] [blame] | 41 | return modIntent; |
| 42 | } |
| 43 | |
| 44 | @Override |
| 45 | protected boolean isValidFragment(String fragmentName) { |
Udam Saini | dd05ab7 | 2016-03-21 17:35:08 -0700 | [diff] [blame] | 46 | return SetupRedactionInterstitialFragment.class.getName().equals(fragmentName); |
Maurice Lam | ecd2b7b | 2014-12-01 10:41:49 -0800 | [diff] [blame] | 47 | } |
| 48 | |
| 49 | @Override |
| 50 | protected void onApplyThemeResource(Resources.Theme theme, int resid, boolean first) { |
Maurice Lam | 598be1e | 2015-04-08 21:13:42 -0700 | [diff] [blame] | 51 | resid = SetupWizardUtils.getTheme(getIntent()); |
Maurice Lam | ecd2b7b | 2014-12-01 10:41:49 -0800 | [diff] [blame] | 52 | super.onApplyThemeResource(theme, resid, first); |
| 53 | } |
| 54 | |
Maurice Lam | d189ac5 | 2016-06-15 13:39:34 -0700 | [diff] [blame^] | 55 | public static class SetupRedactionInterstitialFragment extends RedactionInterstitialFragment { |
Udam Saini | 71fde52 | 2016-03-30 13:38:05 -0700 | [diff] [blame] | 56 | |
Maurice Lam | d189ac5 | 2016-06-15 13:39:34 -0700 | [diff] [blame^] | 57 | // Setup wizard specific UI customizations can be done here |
Maurice Lam | ecd2b7b | 2014-12-01 10:41:49 -0800 | [diff] [blame] | 58 | } |
| 59 | } |