興味のあるポイント (POI) を表示する Wikitude アプリケーションを実行しています。アプリケーションが起動したら、ボタンをクリックして ARView (拡張現実) を起動すると、ライブ カメラの画像に POI 画像が重ねて表示されます。
今、私はこれらの画像を頻繁に変更したいと考えています。
私は使用しています:
// Need handler for callbacks to the UI thread
final Handler mHandler = new Handler();
// Create runnable for posting
final Runnable mUpdateResults = new Runnable() {
public void run() {
updateResultsInUi();
}
};
protected void startLongRunningOperation() {
// Fire off a thread to do some work
Thread t = new Thread() {
public void run() {
Pi.computePi(800).toString(); //Do something for a while
mHandler.post(mUpdateResults); //then update image
}
};
t.start();
}
しかし、何も機能していません。確かに何か間違っていると思います...
よろしくお願いします。