The bottom list flashes because it takes some time to create a DomainAppPreference, where each perference takes around 6ms to load an icon. When there are, that say, 30 apps installed, then it will take around 180ms to be ready, which introduces the flashing issue. In order to tackle icon loading, this CL applies the icon cache mechanism to speed up the loading time. Fixes: 222981986 Test: robotest Change-Id: Ia8f7cbf5af5ea9f694c352ea40ccca47bedb175c
95 lines
3.2 KiB
Java
95 lines
3.2 KiB
Java
/*
|
|
* Copyright (C) 2018 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.settings.applications.managedomainurls;
|
|
|
|
import android.content.Context;
|
|
import android.content.pm.verify.domain.DomainVerificationManager;
|
|
import android.content.pm.verify.domain.DomainVerificationUserState;
|
|
import android.graphics.drawable.Drawable;
|
|
|
|
import androidx.preference.PreferenceViewHolder;
|
|
|
|
import com.android.settings.R;
|
|
import com.android.settings.applications.intentpicker.IntentPickerUtils;
|
|
import com.android.settingslib.applications.AppUtils;
|
|
import com.android.settingslib.applications.ApplicationsState.AppEntry;
|
|
import com.android.settingslib.utils.ThreadUtils;
|
|
import com.android.settingslib.widget.AppPreference;
|
|
|
|
public class DomainAppPreference extends AppPreference {
|
|
|
|
private Drawable mCacheIcon;
|
|
|
|
private final AppEntry mEntry;
|
|
private final DomainVerificationManager mDomainVerificationManager;
|
|
|
|
public DomainAppPreference(final Context context, AppEntry entry) {
|
|
super(context);
|
|
mDomainVerificationManager = context.getSystemService(DomainVerificationManager.class);
|
|
mEntry = entry;
|
|
mEntry.ensureLabel(getContext());
|
|
mCacheIcon = AppUtils.getIconFromCache(mEntry);
|
|
setState();
|
|
}
|
|
|
|
public void reuse() {
|
|
setState();
|
|
notifyChanged();
|
|
}
|
|
|
|
public AppEntry getEntry() {
|
|
return mEntry;
|
|
}
|
|
|
|
private void setState() {
|
|
setTitle(mEntry.label);
|
|
|
|
if (mCacheIcon != null) {
|
|
setIcon(mCacheIcon);
|
|
} else {
|
|
setIcon(R.drawable.empty_icon);
|
|
}
|
|
setSummary(getDomainsSummary(mEntry.info.packageName));
|
|
}
|
|
|
|
private CharSequence getDomainsSummary(String packageName) {
|
|
return getContext().getText(isLinkHandlingAllowed(packageName)
|
|
? R.string.app_link_open_always : R.string.app_link_open_never);
|
|
}
|
|
|
|
private boolean isLinkHandlingAllowed(String packageName) {
|
|
final DomainVerificationUserState userState =
|
|
IntentPickerUtils.getDomainVerificationUserState(mDomainVerificationManager,
|
|
packageName);
|
|
return userState == null ? false : userState.isLinkHandlingAllowed();
|
|
}
|
|
|
|
@Override
|
|
public void onBindViewHolder(PreferenceViewHolder view) {
|
|
if (mCacheIcon == null) {
|
|
ThreadUtils.postOnBackgroundThread(() -> {
|
|
final Drawable icon = AppUtils.getIcon(getContext(), mEntry);
|
|
ThreadUtils.postOnMainThread(() -> {
|
|
setIcon(icon);
|
|
mCacheIcon = icon;
|
|
});
|
|
});
|
|
}
|
|
super.onBindViewHolder(view);
|
|
}
|
|
}
|