如何使用API​​ 21或更高版本在Android中创建通知

时间:2018-01-17 18:47:22

标签: java android android-notifications

我在Android中从应用程序创建通知时遇到问题。 API必须是API 21或更高版本。我可能已经尝试过使用Android Developer和其他网站的100种方式。

minSDK必须是API21

我在API26上打开它

这是我的activity_main.xml

    <RelativeLayout 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" android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    android:paddingBottom="@dimen/activity_vertical_margin" tools:context=".MainActivity">

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Click for Notification"
        android:id="@+id/buckysButton"
        android:layout_centerVertical="true"
        android:layout_centerHorizontal="true"
        android:onClick="buckysButtonClicked" />
    </RelativeLayout>

这是MainActivity.java

        package pl.wat.pz.notification;
        import android.support.v7.app.AppCompatActivity;
        import android.os.Bundle;
        import android.app.NotificationManager;
        import android.app.PendingIntent;
        import android.content.Intent;
        import android.support.v4.app.NotificationCompat;
        import android.os.Bundle;
        import android.view.View;
        public class MainActivity extends AppCompatActivity {   

    NotificationCompat.Builder notification;
    private static final int uniqueID = 45612;

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

        notification = new NotificationCompat.Builder(this);
        notification.setAutoCancel(true);
    }

    public void buckysButtonClicked(View view){
        //Build the notification
        notification.setSmallIcon(R.mipmap.ic_launcher);
        notification.setTicker("This is the ticker");
        notification.setWhen(System.currentTimeMillis());
        notification.setContentTitle("Here is the title");
        notification.setContentText("I am the body text of your notification");

        Intent intent = new Intent(this, MainActivity.class);
        PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT);
        notification.setContentIntent(pendingIntent);

        //Builds notification and issues it
        NotificationManager nm = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
        nm.notify(uniqueID, notification.build());

    }
    }

manifest.xml

    <?xml version="1.0" encoding="utf-8"?>
    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="pl.wat.pz.notification">

    <application
        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>
    </application>

    </manifest>

这里来自android模拟器的图片

After click button nothing happened ;((

1 个答案:

答案 0 :(得分:0)

notification.setSmallIcon(R.mipmap.ic_launcher);

AFAIK,您无法在此处使用mipmap资源,并且您的启动器图标是Android 4.4及更高版本上的合适通知图标。

为通知图标创建单独的可绘制资源。如果您使用的是Android Studio,则“图像资源”向导可以为此提供帮助。

此外,如果您的targetSdkVersion为26或更高,则需要在Android 8.0及更高版本上运行时设置notification channelThis directory包含许多与提升Notification相关的最新示例应用。