寫**的時候,不希望整個工程中到處都是黃色的感嘆號,那樣的話,開啟專案,讓人感覺整個專案一點都不清晰。
所以寫此貼,將平時碰到的警告全部總結集中起來。
1:handler
解決方法:
private handler mhandler = new handler(new handler.callback()
});
警告原因:
2:******dateformat
// to get local formatting use getdateinstance(), getdatetimeinstance(), or
// gettimeinstance(), or use new ******dateformat(string template, locale
// locale) with for example locale.us for ascii dates.
@suppresslint("******dateformat")
******dateformat ******dateformat = new ******dateformat(
"yyyy-mm-ddhh:mm:ss");
解決方法:
******dateformat new******dateformat = new ******dateformat(
"yyyy年mm月dd日hh時mm分", locale.getdefault());
警告原因:
3:new hashmap()
@suppresslint("usesparsearrays")
public static mapcmd_map = new hashmap();
解決方法:
//todo
警告原因:use new sparsearray(…) instead for better performance
返回頂部
寫**的時候,不希望整個工程中到處都是黃色的感嘆號,那樣的話,開啟專案,讓人感覺整個專案一點都不清晰。
Android中黃色警告提示強迫症
所以寫此貼,將平時碰到的警告全部總結集中起來。1 handler 解決方法 private handler mhandler new handler new handler.callback 警告原因 2 dateformat to get local formatting use getdatei...
提示型警告
朋友告訴我乙個有意思的玩法,利用 prama message給自己提供個提示型警告。include using namespace std define string2 x x define string x string2 x int main 結果編譯的時候,輸出 點選該行,就能知道,這處 你還...
gcc的警告提示資訊
gcc包含完整的出錯檢查和警告提示功能。採用 pedantic選項,對於不符合ansi iso標準的源 會產生相應的警告資訊。如 gcc pedantic hello.c o hello main函式返回型別為int,且函式體內要有return 語句,一般為 return 0 pedantic不能保...