Main.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center">
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center">
<Button
android:onClick="show"
android:text="Click here"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
android:onClick="show"
android:text="Click here"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
MainActivity.java
package com.kc.simplenotification;
package com.kc.simplenotification;
import android.app.*;
import android.os.*;
import android.view.*;
import android.content.*;
import android.os.*;
import android.view.*;
import android.content.*;
public class MainActivity extends Activity
{
@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
}
public void show (View v){
Notification.Builder nb=
new Notification.Builder(this);
nb.setContentTitle("Notification");
nb.setContentText("You Clicked!!!!");
nb.setSmallIcon(R.drawable.ic_launcher);
NotificationManager nm=(NotificationManager)
getSystemService(Context.NOTIFICATION_SERVICE);
nm.notify(1,nb.build());
}
}
{
@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
}
public void show (View v){
Notification.Builder nb=
new Notification.Builder(this);
nb.setContentTitle("Notification");
nb.setContentText("You Clicked!!!!");
nb.setSmallIcon(R.drawable.ic_launcher);
NotificationManager nm=(NotificationManager)
getSystemService(Context.NOTIFICATION_SERVICE);
nm.notify(1,nb.build());
}
}
Watch Video