summaryrefslogtreecommitdiff
path: root/adservices/apk/java/com/android/adservices/ui/settings/activities/AdServicesSettingsMainActivity.java
diff options
context:
space:
mode:
Diffstat (limited to 'adservices/apk/java/com/android/adservices/ui/settings/activities/AdServicesSettingsMainActivity.java')
-rw-r--r--adservices/apk/java/com/android/adservices/ui/settings/activities/AdServicesSettingsMainActivity.java65
1 files changed, 65 insertions, 0 deletions
diff --git a/adservices/apk/java/com/android/adservices/ui/settings/activities/AdServicesSettingsMainActivity.java b/adservices/apk/java/com/android/adservices/ui/settings/activities/AdServicesSettingsMainActivity.java
new file mode 100644
index 0000000000..a2aa89bd60
--- /dev/null
+++ b/adservices/apk/java/com/android/adservices/ui/settings/activities/AdServicesSettingsMainActivity.java
@@ -0,0 +1,65 @@
+/*
+ * Copyright (C) 2022 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.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package com.android.adservices.ui.settings.activities;
+
+import android.os.Bundle;
+
+import androidx.lifecycle.ViewModelProvider;
+
+import com.android.adservices.api.R;
+import com.android.adservices.ui.settings.delegates.MainActionDelegate;
+import com.android.adservices.ui.settings.fragments.AdServicesSettingsMainFragment;
+import com.android.adservices.ui.settings.viewmodels.MainViewModel;
+
+/**
+ * Android application activity for controlling settings related to PP (Privacy Preserving) APIs.
+ */
+public class AdServicesSettingsMainActivity extends AdServicesBaseActivity {
+ public static final String FROM_NOTIFICATION_KEY = "FROM_NOTIFICATION";
+ private MainActionDelegate mActionDelegate;
+
+ /** @return the action delegate for the activity. */
+ public MainActionDelegate getActionDelegate() {
+ return mActionDelegate;
+ }
+
+ @Override
+ public void onBackPressed() {
+ // if navigated here from notification, then back button should not go back to notification.
+ if (getIntent().getBooleanExtra(FROM_NOTIFICATION_KEY, false)) {
+ moveTaskToBack(true);
+ } else {
+ super.onBackPressed();
+ }
+ }
+
+ @Override
+ protected void onCreate(Bundle savedInstanceState) {
+ super.onCreate(savedInstanceState);
+ setContentView(R.layout.adservices_settings_main_activity);
+ getSupportFragmentManager()
+ .beginTransaction()
+ .replace(R.id.fragment_container_view, AdServicesSettingsMainFragment.class, null)
+ .setReorderingAllowed(true)
+ .commit();
+ initActionDelegate();
+ }
+
+ private void initActionDelegate() {
+ mActionDelegate =
+ new MainActionDelegate(this, new ViewModelProvider(this).get(MainViewModel.class));
+ }
+}