Search in sources :

Example 11 with EntityHeaderController

use of com.android.settings.widget.EntityHeaderController in project android_packages_apps_Settings by LineageOS.

the class AdvancedPowerUsageDetail method initHeader.

@VisibleForTesting
void initHeader() {
    final View appSnippet = mHeaderPreference.findViewById(R.id.entity_header);
    final Activity context = getActivity();
    final Bundle bundle = getArguments();
    EntityHeaderController controller = EntityHeaderController.newInstance(context, this, appSnippet).setRecyclerView(getListView(), getLifecycle()).setButtonActions(EntityHeaderController.ActionType.ACTION_NONE, EntityHeaderController.ActionType.ACTION_NONE);
    if (mAppEntry == null) {
        controller.setLabel(bundle.getString(EXTRA_LABEL));
        final int iconId = bundle.getInt(EXTRA_ICON_ID, 0);
        if (iconId == 0) {
            controller.setIcon(context.getPackageManager().getDefaultActivityIcon());
        } else {
            controller.setIcon(context.getDrawable(bundle.getInt(EXTRA_ICON_ID)));
        }
    } else {
        mState.ensureIcon(mAppEntry);
        controller.setLabel(mAppEntry);
        controller.setIcon(mAppEntry);
        boolean isInstantApp = AppUtils.isInstant(mAppEntry.info);
        CharSequence summary = isInstantApp ? null : getString(Utils.getInstallationStatus(mAppEntry.info));
        controller.setIsInstantApp(AppUtils.isInstant(mAppEntry.info));
        controller.setSummary(summary);
    }
    controller.done(context, true);
}
Also used : EntityHeaderController(com.android.settings.widget.EntityHeaderController) Bundle(android.os.Bundle) SettingsActivity(com.android.settings.SettingsActivity) Activity(android.app.Activity) View(android.view.View) VisibleForTesting(android.support.annotation.VisibleForTesting)

Example 12 with EntityHeaderController

use of com.android.settings.widget.EntityHeaderController in project Resurrection_packages_apps_Settings by ResurrectionRemix.

the class AdvancedPowerUsageDetail method initHeader.

@VisibleForTesting
void initHeader() {
    final View appSnippet = mHeaderPreference.findViewById(R.id.entity_header);
    final Activity context = getActivity();
    final Bundle bundle = getArguments();
    EntityHeaderController controller = EntityHeaderController.newInstance(context, this, appSnippet).setRecyclerView(getListView(), getSettingsLifecycle()).setButtonActions(EntityHeaderController.ActionType.ACTION_NONE, EntityHeaderController.ActionType.ACTION_NONE);
    if (mAppEntry == null) {
        controller.setLabel(bundle.getString(EXTRA_LABEL));
        final int iconId = bundle.getInt(EXTRA_ICON_ID, 0);
        if (iconId == 0) {
            controller.setIcon(context.getPackageManager().getDefaultActivityIcon());
        } else {
            controller.setIcon(context.getDrawable(bundle.getInt(EXTRA_ICON_ID)));
        }
    } else {
        mState.ensureIcon(mAppEntry);
        controller.setLabel(mAppEntry);
        controller.setIcon(mAppEntry);
        boolean isInstantApp = AppUtils.isInstant(mAppEntry.info);
        controller.setIsInstantApp(AppUtils.isInstant(mAppEntry.info));
    }
    controller.done(context, true);
}
Also used : EntityHeaderController(com.android.settings.widget.EntityHeaderController) Bundle(android.os.Bundle) SettingsActivity(com.android.settings.SettingsActivity) Activity(android.app.Activity) View(android.view.View) VisibleForTesting(androidx.annotation.VisibleForTesting)

Example 13 with EntityHeaderController

use of com.android.settings.widget.EntityHeaderController in project Resurrection_packages_apps_Settings by ResurrectionRemix.

the class MyDeviceInfoFragment method initHeader.

private void initHeader() {
    // TODO: Migrate into its own controller.
    final LayoutPreference headerPreference = getPreferenceScreen().findPreference(KEY_MY_DEVICE_INFO_HEADER);
    final boolean shouldDisplayHeader = getContext().getResources().getBoolean(R.bool.config_show_device_header_in_device_info);
    headerPreference.setVisible(shouldDisplayHeader);
    if (!shouldDisplayHeader) {
        return;
    }
    final View headerView = headerPreference.findViewById(R.id.entity_header);
    final Activity context = getActivity();
    final Bundle bundle = getArguments();
    final EntityHeaderController controller = EntityHeaderController.newInstance(context, this, headerView).setRecyclerView(getListView(), getSettingsLifecycle()).setButtonActions(EntityHeaderController.ActionType.ACTION_NONE, EntityHeaderController.ActionType.ACTION_NONE);
    // TODO: There may be an avatar setting action we can use here.
    final int iconId = bundle.getInt("icon_id", 0);
    if (iconId == 0) {
        final UserManager userManager = (UserManager) getActivity().getSystemService(Context.USER_SERVICE);
        final UserInfo info = Utils.getExistingUser(userManager, android.os.Process.myUserHandle());
        controller.setLabel(info.name);
        controller.setIcon(com.android.settingslib.Utils.getUserIcon(getActivity(), userManager, info));
    }
    controller.done(context, true);
}
Also used : LayoutPreference(com.android.settingslib.widget.LayoutPreference) EntityHeaderController(com.android.settings.widget.EntityHeaderController) Bundle(android.os.Bundle) UserManager(android.os.UserManager) Activity(android.app.Activity) UserInfo(android.content.pm.UserInfo) View(android.view.View)

