如何在Android中使用单例通知?
在进入示例之前,我们应该了解什么是单例设计模式。单例是一种设计模式,它限制类的实例化只能有一个实例。值得注意的用途包括控制并发和创建应用程序访问其数据存储的中心访问点。
此示例演示如何在Android中使用单例通知
步骤 1 - 在Android Studio中创建一个新项目,转到文件⇒新建项目,并填写所有必需的详细信息以创建新项目。
步骤 2 - 将以下代码添加到res/layout/activity_main.xml。
<?xml version = "1.0" encoding = "utf-8"?> <LinearLayout xmlns:android = "http://schemas.android.com/apk/res/android" xmlns:tools = "http://schemas.android.com/tools" android:layout_width = "match_parent" android:layout_height = "match_parent" tools:context = ".MainActivity" android:orientation = "vertical"> <Button android:id = "@+id/show" android:text = "Show notification from singleTone" android:layout_width = "wrap_content" android:layout_height = "wrap_content" /> </LinearLayout>
在上面的代码中,我们添加了一个按钮。当用户点击显示按钮时,它将从单例类中显示通知。
步骤 3 - 将以下代码添加到src/MainActivity.java
package com.example.andy.myapplication; import android.os.Build; import android.os.Bundle; import android.support.annotation.RequiresApi; import android.support.v7.app.AppCompatActivity; import android.view.View; import android.widget.Button; public class MainActivity extends AppCompatActivity { Button show; singleTonExample singletonexample; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); show = findViewById(R.id.show); singletonexample = singleTonExample.getInstance(); singletonexample.init(getApplicationContext()); show.setOnClickListener(new View.OnClickListener() { @RequiresApi(api = Build.VERSION_CODES.O) @Override public void onClick(View v) { singletonexample.notification(MainActivity.this); } }); } }
在上面的代码中,我们使用了单例示例作为单例类,因此创建一个名为**singleTonExample.java** 的调用并添加以下代码 -
package com.example.andy.myapplication; import android.app.AlertDialog; import android.app.Notification; import android.app.NotificationChannel; import android.app.NotificationManager; import android.content.Context; import android.content.DialogInterface; import android.graphics.Color; import android.os.Build; import android.speech.tts.TextToSpeech; import android.support.annotation.RequiresApi; import android.widget.Toast; public class singleTonExample { public static final String ANDROID_CHANNEL_ID = "com.example.andy.myapplication"; private static singleTonExample ourInstance = new singleTonExample(); private Context appContext; private singleTonExample() { } public static Context get() { return getInstance().getContext(); } public static synchronized singleTonExample getInstance() { return ourInstance; } public void init(Context context) { if (appContext = = null) { this.appContext = context; } } private Context getContext() { return appContext; } @RequiresApi(api = Build.VERSION_CODES.O) public void notification(final MainActivity mainActivity) { NotificationManager notif =(NotificationManager)mainActivity.getSystemService(Context.NOTIFICATION_SERVICE); NotificationChannel androidChannel = new NotificationChannel(ANDROID_CHANNEL_ID, "Notification Channel", NotificationManager.IMPORTANCE_DEFAULT); androidChannel.enableLights(true); androidChannel.enableVibration(true); androidChannel.setLightColor(Color.GREEN); androidChannel.setLockscreenVisibility(Notification.VISIBILITY_PRIVATE); notif.createNotificationChannel(androidChannel); Notification notify = null; notify = new Notification.Builder(mainActivity,ANDROID_CHANNEL_ID).setContentTitle("Notification").setContentText("Sample Text"). setContentTitle("Sample Subject").setSmallIcon(R.mipmap.ic_launcher).build(); notif.notify(0, notify); } }
让我们尝试运行您的应用程序。我假设您已将您的实际Android手机设备连接到您的计算机。要从Android Studio运行应用程序,请打开您的一个项目活动文件,然后单击工具栏中的运行 图标。选择您的手机设备作为选项,然后检查您的手机设备,它将显示您的默认屏幕 -
现在点击上面的按钮,它将显示来自单例类的通知,如下所示 -。
点击这里下载项目代码
广告