- Settings take much time to get the info of app launcher entry. User
may not see the panlingual UI at first after boot to home.
- Does small refactor to somewhere.
Bug: 218416193
Test: local
Test: atest pass
Change-Id: Ibfb91f0bb8d8ff54cadd041250b3cff252dbe591
(cherry picked from commit cae20ce2f7
)
Merged-In: Ibfb91f0bb8d8ff54cadd041250b3cff252dbe591
83 lines
3.1 KiB
Java
83 lines
3.1 KiB
Java
/*
|
|
* 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.settings.applications;
|
|
|
|
import android.annotation.NonNull;
|
|
import android.app.ActivityManager;
|
|
import android.content.Context;
|
|
import android.content.Intent;
|
|
import android.content.pm.PackageInfo;
|
|
import android.content.pm.PackageManager;
|
|
import android.content.pm.ResolveInfo;
|
|
import android.util.Log;
|
|
|
|
import com.android.settings.R;
|
|
|
|
import java.util.List;
|
|
|
|
/** This class provides methods that help dealing with per app locale. */
|
|
public class AppLocaleUtil {
|
|
private static final String TAG = AppLocaleUtil.class.getSimpleName();
|
|
|
|
public static final Intent LAUNCHER_ENTRY_INTENT =
|
|
new Intent(Intent.ACTION_MAIN).addCategory(Intent.CATEGORY_LAUNCHER);
|
|
/**
|
|
* Decides the UI display of per app locale.
|
|
*/
|
|
public static boolean canDisplayLocaleUi(
|
|
@NonNull Context context,
|
|
@NonNull String packageName,
|
|
@NonNull List<ResolveInfo> infos) {
|
|
return !isDisallowedPackage(context, packageName)
|
|
&& !isSignedWithPlatformKey(context, packageName)
|
|
&& hasLauncherEntry(packageName, infos);
|
|
}
|
|
|
|
private static boolean isDisallowedPackage(Context context, String packageName) {
|
|
final String[] disallowedPackages = context.getResources().getStringArray(
|
|
R.array.config_disallowed_app_localeChange_packages);
|
|
for (String disallowedPackage : disallowedPackages) {
|
|
if (packageName.equals(disallowedPackage)) {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
private static boolean isSignedWithPlatformKey(Context context, String packageName) {
|
|
PackageInfo packageInfo = null;
|
|
PackageManager packageManager = context.getPackageManager();
|
|
ActivityManager activityManager = context.getSystemService(ActivityManager.class);
|
|
try {
|
|
packageInfo = packageManager.getPackageInfoAsUser(
|
|
packageName, /* flags= */ 0,
|
|
activityManager.getCurrentUser());
|
|
} catch (PackageManager.NameNotFoundException ex) {
|
|
Log.e(TAG, "package not found: " + packageName);
|
|
}
|
|
if (packageInfo == null) {
|
|
return false;
|
|
}
|
|
return packageInfo.applicationInfo.isSignedWithPlatformKey();
|
|
}
|
|
|
|
private static boolean hasLauncherEntry(String packageName, List<ResolveInfo> infos) {
|
|
return infos.stream()
|
|
.anyMatch(info -> info.activityInfo.packageName.equals(packageName));
|
|
}
|
|
}
|