2014-03-25 00:25:32 +00:00
|
|
|
/*
|
|
|
|
* This is the source code of Telegram for Android v. 1.3.x.
|
|
|
|
* It is licensed under GNU GPL v. 2 or later.
|
|
|
|
* You should have received a copy of the license in this archive (see LICENSE).
|
|
|
|
*
|
|
|
|
* Copyright Nikolai Kudashov, 2013-2014.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package org.telegram.ui;
|
|
|
|
|
2014-04-02 17:36:57 +00:00
|
|
|
import android.app.AlertDialog;
|
2014-03-25 00:25:32 +00:00
|
|
|
import android.content.Context;
|
2014-04-02 17:36:57 +00:00
|
|
|
import android.content.DialogInterface;
|
2014-11-13 20:10:14 +00:00
|
|
|
import android.view.Gravity;
|
2014-03-25 00:25:32 +00:00
|
|
|
import android.view.LayoutInflater;
|
2014-10-07 20:14:27 +00:00
|
|
|
import android.view.MotionEvent;
|
2014-03-25 00:25:32 +00:00
|
|
|
import android.view.View;
|
|
|
|
import android.view.ViewGroup;
|
2014-05-24 22:47:05 +00:00
|
|
|
import android.widget.AbsListView;
|
2014-03-25 00:25:32 +00:00
|
|
|
import android.widget.AdapterView;
|
2014-06-03 23:31:48 +00:00
|
|
|
import android.widget.EditText;
|
2014-11-13 20:10:14 +00:00
|
|
|
import android.widget.FrameLayout;
|
2014-11-17 02:44:57 +00:00
|
|
|
import android.widget.LinearLayout;
|
2014-03-25 00:25:32 +00:00
|
|
|
import android.widget.ListView;
|
|
|
|
import android.widget.TextView;
|
|
|
|
|
2014-07-02 22:39:05 +00:00
|
|
|
import org.telegram.android.AndroidUtilities;
|
2014-03-25 00:25:32 +00:00
|
|
|
import org.telegram.messenger.FileLog;
|
2014-07-02 22:39:05 +00:00
|
|
|
import org.telegram.android.LocaleController;
|
2014-03-25 00:25:32 +00:00
|
|
|
import org.telegram.messenger.R;
|
|
|
|
import org.telegram.messenger.Utilities;
|
2014-06-20 00:18:13 +00:00
|
|
|
import org.telegram.ui.Adapters.BaseFragmentAdapter;
|
2014-11-13 20:10:14 +00:00
|
|
|
import org.telegram.ui.Cells.TextSettingsCell;
|
|
|
|
import org.telegram.ui.ActionBar.ActionBar;
|
|
|
|
import org.telegram.ui.ActionBar.ActionBarMenu;
|
|
|
|
import org.telegram.ui.ActionBar.ActionBarMenuItem;
|
|
|
|
import org.telegram.ui.ActionBar.BaseFragment;
|
2015-05-03 11:48:36 +00:00
|
|
|
import org.telegram.ui.Components.LayoutHelper;
|
2014-03-25 00:25:32 +00:00
|
|
|
|
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.Timer;
|
|
|
|
import java.util.TimerTask;
|
|
|
|
|
|
|
|
public class LanguageSelectActivity extends BaseFragment {
|
2014-06-20 00:18:13 +00:00
|
|
|
private BaseFragmentAdapter listAdapter;
|
2014-03-25 00:25:32 +00:00
|
|
|
private ListView listView;
|
|
|
|
private boolean searchWas;
|
|
|
|
private boolean searching;
|
2014-06-20 00:18:13 +00:00
|
|
|
private BaseFragmentAdapter searchListViewAdapter;
|
2014-03-25 00:25:32 +00:00
|
|
|
private TextView emptyTextView;
|
|
|
|
|
|
|
|
private Timer searchTimer;
|
|
|
|
public ArrayList<LocaleController.LocaleInfo> searchResult;
|
|
|
|
|
|
|
|
@Override
|
2015-04-09 18:00:14 +00:00
|
|
|
public View createView(Context context, LayoutInflater inflater) {
|
|
|
|
searching = false;
|
|
|
|
searchWas = false;
|
|
|
|
|
|
|
|
actionBar.setBackButtonImage(R.drawable.ic_ab_back);
|
|
|
|
actionBar.setAllowOverlayTitle(true);
|
|
|
|
actionBar.setTitle(LocaleController.getString("Language", R.string.Language));
|
|
|
|
|
|
|
|
actionBar.setActionBarMenuOnItemClick(new ActionBar.ActionBarMenuOnItemClick() {
|
|
|
|
@Override
|
|
|
|
public void onItemClick(int id) {
|
|
|
|
if (id == -1) {
|
|
|
|
finishFragment();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2014-11-13 20:10:14 +00:00
|
|
|
|
2015-04-09 18:00:14 +00:00
|
|
|
ActionBarMenu menu = actionBar.createMenu();
|
|
|
|
ActionBarMenuItem item = menu.addItem(0, R.drawable.ic_ab_search).setIsSearchField(true).setActionBarMenuItemSearchListener(new ActionBarMenuItem.ActionBarMenuItemSearchListener() {
|
|
|
|
@Override
|
|
|
|
public void onSearchExpand() {
|
|
|
|
searching = true;
|
|
|
|
}
|
2014-03-25 00:25:32 +00:00
|
|
|
|
2015-04-09 18:00:14 +00:00
|
|
|
@Override
|
2015-06-29 17:12:11 +00:00
|
|
|
public void onSearchCollapse() {
|
2015-04-09 18:00:14 +00:00
|
|
|
search(null);
|
|
|
|
searching = false;
|
|
|
|
searchWas = false;
|
|
|
|
if (listView != null) {
|
|
|
|
emptyTextView.setVisibility(View.GONE);
|
|
|
|
listView.setAdapter(listAdapter);
|
2014-06-03 23:31:48 +00:00
|
|
|
}
|
2015-04-09 18:00:14 +00:00
|
|
|
}
|
2014-06-03 23:31:48 +00:00
|
|
|
|
2015-04-09 18:00:14 +00:00
|
|
|
@Override
|
|
|
|
public void onTextChanged(EditText editText) {
|
|
|
|
String text = editText.getText().toString();
|
|
|
|
search(text);
|
|
|
|
if (text.length() != 0) {
|
|
|
|
searchWas = true;
|
2014-06-03 23:31:48 +00:00
|
|
|
if (listView != null) {
|
2015-04-09 18:00:14 +00:00
|
|
|
listView.setAdapter(searchListViewAdapter);
|
2014-06-03 23:31:48 +00:00
|
|
|
}
|
|
|
|
}
|
2015-04-09 18:00:14 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
item.getSearchField().setHint(LocaleController.getString("Search", R.string.Search));
|
|
|
|
|
|
|
|
listAdapter = new ListAdapter(context);
|
|
|
|
searchListViewAdapter = new SearchAdapter(context);
|
|
|
|
|
|
|
|
fragmentView = new FrameLayout(context);
|
|
|
|
|
|
|
|
LinearLayout emptyTextLayout = new LinearLayout(context);
|
|
|
|
emptyTextLayout.setVisibility(View.INVISIBLE);
|
|
|
|
emptyTextLayout.setOrientation(LinearLayout.VERTICAL);
|
|
|
|
((FrameLayout) fragmentView).addView(emptyTextLayout);
|
|
|
|
FrameLayout.LayoutParams layoutParams = (FrameLayout.LayoutParams) emptyTextLayout.getLayoutParams();
|
2015-05-03 11:48:36 +00:00
|
|
|
layoutParams.width = LayoutHelper.MATCH_PARENT;
|
|
|
|
layoutParams.height = LayoutHelper.MATCH_PARENT;
|
2015-04-09 18:00:14 +00:00
|
|
|
layoutParams.gravity = Gravity.TOP;
|
|
|
|
emptyTextLayout.setLayoutParams(layoutParams);
|
|
|
|
emptyTextLayout.setOnTouchListener(new View.OnTouchListener() {
|
|
|
|
@Override
|
|
|
|
public boolean onTouch(View v, MotionEvent event) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
emptyTextView = new TextView(context);
|
|
|
|
emptyTextView.setTextColor(0xff808080);
|
|
|
|
emptyTextView.setTextSize(20);
|
|
|
|
emptyTextView.setGravity(Gravity.CENTER);
|
|
|
|
emptyTextView.setText(LocaleController.getString("NoResult", R.string.NoResult));
|
|
|
|
emptyTextLayout.addView(emptyTextView);
|
|
|
|
LinearLayout.LayoutParams layoutParams1 = (LinearLayout.LayoutParams) emptyTextView.getLayoutParams();
|
2015-05-03 11:48:36 +00:00
|
|
|
layoutParams1.width = LayoutHelper.MATCH_PARENT;
|
|
|
|
layoutParams1.height = LayoutHelper.MATCH_PARENT;
|
2015-04-09 18:00:14 +00:00
|
|
|
layoutParams1.weight = 0.5f;
|
|
|
|
emptyTextView.setLayoutParams(layoutParams1);
|
|
|
|
|
|
|
|
FrameLayout frameLayout = new FrameLayout(context);
|
|
|
|
emptyTextLayout.addView(frameLayout);
|
|
|
|
layoutParams1 = (LinearLayout.LayoutParams) frameLayout.getLayoutParams();
|
2015-05-03 11:48:36 +00:00
|
|
|
layoutParams1.width = LayoutHelper.MATCH_PARENT;
|
|
|
|
layoutParams1.height = LayoutHelper.MATCH_PARENT;
|
2015-04-09 18:00:14 +00:00
|
|
|
layoutParams1.weight = 0.5f;
|
|
|
|
frameLayout.setLayoutParams(layoutParams1);
|
|
|
|
|
|
|
|
listView = new ListView(context);
|
|
|
|
listView.setEmptyView(emptyTextLayout);
|
|
|
|
listView.setVerticalScrollBarEnabled(false);
|
|
|
|
listView.setDivider(null);
|
|
|
|
listView.setDividerHeight(0);
|
|
|
|
listView.setAdapter(listAdapter);
|
|
|
|
((FrameLayout) fragmentView).addView(listView);
|
|
|
|
layoutParams = (FrameLayout.LayoutParams) listView.getLayoutParams();
|
2015-05-03 11:48:36 +00:00
|
|
|
layoutParams.width = LayoutHelper.MATCH_PARENT;
|
|
|
|
layoutParams.height = LayoutHelper.MATCH_PARENT;
|
2015-04-09 18:00:14 +00:00
|
|
|
listView.setLayoutParams(layoutParams);
|
|
|
|
|
|
|
|
listView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onItemClick(AdapterView<?> adapterView, View view, int i, long l) {
|
|
|
|
LocaleController.LocaleInfo localeInfo = null;
|
|
|
|
if (searching && searchWas) {
|
|
|
|
if (i >= 0 && i < searchResult.size()) {
|
|
|
|
localeInfo = searchResult.get(i);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (i >= 0 && i < LocaleController.getInstance().sortedLanguages.size()) {
|
|
|
|
localeInfo = LocaleController.getInstance().sortedLanguages.get(i);
|
2014-06-03 23:31:48 +00:00
|
|
|
}
|
|
|
|
}
|
2015-04-09 18:00:14 +00:00
|
|
|
if (localeInfo != null) {
|
|
|
|
LocaleController.getInstance().applyLanguage(localeInfo, true);
|
|
|
|
parentLayout.rebuildAllFragmentViews(false);
|
2014-10-07 20:14:27 +00:00
|
|
|
}
|
2015-04-09 18:00:14 +00:00
|
|
|
finishFragment();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
listView.setOnItemLongClickListener(new AdapterView.OnItemLongClickListener() {
|
|
|
|
@Override
|
|
|
|
public boolean onItemLongClick(AdapterView<?> adapterView, View view, int i, long l) {
|
|
|
|
LocaleController.LocaleInfo localeInfo = null;
|
|
|
|
if (searching && searchWas) {
|
|
|
|
if (i >= 0 && i < searchResult.size()) {
|
|
|
|
localeInfo = searchResult.get(i);
|
2014-03-25 00:25:32 +00:00
|
|
|
}
|
2015-04-09 18:00:14 +00:00
|
|
|
} else {
|
|
|
|
if (i >= 0 && i < LocaleController.getInstance().sortedLanguages.size()) {
|
|
|
|
localeInfo = LocaleController.getInstance().sortedLanguages.get(i);
|
2014-04-02 17:36:57 +00:00
|
|
|
}
|
2014-03-25 00:25:32 +00:00
|
|
|
}
|
2015-04-09 18:00:14 +00:00
|
|
|
if (localeInfo == null || localeInfo.pathToFile == null || getParentActivity() == null) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
final LocaleController.LocaleInfo finalLocaleInfo = localeInfo;
|
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(getParentActivity());
|
|
|
|
builder.setMessage(LocaleController.getString("DeleteLocalization", R.string.DeleteLocalization));
|
|
|
|
builder.setTitle(LocaleController.getString("AppName", R.string.AppName));
|
|
|
|
builder.setPositiveButton(LocaleController.getString("Delete", R.string.Delete), new DialogInterface.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialogInterface, int i) {
|
|
|
|
if (LocaleController.getInstance().deleteLanguage(finalLocaleInfo)) {
|
|
|
|
if (searchResult != null) {
|
|
|
|
searchResult.remove(finalLocaleInfo);
|
|
|
|
}
|
|
|
|
if (listAdapter != null) {
|
|
|
|
listAdapter.notifyDataSetChanged();
|
|
|
|
}
|
|
|
|
if (searchListViewAdapter != null) {
|
|
|
|
searchListViewAdapter.notifyDataSetChanged();
|
2014-04-02 17:36:57 +00:00
|
|
|
}
|
|
|
|
}
|
2014-05-24 22:47:05 +00:00
|
|
|
}
|
2015-04-09 18:00:14 +00:00
|
|
|
});
|
|
|
|
builder.setNegativeButton(LocaleController.getString("Cancel", R.string.Cancel), null);
|
2015-05-21 21:27:27 +00:00
|
|
|
showDialog(builder.create());
|
2015-04-09 18:00:14 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
});
|
2014-05-24 22:47:05 +00:00
|
|
|
|
2015-04-09 18:00:14 +00:00
|
|
|
listView.setOnScrollListener(new AbsListView.OnScrollListener() {
|
|
|
|
@Override
|
|
|
|
public void onScrollStateChanged(AbsListView absListView, int i) {
|
|
|
|
if (i == SCROLL_STATE_TOUCH_SCROLL && searching && searchWas) {
|
|
|
|
AndroidUtilities.hideKeyboard(getParentActivity().getCurrentFocus());
|
2014-05-24 22:47:05 +00:00
|
|
|
}
|
2014-03-25 00:25:32 +00:00
|
|
|
}
|
2015-04-09 18:00:14 +00:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onScroll(AbsListView absListView, int firstVisibleItem, int visibleItemCount, int totalItemCount) {
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2014-03-25 00:25:32 +00:00
|
|
|
return fragmentView;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onResume() {
|
2014-06-04 16:00:42 +00:00
|
|
|
super.onResume();
|
2014-06-03 23:31:48 +00:00
|
|
|
if (listAdapter != null) {
|
2014-03-25 00:25:32 +00:00
|
|
|
listAdapter.notifyDataSetChanged();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void search(final String query) {
|
|
|
|
if (query == null) {
|
|
|
|
searchResult = null;
|
|
|
|
} else {
|
|
|
|
try {
|
|
|
|
if (searchTimer != null) {
|
|
|
|
searchTimer.cancel();
|
|
|
|
}
|
|
|
|
} catch (Exception e) {
|
|
|
|
FileLog.e("tmessages", e);
|
|
|
|
}
|
|
|
|
searchTimer = new Timer();
|
|
|
|
searchTimer.schedule(new TimerTask() {
|
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
try {
|
|
|
|
searchTimer.cancel();
|
|
|
|
searchTimer = null;
|
|
|
|
} catch (Exception e) {
|
|
|
|
FileLog.e("tmessages", e);
|
|
|
|
}
|
|
|
|
processSearch(query);
|
|
|
|
}
|
|
|
|
}, 100, 300);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void processSearch(final String query) {
|
2014-06-13 10:42:21 +00:00
|
|
|
Utilities.searchQueue.postRunnable(new Runnable() {
|
2014-03-25 00:25:32 +00:00
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
|
|
|
|
String q = query.trim().toLowerCase();
|
|
|
|
if (q.length() == 0) {
|
|
|
|
updateSearchResults(new ArrayList<LocaleController.LocaleInfo>());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
long time = System.currentTimeMillis();
|
2015-02-26 01:32:51 +00:00
|
|
|
ArrayList<LocaleController.LocaleInfo> resultArray = new ArrayList<>();
|
2014-03-25 00:25:32 +00:00
|
|
|
|
|
|
|
for (LocaleController.LocaleInfo c : LocaleController.getInstance().sortedLanguages) {
|
|
|
|
if (c.name.toLowerCase().startsWith(query) || c.nameEnglish.toLowerCase().startsWith(query)) {
|
|
|
|
resultArray.add(c);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
updateSearchResults(resultArray);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
private void updateSearchResults(final ArrayList<LocaleController.LocaleInfo> arrCounties) {
|
2014-11-06 21:34:47 +00:00
|
|
|
AndroidUtilities.runOnUIThread(new Runnable() {
|
2014-03-25 00:25:32 +00:00
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
searchResult = arrCounties;
|
|
|
|
searchListViewAdapter.notifyDataSetChanged();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2014-06-20 00:18:13 +00:00
|
|
|
private class SearchAdapter extends BaseFragmentAdapter {
|
2014-03-25 00:25:32 +00:00
|
|
|
private Context mContext;
|
|
|
|
|
|
|
|
public SearchAdapter(Context context) {
|
|
|
|
mContext = context;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean areAllItemsEnabled() {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean isEnabled(int i) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getCount() {
|
|
|
|
if (searchResult == null) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return searchResult.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public Object getItem(int i) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public long getItemId(int i) {
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean hasStableIds() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public View getView(int i, View view, ViewGroup viewGroup) {
|
|
|
|
if (view == null) {
|
2014-11-13 20:10:14 +00:00
|
|
|
view = new TextSettingsCell(mContext);
|
2014-03-25 00:25:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
LocaleController.LocaleInfo c = searchResult.get(i);
|
2014-11-13 20:10:14 +00:00
|
|
|
((TextSettingsCell) view).setText(c.name, i != searchResult.size() - 1);
|
2014-03-25 00:25:32 +00:00
|
|
|
|
|
|
|
return view;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getItemViewType(int i) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getViewTypeCount() {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean isEmpty() {
|
|
|
|
return searchResult == null || searchResult.size() == 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-20 00:18:13 +00:00
|
|
|
private class ListAdapter extends BaseFragmentAdapter {
|
2014-03-25 00:25:32 +00:00
|
|
|
private Context mContext;
|
|
|
|
|
|
|
|
public ListAdapter(Context context) {
|
|
|
|
mContext = context;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean areAllItemsEnabled() {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean isEnabled(int i) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getCount() {
|
|
|
|
if (LocaleController.getInstance().sortedLanguages == null) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return LocaleController.getInstance().sortedLanguages.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public Object getItem(int i) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public long getItemId(int i) {
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean hasStableIds() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public View getView(int i, View view, ViewGroup viewGroup) {
|
|
|
|
if (view == null) {
|
2014-11-13 20:10:14 +00:00
|
|
|
view = new TextSettingsCell(mContext);
|
2014-03-25 00:25:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
LocaleController.LocaleInfo localeInfo = LocaleController.getInstance().sortedLanguages.get(i);
|
2014-11-13 20:10:14 +00:00
|
|
|
((TextSettingsCell) view).setText(localeInfo.name, i != LocaleController.getInstance().sortedLanguages.size() - 1);
|
2014-03-25 00:25:32 +00:00
|
|
|
|
|
|
|
return view;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getItemViewType(int i) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getViewTypeCount() {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean isEmpty() {
|
|
|
|
return LocaleController.getInstance().sortedLanguages == null || LocaleController.getInstance().sortedLanguages.size() == 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|