166 lines
6.2 KiB
Java
166 lines
6.2 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.localepicker;
|
|
|
|
import android.app.FragmentTransaction;
|
|
import android.app.LocaleManager;
|
|
import android.content.pm.PackageManager;
|
|
import android.net.Uri;
|
|
import android.os.Bundle;
|
|
import android.os.LocaleList;
|
|
import android.text.TextUtils;
|
|
import android.util.Log;
|
|
import android.view.MenuItem;
|
|
import android.view.View;
|
|
import android.widget.FrameLayout;
|
|
import android.widget.ListView;
|
|
|
|
import com.android.internal.app.LocalePickerWithRegion;
|
|
import com.android.internal.app.LocaleStore;
|
|
import com.android.settings.R;
|
|
import com.android.settings.applications.AppLocaleUtil;
|
|
import com.android.settings.applications.appinfo.AppLocaleDetails;
|
|
import com.android.settings.core.SettingsBaseActivity;
|
|
|
|
public class AppLocalePickerActivity extends SettingsBaseActivity
|
|
implements LocalePickerWithRegion.LocaleSelectedListener, MenuItem.OnActionExpandListener {
|
|
private static final String TAG = AppLocalePickerActivity.class.getSimpleName();
|
|
|
|
private String mPackageName;
|
|
private LocalePickerWithRegion mLocalePickerWithRegion;
|
|
private AppLocaleDetails mAppLocaleDetails;
|
|
private View mAppLocaleDetailContainer;
|
|
|
|
@Override
|
|
public void onCreate(Bundle savedInstanceState) {
|
|
super.onCreate(savedInstanceState);
|
|
Uri data = getIntent().getData();
|
|
if (data == null) {
|
|
Log.d(TAG, "There is no uri data.");
|
|
finish();
|
|
return;
|
|
}
|
|
mPackageName = data.getSchemeSpecificPart();
|
|
if (TextUtils.isEmpty(mPackageName)) {
|
|
Log.d(TAG, "There is no package name.");
|
|
finish();
|
|
return;
|
|
}
|
|
|
|
if (!canDisplayLocaleUi()) {
|
|
Log.w(TAG, "Not allow to display Locale Settings UI.");
|
|
finish();
|
|
return;
|
|
}
|
|
|
|
setTitle(R.string.app_locale_picker_title);
|
|
getActionBar().setDisplayHomeAsUpEnabled(true);
|
|
|
|
mLocalePickerWithRegion = LocalePickerWithRegion.createLanguagePicker(
|
|
this,
|
|
this,
|
|
false /* translate only */,
|
|
mPackageName,
|
|
this);
|
|
mAppLocaleDetails = AppLocaleDetails.newInstance(mPackageName, getUserId());
|
|
mAppLocaleDetailContainer = launchAppLocaleDetailsPage();
|
|
// Launch Locale picker part.
|
|
launchLocalePickerPage();
|
|
}
|
|
|
|
@Override
|
|
public boolean onOptionsItemSelected(MenuItem item) {
|
|
if (item.getItemId() == android.R.id.home) {
|
|
super.onBackPressed();
|
|
return true;
|
|
}
|
|
return super.onOptionsItemSelected(item);
|
|
}
|
|
|
|
@Override
|
|
public void onLocaleSelected(LocaleStore.LocaleInfo localeInfo) {
|
|
if (localeInfo == null || localeInfo.getLocale() == null || localeInfo.isSystemLocale()) {
|
|
setAppDefaultLocale("");
|
|
} else {
|
|
setAppDefaultLocale(localeInfo.getLocale().toLanguageTag());
|
|
}
|
|
finish();
|
|
}
|
|
|
|
@Override
|
|
public boolean onMenuItemActionCollapse(MenuItem item) {
|
|
mAppBarLayout.setExpanded(false /*expanded*/, false /*animate*/);
|
|
return true;
|
|
}
|
|
|
|
@Override
|
|
public boolean onMenuItemActionExpand(MenuItem item) {
|
|
mAppBarLayout.setExpanded(false /*expanded*/, false /*animate*/);
|
|
return true;
|
|
}
|
|
|
|
/** Sets the app's locale to the supplied language tag */
|
|
private void setAppDefaultLocale(String languageTag) {
|
|
Log.d(TAG, "setAppDefaultLocale: " + languageTag);
|
|
LocaleManager localeManager = getSystemService(LocaleManager.class);
|
|
if (localeManager == null) {
|
|
Log.w(TAG, "LocaleManager is null, cannot set default app locale");
|
|
return;
|
|
}
|
|
localeManager.setApplicationLocales(mPackageName, LocaleList.forLanguageTags(languageTag));
|
|
}
|
|
|
|
private View launchAppLocaleDetailsPage() {
|
|
FrameLayout appLocaleDetailsContainer = new FrameLayout(this);
|
|
appLocaleDetailsContainer.setId(R.id.layout_app_locale_details);
|
|
getSupportFragmentManager()
|
|
.beginTransaction()
|
|
.replace(R.id.layout_app_locale_details, mAppLocaleDetails)
|
|
.commit();
|
|
return appLocaleDetailsContainer;
|
|
}
|
|
|
|
private void launchLocalePickerPage() {
|
|
// LocalePickerWithRegion use android.app.ListFragment. Thus, it can not use
|
|
// getSupportFragmentManager() to add this into container.
|
|
android.app.FragmentManager fragmentManager = getFragmentManager();
|
|
fragmentManager.registerFragmentLifecycleCallbacks(
|
|
new android.app.FragmentManager.FragmentLifecycleCallbacks() {
|
|
@Override
|
|
public void onFragmentViewCreated(
|
|
android.app.FragmentManager fm,
|
|
android.app.Fragment f, View v, Bundle s) {
|
|
super.onFragmentViewCreated(fm, f, v, s);
|
|
ListView listView = (ListView) v.findViewById(android.R.id.list);
|
|
if (listView != null) {
|
|
listView.addHeaderView(mAppLocaleDetailContainer);
|
|
}
|
|
}
|
|
}, true);
|
|
fragmentManager.beginTransaction()
|
|
.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_OPEN)
|
|
.replace(R.id.content_frame, mLocalePickerWithRegion)
|
|
.commit();
|
|
}
|
|
|
|
private boolean canDisplayLocaleUi() {
|
|
return AppLocaleUtil.canDisplayLocaleUi(this, mPackageName,
|
|
getPackageManager().queryIntentActivities(AppLocaleUtil.LAUNCHER_ENTRY_INTENT,
|
|
PackageManager.GET_META_DATA));
|
|
}
|
|
}
|