ad728

Monday, October 10, 2016

AIDE Tutorial - 26 Simple Notification

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">
    <Button
android:onClick="show"
        android:text="Click here"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />
</LinearLayout>
MainActivity.java

package com.kc.simplenotification;
import android.app.*;
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());
}
}

Watch Video

Share:

0 comments:

Post a Comment

Total Pageviews

Sponsor

Sponsor

ad300