您的位置:首页 > 其它

Summary of problems when coding

2015-11-24 15:15 351 查看

Git commit problems

Warning:(142, 62) Suspicious call to ‘HashMap.get’

android git commit Warning:(3, 1) Default File template

Not annotated parameter overrides @NonNull parameter

It's an annotation, but the correct name is NonNull:

protected void onSaveInstanceState(@NonNull Bundle outState)
(And also)

import android.support.annotation.NoNNull;

The purpose is to allow the compiler to warn when
certain assumptions are being violated
(such as a parameter of a method that should always have a value,
as in this particular case, although there are others).
From the Support Annotations documentation:

The @NonNull annotation can be used to indicate that a
given parameter can not be null.

If a local variable is known to be null (for example
because some earlier code checked whether it was null),
and you pass that as a parameter to a method where that parameter
is marked as @NonNull, the IDE will warn you that you have a potential crash.
They are tools for static analysis. Runtime behavior is not altered at all.

In this case, the particular warning is that the original method
you're overriding (in Activity) has a @NonNull annotation
on the outState parameter, but you did not include it
in the overriding method. Just adding it should fix the issue, i.e.

@Override
protected void onSaveInstanceState(@NonNull Bundle outState) {
super.onSaveInstanceState(outState);
}


4.BitmapDrawable() method deprecated

popupMessage.setBackgroundDrawable(null) will clear the background.


5.catch branch identical to ‘FileNotFoundException’ branch

You can collapse exception branches if they're identical,
and with the multi-catch syntax, you'll wind up with one
catch statement that does the same thing as your three:


RecyclerView Problem

When data changes, the view not change (Because Picasso cache)
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: