密码展示出来了
密码没有进行处理,直接展示出来了
密码没有进行处理,直接展示出来了
2019-12-17
看看"res/layout/activity_login.xml" 里的
//***号处,代表每人写的可能不一样 <com.***.******.views.InputView android:id="@+id/password" android:layout_width="match_parent" android:layout_height="@dimen/inputViewHeight" app:Input_icon="******" app:Input_hint="密码" app:is_password="true"/>
看看密码的InputView的app:is_password有没有设为true,设为true是正常的。
如果还是不行,去看看“自定义组件” “views/InputView”类里的init方法,里面有没有
mEditText.setInputType(is_password? InputType.TYPE_CLASS_TEXT|InputType.TYPE_TEXT_VARIATION_PASSWORD:InputType.TYPE_CLASS_PHONE);
这行,如果不明白这行的意思,去再看看5-4“自定义控件”10:30那一段
举报