Commit 616118e8c619c0bf49de8cdb62f462ce2bb20a53
1 parent
c0b46499
Exists in
yxb_dev
and in
2 other branches
no message
Showing
1 changed file
with
1 additions
and
4 deletions
Show diff stats
app/src/main/java/com/shunzhi/parent/ui/activity/PersonInfoActivity.java
... | ... | @@ -26,7 +26,7 @@ import com.shunzhi.parent.presenter.mine.PersonInfoPrasenter; |
26 | 26 | public class PersonInfoActivity extends BaseMVPCompatActivity<PersonInfoContract.PersonInfoPresenter, PersonInfoContract.IPersonInfoModel> |
27 | 27 | implements PersonInfoContract.IPersonInfoView, View.OnClickListener { |
28 | 28 | RoundedImageView user_image; |
29 | - TextView user_name, user_mobile, change_info,center_title,back; | |
29 | + TextView user_name, user_mobile, change_info; | |
30 | 30 | EditText et_name; |
31 | 31 | RadioButton man, women; |
32 | 32 | |
... | ... | @@ -44,9 +44,6 @@ public class PersonInfoActivity extends BaseMVPCompatActivity<PersonInfoContract |
44 | 44 | user_mobile = findViewById(R.id.user_mobile); |
45 | 45 | et_name = findViewById(R.id.et_name); |
46 | 46 | et_name.setOnClickListener(this); |
47 | - back = findViewById(R.id.back_top); | |
48 | - center_title = findViewById(R.id.center_title); | |
49 | - center_title.setText("选择孩子学校"); | |
50 | 47 | man = findViewById(R.id.man); |
51 | 48 | women = findViewById(R.id.women); |
52 | 49 | change_info = findViewById(R.id.change_info); | ... | ... |