我想将我的应用程序的快捷方式添加到我的应用程序的小部件菜单中。如何添加它?我找不到解决方案,也许我的搜索键错误。谁能帮我?
问问题
51 次
1 回答
0
为了将点击侦听器绑定到小部件标题上显示的任何图标,您可以通过以下方式进行:
在您的小部件提供程序的方法中添加这些代码onUpdate()
:
// Create an intent
Intent openMyAppIntent= new Intent(context, ActivityToBeOpened.class);
// Create pending intent with intent created above
PendingIntent openMyAppPendingIntent= PendingIntent.getActivity(context, 1, openMyAppIntent, 0);
// Bind pending intent with your remote view OnClickPendingIntent method
remoteView.setOnClickPendingIntent(R.id.app_icon_on_widget, openMyAppPendingIntent);
于 2017-02-22T06:02:04.147 回答