カテゴリー
SugiBlog Webエンジニアのためのお役立ちTips

SQLite データ更新

int android.database.sqlite.SQLiteDatabase.update
update(String table, ContentValues values, String whereClause, String[] whereArgs)
ContentValues cv = new ContentValues();
cv.put("key", "value");
db.update("table", cv, "_id = ?", new String[] { "id" });
2,025 views

SQLite データ型

NULL NULL
INTEGER 整数型
REAL 浮動小数点
TEXT 文字列
BLOB バイナリデータ

2,094 views

FLASHLIGHT

フラッシュライトを使うときのパーミッション

<uses-permission android:name="android.permission.FLASHLIGHT"/>
1,599 views

Softbank開発リファレンス

https://www.support.softbankmobile.co.jp/partner_st/home/index.cfm

1,895 views

aaptの使い方

$ <sdk>/platform-tools/aapt dump badging <path_to_exported_.apk>
2,929 views