Androidで1つのアプリを作成しています。これは常にバックグラウンドで実行され、5 分後に 1 つのコードが出力されます。その時、アプリケーションはユーザーに表示されず、すべてのプロセスがバックグラウンドで表示されます。私を助けてください。この問題を解決する方法。
package com.finalapp;
import android.os.Bundle;
import android.app.Activity;
import android.util.Log;
import android.view.Menu;
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
MainActivity.this.runOnUiThread(new Runnable() {
@Override
public void run() {
// TODO Auto-generated method stub
for(int i=0 ;i<=2000000;i++)
{
try {
Thread.sleep(1000);
Log.d("final timer",""+ i);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
});
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
}
Please tell me how to make this application. For working in background.
Always print this number in background.
Please help me.