我正在开发类似quickaction的应用程序,请参阅视频http://techcrunch.com/2015/09/20/disrupt-sf-2015-hackathon-winners/进行快速预览。 目前我已经创建了一个可以在屏幕上拖动的聊天头。这是我使用的代码。
notification = new TextView(this);
notification.setTextColor(Color.parseColor("#494949"));
notification.setText("1");
notification.setId(nameid);
notification.setTextSize(19);
final RelativeLayout.LayoutParams params_imageview = new RelativeLayout.LayoutParams(
WindowManager.LayoutParams.WRAP_CONTENT,
WindowManager.LayoutParams.WRAP_CONTENT);
params_imageview.addRule(RelativeLayout.ALIGN_PARENT_LEFT);
final RelativeLayout.LayoutParams params_name = new RelativeLayout.LayoutParams(
WindowManager.LayoutParams.WRAP_CONTENT,
WindowManager.LayoutParams.WRAP_CONTENT);
params_name.addRule(RelativeLayout.ALIGN_RIGHT, imageid);
params_name.addRule(RelativeLayout.ALIGN_TOP, imageid);
parentlayout.addView(chatHead, params_imageview);// adding user image to // vie
parentlayout.addView(notification, params_name);
现在我想获取有关删除了聊天的应用程序的信息,以便我可以使用Android Overlay显示快捷方式。例如,当我在Facebook应用程序图标上删除聊天时,它应该显示快速快捷方式。
在进入stackoverflow之前,我已通过所有手册。