AS自帶的 檢測工具Lint
什麼是 Lint
Lint 是Android Studio 提供的 代碼掃描分析工具,它可以幫助我們發現代碼結構/質量問題,同時提供一些解決方案,而且這個過程不需要我們手寫測試用例。
Lint 發現的每個問題都有描述信息和等級(和測試發現 bug 很相似),我們可以很方便地定位問題,同時按照嚴重程度進行解決。當然這個「嚴重程度」我們可以手動調節,有些原則問題不容侵犯,必須提升到 error,而有的個別問題也可以無視。Lint 工作方式簡單介紹
Lint 會根據預先配置的檢測標準檢查我們 Android 項目的源文件,發現潛在的 bug 或者可以優化的地方,優化的內容主要包括以下幾方面:
Accessibility :
Correctness:不夠完美的編碼,比如硬編碼、使用過時 API 等
Internationalization:國際化,直接使用漢字,沒有使用資源引用等Performance:對性能有影響的編碼,比如:靜態引用,循環引用等Usability : Security:不安全的編碼,比如在 WebView 中允許使用 JavaScriptInterfaceLint 檢測代碼的過程如下圖所示:
App 源文件:包括 Java 代碼,XML 代碼,圖標,以及 ProGuard 配置文件等
lint.xml:Lint 檢測的執行標準配置文件,我們可以修改它來允許或者禁止報告一些問題Android Studio 中內置了 Lint,Lint 的使用路徑:
工具欄 -> Analyze -> Inspect Code可以選擇整個項目,也可以選擇某個模塊。點擊module,在點工具欄路徑
分別有:
Project Files:所有項目文件
Project Production Files:項目的代碼文件Project Test Files:項目的測試文件OpenFiles:當前打開的文件Module 『app』:主要的 app 模塊Current File:當前文件除了內置的選項我們還可以自己選擇特定的類進行檢查,點擊下圖中的紅色框部分:
會彈出自定義範圍選擇框,默認是空的,我們可以點擊左上角的「+」號新增一個檢查範圍:
- Local:只能當前項目使用
- Shared:其他 Android Studio 項目也可以使用
Lint 的檢測配置頁面
打開 Preferences/Settings,搜索 Inspections,會出現 Lint 的檢測配置頁面:
要修改拼寫的警告等級,搜索「spelling」:
然後選擇出現的 Typo,再點擊右邊的 Severity 就是嚴重程度,改成 Error,當你拼寫不規範的時候就會把這個當成錯誤,報紅。
Lint 的警告嚴重程度有以下幾種:
Unused Entry:沒有使用的屬性,灰色,很不起眼
Typo:拼寫錯誤,綠色波浪下劃線,也不太起眼Server Problem:伺服器錯誤?好像不是Info:注釋文檔,綠色,比較顯眼Weak Warning:比較弱的警告,提示比較弱Warning:警告,略微顯眼一點Error:錯誤,最顯眼的一個Lint 可以忽略的警告
在 Java 代碼中
在 XML 文件夾中在 Java 代碼中忽略 Lint 警告:
忽略 Lint 警告的註解跟 @SuppressWarnings 很類似,@SuppressLint (「忽略的警告名稱」)。
下面的代碼演示了如何忽略 Lint 對使用新 API 的警告:
@SuppressLint (」NewApi」)@Override public void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.main);}
又例如:Result of 『File.mkdir()』 is ignored
要是你不清楚要忽略的警告具體是什麼名字,那就直接忽略 all,當然是當前類/方法/對象:@SuppressLint (」all」)在 XML代碼中忽略 Lint 警告:
只需兩步:
xml 中聲明 tools 命名空間
使用 tools:ignore=」忽略的警告名」例如:<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" tools:ignore="all" android:layout_width_="match_parent" android:layout_height="match_parent" android:orientation="vertical" android:background="@color/white">
Gradle 中配置 Lint
Gradle 中也可以配置 Lint 的關鍵操作,比如是否開啟 Lint 警告,或者關閉指定的警告。
在 module 下的 build.gradle 中添加 lintOptions{…}, 樣例代碼如下:
android {...lintOptions {// Turns off checks for the issue IDs you specify.disable 『TypographyFractions』,』TypographyQuotes』// Turns on checks for the issue IDs you specify. These checks are in// addition to the default lint checks.enable 『RtlHardcoded』,』RtlCompat』, 『RtlEnabled』// To enable checks for only a subset of issue IDs and ignore all others,// list the issue IDs with the 『check』 property instead. This property overrides// any issue IDs you enable or disable using the properties above.check 『NewApi』, 『InlinedApi』// If set to true, turns off analysis progress reporting by lint.quiet true// if set to true (default), stops the build if errors are found.abortOnError false// if true, only report errors.ignoreWarnings true}}
自動刪除查找出來的無用資源文件
代碼迭代版本一多,很容易會遺留一些無用的代碼、資源文件,我們可以使用 Lint 進行清除。
點擊 Android Studio 工具欄 -> Analyze -> Run Inspection By Name..,輸入要檢測的內容,這裡是無用資源:
然後選擇 Unused resources,再選擇範圍後就開始檢測。
右邊有解決方法:Remove All Unused Resources
點擊後,boom
最常檢測處理的3個lint
推薦閱讀:
TAG:AndroidStudio | 異常檢測 | 工具 |