wait
でAsyncTask
を使用すると、ERROR/AndroidRuntime(24230): Caused by: Java.lang.IllegalMonitorStateException: object not locked by thread before wait()
が返されます
待機のためにAsynctask
を使用することは可能ですか?どうやって?
ありがとう
class WaitSplash extends AsyncTask<Void, Void, Void> {
protected Void doInBackground(Void... params) {
try {
wait(MIN_SPLASH_DURATION);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return null;
}
protected void onPostExecute() {
waitSplashFinished = true;
finished();
}
}
wait()
の代わりに Thread.sleep() を使用します。
Thread.sleepメソッドを使用できます
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
e.printStackTrace();
}
@Override
protected String doInBackground(String... params) {
// TODO Auto-generated method stub
try {
Thread.currentThread();
Thread.sleep(5000);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return null;
}
メソッドの実行を設定された時間だけ延期したい場合、良いオプションは Handler.postDelayed() です
ハンドラーと実行可能ファイルを定義...
private Handler handler = new Handler();
private Runnable runnable = new Runnable() {
finished();
};
遅延して実行...
handler.postDelayed(runnable, MIN_SPLASH_DURATION);
これにスレッドを使用する
public class SplashActivity extends Activity{
int splashTime = 5000;
private Thread splashThread;
private Context mContext;
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
this.mContext = this;
setContentView(R.layout.splash_layout);
splashThread = new Thread(){
public void run() {
try{
synchronized (this) {
wait(splashTime);
}
}catch(InterruptedException ex){
ex.printStackTrace();
}finally{
Intent i = new Intent(mContext,LocationDemo.class);
startActivity(i);
stop();
}
}
};
splashThread.start();
}
public boolean onTouchEvent(MotionEvent event) {
if (event.getAction() == MotionEvent.ACTION_DOWN) {
synchronized (splashThread) {
splashThread.notifyAll();
}
}
return true;
}
タッチイベントでは、スレッドは通知を受けます。必要に応じて変更できます。
Asyntaskとwait()を使用するこの方法があります。
public class yourAsynctask extends AsyncTask<Void, Void, Void> {
public boolean inWait;
public boolean stopWork;
@Override
protected void onPreExecute() {
inWait = false;
stopWork = false;
}
@Override
protected Void doInBackground(Void... params) {
synchronized (this) {
while(true) {
if(stopWork) return null;
if(youHaveWork) {
//make some
} else {
try {
wait();
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
}
return null;
}
public void mynotify() {
synchronized (this) {
if(inWait) {
notify();
inWait = false;
}
}
}
public void setStopWork() {
synchronized (this) {
stopWork = false;
if(inWait) {
notify();
inWait = false;
}
}
}
}