Android Wear创建通知的几种方式

package com.example.admin.application;

import android.app.Activity;
import android.app.Notification;
import android.app.PendingIntent;
import android.content.Intent;
import android.graphics.BitmapFactory;
import android.graphics.Color;
import android.net.Uri;
import android.os.Bundle;
import android.support.v4.app.RemoteInput;
import android.support.wearable.view.WatchViewStub;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;

import android.support.v4.app.NotificationCompat;
import android.support.v4.app.NotificationManagerCompat;
import android.support.v4.app.NotificationCompat.WearableExtender;
import android.widget.Toast;

public class MainActivity extends Activity {
    // Key for the string that's delivered in the action's intent
    private static final String EXTRA_VOICE_REPLY = "extra_voice_reply";

    private TextView mTextView;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        final WatchViewStub stub = (WatchViewStub) findViewById(R.id.watch_view_stub);
        stub.setOnLayoutInflatedListener(new WatchViewStub.OnLayoutInflatedListener() {
            @Override
            public void onLayoutInflated(WatchViewStub stub) {
                mTextView = (TextView) stub.findViewById(R.id.text);
                Button button = (Button) stub.findViewById(R.id.button);
                button.setOnClickListener(new View.OnClickListener() {
                    @Override
                    public void onClick(View v) {
                //        createNotification("测试1","Fiberhome");
                //        createSpecialNotification("测试2","Fiberhome");

                //        createNotificationWithVoiceInput("语音输入","Fiberhome");
                //        createWearNotification("测试4","Fiberhome");
                //        createNotificationWithAction(""测试5","Fiberhome");

                        createPagesNotification("测试5","Fiberhome");
                    }
                });
                Button button2 = (Button) stub.findViewById(R.id.button2);
                button2.setOnClickListener(new View.OnClickListener() {
                    @Override
                    public void onClick(View v) {

                    }
                });
            }
        });
    }

    /**
     * 为 Notification 添加页面
     * @param title
     * @param content
     */
    private void createPagesNotification(String title, String content) {

    }

    /**
     * 在 Notifcation 中接收语音输入
     * @param title
     * @param content
     */
    private void createNotificationWithVoiceInput(String title, String content) {
        String replyLable=getResources().getString(R.string.reply_label);
        String[] choices=getResources().getStringArray(R.array.reply_choices);
        RemoteInput remoteInput = new RemoteInput.Builder(EXTRA_VOICE_REPLY)
                .setLabel(replyLable)
                .setChoices(choices)
                .build();
        // Create an intent for the reply action
        Intent replyIntent = new Intent(this, ViewEventActivity.class);
        PendingIntent replyPendingIntent =
                PendingIntent.getActivity(this, 0, replyIntent,
                        PendingIntent.FLAG_UPDATE_CURRENT);

        // Create the reply action and add the remote input
        NotificationCompat.Action action =
                new NotificationCompat.Action.Builder(R.drawable.ic_fiber_new_blue_300_18dp,
                        getString(R.string.label), replyPendingIntent)
                        .addRemoteInput(remoteInput)
                        .build();

        // Build the notification and add the action via WearableExtender
        Notification notification =
                new NotificationCompat.Builder(this)
                        .setSmallIcon(R.drawable.ic_event_red_200_18dp)
                        .setContentTitle(title)
                        .setContentText(content)
                        .setDefaults(Notification.DEFAULT_ALL)
                        .extend(new WearableExtender().addAction(action))
                        .build();

        // Issue the notification
        NotificationManagerCompat notificationManager =
                NotificationManagerCompat.from(this);
        int notificationId=004;
        notificationManager.notify(notificationId, notification);
        Toast.makeText(this,getMessageText(replyIntent),Toast.LENGTH_SHORT).show();

    }

    /**
     * @param title
     * @param content
     */
    private void createWearNotification(String title, String content) {

        // Create a WearableExtender to add functionality for wearables
        NotificationCompat.WearableExtender wearableExtender =
                new NotificationCompat.WearableExtender()
                        .setHintHideIcon(true)
                        .setBackground(BitmapFactory.decodeResource(getResources(),R.mipmap.notification_icon1));

        // Create a NotificationCompat.Builder to build a standard notification
        // then extend it with the WearableExtender
        Notification notif = new NotificationCompat.Builder(this)
                .setContentTitle(title)
                .setContentText(content)
                .setDefaults(Notification.DEFAULT_ALL)
                .setSmallIcon(R.drawable.ic_fiber_new_blue_300_18dp)
                .extend(wearableExtender)
                .build();

        // Get an instance of the NotificationManager service
        NotificationManagerCompat notificationManager =
                NotificationManagerCompat.from(this);

        // Build the notification and issues it with notification manager.
        int notificationId=003;
        notificationManager.notify(notificationId, notif);

    }

    /**
     * 添加一个Big View
     * @param title
     * @param content
     */
    private void createNotificationWithBigView(String title, String content) {

        // Specify the 'big view' content to display the long
        // event description that may not fit the normal content text.

        Intent actionIntent = new Intent(this, ViewEventActivity.class);
        PendingIntent actionPendingIntent =
                PendingIntent.getActivity(this, 0, actionIntent,
                        PendingIntent.FLAG_UPDATE_CURRENT);

        NotificationCompat.BigTextStyle bigTextStyle=new NotificationCompat.BigTextStyle();
        bigTextStyle.bigText(content);
        NotificationCompat.Builder notificationBuilder =
                new NotificationCompat.Builder(this)
                        .setSmallIcon(R.drawable.ic_event_red_200_18dp)
                        .setLargeIcon(BitmapFactory.decodeResource(
                                getResources(), R.mipmap.notification_icon1))
                        .setContentTitle(title)
                        .setContentText(content)
                        .setContentIntent(actionPendingIntent)
                        .setDefaults(Notification.DEFAULT_ALL)
                        .addAction(R.drawable.ic_add_location_black_18dp,
                                getString(R.string.map), actionPendingIntent)
                        .setStyle(bigTextStyle);
        // Get an instance of the NotificationManager service
        NotificationManagerCompat notificationManager =
                NotificationManagerCompat.from(this);

        // Build the notification and issues it with notification manager.
        int notificationId=003;
        notificationManager.notify(notificationId, notificationBuilder.build());



    }

    /**
     * Obtain the intent that started this activity by calling
     * Activity.getIntent() and pass it into this method to
     * get the associated voice input string.
     */

    private CharSequence getMessageText(Intent intent) {

        Bundle bundle=RemoteInput.getResultsFromIntent(intent);
        if (bundle != null) {
            return bundle.getCharSequence(EXTRA_VOICE_REPLY);
        }
        return null;
    }

    /**
     * 可穿戴式独有的 Actions
     * @param title
     * @param content
     */
    private void createSpecialNotification(String title, String content) {
        // Create an intent for the reply action
        Intent actionIntent = new Intent(this, ViewEventActivity.class);
        PendingIntent actionPendingIntent =
                PendingIntent.getActivity(this, 0, actionIntent,
                        PendingIntent.FLAG_UPDATE_CURRENT);

        // Create the action
        NotificationCompat.Action action =
                new NotificationCompat.Action.Builder(R.drawable.ic_android_black_18dp,
                        getString(R.string.label), actionPendingIntent)
                        .build();

        // Build the notification and add the action via WearableExtender
        Notification notification =
                new NotificationCompat.Builder(this)
                        .setSmallIcon(R.drawable.ic_message_light_blue_300_18dp)
                        .setContentTitle(title)
                        .setContentText(content)
                        .setDefaults(Notification.DEFAULT_ALL)
                        .extend(new WearableExtender().addAction(action))
                        .build();
        // Get an instance of the NotificationManager service
        NotificationManagerCompat notificationManager =
                NotificationManagerCompat.from(this);

        // Build the notification and issues it with notification manager.
        int notificationId=003;
        notificationManager.notify(notificationId, notification);
    }

    /**
     * 创建一个Notification,添加Action按钮
     * @param location
     * @param content
     */
    private void createNotificationWithAction(String location, String content) {
        int notificationId=002;
        Intent mapIntent=new Intent(Intent.ACTION_VIEW);
        Uri geoUri=Uri.parse("geo:0,0?q="+Uri.encode(location));
        mapIntent.setData(geoUri);
        PendingIntent mapPendingIntent =
                PendingIntent.getActivity(this, 0, mapIntent, 0);

        NotificationCompat.Builder notificationBuilder =
                new NotificationCompat.Builder(this)
                        .setSmallIcon(R.drawable.ic_add_location_black_18dp)
                        .setContentTitle(location)
                        .setContentText(content)
                        .setDefaults(Notification.DEFAULT_ALL)
                        .addAction(R.mipmap.ic_launcher,
                                getString(R.string.map), mapPendingIntent);
        // Get an instance of the NotificationManager service
        NotificationManagerCompat notificationManager =
                NotificationManagerCompat.from(this);

        // Build the notification and issues it with notification manager.
        notificationManager.notify(notificationId, notificationBuilder.build());
    }

    /**
     * 创建一个Notification
     * @param eventTitle
     * @param eventLocation
     */
    private void createNotification(String eventTitle, String eventLocation) {
        int notificationId = 001;
        // Build intent for notification content
        Intent viewIntent = new Intent(this, ViewEventActivity.class);
        PendingIntent viewPendingIntent =
                PendingIntent.getActivity(this, 0, viewIntent, 0);

        NotificationCompat.Builder notificationBuilder =
                new NotificationCompat.Builder(this)
                        .setSmallIcon(R.mipmap.notification_icon1)
                        .setContentTitle(eventTitle)
                        .setContentText(eventLocation)
                        .setDefaults(Notification.DEFAULT_ALL)
                        .setContentIntent(viewPendingIntent);

        // Get an instance of the NotificationManager service
        NotificationManagerCompat notificationManager =
                NotificationManagerCompat.from(this);

        // Build the notification and issues it with notification manager.
        notificationManager.notify(notificationId, notificationBuilder.build());
    }

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值