2013-10-25 15:19:00 +00:00
|
|
|
/*
|
2013-12-20 19:25:49 +00:00
|
|
|
* This is the source code of Telegram for Android v. 1.3.2.
|
2013-10-25 15:19:00 +00:00
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package org.telegram.ui;
|
|
|
|
|
|
|
|
import android.app.Activity;
|
|
|
|
import android.content.SharedPreferences;
|
|
|
|
import android.view.KeyEvent;
|
|
|
|
import android.view.LayoutInflater;
|
|
|
|
import android.view.View;
|
|
|
|
import android.view.ViewGroup;
|
|
|
|
import android.view.inputmethod.EditorInfo;
|
2014-03-22 22:31:55 +00:00
|
|
|
import android.widget.Button;
|
2013-10-25 15:19:00 +00:00
|
|
|
import android.widget.EditText;
|
|
|
|
import android.widget.TextView;
|
|
|
|
|
2014-07-02 22:39:05 +00:00
|
|
|
import org.telegram.android.AndroidUtilities;
|
|
|
|
import org.telegram.android.LocaleController;
|
2014-02-28 22:28:25 +00:00
|
|
|
import org.telegram.messenger.TLObject;
|
|
|
|
import org.telegram.messenger.TLRPC;
|
2013-10-25 15:19:00 +00:00
|
|
|
import org.telegram.messenger.ConnectionsManager;
|
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.NotificationCenter;
|
2013-10-25 15:19:00 +00:00
|
|
|
import org.telegram.messenger.R;
|
|
|
|
import org.telegram.messenger.RPCRequest;
|
|
|
|
import org.telegram.messenger.UserConfig;
|
2014-06-03 23:31:48 +00:00
|
|
|
import org.telegram.ui.Views.ActionBar.BaseFragment;
|
2013-10-25 15:19:00 +00:00
|
|
|
|
|
|
|
public class SettingsChangeNameActivity extends BaseFragment {
|
|
|
|
private EditText firstNameField;
|
|
|
|
private EditText lastNameField;
|
|
|
|
private View headerLabelView;
|
|
|
|
private View doneButton;
|
|
|
|
|
|
|
|
@Override
|
2014-06-03 23:31:48 +00:00
|
|
|
public View createView(LayoutInflater inflater, ViewGroup container) {
|
|
|
|
if (fragmentView == null) {
|
|
|
|
actionBarLayer.setCustomView(R.layout.settings_do_action_layout);
|
|
|
|
Button cancelButton = (Button)actionBarLayer.findViewById(R.id.cancel_button);
|
|
|
|
cancelButton.setOnClickListener(new View.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(View view) {
|
2013-10-25 15:19:00 +00:00
|
|
|
finishFragment();
|
|
|
|
}
|
2014-06-03 23:31:48 +00:00
|
|
|
});
|
|
|
|
doneButton = actionBarLayer.findViewById(R.id.done_button);
|
|
|
|
doneButton.setOnClickListener(new View.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(View view) {
|
|
|
|
if (firstNameField.getText().length() != 0) {
|
|
|
|
saveName();
|
|
|
|
finishFragment();
|
|
|
|
}
|
2013-10-25 15:19:00 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2014-06-12 15:53:20 +00:00
|
|
|
cancelButton.setText(LocaleController.getString("Cancel", R.string.Cancel).toUpperCase());
|
2014-06-03 23:31:48 +00:00
|
|
|
TextView textView = (TextView)doneButton.findViewById(R.id.done_button_text);
|
2014-06-12 15:53:20 +00:00
|
|
|
textView.setText(LocaleController.getString("Done", R.string.Done).toUpperCase());
|
2013-10-25 15:19:00 +00:00
|
|
|
|
|
|
|
fragmentView = inflater.inflate(R.layout.settings_change_name_layout, container, false);
|
|
|
|
|
2014-08-22 14:24:33 +00:00
|
|
|
TLRPC.User user = MessagesController.getInstance().getUser(UserConfig.getClientUserId());
|
2013-10-25 15:19:00 +00:00
|
|
|
if (user == null) {
|
2014-06-13 10:42:21 +00:00
|
|
|
user = UserConfig.getCurrentUser();
|
2013-10-25 15:19:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
firstNameField = (EditText)fragmentView.findViewById(R.id.first_name_field);
|
2014-03-22 22:31:55 +00:00
|
|
|
firstNameField.setHint(LocaleController.getString("FirstName", R.string.FirstName));
|
2013-10-25 15:19:00 +00:00
|
|
|
firstNameField.setOnEditorActionListener(new TextView.OnEditorActionListener() {
|
|
|
|
@Override
|
|
|
|
public boolean onEditorAction(TextView textView, int i, KeyEvent keyEvent) {
|
|
|
|
if (i == EditorInfo.IME_ACTION_NEXT) {
|
|
|
|
lastNameField.requestFocus();
|
|
|
|
lastNameField.setSelection(lastNameField.length());
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
lastNameField = (EditText)fragmentView.findViewById(R.id.last_name_field);
|
2014-03-22 22:31:55 +00:00
|
|
|
lastNameField.setHint(LocaleController.getString("LastName", R.string.LastName));
|
2013-10-25 15:19:00 +00:00
|
|
|
lastNameField.setOnEditorActionListener(new TextView.OnEditorActionListener() {
|
|
|
|
@Override
|
|
|
|
public boolean onEditorAction(TextView textView, int i, KeyEvent keyEvent) {
|
|
|
|
if (i == EditorInfo.IME_ACTION_DONE) {
|
|
|
|
doneButton.performClick();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
if (user != null) {
|
|
|
|
firstNameField.setText(user.first_name);
|
|
|
|
firstNameField.setSelection(firstNameField.length());
|
|
|
|
lastNameField.setText(user.last_name);
|
|
|
|
}
|
|
|
|
|
|
|
|
TextView headerLabel = (TextView)fragmentView.findViewById(R.id.settings_section_text);
|
2014-03-22 22:31:55 +00:00
|
|
|
headerLabel.setText(LocaleController.getString("YourFirstNameAndLastName", R.string.YourFirstNameAndLastName));
|
2013-10-25 15:19:00 +00:00
|
|
|
} else {
|
|
|
|
ViewGroup parent = (ViewGroup)fragmentView.getParent();
|
|
|
|
if (parent != null) {
|
|
|
|
parent.removeView(fragmentView);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return fragmentView;
|
|
|
|
}
|
|
|
|
|
2014-06-03 23:31:48 +00:00
|
|
|
@Override
|
|
|
|
public void onResume() {
|
2014-06-04 16:00:42 +00:00
|
|
|
super.onResume();
|
2014-06-03 23:31:48 +00:00
|
|
|
SharedPreferences preferences = ApplicationLoader.applicationContext.getSharedPreferences("mainconfig", Activity.MODE_PRIVATE);
|
|
|
|
boolean animations = preferences.getBoolean("view_animations", true);
|
|
|
|
if (!animations) {
|
|
|
|
firstNameField.requestFocus();
|
2014-07-02 22:39:05 +00:00
|
|
|
AndroidUtilities.showKeyboard(firstNameField);
|
2014-06-03 23:31:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-25 15:19:00 +00:00
|
|
|
private void saveName() {
|
2014-10-17 18:29:13 +00:00
|
|
|
TLRPC.User currentUser = UserConfig.getCurrentUser();
|
|
|
|
if (currentUser == null || lastNameField.getText() == null || firstNameField.getText() == null) {
|
2014-02-04 18:36:55 +00:00
|
|
|
return;
|
|
|
|
}
|
2014-10-17 18:29:13 +00:00
|
|
|
TLRPC.TL_account_updateProfile req = new TLRPC.TL_account_updateProfile();
|
|
|
|
currentUser.first_name = req.first_name = firstNameField.getText().toString();
|
|
|
|
currentUser.last_name = req.last_name = lastNameField.getText().toString();
|
2014-08-22 14:24:33 +00:00
|
|
|
TLRPC.User user = MessagesController.getInstance().getUser(UserConfig.getClientUserId());
|
2013-10-25 15:19:00 +00:00
|
|
|
if (user != null) {
|
|
|
|
user.first_name = req.first_name;
|
|
|
|
user.last_name = req.last_name;
|
|
|
|
}
|
2013-11-04 12:31:01 +00:00
|
|
|
UserConfig.saveConfig(true);
|
2014-08-22 14:24:33 +00:00
|
|
|
NotificationCenter.getInstance().postNotificationName(NotificationCenter.updateInterfaces, MessagesController.UPDATE_MASK_NAME);
|
2014-03-22 22:31:55 +00:00
|
|
|
ConnectionsManager.getInstance().performRpc(req, new RPCRequest.RPCRequestDelegate() {
|
2013-10-25 15:19:00 +00:00
|
|
|
@Override
|
|
|
|
public void run(TLObject response, TLRPC.TL_error error) {
|
|
|
|
|
|
|
|
}
|
2014-07-02 22:39:05 +00:00
|
|
|
});
|
2013-10-25 15:19:00 +00:00
|
|
|
}
|
2014-06-03 23:31:48 +00:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onOpenAnimationEnd() {
|
|
|
|
firstNameField.requestFocus();
|
2014-07-02 22:39:05 +00:00
|
|
|
AndroidUtilities.showKeyboard(firstNameField);
|
2014-06-03 23:31:48 +00:00
|
|
|
}
|
2013-10-25 15:19:00 +00:00
|
|
|
}
|