我正在做一个非常简单的示例,我想要一个按钮来生成通知。我不是在寻找交互性(所以没有意图);只是应该发布一个简单的通知。UI 仅包含一个按钮,单击该按钮可生成通知。
这是代码:
package ank.notificationdemo;
import android.R.drawable;
import android.os.Bundle;
import android.app.Activity;
import android.app.Notification;
import android.app.NotificationManager;
import android.view.View;
import android.widget.Button;
public class MainActivity extends Activity {
Button btn_notify;
Notification noti;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
btn_notify = (Button) findViewById(R.id.btn_notify);
noti = new Notification.Builder(MainActivity.this)
.setContentTitle("Alert!").setContentText("Shipwreck at 22N-56E. Hurry!").setSmallIcon(drawable.ic_dialog_alert)
.build();
btn_notify.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View arg0) {
// TODO Auto-generated method stub
NotificationManager mgr = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
noti.flags |= Notification.FLAG_AUTO_CANCEL;
mgr.notify(100, noti);
}
});
}
}
问题是这适用于模拟器,但主要活动无法在我的 Android 手机(运行 ICS)上加载。但是,其他示例运行良好。
关于可能出现什么问题的任何线索?
提前致谢!