I created a custom notification layout, which have a clickable button. Works so far fine on Android 3 (API Level 11) or higher, but don't work on Android 2.3, the ContentIntent
from the Notification
always overlays my layout and can't be overriden.
I can't click the view, I always click the Notification and start the
Code for displaying notification and layout:
Builder builder = new NotificationCompat.Builder(getApplicationContext());
RemoteViews contentView = new RemoteViews(getPackageName(), R.layout.notification_layout);
contentView.setImageViewResource(R.id.notImage, R.drawable.stat_icon);
contentView.setTextViewText(R.id.notTitle, "Title");
contentView.setTextViewText(R.id.notText, "Text");
contentView.setOnClickPendingIntent(R.id.notButton, secondPendingIntent);
contentView.setOnClickPendingIntent(R.id.notContentLayout, pendingIntent);
builder
.setContentTitle("Title")
.setContentText("Text")
.setSmallIcon(R.drawable.stat_icon)
.setOngoing(true)
.setWhen(0)
.setTicker("Ticket")
.setContent(contentView)
.setContentIntent(contentIntent); //this intent override my contentView.setOnClickPendintIntent. I can't click the view.
not = builder.build();
not.contentView = contentView;
Layout:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/layout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="10dp" >
<RelativeLayout
android:id="@+id/notContentLayout"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_alignParentLeft="true"
android:layout_toLeftOf="@+id/notButton" >
<ImageView
android:id="@+id/notImage"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_alignParentLeft="true"
android:layout_marginLeft="8dp"
android:layout_marginRight="23dp"
android:contentDescription="@string/image_desc" />
<TextView
android:id="@+id/notTitle"
style="@style/NotificationTitle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/notImage" />
<TextView
android:id="@+id/notText"
style="@style/NotificationText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/notTitle"
android:layout_toRightOf="@id/notImage" />
</RelativeLayout>
<ImageButton
android:id="@+id/notButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:background="@color/transparent"
android:contentDescription="@string/image_desc"
android:padding="10dp"
android:src="@android:drawable/ic_media_pause" />
</RelativeLayout>
Easy. But don't work on Android 2.3 or lower, any ideas?
I found it it, it is just not possible with Android 2.3 or lower.
Clickably Notification
buttons work only on Android 3 or higher.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With