我正在尝试在通知中实现自定义布局。我可以让它产生正常的通知,但是当使用 setContent(view)完成时会无法崩溃。
Eclipse / ADT也是新手,因此很难知道如何自己解决这些问题(在visual studio中这很容易)。
为了澄清,displayNotification目前设置为在应用启动时执行。
我确信它是如此简单和小巧的东西,但是它已经很晚了,我的思绪已经疲惫不堪。非常感谢所有帮助!
这是我的代码(删除任何已注释掉的代码只是为了清理它)。
protected void displayNotification() {
RemoteViews customNotificationView =
new RemoteViews(getPackageName(), R.layout.notification_layout);
NotificationCompat.Builder mBuilder =
new NotificationCompat.Builder(this);
mBuilder.setContent(customNotificationView);
mBuilder.setTicker("New Message Alert!");
mBuilder.setSmallIcon(R.drawable.ic_launcher);
mBuilder.setOngoing(true);
mNotificationManager = (NotificationManager)
getSystemService(Context.NOTIFICATION_SERVICE);
mNotificationManager.notify(notificationID, mBuilder.build());
}
这是我的自定义布局
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/notification_title"
style="@style/NotificationTitle"
/>
<SeekBar
android:id="@+id/seekBar1"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>
答案 0 :(得分:2)
我测试了你的代码,在布局中没有SeekBar似乎工作正常。根据此answer,您无法在通知布局上添加搜索栏。 我会更好看并评论后者。
编辑: 您可以尝试将搜索栏更改为按钮并向其添加onClick侦听器,这是一个起点。 Adding onClick Action To Button In Notification