1 /* 2 * Copyright (C) 2015 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.applications; 18 19 import static com.android.settings.widget.EntityHeaderController.ActionType; 20 21 import android.app.Activity; 22 import android.os.Bundle; 23 import android.util.IconDrawableFactory; 24 import android.util.Log; 25 26 import androidx.preference.Preference; 27 28 import com.android.settings.widget.EntityHeaderController; 29 import com.android.settingslib.applications.AppUtils; 30 31 public abstract class AppInfoWithHeader extends AppInfoBase { 32 33 private static final String TAG = "AppInfoWithHeader"; 34 35 private boolean mCreated; 36 37 @Override onActivityCreated(Bundle savedInstanceState)38 public void onActivityCreated(Bundle savedInstanceState) { 39 super.onActivityCreated(savedInstanceState); 40 if (mCreated) { 41 Log.w(TAG, "onActivityCreated: ignoring duplicate call"); 42 return; 43 } 44 mCreated = true; 45 if (mPackageInfo == null) return; 46 final Activity activity = getActivity(); 47 final Preference pref = EntityHeaderController 48 .newInstance(activity, this, null /* header */) 49 .setRecyclerView(getListView(), getSettingsLifecycle()) 50 .setIcon(IconDrawableFactory.newInstance(getContext()) 51 .getBadgedIcon(mPackageInfo.applicationInfo)) 52 .setLabel(mPackageInfo.applicationInfo.loadLabel(mPm)) 53 .setSummary(mPackageInfo) 54 .setIsInstantApp(AppUtils.isInstant(mPackageInfo.applicationInfo)) 55 .setPackageName(mPackageName) 56 .setUid(mPackageInfo.applicationInfo.uid) 57 .setHasAppInfoLink(true) 58 .setButtonActions(ActionType.ACTION_NONE, ActionType.ACTION_NONE) 59 .done(activity, getPrefContext()); 60 getPreferenceScreen().addPreference(pref); 61 } 62 } 63