Android programlamada begginer, iki sayı toplayıcısını kullanan kullanıcı tarafından seçilen bir sayıdan başlayan bir CountdownTimer (bir saat ve bir başka dakika) kullanmam gerekiyor.Geri Sayım Sayacı Bildirimi
özellikleri olmalıdır:
-The countDownTimer arka planda çalışmak ve bunun 00-00 geldiğinde kullanıcıyı bildirmek zorundadır. Bu kodu var:
package com.android.application;
import android.app.Activity;
import android.app.Notification;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.NumberPicker;
public class MainActivity extends Activity {
NotificationManager nm;
private static final int ID_NOTIFICACION_PERSONAL =1;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
NumberPicker number1 = (NumberPicker)findViewById(R.id.horas);
NumberPicker number2 = (NumberPicker)findViewById(R.id.minutos);
Button btn_lanzar=(Button)findViewById(R.id.btn_notificacion);
number1.setMaxValue(10);
number1.setMinValue(0);
number2.setMinValue(0);
number2.setMaxValue(59);
int number3=number1.getValue();
int number4=number2.getValue();
nm = (NotificationManager)getSystemService(NOTIFICATION_SERVICE);
btn_lanzar.setOnClickListener(new View.OnClickListener(){
@Override
public void onClick(View v) {
Notification notification = new Notification(R.drawable.estacionamiento,"Estacionamiento Inteligente",System.currentTimeMillis());
PendingIntent intencionpendiente = PendingIntent.getActivity(getApplicationContext(),0, new Intent (getApplicationContext(),Segunda_ventana.class),0);
notification.setLatestEventInfo(getApplicationContext(), "Estacionamiento Inteligente", "Su Tiempo se ha Terminado", intencionpendiente);
nm.notify(ID_NOTIFICACION_PERSONAL, notification);
}
});
}
}
Ben countDownTimer sayı seçiciler ile kullanıcı ve yapılır bildirimle seçilen numaradan başlar emin olmak için nasıl bilmiyorum.
Lütfen birisi Help Me. Kullanım Android'in Timer ve TimerTask sınıflar :(
Teşekkürler bro ... = D ama bir düğmeye basarak uygulamayı fırına nasıl en aza indireceğini biliyorsunuz .. ??? – jhonand094
"[Bu konu] başlığına göre moveTaskToBack (true); deneyin (http://stackoverflow.com/questions/2041891/sending-activity-to-background-with-out-finishing) – poisondminds