2

Androidで1分ごとにトーストメッセージを表示するサービスをAndroidに実装しようとしています。私は Android 開発に不慣れで、これを行うのに役立つ AlarmManager について学びました。次の方法でコードを実装しました。

これは私の IIManagerActivity クラスです

package com.example.iimanager;

import android.app.Activity;
import android.app.AlarmManager;
import android.app.PendingIntent;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.os.SystemClock;
import android.view.Menu;
import android.widget.Toast;

public class IIManagerActivity extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_iimanager);
        AlarmManager mgr=(AlarmManager)getSystemService(Context.ALARM_SERVICE);
        Intent i=new Intent(this, SampleService.class);
        PendingIntent pi=PendingIntent.getService(this, 0, i, 0);
        mgr.setInexactRepeating(AlarmManager.ELAPSED_REALTIME_WAKEUP,  SystemClock.elapsedRealtime(), AlarmManager.INTERVAL_FIFTEEN_MINUTES/900, pi);
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.activity_iimanager, menu);
        return true;
    }
}

これは、トースト メッセージを表示するための SampleService です。なんらかの理由で、いくら待ってもトースト メッセージが表示されません。

package com.example.iimanager;

import android.app.IntentService;
import android.app.Notification;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.content.Context;
import android.content.Intent;
import android.widget.Toast;

public class SampleService extends IntentService {

    public SampleService() {
        super("SimpleService");
        //Toast.makeText(getApplicationContext(), "this is my Toast message!!! =)", Toast.LENGTH_LONG).show();
    }

    @Override
    protected void onHandleIntent(Intent intent) {
         //do something
        Toast.makeText(getApplicationContext(), "this is my Toast message!!! =)", Toast.LENGTH_LONG).show();
    }
}

何が間違っているのか、それを修正するために何をする必要があるのか​​教えてください。

事前にどうもありがとうございました。

4

4 に答える 4

1

次のコードを試してください。

MainActivity.java

public class MyService extends Service {

public static final long INTERVAL=60000;//variable for execute services every 1 minute
private Handler mHandler=new Handler(); // run on another Thread to avoid crash
private Timer mTimer=null; // timer handling

@Nullable
@Override
public IBinder onBind(Intent intent) {
    throw new UnsupportedOperationException("unsupported Operation");
}
@Override
public void onCreate() {
    // cancel if service is  already existed
        if(mTimer!=null)
            mTimer.cancel();
    else
            mTimer=new Timer(); // recreate new timer
    mTimer.scheduleAtFixedRate(new TimeDisplayTimerTask(),0,INTERVAL);// schedule task
}
@Override
public void onDestroy() {
    Toast.makeText(this, "In Destroy", Toast.LENGTH_SHORT).show();//display toast when method called
    mTimer.cancel();//cancel the timer
}
//inner class of TimeDisplayTimerTask
private class TimeDisplayTimerTask extends TimerTask {
    @Override
    public void run() {
        // run on another thread
        mHandler.post(new Runnable() {
            @Override
            public void run() {
                // display toast at every 1 minute
                Toast.makeText(getApplicationContext(), "Notify", Toast.LENGTH_SHORT).show();
            }
        });
    }
}
}

MainActivity.java

public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);//load the layout file
    startService(new Intent(this,MyService.class));//use to start the services
}
}

また、このコードをマニフェスト ファイルに追加します

AndroidManifest.xml

<service android:name=".MyService"
        android:enabled="true"/>
于 2016-12-28T10:36:01.907 に答える
-2

コードを含むループスレッドを作成するだけです。

このような:

public class Toaster extends Thread{                      
    public void run(){              
    //Your code to loop

    thread.sleep(60000)           
         }
    }

それが役に立てば幸い!

于 2013-04-02T00:47:08.980 に答える