我有一个奇怪的问题,我有一个解决方法,但想知道是否有人可以阐明为什么会发生这种情况并且可能有更优雅的解决方案?
我有一个包含一系列片段的ViewPager。 Fragments使用自己的布局,当ImageView添加到布局时,ImageView不会在运行时呈现。
如果我在Fragment的onCreateView方法中为ImageView显式设置了imageDrawable(即使图像与布局xml中引用的图像相同,那么图像显示正常。
这是我的片段xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:id="@+id/baseRelLayout"
android:background="@color/colorPrimary">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:srcCompat="@drawable/flamerite_remote_6"
android:layout_marginStart="36dp"
android:id="@+id/remote6ButtonImage"
android:layout_alignParentBottom="false"
android:layout_alignStart="@+id/textView3"
android:scaleType="fitXY"
android:background="@color/colorPrimary"
android:layout_alignBottom="@+id/remote9ButtonImage" />
</RelativeLayout>
这是我在onCreateView
中重新设置drawable图像的地方public class WizardFragment extends Fragment {
public static final String STEP_NUMBER = "STEP_NUMBER";
public static final WizardFragment newInstance(String message){
WizardFragment f = new WizardFragment();
Bundle bdl = new Bundle(1);
bdl.putString(STEP_NUMBER,message);
f.setArguments(bdl);
return f;
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState){
View v = inflater.inflate(R.layout.wizard_fragment_step_1, container, false);
ImageView remoteImage9Button = (ImageView)v.findViewById(R.id.remote9ButtonImage);
remoteImage9Button.setImageDrawable(ResourcesCompat.getDrawable(getResources(),R.drawable.flamerite_remote_9, null)); //THIS IS THE LINE THAT MAKES THE IMAGE WORK AGAIN
return v;
}
}
我当然可以保留imageDrawable的重新设置但是认为只在xml布局中设置时图像显示很奇怪
任何想法都非常感谢!!
答案 0 :(得分:4)
我不知道原因,但在我的情况下,当我改变
时,同样的问题得到了解决来自
的图像src定义app:srcCompat="@drawable/logo"
到
android:src="@drawable/logo"
答案 1 :(得分:1)
只需添加android:src="@drawable/logo"
而不是app:srcCompat