2011-12-01から1ヶ月間の記事一覧

java覚書

使うたびにググるあれをまとめたもの。随時追加 0で埋めるString.format String s = String.format("%02d", i); File名取得 File file = new File("/home/user1/download/file1.png"); //パスからファイル名を取得する String fileName = file.getName(); /…

実行中のメソッド名の取得

Log.v(TAG, new Throwable().getStackTrace()[0].getMethodName());

Google IOのあれ

Honeypad Tutorial http://android-codelabs.appspot.com/resources/tutorials/honeypad/index.html 「 Intro to Honeycomb」の「Session presentation」 http://www.google.com/events/io/2011/sessions/honeycomb-highlights.html bootcamp https://docs.g…

MultiChoiceDialog

checkboxで選択可能なAlertDialogの作り方 public class AlertDialogMultipulChoiceActivity extends Activity { String[] ar = { "red", "green", "bule", "white" , "apple" }; boolean[] bs = new boolean[ar.length]; /** Called when the activity is f…