When I put a text and a bitmap into an app they both work. The code is:
TextView textView = findViewById(R.id.textView);
textView.setText("This works");
ImageView testView = findViewById(R.id.imageView);
testView.setImageBitmap(bitmap);
If I try to put the same text and bitmap into a widget, only the text shows up. The code is:
remoteViews.setTextViewText(R.id.textView, "This works");
remoteViews.setImageViewBitmap(R.id.imageView,bitmap);
Logcat shows "Failed execv...because non-0 exit status"
What am I doing wrong?