たぼさんの部屋

いちょぼとのんびり

2012-11-24から1日間の記事一覧

T021) Thread join()で同期

実行結果 (1):join()なし (2):jioin()記述 Main.java package com.example.t021_thread_sync; import android.app.Activity; import android.content.Context; import android.os.Bundle; import android.os.Handler; import android.util.Log; import and…

S001) 0.1秒ごとに表示を更新:scheduleAtFixedRate

point scheduleAtFixedRate Main.java package com.example.s001_sample_thread_1; import java.sql.Date; import java.text.SimpleDateFormat; import java.util.concurrent.Executors; import java.util.concurrent.ScheduledExecutorService; import java…

T019(2): WebViewの読み込みが完了してから実行する

目的 文字列をjavascript eval()に渡して計算するときに ボタンクリックイベントなら、webview読み込みしてから時間が経過しているので 問題なく動作していた--->T019読み込みから時間をおかずに、scriptを実行する場合は webviewの読み込みが完了してから処…