Example 14 with EntityHeaderController

use of com.android.settings.widget.EntityHeaderController in project android_packages_apps_Settings by omnirom.

the class MyDeviceInfoFragment method initHeader.

private void initHeader() {
    // TODO: Migrate into its own controller.
    final LayoutPreference headerPreference = getPreferenceScreen().findPreference(KEY_MY_DEVICE_INFO_HEADER);
    final boolean shouldDisplayHeader = getContext().getResources().getBoolean(R.bool.config_show_device_header_in_device_info);
    headerPreference.setVisible(shouldDisplayHeader);
    if (!shouldDisplayHeader) {
        return;
    }
    final View headerView = headerPreference.findViewById(R.id.entity_header);
    final Activity context = getActivity();
    final Bundle bundle = getArguments();
    final EntityHeaderController controller = EntityHeaderController.newInstance(context, this, headerView).setRecyclerView(getListView(), getSettingsLifecycle()).setButtonActions(EntityHeaderController.ActionType.ACTION_NONE, EntityHeaderController.ActionType.ACTION_NONE);
    // TODO: There may be an avatar setting action we can use here.
    final int iconId = bundle.getInt("icon_id", 0);
    if (iconId == 0) {
        final UserManager userManager = (UserManager) getActivity().getSystemService(Context.USER_SERVICE);
        final UserInfo info = Utils.getExistingUser(userManager, android.os.Process.myUserHandle());
        controller.setLabel(info.name);
        controller.setIcon(com.android.settingslib.Utils.getUserIcon(getActivity(), userManager, info));
    }
    controller.done(context, true);
}
Also used : LayoutPreference(com.android.settingslib.widget.LayoutPreference) EntityHeaderController(com.android.settings.widget.EntityHeaderController) Bundle(android.os.Bundle) UserManager(android.os.UserManager) Activity(android.app.Activity) UserInfo(android.content.pm.UserInfo) View(android.view.View)

Example 15 with EntityHeaderController

use of com.android.settings.widget.EntityHeaderController in project android_packages_apps_Settings by DirtyUnicorns.

the class MyDeviceInfoFragment method initHeader.

private void initHeader() {
    // TODO: Migrate into its own controller.
    final LayoutPreference headerPreference = getPreferenceScreen().findPreference(KEY_MY_DEVICE_INFO_HEADER);
    final boolean shouldDisplayHeader = getContext().getResources().getBoolean(R.bool.config_show_device_header_in_device_info);
    headerPreference.setVisible(shouldDisplayHeader);
    if (!shouldDisplayHeader) {
        return;
    }
    final View headerView = headerPreference.findViewById(R.id.entity_header);
    final Activity context = getActivity();
    final Bundle bundle = getArguments();
    final EntityHeaderController controller = EntityHeaderController.newInstance(context, this, headerView).setRecyclerView(getListView(), getSettingsLifecycle()).setButtonActions(EntityHeaderController.ActionType.ACTION_NONE, EntityHeaderController.ActionType.ACTION_NONE);
    // TODO: There may be an avatar setting action we can use here.
    final int iconId = bundle.getInt("icon_id", 0);
    if (iconId == 0) {
        final UserManager userManager = (UserManager) getActivity().getSystemService(Context.USER_SERVICE);
        final UserInfo info = Utils.getExistingUser(userManager, android.os.Process.myUserHandle());
        controller.setLabel(info.name);
        controller.setIcon(com.android.settingslib.Utils.getUserIcon(getActivity(), userManager, info));
    }
    controller.done(context, true);
}
Also used : LayoutPreference(com.android.settingslib.widget.LayoutPreference) EntityHeaderController(com.android.settings.widget.EntityHeaderController) Bundle(android.os.Bundle) UserManager(android.os.UserManager) Activity(android.app.Activity) UserInfo(android.content.pm.UserInfo) View(android.view.View)

Aggregations

Activity (android.app.Activity)31 Bundle (android.os.Bundle)31 View (android.view.View)31 EntityHeaderController (com.android.settings.widget.EntityHeaderController)31 SettingsActivity (com.android.settings.SettingsActivity)16 UserInfo (android.content.pm.UserInfo)15 UserManager (android.os.UserManager)15 LayoutPreference (com.android.settingslib.widget.LayoutPreference)15 VisibleForTesting (androidx.annotation.VisibleForTesting)14 VisibleForTesting (android.support.annotation.VisibleForTesting)2 ComponentName (android.content.ComponentName)1 Intent (android.content.Intent)1 TextView (android.widget.TextView)1 RecyclerView (androidx.recyclerview.widget.RecyclerView)1