ImageView的片段在没有显示

问题描述 投票:0回答:2

我有一个奇怪的问题,我有一个解决方法,但不知道是否有人能阐明为什么发生这种情况有一些启发,更优雅的修复可能?

我有一系列的片段的ViewPager。这些片段用自己的布局,当一个ImageView的被添加到布局中的ImageView心不是在运行时呈现。

如果我明确地设置imageDrawable的片段的onCreateView方法里面的ImageView的(即使图像是在布局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图像绘制

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布局设置图像shoudlnt展示

任何想法不胜感激!

java android android-layout android-fragments android-imageview
2个回答
4
投票

我不知道原因,但对我来说,当我改变了同样的问题就解决了

从图片src定义

app:srcCompat="@drawable/logo"

android:src="@drawable/logo"

1
投票

只需添加android:src="@drawable/logo"代替app:srcCompat

© www.soinside.com 2019 - 2024. All rights reserved.