hanjing лет назад: 7
Родитель
Сommit
e14081ae0e

+ 1 - 1
app/src/main/java/com/sheep/gamegroup/module/login/ReLoginNameAct.java

@@ -47,7 +47,7 @@ public class ReLoginNameAct extends BaseActivity {
     @OnClick(R.id.submit_btn)
     public void doSubmit(View v) {
         if (TextUtils.isEmpty(loginNameBox.getText().toString().trim())) {
-            G.shortToast("请填写新的登录名");
+            G.shortToast("请填写登录名");
             return;
         }
         if (!StringUtils.isUserName(loginNameBox.getText().toString().trim())) {

+ 0 - 4
app/src/main/java/com/sheep/gamegroup/view/activity/PersonalInfoAct.java

@@ -239,8 +239,6 @@ public class PersonalInfoAct extends AbsChooseImageActivity {
                     public void call(UserEntity userEntity) {
                         if (userEntity == null) {
                             G.showToast(R.string.error_data);
-                        } else if (!userEntity.isBindMobile()) {
-                            G.showToast("请先绑定手机号");
                         } else if (!userEntity.isBindQQ()) {
                             bindQQ();
                         } else {
@@ -256,8 +254,6 @@ public class PersonalInfoAct extends AbsChooseImageActivity {
                     public void call(UserEntity userEntity) {
                         if (userEntity == null) {
                             G.showToast(R.string.error_data);
-                        } else if (!userEntity.isBindMobile()) {
-                            G.showToast("请先绑定手机号");
                         } else if (!userEntity.isBindWx()) {
                             bindWX();
                         } else {

+ 1 - 1
app/src/main/res/layout/activity_re_login_name.xml

@@ -30,7 +30,7 @@
             android:layout_weight="1"
             android:gravity="center"
             android:maxLength="20"
-            android:hint="(如邮件地支、英文名等唯一标识)" />
+            android:hint="输入用户名(如邮箱地址、常用英文等唯一标识)" />
 
     </LinearLayout>
 

+ 8 - 8
app/src/main/res/layout/fragment_edit_user_info.xml

@@ -72,14 +72,14 @@
                 android:text="女   " />
 
         </RadioGroup>
-        <TextView
-            android:layout_centerVertical="true"
-            android:text="注册后,性别不可以修改"
-            android:textSize="12sp"
-            android:textColor="@color/theme_app_mid"
-            android:layout_alignParentRight="true"
-            android:layout_width="wrap_content"
-            android:layout_height="wrap_content" />
+        <!--<TextView-->
+            <!--android:layout_centerVertical="true"-->
+            <!--android:text="注册后,性别不可以修改"-->
+            <!--android:textSize="12sp"-->
+            <!--android:textColor="@color/theme_app_mid"-->
+            <!--android:layout_alignParentRight="true"-->
+            <!--android:layout_width="wrap_content"-->
+            <!--android:layout_height="wrap_content" />-->
     </RelativeLayout>
 
     <View