android 기초 학습 알림
2286 단어 안드로이드 기초 학습
package com.example.notificationdemo;
import android.os.Bundle;
import android.app.Activity;
import android.app.AlertDialog;
import android.app.Notification;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.content.Context;
import android.content.DialogInterface;
import android.content.DialogInterface.OnClickListener;
import android.content.Intent;
import android.view.Menu;
import android.view.View;
import android.widget.Toast;
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
public void onMyClick(View v) {
int id = v.getId();
switch (id) {
case R.id.btn_toast:
Toast.makeText(this, " toast", Toast.LENGTH_SHORT).show();
break;
case R.id.btn_dialog:
// builder
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setTitle(" ").setMessage(" Alertdialog")
.setPositiveButton(" ", new OnClickListener() {
@Override
public void onClick(DialogInterface arg0, int arg1) {
//
}
});
// builder dialog
AlertDialog dialog=builder.create();
// dialog
dialog.show();
break;
case R.id.btn_notification:
// builder
Notification.Builder notibuilder = new Notification.Builder(this);
notibuilder.setTicker("Tiker").setContentTitle(" ")
.setContentText(" ");
// intent
Intent intent = new Intent(this, MainActivity.class);
// intent PendingIntent
PendingIntent pintent = PendingIntent.getActivity(this, 0,
intent, PendingIntent.FLAG_UPDATE_CURRENT);
// PendingIntent builder
notibuilder.setContentIntent(pintent);
// notification
Notification notification=notibuilder.build();
//
NotificationManager nm=(NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
// notification
nm.notify(1000,notification);
break;
}
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
java 학습의 콘텐츠provider오늘은 4대 구성 요소 중 하나인 콘텐츠provier에 대해 이야기해 보겠습니다. 안드로이드에서 데이터Shared Preferences, 네트워크 저장, 파일 저장, 외부 저장, SQLite 등 5가지 저장 방식을 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.