2014-06-20 00:18:13 +00:00
|
|
|
/*
|
|
|
|
* This is the source code of Telegram for Android v. 1.4.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;
|
|
|
|
|
|
|
|
import android.app.Activity;
|
|
|
|
import android.app.AlertDialog;
|
|
|
|
import android.content.Context;
|
|
|
|
import android.content.DialogInterface;
|
|
|
|
import android.content.Intent;
|
|
|
|
import android.content.SharedPreferences;
|
|
|
|
import android.media.Ringtone;
|
|
|
|
import android.media.RingtoneManager;
|
|
|
|
import android.net.Uri;
|
2014-11-21 00:14:44 +00:00
|
|
|
import android.os.Build;
|
2014-06-20 00:18:13 +00:00
|
|
|
import android.os.Bundle;
|
|
|
|
import android.provider.Settings;
|
|
|
|
import android.view.LayoutInflater;
|
|
|
|
import android.view.View;
|
|
|
|
import android.view.ViewGroup;
|
|
|
|
import android.widget.AdapterView;
|
2014-11-11 22:16:17 +00:00
|
|
|
import android.widget.FrameLayout;
|
2014-06-20 00:18:13 +00:00
|
|
|
import android.widget.ListView;
|
|
|
|
|
2014-11-11 22:16:17 +00:00
|
|
|
import org.telegram.android.AndroidUtilities;
|
2014-07-02 22:39:05 +00:00
|
|
|
import org.telegram.android.MessagesController;
|
2014-08-22 14:24:33 +00:00
|
|
|
import org.telegram.android.MessagesStorage;
|
2015-02-01 18:51:02 +00:00
|
|
|
import org.telegram.android.NotificationsController;
|
2014-12-01 17:56:31 +00:00
|
|
|
import org.telegram.messenger.ApplicationLoader;
|
2014-07-02 22:39:05 +00:00
|
|
|
import org.telegram.messenger.ConnectionsManager;
|
2014-06-20 00:18:13 +00:00
|
|
|
import org.telegram.messenger.FileLog;
|
2014-07-02 22:39:05 +00:00
|
|
|
import org.telegram.android.LocaleController;
|
2014-08-22 14:24:33 +00:00
|
|
|
import org.telegram.android.NotificationCenter;
|
2014-06-20 00:18:13 +00:00
|
|
|
import org.telegram.messenger.R;
|
2014-07-02 22:39:05 +00:00
|
|
|
import org.telegram.messenger.TLRPC;
|
2014-06-20 00:18:13 +00:00
|
|
|
import org.telegram.ui.Adapters.BaseFragmentAdapter;
|
2014-11-12 10:41:46 +00:00
|
|
|
import org.telegram.ui.Cells.TextColorCell;
|
|
|
|
import org.telegram.ui.Cells.TextDetailSettingsCell;
|
2014-11-13 20:10:14 +00:00
|
|
|
import org.telegram.ui.ActionBar.ActionBar;
|
|
|
|
import org.telegram.ui.ActionBar.BaseFragment;
|
2014-12-01 17:56:31 +00:00
|
|
|
import org.telegram.ui.Components.AvatarDrawable;
|
|
|
|
import org.telegram.ui.Components.ColorPickerView;
|
2014-06-20 00:18:13 +00:00
|
|
|
|
2014-07-02 22:39:05 +00:00
|
|
|
public class ProfileNotificationsActivity extends BaseFragment implements NotificationCenter.NotificationCenterDelegate {
|
2014-06-20 00:18:13 +00:00
|
|
|
|
|
|
|
private ListView listView;
|
|
|
|
private long dialog_id;
|
|
|
|
|
|
|
|
private int settingsNotificationsRow;
|
|
|
|
private int settingsVibrateRow;
|
|
|
|
private int settingsSoundRow;
|
2014-11-21 00:14:44 +00:00
|
|
|
private int settingsPriorityRow;
|
2014-06-20 00:18:13 +00:00
|
|
|
private int settingsLedRow;
|
|
|
|
private int rowCount = 0;
|
|
|
|
|
|
|
|
public ProfileNotificationsActivity(Bundle args) {
|
|
|
|
super(args);
|
|
|
|
dialog_id = args.getLong("dialog_id");
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onFragmentCreate() {
|
|
|
|
settingsNotificationsRow = rowCount++;
|
|
|
|
settingsVibrateRow = rowCount++;
|
|
|
|
settingsSoundRow = rowCount++;
|
2014-11-21 00:14:44 +00:00
|
|
|
if (Build.VERSION.SDK_INT >= 21) {
|
|
|
|
settingsPriorityRow = rowCount++;
|
|
|
|
} else {
|
|
|
|
settingsPriorityRow = -1;
|
|
|
|
}
|
2014-11-12 10:41:46 +00:00
|
|
|
settingsLedRow = rowCount++;
|
2014-08-22 14:24:33 +00:00
|
|
|
NotificationCenter.getInstance().addObserver(this, NotificationCenter.notificationsSettingsUpdated);
|
2014-06-20 00:18:13 +00:00
|
|
|
return super.onFragmentCreate();
|
|
|
|
}
|
|
|
|
|
2014-07-02 22:39:05 +00:00
|
|
|
@Override
|
|
|
|
public void onFragmentDestroy() {
|
|
|
|
super.onFragmentDestroy();
|
2014-08-22 14:24:33 +00:00
|
|
|
NotificationCenter.getInstance().removeObserver(this, NotificationCenter.notificationsSettingsUpdated);
|
2014-07-02 22:39:05 +00:00
|
|
|
}
|
|
|
|
|
2014-06-20 00:18:13 +00:00
|
|
|
@Override
|
2015-02-26 01:32:51 +00:00
|
|
|
public View createView(LayoutInflater inflater) {
|
2014-06-20 00:18:13 +00:00
|
|
|
if (fragmentView == null) {
|
2014-11-11 22:16:17 +00:00
|
|
|
actionBar.setBackButtonImage(R.drawable.ic_ab_back);
|
2014-11-18 05:01:04 +00:00
|
|
|
actionBar.setAllowOverlayTitle(true);
|
2014-11-11 22:16:17 +00:00
|
|
|
actionBar.setTitle(LocaleController.getString("NotificationsAndSounds", R.string.NotificationsAndSounds));
|
|
|
|
actionBar.setActionBarMenuOnItemClick(new ActionBar.ActionBarMenuOnItemClick() {
|
2014-06-20 00:18:13 +00:00
|
|
|
@Override
|
|
|
|
public void onItemClick(int id) {
|
|
|
|
if (id == -1) {
|
|
|
|
finishFragment();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2014-11-11 22:16:17 +00:00
|
|
|
fragmentView = new FrameLayout(getParentActivity());
|
|
|
|
FrameLayout frameLayout = (FrameLayout) fragmentView;
|
2014-06-20 00:18:13 +00:00
|
|
|
|
2014-11-11 22:16:17 +00:00
|
|
|
listView = new ListView(getParentActivity());
|
|
|
|
listView.setDivider(null);
|
|
|
|
listView.setDividerHeight(0);
|
|
|
|
listView.setVerticalScrollBarEnabled(false);
|
|
|
|
AndroidUtilities.setListViewEdgeEffectColor(listView, AvatarDrawable.getProfileBackColorForId(5));
|
|
|
|
frameLayout.addView(listView);
|
|
|
|
FrameLayout.LayoutParams layoutParams = (FrameLayout.LayoutParams) listView.getLayoutParams();
|
|
|
|
layoutParams.width = FrameLayout.LayoutParams.MATCH_PARENT;
|
|
|
|
layoutParams.height = FrameLayout.LayoutParams.MATCH_PARENT;
|
|
|
|
listView.setLayoutParams(layoutParams);
|
2014-06-20 00:18:13 +00:00
|
|
|
listView.setAdapter(new ListAdapter(getParentActivity()));
|
|
|
|
listView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onItemClick(AdapterView<?> adapterView, View view, final int i, long l) {
|
2014-08-22 14:24:33 +00:00
|
|
|
if (i == settingsVibrateRow) {
|
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(getParentActivity());
|
|
|
|
builder.setTitle(LocaleController.getString("Vibrate", R.string.Vibrate));
|
|
|
|
builder.setItems(new CharSequence[] {
|
|
|
|
LocaleController.getString("Disabled", R.string.Disabled),
|
|
|
|
LocaleController.getString("SettingsDefault", R.string.SettingsDefault),
|
|
|
|
LocaleController.getString("SystemDefault", R.string.SystemDefault),
|
|
|
|
LocaleController.getString("Short", R.string.Short),
|
|
|
|
LocaleController.getString("Long", R.string.Long)
|
|
|
|
}, new DialogInterface.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialog, int which) {
|
|
|
|
SharedPreferences preferences = ApplicationLoader.applicationContext.getSharedPreferences("Notifications", Activity.MODE_PRIVATE);
|
|
|
|
SharedPreferences.Editor editor = preferences.edit();
|
|
|
|
if (which == 0) {
|
|
|
|
editor.putInt("vibrate_" + dialog_id, 2);
|
|
|
|
} else if (which == 1) {
|
|
|
|
editor.putInt("vibrate_" + dialog_id, 0);
|
|
|
|
} else if (which == 2) {
|
|
|
|
editor.putInt("vibrate_" + dialog_id, 4);
|
|
|
|
} else if (which == 3) {
|
|
|
|
editor.putInt("vibrate_" + dialog_id, 1);
|
|
|
|
} else if (which == 4) {
|
|
|
|
editor.putInt("vibrate_" + dialog_id, 3);
|
|
|
|
}
|
|
|
|
editor.commit();
|
|
|
|
if (listView != null) {
|
|
|
|
listView.invalidateViews();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
builder.setNegativeButton(LocaleController.getString("Cancel", R.string.Cancel), null);
|
|
|
|
showAlertDialog(builder);
|
|
|
|
} else if (i == settingsNotificationsRow) {
|
2014-06-20 00:18:13 +00:00
|
|
|
if (getParentActivity() == null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(getParentActivity());
|
|
|
|
builder.setTitle(LocaleController.getString("AppName", R.string.AppName));
|
|
|
|
builder.setItems(new CharSequence[] {
|
|
|
|
LocaleController.getString("Default", R.string.Default),
|
|
|
|
LocaleController.getString("Enabled", R.string.Enabled),
|
|
|
|
LocaleController.getString("Disabled", R.string.Disabled)
|
|
|
|
}, new DialogInterface.OnClickListener() {
|
|
|
|
@Override
|
2015-02-01 18:51:02 +00:00
|
|
|
public void onClick(DialogInterface d, int which) {
|
2014-06-20 00:18:13 +00:00
|
|
|
SharedPreferences preferences = ApplicationLoader.applicationContext.getSharedPreferences("Notifications", Activity.MODE_PRIVATE);
|
|
|
|
SharedPreferences.Editor editor = preferences.edit();
|
2014-08-22 14:24:33 +00:00
|
|
|
editor.putInt("notify2_" + dialog_id, which);
|
|
|
|
MessagesStorage.getInstance().setDialogFlags(dialog_id, which == 2 ? 1 : 0);
|
2014-06-20 00:18:13 +00:00
|
|
|
editor.commit();
|
2015-02-01 18:51:02 +00:00
|
|
|
TLRPC.TL_dialog dialog = MessagesController.getInstance().dialogs_dict.get(dialog_id);
|
|
|
|
if (dialog != null) {
|
|
|
|
dialog.notify_settings = new TLRPC.TL_peerNotifySettings();
|
|
|
|
if (which == 2) {
|
|
|
|
dialog.notify_settings.mute_until = Integer.MAX_VALUE;
|
|
|
|
}
|
|
|
|
}
|
2014-06-20 00:18:13 +00:00
|
|
|
if (listView != null) {
|
|
|
|
listView.invalidateViews();
|
|
|
|
}
|
2015-02-01 18:51:02 +00:00
|
|
|
NotificationsController.updateServerNotificationsSettings(dialog_id);
|
2014-06-20 00:18:13 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
builder.setNegativeButton(LocaleController.getString("Cancel", R.string.Cancel), null);
|
|
|
|
showAlertDialog(builder);
|
|
|
|
} else if (i == settingsSoundRow) {
|
|
|
|
try {
|
|
|
|
Intent tmpIntent = new Intent(RingtoneManager.ACTION_RINGTONE_PICKER);
|
|
|
|
tmpIntent.putExtra(RingtoneManager.EXTRA_RINGTONE_TYPE, RingtoneManager.TYPE_NOTIFICATION);
|
|
|
|
tmpIntent.putExtra(RingtoneManager.EXTRA_RINGTONE_SHOW_DEFAULT, true);
|
|
|
|
tmpIntent.putExtra(RingtoneManager.EXTRA_RINGTONE_DEFAULT_URI, RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION));
|
|
|
|
SharedPreferences preferences = ApplicationLoader.applicationContext.getSharedPreferences("Notifications", Activity.MODE_PRIVATE);
|
|
|
|
Uri currentSound = null;
|
|
|
|
|
|
|
|
String defaultPath = null;
|
|
|
|
Uri defaultUri = Settings.System.DEFAULT_NOTIFICATION_URI;
|
|
|
|
if (defaultUri != null) {
|
|
|
|
defaultPath = defaultUri.getPath();
|
|
|
|
}
|
|
|
|
|
|
|
|
String path = preferences.getString("sound_path_" + dialog_id, defaultPath);
|
|
|
|
if (path != null && !path.equals("NoSound")) {
|
|
|
|
if (path.equals(defaultPath)) {
|
|
|
|
currentSound = defaultUri;
|
|
|
|
} else {
|
|
|
|
currentSound = Uri.parse(path);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tmpIntent.putExtra(RingtoneManager.EXTRA_RINGTONE_EXISTING_URI, currentSound);
|
2014-09-30 22:36:18 +00:00
|
|
|
startActivityForResult(tmpIntent, 12);
|
2014-06-20 00:18:13 +00:00
|
|
|
} catch (Exception e) {
|
|
|
|
FileLog.e("tmessages", e);
|
|
|
|
}
|
|
|
|
} else if (i == settingsLedRow) {
|
|
|
|
if (getParentActivity() == null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
LayoutInflater li = (LayoutInflater)getParentActivity().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
|
|
|
|
view = li.inflate(R.layout.settings_color_dialog_layout, null, false);
|
|
|
|
final ColorPickerView colorPickerView = (ColorPickerView)view.findViewById(R.id.color_picker);
|
|
|
|
|
|
|
|
SharedPreferences preferences = ApplicationLoader.applicationContext.getSharedPreferences("Notifications", Activity.MODE_PRIVATE);
|
|
|
|
if (preferences.contains("color_" + dialog_id)) {
|
|
|
|
colorPickerView.setOldCenterColor(preferences.getInt("color_" + dialog_id, 0xff00ff00));
|
|
|
|
} else {
|
|
|
|
if ((int)dialog_id < 0) {
|
|
|
|
colorPickerView.setOldCenterColor(preferences.getInt("GroupLed", 0xff00ff00));
|
|
|
|
} else {
|
|
|
|
colorPickerView.setOldCenterColor(preferences.getInt("MessagesLed", 0xff00ff00));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(getParentActivity());
|
|
|
|
builder.setTitle(LocaleController.getString("LedColor", R.string.LedColor));
|
|
|
|
builder.setView(view);
|
|
|
|
builder.setPositiveButton(LocaleController.getString("Set", R.string.Set), new DialogInterface.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialogInterface, int which) {
|
|
|
|
final SharedPreferences preferences = ApplicationLoader.applicationContext.getSharedPreferences("Notifications", Activity.MODE_PRIVATE);
|
|
|
|
SharedPreferences.Editor editor = preferences.edit();
|
|
|
|
editor.putInt("color_" + dialog_id, colorPickerView.getColor());
|
|
|
|
editor.commit();
|
|
|
|
listView.invalidateViews();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
builder.setNeutralButton(LocaleController.getString("Disabled", R.string.Disabled), new DialogInterface.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialog, int which) {
|
|
|
|
final SharedPreferences preferences = ApplicationLoader.applicationContext.getSharedPreferences("Notifications", Activity.MODE_PRIVATE);
|
|
|
|
SharedPreferences.Editor editor = preferences.edit();
|
|
|
|
editor.putInt("color_" + dialog_id, 0);
|
|
|
|
editor.commit();
|
|
|
|
listView.invalidateViews();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
builder.setNegativeButton(LocaleController.getString("Default", R.string.Default), new DialogInterface.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialog, int which) {
|
|
|
|
final SharedPreferences preferences = ApplicationLoader.applicationContext.getSharedPreferences("Notifications", Activity.MODE_PRIVATE);
|
|
|
|
SharedPreferences.Editor editor = preferences.edit();
|
|
|
|
editor.remove("color_" + dialog_id);
|
|
|
|
editor.commit();
|
|
|
|
listView.invalidateViews();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
showAlertDialog(builder);
|
2014-11-21 00:14:44 +00:00
|
|
|
} else if (i == settingsPriorityRow) {
|
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(getParentActivity());
|
|
|
|
builder.setTitle(LocaleController.getString("NotificationsPriority", R.string.NotificationsPriority));
|
|
|
|
builder.setItems(new CharSequence[] {
|
|
|
|
LocaleController.getString("SettingsDefault", R.string.SettingsDefault),
|
|
|
|
LocaleController.getString("NotificationsPriorityDefault", R.string.NotificationsPriorityDefault),
|
|
|
|
LocaleController.getString("NotificationsPriorityHigh", R.string.NotificationsPriorityHigh),
|
|
|
|
LocaleController.getString("NotificationsPriorityMax", R.string.NotificationsPriorityMax)
|
|
|
|
}, new DialogInterface.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialog, int which) {
|
|
|
|
if (which == 0) {
|
|
|
|
which = 3;
|
|
|
|
} else {
|
|
|
|
which--;
|
|
|
|
}
|
|
|
|
SharedPreferences preferences = ApplicationLoader.applicationContext.getSharedPreferences("Notifications", Activity.MODE_PRIVATE);
|
|
|
|
preferences.edit().putInt("priority_" + dialog_id, which).commit();
|
|
|
|
if (listView != null) {
|
|
|
|
listView.invalidateViews();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
builder.setNegativeButton(LocaleController.getString("Cancel", R.string.Cancel), null);
|
|
|
|
showAlertDialog(builder);
|
2014-06-20 00:18:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
ViewGroup parent = (ViewGroup)fragmentView.getParent();
|
|
|
|
if (parent != null) {
|
|
|
|
parent.removeView(fragmentView);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return fragmentView;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onActivityResultFragment(int requestCode, int resultCode, Intent data) {
|
|
|
|
if (resultCode == Activity.RESULT_OK) {
|
|
|
|
if (data == null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
Uri ringtone = data.getParcelableExtra(RingtoneManager.EXTRA_RINGTONE_PICKED_URI);
|
|
|
|
String name = null;
|
|
|
|
if (ringtone != null) {
|
|
|
|
Ringtone rng = RingtoneManager.getRingtone(ApplicationLoader.applicationContext, ringtone);
|
|
|
|
if (rng != null) {
|
|
|
|
if(ringtone.equals(Settings.System.DEFAULT_NOTIFICATION_URI)) {
|
|
|
|
name = LocaleController.getString("Default", R.string.Default);
|
|
|
|
} else {
|
|
|
|
name = rng.getTitle(getParentActivity());
|
|
|
|
}
|
|
|
|
rng.stop();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SharedPreferences preferences = ApplicationLoader.applicationContext.getSharedPreferences("Notifications", Activity.MODE_PRIVATE);
|
|
|
|
SharedPreferences.Editor editor = preferences.edit();
|
|
|
|
|
|
|
|
if (requestCode == 12) {
|
|
|
|
if (name != null && ringtone != null) {
|
|
|
|
editor.putString("sound_" + dialog_id, name);
|
|
|
|
editor.putString("sound_path_" + dialog_id, ringtone.toString());
|
|
|
|
} else {
|
|
|
|
editor.putString("sound_" + dialog_id, "NoSound");
|
|
|
|
editor.putString("sound_path_" + dialog_id, "NoSound");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
editor.commit();
|
|
|
|
listView.invalidateViews();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-02 22:39:05 +00:00
|
|
|
@Override
|
|
|
|
public void didReceivedNotification(int id, Object... args) {
|
2014-08-22 14:24:33 +00:00
|
|
|
if (id == NotificationCenter.notificationsSettingsUpdated) {
|
2014-07-02 22:39:05 +00:00
|
|
|
listView.invalidateViews();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-20 00:18:13 +00:00
|
|
|
private class ListAdapter extends BaseFragmentAdapter {
|
|
|
|
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() {
|
|
|
|
return rowCount;
|
|
|
|
}
|
|
|
|
|
|
|
|
@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) {
|
|
|
|
int type = getItemViewType(i);
|
|
|
|
if (type == 0) {
|
|
|
|
if (view == null) {
|
2014-11-12 10:41:46 +00:00
|
|
|
view = new TextDetailSettingsCell(mContext);
|
2014-06-20 00:18:13 +00:00
|
|
|
}
|
|
|
|
|
2014-11-12 10:41:46 +00:00
|
|
|
TextDetailSettingsCell textCell = (TextDetailSettingsCell) view;
|
|
|
|
|
|
|
|
SharedPreferences preferences = mContext.getSharedPreferences("Notifications", Activity.MODE_PRIVATE);
|
|
|
|
|
2014-06-20 00:18:13 +00:00
|
|
|
if (i == settingsVibrateRow) {
|
|
|
|
int value = preferences.getInt("vibrate_" + dialog_id, 0);
|
|
|
|
if (value == 0) {
|
2014-11-12 10:41:46 +00:00
|
|
|
textCell.setTextAndValue(LocaleController.getString("Vibrate", R.string.Vibrate), LocaleController.getString("SettingsDefault", R.string.SettingsDefault), true);
|
2014-06-20 00:18:13 +00:00
|
|
|
} else if (value == 1) {
|
2014-11-12 10:41:46 +00:00
|
|
|
textCell.setTextAndValue(LocaleController.getString("Vibrate", R.string.Vibrate), LocaleController.getString("Short", R.string.Short), true);
|
2014-06-20 00:18:13 +00:00
|
|
|
} else if (value == 2) {
|
2014-11-12 10:41:46 +00:00
|
|
|
textCell.setTextAndValue(LocaleController.getString("Vibrate", R.string.Vibrate), LocaleController.getString("Disabled", R.string.Disabled), true);
|
2014-08-22 14:24:33 +00:00
|
|
|
} else if (value == 3) {
|
2014-11-12 10:41:46 +00:00
|
|
|
textCell.setTextAndValue(LocaleController.getString("Vibrate", R.string.Vibrate), LocaleController.getString("Long", R.string.Long), true);
|
2014-08-22 14:24:33 +00:00
|
|
|
} else if (value == 4) {
|
2014-11-12 10:41:46 +00:00
|
|
|
textCell.setTextAndValue(LocaleController.getString("Vibrate", R.string.Vibrate), LocaleController.getString("SystemDefault", R.string.SystemDefault), true);
|
2014-06-20 00:18:13 +00:00
|
|
|
}
|
|
|
|
} else if (i == settingsNotificationsRow) {
|
|
|
|
int value = preferences.getInt("notify2_" + dialog_id, 0);
|
|
|
|
if (value == 0) {
|
2014-11-12 10:41:46 +00:00
|
|
|
textCell.setTextAndValue(LocaleController.getString("Notifications", R.string.Notifications), LocaleController.getString("Default", R.string.Default), true);
|
2014-06-20 00:18:13 +00:00
|
|
|
} else if (value == 1) {
|
2014-11-12 10:41:46 +00:00
|
|
|
textCell.setTextAndValue(LocaleController.getString("Notifications", R.string.Notifications), LocaleController.getString("Enabled", R.string.Enabled), true);
|
2014-06-20 00:18:13 +00:00
|
|
|
} else if (value == 2) {
|
2014-11-12 10:41:46 +00:00
|
|
|
textCell.setTextAndValue(LocaleController.getString("Notifications", R.string.Notifications), LocaleController.getString("Disabled", R.string.Disabled), true);
|
2015-02-01 18:51:02 +00:00
|
|
|
} else if (value == 3) {
|
|
|
|
int delta = preferences.getInt("notifyuntil_" + dialog_id, 0) - ConnectionsManager.getInstance().getCurrentTime();
|
|
|
|
String val;
|
|
|
|
if (delta <= 0) {
|
|
|
|
val = LocaleController.getString("Enabled", R.string.Enabled);
|
|
|
|
} else if (delta < 60 * 60) {
|
|
|
|
val = LocaleController.formatString("WillUnmuteIn", R.string.WillUnmuteIn, LocaleController.formatPluralString("Minutes", delta / 60));
|
|
|
|
} else if (delta < 60 * 60 * 24) {
|
|
|
|
val = LocaleController.formatString("WillUnmuteIn", R.string.WillUnmuteIn, LocaleController.formatPluralString("Hours", (int) Math.ceil(delta / 60.0f / 60)));
|
2015-02-26 01:32:51 +00:00
|
|
|
} else if (delta < 60 * 60 * 24 * 365) {
|
2015-02-01 18:51:02 +00:00
|
|
|
val = LocaleController.formatString("WillUnmuteIn", R.string.WillUnmuteIn, LocaleController.formatPluralString("Days", (int) Math.ceil(delta / 60.0f / 60 / 24)));
|
2015-02-26 01:32:51 +00:00
|
|
|
} else {
|
|
|
|
val = null;
|
|
|
|
}
|
|
|
|
if (val != null) {
|
|
|
|
textCell.setTextAndValue(LocaleController.getString("Notifications", R.string.Notifications), val, true);
|
|
|
|
} else {
|
|
|
|
textCell.setTextAndValue(LocaleController.getString("Notifications", R.string.Notifications), LocaleController.getString("Disabled", R.string.Disabled), true);
|
2015-02-01 18:51:02 +00:00
|
|
|
}
|
2014-06-20 00:18:13 +00:00
|
|
|
}
|
2014-11-12 10:41:46 +00:00
|
|
|
} else if (i == settingsSoundRow) {
|
|
|
|
String value = preferences.getString("sound_" + dialog_id, LocaleController.getString("Default", R.string.Default));
|
|
|
|
if (value.equals("NoSound")) {
|
|
|
|
value = LocaleController.getString("NoSound", R.string.NoSound);
|
2014-06-20 00:18:13 +00:00
|
|
|
}
|
2014-11-12 10:41:46 +00:00
|
|
|
textCell.setTextAndValue(LocaleController.getString("Sound", R.string.Sound), value, true);
|
2014-11-21 00:14:44 +00:00
|
|
|
} else if (i == settingsPriorityRow) {
|
|
|
|
int value = preferences.getInt("priority_" + dialog_id, 3);
|
|
|
|
if (value == 0) {
|
|
|
|
textCell.setTextAndValue(LocaleController.getString("NotificationsPriority", R.string.NotificationsPriority), LocaleController.getString("NotificationsPriorityDefault", R.string.NotificationsPriorityDefault), true);
|
|
|
|
} else if (value == 1) {
|
|
|
|
textCell.setTextAndValue(LocaleController.getString("NotificationsPriority", R.string.NotificationsPriority), LocaleController.getString("NotificationsPriorityHigh", R.string.NotificationsPriorityHigh), true);
|
|
|
|
} else if (value == 2) {
|
|
|
|
textCell.setTextAndValue(LocaleController.getString("NotificationsPriority", R.string.NotificationsPriority), LocaleController.getString("NotificationsPriorityMax", R.string.NotificationsPriorityMax), true);
|
|
|
|
} else if (value == 3) {
|
|
|
|
textCell.setTextAndValue(LocaleController.getString("NotificationsPriority", R.string.NotificationsPriority), LocaleController.getString("SettingsDefault", R.string.SettingsDefault), true);
|
|
|
|
}
|
2014-06-20 00:18:13 +00:00
|
|
|
}
|
2014-11-12 10:41:46 +00:00
|
|
|
} else if (type == 1) {
|
2014-06-20 00:18:13 +00:00
|
|
|
if (view == null) {
|
2014-11-12 10:41:46 +00:00
|
|
|
view = new TextColorCell(mContext);
|
2014-06-20 00:18:13 +00:00
|
|
|
}
|
2014-11-12 10:41:46 +00:00
|
|
|
|
|
|
|
TextColorCell textCell = (TextColorCell) view;
|
|
|
|
|
2014-06-20 00:18:13 +00:00
|
|
|
SharedPreferences preferences = ApplicationLoader.applicationContext.getSharedPreferences("Notifications", Activity.MODE_PRIVATE);
|
|
|
|
|
|
|
|
if (preferences.contains("color_" + dialog_id)) {
|
2014-11-12 10:41:46 +00:00
|
|
|
textCell.setTextAndColor(LocaleController.getString("LedColor", R.string.LedColor), preferences.getInt("color_" + dialog_id, 0xff00ff00), false);
|
2014-06-20 00:18:13 +00:00
|
|
|
} else {
|
|
|
|
if ((int)dialog_id < 0) {
|
2014-11-12 10:41:46 +00:00
|
|
|
textCell.setTextAndColor(LocaleController.getString("LedColor", R.string.LedColor), preferences.getInt("GroupLed", 0xff00ff00), false);
|
2014-06-20 00:18:13 +00:00
|
|
|
} else {
|
2014-11-12 10:41:46 +00:00
|
|
|
textCell.setTextAndColor(LocaleController.getString("LedColor", R.string.LedColor), preferences.getInt("MessagesLed", 0xff00ff00), false);
|
2014-06-20 00:18:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return view;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getItemViewType(int i) {
|
2014-11-21 00:14:44 +00:00
|
|
|
if (i == settingsNotificationsRow || i == settingsVibrateRow || i == settingsSoundRow || i == settingsPriorityRow) {
|
2014-06-20 00:18:13 +00:00
|
|
|
return 0;
|
|
|
|
} else if (i == settingsLedRow) {
|
2014-11-12 10:41:46 +00:00
|
|
|
return 1;
|
2014-06-20 00:18:13 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getViewTypeCount() {
|
2014-11-12 10:41:46 +00:00
|
|
|
return 2;
|
2014-06-20 00:18:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean isEmpty() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|