SuppressLint在android中的含义

2018-09-29  本文已影响62人  努力与幸运

在 Android 代码中, 有时会使用比我们在AndroidManifest中设置的android:minSdkVersion版本更高的方法,此时编译器会提示警告,解决方法是在方法上加上@SuppressLint("NewApi")或者@TargetApi()。

@SuppressLint("NewApi")屏蔽一切新api中才能使用的方法报的android lint错误

@TargetApi() 只屏蔽某一新api中才能使用的方法报的android lint错误

上一篇 下一篇

猜你喜欢

热点阅读