温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

自定义界面的Notification

发布时间:2020-07-08 11:46:19 来源:网络 阅读:316 作者:祝你幸福365 栏目:开发技术
public class MainActivity extends Activity {
	private Button btn_click;
    private NotificationManager manager;
	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);
		btn_click=(Button) findViewById(R.id.btn_push_notification);
		manager=(NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
		
		
	}

	@Override
	protected void onStart() {
		// TODO Auto-generated method stub
		super.onStart();
		btn_click.setOnClickListener(new OnClickListener() {
			
			@Override
			public void onClick(View arg0) {
				// TODO Auto-generated method stub
			Notification notification=new Notification(R.drawable.ic_launcher,"您有一短信消息", System.currentTimeMillis());
			Intent intent=new Intent(MainActivity.this, SecondActivity.class);
			PendingIntent pdi=PendingIntent.getActivity(MainActivity.this, 0, intent, 0);
			notification.contentIntent=pdi;
			RemoteViews remoteviews=new RemoteViews(getPackageName(), R.layout.remoteview);
			remoteviews.setTextViewText(R.id.tv_remoteview_1, "我是宁采臣,我喜欢你");
			remoteviews.setTextViewText(R.id.tv_remoteview_2, "聂小倩");
			notification.contentView=remoteviews;
		    manager.notify(0, notification);		
			}
		});
	}
	@Override
	public boolean onCreateOptionsMenu(Menu menu) {
		// Inflate the menu; this adds items to the action bar if it is present.
		getMenuInflater().inflate(R.menu.main, menu);
		return true;
	}

}


向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI