2024年安卓最全Android自定义view之模仿登录界面文本输入框(华为云APP),面试的知识

最后

其实Android开发的知识点就那么多,面试问来问去还是那么点东西。所以面试没有其他的诀窍,只看你对这些知识点准备的充分程度。so,出去面试时先看看自己复习到了哪个阶段就好。

当然我也为你们整理好了百度、阿里、腾讯、字节跳动等等互联网超级大厂的历年面试真题集锦。这也是我这些年来养成的习惯,一定要学会把好的东西,归纳整理,然后系统的消化吸收,这样才能极大的提高学习效率和成长进阶。碎片、零散化的东西,我觉得最没有价值的。就好比你给我一张扑克牌,我只会觉得它是一张废纸,但如果你给我一副扑克牌,它便有了它的价值。这和我们收集资料就要收集那些系统化的,是一个道理。

网上学习 Android的资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。希望这份系统化的技术体系对大家有一个方向参考。

网上学习资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。

需要这份系统化学习资料的朋友,可以戳这里获取

一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!

LayoutInflater.from(context).inflate(R.layout.my_edit_view, this);

4.小提示文字上浮下潜动画


//小提示文字出现动画

private void minTextshow(TextView textView) {

AnimationSet animationSet = new AnimationSet(true);

Animation mHiddenAction = new TranslateAnimation(Animation.RELATIVE_TO_SELF,

0.0f, Animation.RELATIVE_TO_SELF, 0.0f,

Animation.RELATIVE_TO_SELF, 1.0f, Animation.RELATIVE_TO_SELF,

0.0f);

Animation alphaAnimation = new AlphaAnimation(0, 1f);

animationSet.addAnimation(mHiddenAction);

animationSet.addAnimation(alphaAnimation);

animationSet.setDuration(300);

textview.startAnimation(animationSet);

}

//小提示文字隐藏动画

private void minTexthide(TextView textView) {

AnimationSet animationSet = new AnimationSet(true);

Animation mShowAction = new TranslateAnimation(Animation.RELATIVE_TO_SELF, 0.0f,

Animation.RELATIVE_TO_SELF, 0.0f, Animation.RELATIVE_TO_SELF,

0.0f, Animation.RELATIVE_TO_SELF, 1.0f);

mShowAction.setRepeatMode(Animation.REVERSE);

Animation alphaAnimation = new AlphaAnimation(1f, 0);

animationSet.addAnimation(mShowAction);

animationSet.addAnimation(alphaAnimation);

animationSet.setRepeatMode(Animation.REVERSE);

animationSet.setDuration(300);

textview.startAnimation(animationSet);

CountDownTimer countDownTimer = new CountDownTimer(300, 300) {

@Override

public void onTick(long millisUntilFinished) {

}

@Override

public void onFinish() {

textview.setText(“”);

}

}.start();

}

5.密码加密解密显示


主要代码

//设置文字非加密

HideReturnsTransformationMethod method = HideReturnsTransformationMethod.getInstance();

edittext.setTransformationMethod(method);

//设置文字加密

TransformationMethod method = PasswordTransformationMethod.getInstance();

edittext.setTransformationMethod(method);

6.其他一些小知识点


1.将光标移到最后

//将光标移到最后

edittext.setSelection(edittext.getText().toString().length());

2.将键盘中的回车和空格去除

public static void setEditTextInputSpace(EditText editText) {

InputFilter filter = new InputFilter() {

@Override

public CharSequence filter(CharSequence source, int start, int end, Spanned dest, int dstart, int dend) {

if (source.equals(" “) || source.toString().contentEquals(”\n")) {

return “”;

} else {

return null;

}

}

};

editText.setFilters(new InputFilter[]{filter});

}

3.给自定义view对外提供一个获取值的方法

public String getText() {

return edittext.getText().toString();

}

7.源码


1.MyEditVIew.java

