summaryrefslogtreecommitdiffstats
path: root/src/com/android/settings/notification
diff options
context:
space:
mode:
authorMaurice Lam <yukl@google.com>2015-06-04 17:17:07 -0700
committerMaurice Lam <yukl@google.com>2015-06-04 17:17:07 -0700
commit25e30815752ab961c72617e8a84bd964449f874b (patch)
tree60c434420b88c239e7136bdfd91c43da181e4386 /src/com/android/settings/notification
parentfb619a8726cf912e9c9156d8ca06760b641c5171 (diff)
downloadpackages_apps_Settings-25e30815752ab961c72617e8a84bd964449f874b.zip
packages_apps_Settings-25e30815752ab961c72617e8a84bd964449f874b.tar.gz
packages_apps_Settings-25e30815752ab961c72617e8a84bd964449f874b.tar.bz2
Update Setup Wizard redaction interstitial styles
Adhere to the setup wizard design guidelines for the redaction interstitial shown during setup wizard. Bug: 21561511 Change-Id: Id6c4f0d4b0075b0cbbbb4f8ab77db6f00ea72b70
Diffstat (limited to 'src/com/android/settings/notification')
-rw-r--r--src/com/android/settings/notification/RedactionInterstitial.java8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/com/android/settings/notification/RedactionInterstitial.java b/src/com/android/settings/notification/RedactionInterstitial.java
index a6df6ec..16ee3b5 100644
--- a/src/com/android/settings/notification/RedactionInterstitial.java
+++ b/src/com/android/settings/notification/RedactionInterstitial.java
@@ -67,7 +67,12 @@ public class RedactionInterstitial extends SettingsActivity {
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
- View view = inflater.inflate(R.layout.redaction_interstitial, container, false);
+ return inflater.inflate(R.layout.redaction_interstitial, container, false);
+ }
+
+ @Override
+ public void onViewCreated(View view, Bundle savedInstanceState) {
+ super.onViewCreated(view, savedInstanceState);
mShowAllButton = (RadioButton) view.findViewById(R.id.show_all);
mRedactSensitiveButton = (RadioButton) view.findViewById(R.id.redact_sensitive);
mHideAllButton = (RadioButton) view.findViewById(R.id.hide_all);
@@ -75,7 +80,6 @@ public class RedactionInterstitial extends SettingsActivity {
mShowAllButton.setOnClickListener(this);
mRedactSensitiveButton.setOnClickListener(this);
mHideAllButton.setOnClickListener(this);
- return view;
}
@Override