如何从android中的小部件打开应用程序?

前端之家收集整理的这篇文章主要介绍了如何从android中的小部件打开应用程序?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
当我们点击该窗口小部件时,我需要打开活动屏幕(或应用程序).如何做到这一点?

解决方法

您需要在您的窗口小部件上设置一个onClickpendingIntent
Intent intent = new Intent(context,ExampleActivity.class);
PendingIntent pendingIntent = PendingIntent.getActivity(context,intent,0);
// Get the layout for the App Widget and attach an on-click listener to the button
RemoteViews views = new RemoteViews(context.getPackageName(),R.layout.appwidget_provider_layout);
views.setOnClickPendingIntent(R.id.button,pendingIntent);@H_403_7@ 
 

看一下这个

Processing more than one button click at Android Widget

原文链接:https://www.f2er.com/android/310520.html

猜你在找的Android相关文章