Android 프로 그래 밍 알 람 설정 방법 상세 설명

5458 단어 Android알람시계
이 사례 는 안 드 로 이 드 프로 그래 밍 알 람 설정 방법 을 설명 한다.여러분 께 참고 하도록 공유 하 겠 습 니 다.구체 적 으로 는 다음 과 같 습 니 다.
알 람 은 생활 에서 가장 흔히 볼 수 있 습 니 다.안 드 로 이 드 에 서 는 알 람 매니저 를 통 해 알 람 을 실현 할 수 있 습 니 다.알 람 매니저 류 는 특정한 시간 에 지정 한 시간 을 설정 하 는 데 사 용 됩 니 다.AlarmManager 는 onReceive()방법 을 통 해 이 사건 들 을 실행 합 니 다.시스템 이 대기 상태 에 있 더 라 도 운행 에 영향 을 주지 않 습 니 다.Context.getSystemService 방법 을 통 해 이 서 비 스 를 얻 을 수 있 습 니 다.AlarmManager 의 방법 은 다음 과 같 습 니 다.
방법.
설명 하 다.
Cancel
AlarmManager 서비스 취소
Set
AlarmManager 서비스 설정
setInexactRepeating
부정 확 한 주기 설정
SetRepeating
반복 주기 설정
setTimeZone
시간 대 설정
알 람 을 실현 하려 면 먼저 BroadcastReceiver 에서 계승 하 는 클래스 를 만 들 고 onReceive 방법 으로 이 알 람 서 비 스 를 받 은 다음 Intent 와 PendingIntent 연결 을 통 해 알 람 구성 요 소 를 호출 해 야 합 니 다.Timer PickerDialog 를 통 해 알 람 시간 을 설정 합 니 다.시간 이 지정 한 시간 이 되면 onReceiver 방법 으로 알 람 서 비 스 를 받 은 화면 입 니 다.
먼저 Alarm 서 비 스 를 받 는 AlarmReceiver 클래스 를 실현 하고 Toast 클래스 로 사용자 에 게 알려 줍 니 다.

public class AlarmReceiver extends BroadcastReceiver {
  @Override
  public void onReceive(Context arg0, Intent arg1) {
    // TODO Auto-generated method stub
    Toast.makeText(arg0, "          ", Toast.LENGTH_LONG).show();
  }
}

BroadcastReceiver 서 비 스 를 사 용 했 기 때문에 AndroidManifest.xml 에서 설명 을 해 야 합 니 다.

<receiver
  android:name=".AlarmReceiver"
  android:process=":remote">
</receiver>

그리고 알 람 을 설정 하고 알 람 을 취소 하 는 시간 에 감청 을 해 야 합 니 다.

package cn.edu.pku;
import java.util.Calendar;
import android.app.Activity;
import android.app.AlarmManager;
import android.app.PendingIntent;
import android.app.TimePickerDialog;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;
import android.widget.TimePicker;
public class AlarmActivity extends Activity {
  /** Called when the activity is first created. */
  Button mButton1;
  Button mButton2;
  TextView mTextView;
  Calendar calendar;
  @Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    calendar=Calendar.getInstance();
    mTextView=(TextView)findViewById(R.id.TextView01);
    mButton1=(Button)findViewById(R.id.Button01);
    mButton2=(Button)findViewById(R.id.Button02);
    mButton1.setOnClickListener(new View.OnClickListener() {
      public void onClick(View v) {
        // TODO Auto-generated method stub
        calendar.setTimeInMillis(System.currentTimeMillis());
        int hour = calendar.get(Calendar.HOUR_OF_DAY);
        int minute = calendar.get(Calendar.MINUTE);
        new TimePickerDialog(AlarmActivity.this, new TimePickerDialog.OnTimeSetListener() {
          public void onTimeSet(TimePicker view, int hourOfDay, int minute) {
            // TODO Auto-generated method stub
            calendar.setTimeInMillis(System.currentTimeMillis());
            calendar.set(Calendar.HOUR_OF_DAY, hourOfDay);
            calendar.set(Calendar.MINUTE, minute);
            calendar.set(Calendar.SECOND, 0);
            calendar.set(Calendar.MILLISECOND, 0);
            Intent intent = new Intent(AlarmActivity.this, AlarmReceiver.class);
            PendingIntent pendingIntent = PendingIntent.getBroadcast(AlarmActivity.this, 0, intent, 0);
            AlarmManager alarmManager = (AlarmManager)getSystemService(ALARM_SERVICE);
            alarmManager.set(AlarmManager.RTC_WAKEUP, calendar.getTimeInMillis(), pendingIntent);
            alarmManager.setRepeating(AlarmManager.RTC_WAKEUP, System.currentTimeMillis() + (10 * 1000),
                (24 * 60 * 60 * 1000), pendingIntent);
            String tmps = "       " + format(hourOfDay) + ":" +format(minute);
            mTextView.setText(tmps);
          }
        }, hour, minute, true).show();
      }
    });
    mButton2.setOnClickListener(new View.OnClickListener() {
      public void onClick(View v) {
        // TODO Auto-generated method stub
        Intent intent = new Intent(AlarmActivity.this, AlarmReceiver.class);
        PendingIntent pendingIntent = PendingIntent.getBroadcast(AlarmActivity.this, 0, intent, 0);
        AlarmManager alarmManager = (AlarmManager)getSystemService(ALARM_SERVICE);
        alarmManager.cancel(pendingIntent);
        mTextView.setText("     !");
      }
    });
  }
  private String format(int time){
    String str = "" + time;
    if(str.length() == 1){
      str = "0" + str;
    }
    return str;
  }
}

효 과 는 다음 과 같 습 니 다:
알 람 설정

현재 시간 부터 알 람 설정 시간 까지:

알 람 취소:

더 많은 안 드 로 이 드 관련 내용 에 관심 이 있 는 독자 들 은 본 사이트 의 주 제 를 볼 수 있다.
본 고 에서 말 한 것 이 여러분 의 안 드 로 이 드 프로 그래 밍 에 도움 이 되 기 를 바 랍 니 다.

좋은 웹페이지 즐겨찾기