Notification: 알림 띄우기
1. 레이아웃
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.progdv.notification.MainActivity">
<LinearLayout
android:orientation="vertical"
android:padding="16dp"
android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:id="@+id/btn"
android:text="5초 후에 알람 띄우기"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>
</RelativeLayout>
2. 메인 액티비티
package com.progdv.notification;
import android.app.Notification;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.os.Handler;
import android.os.Message;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.app.NotificationCompat;
import android.view.View;
import android.widget.Button;
public class MainActivity extends AppCompatActivity {
public static final int NOTI_ID = 999;
Button btn;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
btn = (Button)findViewById(R.id.btn);
btn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
handler.sendEmptyMessageDelayed(0, 5000);
}
});
}
Handler handler = new Handler() {
@Override
public void handleMessage(Message msg) {
// super.handleMessage(msg);
showNotification(); // 알람을 띄우는 메서드
}
};
public void showNotification() {
// 알람을 클릭했을 때 특정 액티비티를 활성화시킬 인텐트 객체 준비
Intent resultIntent = new Intent(this, MainActivity.class);
// 플래그를 사용하여 MainActivity 실행
resultIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
// 인텐트 전달자 객체에 인텐트를 감싸서 전달
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, resultIntent, 0);
// Notification 객체 생성 (알림 메시지 생성)
Notification noti = new NotificationCompat.Builder(this)
.setContentIntent(pendingIntent)
.setSmallIcon(android.R.drawable.ic_lock_idle_alarm)
.setContentTitle("알림제목")
.setContentText("알림 내용입니다...")
.setTicker("알림 메시지 도착")
.setAutoCancel(true)
.build();
// NotificationManager 객체 가져오기
NotificationManager notiManager =
(NotificationManager)getSystemService(Context.NOTIFICATION_SERVICE);
// 알람 띄우기
notiManager.notify(NOTI_ID, noti);
// 원하는 시점에 취소 할 것이라면 알람의아이디 값을 알고 있으면 된다.
// notimanager.cancel(NOTI_ID);
}
}
버튼을 누르고 5초 후에 좌상단에 알림 표시가 뜬다.
알림 표시를 내려보면 입력한 알림 내용이 표시된다.
'안드로이드' 카테고리의 다른 글
fragment를 이용한 dialog창 띄우기 (0) | 2016.05.12 |
---|---|
화면 분할 (Fragment) (0) | 2016.05.11 |
안드로이드 음악 재생 (0) | 2016.05.11 |
post방식으로 서버에 요청 (0) | 2016.05.10 |
get방식으로 서버에 요청 (0) | 2016.05.10 |