티스토리 뷰
<activity
android:name="띄우고 싶은 액티비티"
android:parentActivityName = "빽스택에 놓고 싶은 액티비티"
android:theme="@style/AppTheme.NoActionBar">
<intent-filter>
<action android:name="상수 값" />
</intent-filter>
</activity>
Intent intent = new Intent(mContext, 가고싶은 액티비티.class);
intent.addCategory(Intent.CATEGORY_LAUNCHER); //얘는 확인 필요
intent.setFlags(
Intent.FLAG_ACTIVITY_CLEAR_TOP
| Intent.FLAG_ACTIVITY_SINGLE_TOP );
intent.setAction("상수 값"); //매니페스트 인텐트필터에 걸어놓은 상수
TaskStackBuilder stackBuilder = TaskStackBuilder.create (mContext);
stackBuilder.addNextIntentWithParentStack (intent);
PendingIntent resultPendingIntent = stackBuilder.getPendingIntent (리퀘스트코드, PendingIntent.FLAG_UPDATE_CURRENT);String msg = "노티 텍스트";
RemoteViews view = new RemoteViews(mContext.getPackageName(), R.layout.notification_layout); //노티 레이아웃
view.setTextViewText(R.id.noti_content, msg); //텍스트
view.setTextViewText(R.id.noti_title, mContext.getResources().getString(R.string.notification_title)); //타이틀
view.setImageViewResource(R.id.noti_image, R.mipmap.ic_launcher); // 이미지
view.setTextViewText(R.id.noti_date, timeStr); // 시간NotificationCompat.Builder builder = new NotificationCompat.Builder(mContext).setSmallIcon(R.mipmap.ic_launcher).setCustomContentView(view);
builder.setContentIntent(contentIntent);
builder.setAutoCancel(boolean); builder.setOngoing(boolean); return builder.build();NotificationManager nm = (NotificationManager) mContext.getSystemService(Context.NOTIFICATION_SERVICE);
nm.notify(nid, builder.build()); //위에서 리턴받은 놈
코드가 너무 복잡해서 정리가 안된다 ..
정리를 하자면 매니페스트에 액션값 인텐트필터로 걸어 놓고
TaskStackBuilder를 만들면 되고
NotificationManager.notify(리퀘스트 코드, 노티 빌더)
로 만들어 주면 된다
노티 빌더는
private Notification 메소드명 (); 으로
NotificationCompay.Builder builder= new NotificationCompat.Builder(context).setSmallIcon(아이콘).setCustomContentView(view);
builder.setContentIntent(intent);
한 뒤에 return을 builder로 받으면 된다.
fcm 노티가 아니지만 내가 만든게 아니라 정리가 잘 안됨 ...
추 후에 이 코드가 도움이 될지 모르겠네
이 코드보단
https://translate.google.co.kr/translate?hl=ko&sl=en&u=https://developer.android.com/training/notify-user/navigation&prev=search
디벨로퍼 참고 하는게 좋을지도..
'android' 카테고리의 다른 글
프리퍼런스 사용하기 (0) | 2018.11.19 |
---|---|
안드로이드 오레오 노티 뱃지 기능 (0) | 2018.11.02 |
드래그 해서 뷰 크기 조절하기 (0) | 2018.09.14 |
자바 특정 문자 막기 (한글 제외한 문자 받기) 천지인 키보드 ㅡ ㅣ 문제 (0) | 2018.08.29 |
안드로이드 잠금화면 예제 // 어플리케이션 생명주기 활용 // (0) | 2018.08.28 |
- Total
- Today
- Yesterday
- 안드로이드
- 함수형 코드
- 데이터베이스
- not starting .bash_profile
- not found adb
- 차번호 정규식
- rn
- Android
- insert
- nosql
- text 부분 색 칠하기
- ubunut 설치 link
- mongo db
- mac android
- 차번호 정규표현식
- 구글 맵 선그리기
- 자바
- 구글 맵 경로 그리기
- spannableText
- not working adb
- react native state
- MongoDB
- adb 환경변수
- https://hwan-shell.tistory.com/244
- ubunut android
- 귀찮아;;
- 명령어
- https://medium.com/@limgyumin/%EC%BD%94%ED%8B%80%EB%A6%B0-%EC%9D%98-apply-with-let-also-run-%EC%9D%80-%EC%96%B8%EC%A0%9C-%EC%82%AC%EC%9A%A9%ED%95%98%EB%8A%94%EA%B0%80-4a517292df29
- 클래스형 코드
- React Native
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |