Skip to content

Instantly share code, notes, and snippets.

@codinginflow
Created September 28, 2021 14:32
Show Gist options
  • Save codinginflow/b4024dd58fd4f6a15605d2e15b6f6ea7 to your computer and use it in GitHub Desktop.
Save codinginflow/b4024dd58fd4f6a15605d2e15b6f6ea7 to your computer and use it in GitHub Desktop.
Notifications Tutorial Part 8
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:padding="16dp"
tools:context="com.codinginflow.notificationsexample.MainActivity">
<EditText
android:id="@+id/edit_text_title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Title" />
<EditText
android:id="@+id/edit_text_message"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Message" />
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:onClick="sendOnChannel1"
android:text="Send on Channel 1" />
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:onClick="sendOnChannel2"
android:text="Send on Channel 2" />
</LinearLayout>
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.codinginflow.notificationsexample">
<application
android:name=".App"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<receiver android:name=".DirectReplyReceiver" />
</application>
</manifest>
package com.codinginflow.notificationsexample;
import android.app.Application;
import android.app.NotificationChannel;
import android.app.NotificationChannelGroup;
import android.app.NotificationManager;
import android.os.Build;
public class App extends Application {
public static final String GROUP_1_ID = "group1";
public static final String GROUP_2_ID = "group2";
public static final String CHANNEL_1_ID = "channel1";
public static final String CHANNEL_2_ID = "channel2";
public static final String CHANNEL_3_ID = "channel3";
public static final String CHANNEL_4_ID = "channel4";
@Override
public void onCreate() {
super.onCreate();
createNotificationChannels();
}
private void createNotificationChannels() {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
NotificationChannelGroup group1 = new NotificationChannelGroup(
GROUP_1_ID,
"Group 1"
);
NotificationChannelGroup group2 = new NotificationChannelGroup(
GROUP_2_ID,
"Group 2"
);
NotificationChannel channel1 = new NotificationChannel(
CHANNEL_1_ID,
"Channel 1",
NotificationManager.IMPORTANCE_HIGH
);
channel1.setDescription("This is Channel 1");
channel1.setGroup(GROUP_1_ID);
NotificationChannel channel2 = new NotificationChannel(
CHANNEL_2_ID,
"Channel 2",
NotificationManager.IMPORTANCE_LOW
);
channel2.setDescription("This is Channel 2");
channel2.setGroup(GROUP_1_ID);
NotificationChannel channel3 = new NotificationChannel(
CHANNEL_3_ID,
"Channel 3",
NotificationManager.IMPORTANCE_HIGH
);
channel3.setDescription("This is Channel 3");
channel3.setGroup(GROUP_2_ID);
NotificationChannel channel4 = new NotificationChannel(
CHANNEL_4_ID,
"Channel 4",
NotificationManager.IMPORTANCE_LOW
);
channel4.setDescription("This is Channel 4");
NotificationManager manager = getSystemService(NotificationManager.class);
manager.createNotificationChannelGroup(group1);
manager.createNotificationChannelGroup(group2);
manager.createNotificationChannel(channel1);
manager.createNotificationChannel(channel2);
manager.createNotificationChannel(channel3);
manager.createNotificationChannel(channel4);
}
}
}
package com.codinginflow.notificationsexample;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.support.v4.app.RemoteInput;
public class DirectReplyReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
Bundle remoteInput = RemoteInput.getResultsFromIntent(intent);
if (remoteInput != null) {
CharSequence replyText = remoteInput.getCharSequence("key_text_reply");
Message answer = new Message(replyText, null);
MainActivity.MESSAGES.add(answer);
MainActivity.sendChannel1Notification(context);
}
}
}
package com.codinginflow.notificationsexample;
import android.app.Notification;
import android.app.PendingIntent;
import android.content.Context;
import android.content.Intent;
import android.graphics.Color;
import android.os.Build;
import android.os.SystemClock;
import android.support.v4.app.NotificationCompat;
import android.support.v4.app.NotificationManagerCompat;
import android.support.v4.app.RemoteInput;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.EditText;
import java.util.ArrayList;
import java.util.List;
import static com.codinginflow.notificationsexample.App.CHANNEL_1_ID;
import static com.codinginflow.notificationsexample.App.CHANNEL_2_ID;
public class MainActivity extends AppCompatActivity {
private NotificationManagerCompat notificationManager;
private EditText editTextTitle;
private EditText editTextMessage;
static List<Message> MESSAGES = new ArrayList<>();
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
notificationManager = NotificationManagerCompat.from(this);
editTextTitle = findViewById(R.id.edit_text_title);
editTextMessage = findViewById(R.id.edit_text_message);
MESSAGES.add(new Message("Good morning!", "Jim"));
MESSAGES.add(new Message("Hello", null));
MESSAGES.add(new Message("Hi!", "Jenny"));
}
public void sendOnChannel1(View v) {
sendChannel1Notification(this);
}
public static void sendChannel1Notification(Context context) {
Intent activityIntent = new Intent(context, MainActivity.class);
PendingIntent contentIntent = PendingIntent.getActivity(context,
0, activityIntent, 0);
RemoteInput remoteInput = new RemoteInput.Builder("key_text_reply")
.setLabel("Your answer...")
.build();
Intent replyIntent;
PendingIntent replyPendingIntent = null;
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
replyIntent = new Intent(context, DirectReplyReceiver.class);
replyPendingIntent = PendingIntent.getBroadcast(context,
0, replyIntent, 0);
} else {
//start chat activity instead (PendingIntent.getActivity)
//cancel notification with notificationManagerCompat.cancel(id)
}
NotificationCompat.Action replyAction = new NotificationCompat.Action.Builder(
R.drawable.ic_reply,
"Reply",
replyPendingIntent
).addRemoteInput(remoteInput).build();
NotificationCompat.MessagingStyle messagingStyle =
new NotificationCompat.MessagingStyle("Me");
messagingStyle.setConversationTitle("Group Chat");
for (Message chatMessage : MESSAGES) {
NotificationCompat.MessagingStyle.Message notificationMessage =
new NotificationCompat.MessagingStyle.Message(
chatMessage.getText(),
chatMessage.getTimestamp(),
chatMessage.getSender()
);
messagingStyle.addMessage(notificationMessage);
}
Notification notification = new NotificationCompat.Builder(context, CHANNEL_1_ID)
.setSmallIcon(R.drawable.ic_one)
.setStyle(messagingStyle)
.addAction(replyAction)
.setColor(Color.BLUE)
.setPriority(NotificationCompat.PRIORITY_HIGH)
.setCategory(NotificationCompat.CATEGORY_MESSAGE)
.setContentIntent(contentIntent)
.setAutoCancel(true)
.setOnlyAlertOnce(true)
.build();
NotificationManagerCompat notificationManager = NotificationManagerCompat.from(context);
notificationManager.notify(1, notification);
}
public void sendOnChannel2(View v) {
String title1 = "Title 1";
String message1 = "Message 1";
String title2 = "Title 2";
String message2 = "Message 2";
Notification notification1 = new NotificationCompat.Builder(this, CHANNEL_2_ID)
.setSmallIcon(R.drawable.ic_two)
.setContentTitle(title1)
.setContentText(message1)
.setPriority(NotificationCompat.PRIORITY_LOW)
.setGroup("example_group")
.build();
Notification notification2 = new NotificationCompat.Builder(this, CHANNEL_2_ID)
.setSmallIcon(R.drawable.ic_two)
.setContentTitle(title2)
.setContentText(message2)
.setPriority(NotificationCompat.PRIORITY_LOW)
.setGroup("example_group")
.build();
Notification summaryNotification = new NotificationCompat.Builder(this, CHANNEL_2_ID)
.setSmallIcon(R.drawable.ic_reply)
.setStyle(new NotificationCompat.InboxStyle()
.addLine(title2 + " " + message2)
.addLine(title1 + " " + message1)
.setBigContentTitle("2 new messages")
.setSummaryText("user@example.com"))
.setPriority(NotificationCompat.PRIORITY_LOW)
.setGroup("example_group")
.setGroupAlertBehavior(NotificationCompat.GROUP_ALERT_CHILDREN)
.setGroupSummary(true)
.build();
SystemClock.sleep(2000);
notificationManager.notify(2, notification1);
SystemClock.sleep(2000);
notificationManager.notify(3, notification2);
SystemClock.sleep(2000);
notificationManager.notify(4, summaryNotification);
}
}
package com.codinginflow.notificationsexample;
public class Message {
private CharSequence text;
private long timestamp;
private CharSequence sender;
public Message(CharSequence text, CharSequence sender) {
this.text = text;
this.sender = sender;
timestamp = System.currentTimeMillis();
}
public CharSequence getText() {
return text;
}
public long getTimestamp() {
return timestamp;
}
public CharSequence getSender() {
return sender;
}
}
<resources>
<string name="app_name">Notifications Example</string>
<string name="long_dummy_text">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc sed leo consectetur, iaculis felis non, porta urna. Integer vulputate nisl at massa facilisis fringilla. Ut egestas, eros placerat placerat accumsan, orci velit finibus sem, in placerat lorem dolor in odio. Mauris auctor tortor eget quam facilisis commodo. Nulla in auctor justo, dapibus pharetra elit. Nam malesuada gravida porttitor. Integer placerat, est condimentum facilisis commodo, magna magna sodales dolor, non vestibulum risus tellus ut nibh. Donec accumsan mauris quis libero ullamcorper, sed tincidunt purus lobortis. Nunc sed leo vel est ullamcorper aliquet id eget dolor. Maecenas imperdiet lorem pellentesque, finibus risus in, mollis dui. Cras bibendum risus id rutrum sagittis. Donec ullamcorper, nisi vel rhoncus ullamcorper, urna ligula pretium nunc, at volutpat ex erat bibendum metus.</string>
</resources>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment