Android Studio 中使用 Lint
工具栏 -> Analyze -> Inspect Code…
至于lint是什么……请自行百度搜索……
这是总结以往lint是怎么解决黄色警告的,以及原因。
同时分几大类。
1.标签类:
1.1.Element arcMotion is not allowed here
指的是arcMotion该标签不允许。只要在标签前面添加suppress AndroidElementNotAllowed即可
1.2.Missing 'contentDescription' attribute on image
需要给图片添加备注。
一般来说我选择忽略,添加tools:ignore="ContentDescription"
1.3.'clickable' attribute found, please also add 'focusable'
一个控件(比如图片),如果没有定义focusable(可聚焦的),却定义了是clickable(可点击的),那么是不能通过键盘访问的。所以,需要添加一个focusable="true"。
1.4.Missing accessibility label: where minSdk < 17, you should provide an 'android:hint'
意思是要添加hint,如果不想添加hint,那么就选择忽略,添加tools:ignore="LabelFor"
1.5."'xxxx'" is not translated in "zh" (Chinese)
如果一个字符串不需要翻译,可以添加属性translatable="false"在<string>标签里。如:
<string name="name" translatable="false">Android</string>
或者把你不需要翻译的字符串统一放到一个
donottranslate.xml
中去。或者给根标签加一个属性tools:ignore="MissingTranslation"来忽略这个问题。
1.6.'A' can overlap 'B' if 'C' grows due to localized text expansion
原因:此提示一般出现在RelativeLayout中,此提示的大体意思为:你某个布局(一般是TextView,因为TextView的长度会随着文本内容扩大而扩大)可能会重叠另外一个布局。
如果还不理解,可以给该textview的文本写上超长内容就能看到问题了~
解决方式如下:
一:确保该文本长度不会覆盖的话,选择忽略。tools:ignore="RelativeOverlap"
二:使用RelativeLayout的布局属性,设置该textview的长度不会覆盖
1.7.Set 'android:baselineAligned="false"' on this element for better performance
原因是:当LinerLayout的子View都是ViewGroup(自定义控件除外)时,Lint认为它的子View已经不需要基准线对齐了,为了不让LinerLayout去做无用的计算对齐的操作,提出了如上警告,修改掉之后就可以提高性能。
1.8.Nested weights are bad for performance
原因是:嵌套权重对性能不好
解決方式:使用百分比布局或者约束布局ConstraintLayout或者其他方式,反正就是避免嵌套权重
2.代码类:
2.1.Custom view 'XXXXX'
has 'setOnTouchListener' called on it but does not override 'performClick'
这个貌似是从某个版本更新后出现的一个新警告,这个警告是告诉你点击事件会跟OnTocuch事件冲突。
基本上这意味着你应该继承该view的子类重写其performclick()方法,但这是不必要的。在确保有执行OnTouchlistener的情况下,我们只需要抑制这种警告使用@SuppressLint("ClickableViewAccessibility")
就可以了。
2.2.This custom view should extend 'android.support.v7.widget.AppCompatImageView' instead
extends ImageView 改成 extends android.support.v7.widget.AppCompat
原因:Using AppCompat widgets allows you to have some material design (and other new) features on devices with pre-Lollipop versions of Android.
At this point AppCompatImageView only provides the support for background tint and vector drawables. If you don't use them, then extending the regular ImageView will be fine.
2.3.Switch statement on an 'int' with known associated constant missing case 'XXXX', 'XXX'
指明该swith少了'XXXX',要么忽略,要么加上。
2.4.'saveLayer(android.graphics.RectF, android.graphics.Paint, int)' 已经过时了
改成canvas.saveLayer(mFrame, null);
2.5.'getLoaderManager()' 已经过时了
改成LoaderManager.getInstance(fragment);
2.6.'setColorFilter(int, android.graphics.PorterDuff.Mode)' 已经过时了
改成
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q) {
right.setColorFilter(new BlendModeColorFilter(color, BlendMode.SRC_IN));
} else {
right.setColorFilter(color, PorterDuff.Mode.SRC_IN);
}
2.7.'onAttach(android.app.Activity)' 已经过时了
考虑到部分机器会闪退,上面加个@SuppressWarnings("deprecation")
忽略
2.8.'getColor(int)' 已经过时了
改成ContextCompat.getColor(getContext(), R.color.black_forty_percent);
getDrawable同理
2.9.'getDefaultDisplay()' 已经过时了
改成
/**
* 获取屏幕分辨率-宽
*
* @param context 上下文
* @return 宽
*/
public static int getScreenWidth(Context context) {
WindowManager windowManager = (WindowManager) context.getSystemService(Context.WINDOW_SERVICE);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.R) {
WindowMetrics windowMetrics = windowManager.getCurrentWindowMetrics();
Insets insets = windowMetrics.getWindowInsets()
.getInsetsIgnoringVisibility(WindowInsets.Type.systemBars());
return windowMetrics.getBounds().width() - insets.left - insets.right;
} else {
DisplayMetrics displayMetrics = new DisplayMetrics();
windowManager.getDefaultDisplay().getMetrics(displayMetrics);
return displayMetrics.widthPixels;
}
}
/**
* 获取屏幕分辨率-高
*
* @param context 上下文
* @return 高
*/
public static int getScreenHeight(Context context) {
WindowManager windowManager = (WindowManager) context.getSystemService(Context.WINDOW_SERVICE);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.R) {
WindowMetrics windowMetrics = windowManager.getCurrentWindowMetrics();
Insets insets = windowMetrics.getWindowInsets()
.getInsetsIgnoringVisibility(WindowInsets.Type.systemBars());
return windowMetrics.getBounds().height() - insets.bottom - insets.top;
} else {
DisplayMetrics displayMetrics = new DisplayMetrics();
windowManager.getDefaultDisplay().getMetrics(displayMetrics);
return displayMetrics.heightPixels;
}
}
2.10.'getExternalStoragePublicDirectory(java.lang.String)' 已经过时了
自从Android10后已经不再支持编辑除了app以外的文件,所以直接删除换成私有的
private MyHandler myHandler = new MyHandler(this.getMainLooper(), this);
private static class MyHandler extends Handler {
WeakReference<MainActivity> mActivity;
public MyHandler(@NonNull Looper looper, MainActivity activity) {
super(looper);
mActivity = new WeakReference<>(activity);
}
@Override
public void handleMessage(Message msg) {
// 处理消息...
}
}
还有直接new的则更换成这种
旧的
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
// Your Code
}
}, 3000);
新的
new Handler(Looper.getMainLooper()).postDelayed(new Runnable() {
@Override
public void run() {
// Your Code
}
}, 3000);
2.11.'getExternalStorageDirectory()' 已经过时了
自从Android10后已经不再支持编辑除了app以外的文件,所以直接删除换成私有的
File path= getExternalFilesDir(type);
type可以为:
null,//根目录
Environment.DIRECTORY_MUSIC //创建一个music目录
Environment.DIRECTORY_PODCASTS //创建一个podcasts目录
Environment.DIRECTORY_RINGTONES //创建一个ringtones目录
Environment.DIRECTORY_ALARMS //创建一个alarms目录
Environment.DIRECTORY_NOTIFICATIONS //创建一个notifications目录
Environment.DIRECTORY_PICTURES //创建一个pictures目录
Environment#DIRECTORY_MOVIES //创建一个movies目录
2.12.'FragmentPagerAdapter(androidx.fragment.app.FragmentManager)' 已经过时了
public PreviewPagerAdapter(@NonNull FragmentManager fm, int behavior) {
super(fm, behavior);
}
new PreviewPagerAdapter(getSupportFragmentManager(), BEHAVIOR_RESUME_ONLY_CURRENT_FRAGMENT);
2.13.使用ScheduledExecutorService代替Timer吧 (line 48)
旧的
Timer TIMER = new Timer();
替换成这个
ScheduledExecutorService mExecutorService = new ScheduledThreadPoolExecutor(1, (ThreadFactory) Thread::new);
报错的方法后面参数加多一个TimeUnit.MILLISECONDS
销毁
if (mExecutorService != null) {
// 试图停止所有正在执行的活动任务
mExecutorService.shutdownNow();
mExecutorService = null;
}
2.13.请不要在条件中使用复杂的表达式。
改成如下,加强代码可读性
boolean existed = (file.open(fileName, "w") != null) && (...) || (...);
if (existed) {
...
}