I managed to get it to work with this code:
@Override public void onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds) { Log.d(LOG_TAG, "onUpdate(): "); for (int appWidgetId : appWidgetIds) { Intent callIntent = new Intent(Intent.ACTION_CALL); callIntent.setData(Uri.parse("tel:"+number)); PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, callIntent, 0);
source share