「Android/非推奨コード」の版間の差分
提供: 初心者エンジニアの簡易メモ
(ページの作成:「 ==非推奨のコードを可視化する== build.gradle gradle.projectsEvaluated { tasks.withType(JavaCompile) { options.compilerArgs << "-Xlint:unchecked" <<...」) |
(→Android7.0以降getConfiguration().localeは非推奨) |
||
行20: | 行20: | ||
locale = context.getResources().getConfiguration().locale; | locale = context.getResources().getConfiguration().locale; | ||
} | } | ||
− | + | 参考:https://stackoverflow.com/questions/38267213/how-to-get-the-current-locale-api-level-24 | |
==expected resource of type id ensures that resource ids passed to apis are of the right type警告== | ==expected resource of type id ensures that resource ids passed to apis are of the right type警告== |
2018年8月20日 (月) 14:43時点における版
目次
非推奨のコードを可視化する
build.gradle
gradle.projectsEvaluated { tasks.withType(JavaCompile) { options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation" } }
build/clear後 buildするとコンソールに非推奨コードが表示される
非推奨コードを特定クラスのみ非表示とする
クラスの頭に以下アノテーションを付ける
@SuppressWarnings
Android7.0以降getConfiguration().localeは非推奨
Locale locale; if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) { locale = context.getResources().getConfiguration().getLocales().get(0); } else { locale = context.getResources().getConfiguration().locale; }
参考:https://stackoverflow.com/questions/38267213/how-to-get-the-current-locale-api-level-24
expected resource of type id ensures that resource ids passed to apis are of the right type警告
viewのresourceIdを直接入力すると出るエラーなのでView.generateViewId()にする。ただしbuildSDKLevel17以上から
cannot resolve symbol警告
@paramの変数や@seeのクラスが間違っているのでその部分を修正すればよい。
@paramであれば変数名を記載するようにし、@seeであればその変数のクラス名を書いてあげれば良い。