summaryrefslogtreecommitdiffstats
path: root/src/com/android/settings/notification
diff options
context:
space:
mode:
authorMaurice Lam <yukl@google.com>2015-06-05 19:13:17 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2015-06-05 19:13:18 +0000
commit26a42d1099fece0bc388db2b923ad5c5411bd4f3 (patch)
tree3b48aa41b568782f51cb551de06a66579a0cde60 /src/com/android/settings/notification
parent5ae7cf3a144d1a55fcd40e84567408caf1ced9f4 (diff)
parent25e30815752ab961c72617e8a84bd964449f874b (diff)
downloadpackages_apps_Settings-26a42d1099fece0bc388db2b923ad5c5411bd4f3.zip
packages_apps_Settings-26a42d1099fece0bc388db2b923ad5c5411bd4f3.tar.gz
packages_apps_Settings-26a42d1099fece0bc388db2b923ad5c5411bd4f3.tar.bz2
Merge "Update Setup Wizard redaction interstitial styles" into mnc-dev
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