/* * Copyright (C) 2019 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.systemui.controls.management import android.app.ActivityOptions import android.app.Dialog import android.content.ComponentName import android.content.Context import android.content.Intent import android.os.Bundle import android.util.Log import android.view.LayoutInflater import android.view.View import android.view.ViewGroup import android.view.ViewStub import android.widget.Button import android.widget.TextView import android.window.OnBackInvokedCallback import android.window.OnBackInvokedDispatcher import androidx.activity.ComponentActivity import androidx.annotation.VisibleForTesting import androidx.recyclerview.widget.LinearLayoutManager import androidx.recyclerview.widget.RecyclerView import com.android.systemui.res.R import com.android.systemui.controls.ControlsServiceInfo import com.android.systemui.controls.controller.ControlsController import com.android.systemui.controls.panels.AuthorizedPanelsRepository import com.android.systemui.controls.ui.ControlsActivity import com.android.systemui.controls.ui.SelectedItem import com.android.systemui.dagger.qualifiers.Background import com.android.systemui.dagger.qualifiers.Main import com.android.systemui.settings.UserTracker import java.util.concurrent.Executor import javax.inject.Inject /** * Activity to select an application to favorite the [Control] provided by them. */ open class ControlsProviderSelectorActivity @Inject constructor( @Main private val executor: Executor, @Background private val backExecutor: Executor, private val listingController: ControlsListingController, private val controlsController: ControlsController, private val userTracker: UserTracker, private val authorizedPanelsRepository: AuthorizedPanelsRepository, private val panelConfirmationDialogFactory: PanelConfirmationDialogFactory ) : ComponentActivity() { companion object { private const val DEBUG = false private const val TAG = "ControlsProviderSelectorActivity" const val BACK_SHOULD_EXIT = "back_should_exit" } private var backShouldExit = false private lateinit var recyclerView: RecyclerView private val userTrackerCallback: UserTracker.Callback = object : UserTracker.Callback { private val startingUser = listingController.currentUserId override fun onUserChanged(newUser: Int, userContext: Context) { if (newUser != startingUser) { userTracker.removeCallback(this) finish() } } } private var dialog: Dialog? = null private val mOnBackInvokedCallback = OnBackInvokedCallback { if (DEBUG) { Log.d(TAG, "Predictive Back dispatcher called mOnBackInvokedCallback") } onBackPressed() } override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContentView(R.layout.controls_management) lifecycle.addObserver( ControlsAnimations.observerForAnimations( requireViewById(R.id.controls_management_root), window, intent ) ) requireViewById(R.id.stub).apply { layoutResource = R.layout.controls_management_apps inflate() } recyclerView = requireViewById(R.id.list) recyclerView.layoutManager = LinearLayoutManager(applicationContext) requireViewById(R.id.title).apply { text = resources.getText(R.string.controls_providers_title) } requireViewById