GalaxyS3で一部の画像が黒い四角に置き換えられるという問題があります。他のデバイスでは、正しく機能しています。何がこの問題を引き起こす可能性があるのか、いくつかの考えがありますか?
編集:いくつかのコード:
final ImageView subscribe = (ImageView) view.findViewById(R.id.subscribe);
final boolean isSubscribed = isSubscribed();
subscribe.setImageResource(isSubscribed ? R.drawable.star_yellow : R.drawable.star_gray);
レイアウト:
<ImageView
android:id="@+id/subscribe"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:padding="20dip"
android:src="@drawable/star_gray"/>