728x90
반응형

Android 179

FCM 푸시 헤드업 알림 안뜨는 경우 ( 포어그라운드 상태 )

// foreground 상태에서 해드업 알림 private void sendNotification2(String title, String body, Intent intent) { NotificationManager notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE); String NOTIFICATION_CHANNEL_ID = "fore001"; if (intent == null) intent = Intent.makeRestartActivityTask(new ComponentName(this, SplashActivity.class)); PendingIntent pendingIntent = Pen..

Android 2020.09.03

스크롤뷰 안에 ListView 가 늘어나지 않고, 스크롤 바가 생기는 이슈

// test public static void setListViewHeightBasedOnChildren(ListView listView) { ListAdapter listAdapter = listView.getAdapter(); if (listAdapter == null) { return; } int desiredWidth = View.MeasureSpec.makeMeasureSpec(listView.getWidth(), View.MeasureSpec.AT_MOST); int totalHeight = 0; View view = null; for (int i = 0; i < listAdapter.getCount(); i++) { view = listAdapter.getView(i, view, listV..

Android 2020.08.26
728x90
반응형