|
@@ -13,6 +13,7 @@ import android.text.Editable;
|
|
|
import android.text.TextUtils;
|
|
|
import android.text.TextWatcher;
|
|
|
import android.util.Log;
|
|
|
+import android.view.Gravity;
|
|
|
import android.view.View;
|
|
|
import android.widget.DatePicker;
|
|
|
import android.widget.EditText;
|
|
@@ -289,6 +290,9 @@ public class MyInfoActivity extends BaseActivity implements View.OnClickListener
|
|
|
if (mUser != null && !mUser.equals(coreManager)) {// 数据改变了,提交数据
|
|
|
TextView textView = new TextView(this);
|
|
|
textView.setText(R.string.user_data_changed);
|
|
|
+ textView.setGravity(Gravity.CENTER);
|
|
|
+ textView.setPadding(0,20,0,0);
|
|
|
+
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(this).setTitle(InternationalizationHelper.getString("SELECT_AVATARS"))
|
|
|
.setTitle(R.string.system_notification_user_name)
|
|
|
.setView(textView)
|