How to import android.support.v7.app.NotificationCompat.Builder class in Android Studio

Kuldeep Kumar :

I am trying to implement simple notifications in my android app. I am reffering this developer guide

But getting this error message :

Incompatible types.
Required: android.support.v7app.NotificationCompat.Builder
Found: android.support.v4.app.Notification.Compat.Builder

Error Message screenshot

For the following code snippet :

NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(this)
                        .setSmallIcon(R.drawable.ic_launcher)
                        .setContentTitle("My notification")
                        .setContentText("Hello World!");

Here are my imports :

import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.support.v7.app.NotificationCompat;
import android.view.View;
import android.widget.Button;

I think the correct NotificationCompat class is imported. I am using Android Studio v2.1.2 for development. Please help me with this error message. I am new to android programming and java.

Mephoros :

The return type of those builder methods are returning the v4 version of NotificationCompat.Builder. The v7 NotificationCompat.Builder extends the v4 version and largely just inherits the methods from it, meaning the return types don't change.

Documentation:

If you need the v7 version (for the support of NotificationCompat.MediaStyle), just cast to it.

NotificationCompat.Builder mBuilder = (android.support.v7.app.NotificationCompat.Builder) new NotificationCompat.Builder(this)
                    .setSmallIcon(R.drawable.ic_launcher)
                    .setContentTitle("My notification")
                    .setContentText("Hello World!");

If not, swap your imports to use the v4 version.

Guess you like

Origin http://10.200.1.11:23101/article/api/json?id=420212&siteId=1