前人未踏の領域へ Androidアプリ開発編

Androidアプリ開発に関する調査メモ置き場。古い記事にはアプリ以外も含まれます。

2014-03-05から1日間の記事一覧

Lintがコマンドラインで実行できない

Android SDK Toolsを最新化したらLintコマンドがエラーになるようになった。 tools>lint --version Exception in thread "main" java.lang.NoClassDefFoundError: lombok/ast/AstVisitor at com.android.tools.lint.checks.BuiltinIssueRegistry.<clinit>(BuiltinIss</clinit>…

TextView.setTextにnullをセットするとどうなるか

答え:サイズ0の文字列に置き換わる。 //android.widget.TextViewのソース抜粋 private void setText(CharSequence text, BufferType type, boolean notifyBefore, int oldlen) { if (text == null) { text = ""; } …以下略バージョン1.6の頃からだから基本…