public class MyEditVIew extends RelativeLayout {

private TextView textview;

private EditText edittext;

private boolean mtextisshow; //文字是否显示判断

private boolean imgisshow; //图片是否显示判断

private String hintText;

private ImageView imageView;

private ImageView iV_clean;

public MyEditVIew(Context context) {

super(context,null);

}

public MyEditVIew(Context context, AttributeSet attrs) {

super(context, attrs,0);

init(context, attrs);

setEditTextInputSpace(edittext);

textAddChanged();

imageOnClick();

}

public MyEditVIew(Context context, AttributeSet attrs, int defStyleAttr) {

super(context, attrs, defStyleAttr);

}

//打气布局,获取自定义属性的值

private void init(Context context, AttributeSet attrs) {

LayoutInflater.from(context).inflate(R.layout.my_edit_view, this);

textview = findViewById(R.id.textview);

edittext = findViewById(R.id.edittext);

imageView = findViewById(R.id.imageView);

iV_clean=findViewById(R.id.iV_clean);

TypedArray ta = context.obtainStyledAttributes(attrs, R.styleable.MyEditVIew);

hintText = ta.getString(R.styleable.MyEditVIew_myhintText);

}

//文字输入监听以及一些逻辑处理(未优化)

private void textAddChanged(){

edittext.addTextChangedListener(new TextWatcher() {

@Override

public void beforeTextChanged(CharSequence s, int start, int count, int after) {

}

@Override

public void onTextChanged(CharSequence s, int start, int before, int count) {

}

@Override

public void afterTextChanged(Editable s) {

int textSum = s.toString().trim().length();

if (textSum == 0) {

if (mtextisshow == true) {

minTexthide(textview);

mtextisshow = false;

iV_clean.setVisibility(INVISIBLE);

edittext.setHint(hintText);

}

} else {

if (imgisshow) {

//设置文字非加密

HideReturnsTransformationMethod method = HideReturnsTransformationMethod.getInstance();

edittext.setTransformationMethod(method);

edittext.setSelection(edittext.getText().toString().length());

} else {

//设置文字加密

TransformationMethod method = PasswordTransformationMethod.getInstance();

edittext.setTransformationMethod(method);

//将光标移到最后

edittext.setSelection(edittext.getText().toString().length());

}

if (mtextisshow == false) {

textview.setText(hintText);

minTextshow(textview);

iV_clean.setVisibility(VISIBLE);

mtextisshow = true;

}

}

}

});

}

//两个图片的点击事件,加密,清除文字

private void imageOnClick(){

imageView.setOnClickListener(new OnClickListener() {

@Override

public void onClick(View v) {

if (imgisshow) {

imageView.setImageResource(R.mipmap.password_show);

HideReturnsTransformationMethod method = HideReturnsTransformationMethod.getInstance();

edittext.setTransformationMethod(method);

edittext.setSelection(edittext.getText().toString().length());

imgisshow = false;

} else {

imageView.setImageResource(R.mipmap.pwd_invisible);

TransformationMethod method = PasswordTransformationMethod.getInstance();

edittext.setTransformationMethod(method);

edittext.setSelection(edittext.getText().toString().length());

imgisshow = true;

}

}

});

iV_clean.setOnClickListener(new OnClickListener() {

@Override

public void onClick(View v) {

edittext.setText(“”);

}

});

}

//小提示文字出现动画

private void minTextshow(TextView textView) {

AnimationSet animationSet = new AnimationSet(true);

Animation mHiddenAction = new TranslateAnimation(Animation.RELATIVE_TO_SELF,

0.0f, Animation.RELATIVE_TO_SELF, 0.0f,

Animation.RELATIVE_TO_SELF, 1.0f, Animation.RELATIVE_TO_SELF,

0.0f);

Animation alphaAnimation = new AlphaAnimation(0, 1f);

animationSet.addAnimation(mHiddenAction);

animationSet.addAnimation(alphaAnimation);

animationSet.setDuration(300);

textview.startAnimation(animationSet);

}

//小提示文字隐藏动画

private void minTexthide(TextView textView) {

AnimationSet animationSet = new AnimationSet(true);

Animation mShowAction = new TranslateAnimation(Animation.RELATIVE_TO_SELF, 0.0f,

Animation.RELATIVE_TO_SELF, 0.0f, Animation.RELATIVE_TO_SELF,

0.0f, Animation.RELATIVE_TO_SELF, 1.0f);

mShowAction.setRepeatMode(Animation.REVERSE);

Animation alphaAnimation = new AlphaAnimation(1f, 0);

animationSet.addAnimation(mShowAction);

animationSet.addAnimation(alphaAnimation);

animationSet.setRepeatMode(Animation.REVERSE);

animationSet.setDuration(300);

textview.startAnimation(animationSet);

CountDownTimer countDownTimer = new CountDownTimer(300, 300) {

@Override

public void onTick(long millisUntilFinished) {

}

@Override

public void onFinish() {

textview.setText(“”);

}

}.start();

}

//将键盘中的回车和空格去除

总结

首先是感觉自己的基础还是不够吧,大厂好像都喜欢问这些底层原理。

另外一部分原因在于资料也还没有看完,一面时凭借那份资料考前突击恶补个几天居然也能轻松应对(在这里还是要感谢那份资料,真的牛),于是自我感觉良好,资料就没有怎么深究下去了。

之前的准备只涉及了Java、Android、计网、数据结构与算法这些方面,面对面试官对其他基础课程的考察显得捉襟见肘。

下一步还是要查漏补缺,进行针对性复习。

最后的最后,那套资料这次一定要全部看完,是真的太全面了,各个知识点都涵盖了,几乎我面试遇到的所有问题的知识点这里面都有!希望大家不要犯和我一样的错误呀!!!一定要看完!

网上学习资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。

需要这份系统化学习资料的朋友,可以戳这里获取

一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!

深究下去了。

之前的准备只涉及了Java、Android、计网、数据结构与算法这些方面,面对面试官对其他基础课程的考察显得捉襟见肘。

下一步还是要查漏补缺,进行针对性复习。

最后的最后,那套资料这次一定要全部看完,是真的太全面了,各个知识点都涵盖了,几乎我面试遇到的所有问题的知识点这里面都有!希望大家不要犯和我一样的错误呀!!!一定要看完!
[外链图片转存中…(img-mc0X7W1W-1715743431388)]

[外链图片转存中…(img-EHnVZXZB-1715743431389)]

[外链图片转存中…(img-8T2rwg2n-1715743431389)]

网上学习资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。

需要这份系统化学习资料的朋友,可以戳这里获取

一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值