在Android片段上查看图像

时间:2016-09-02 13:52:16

标签: android android-fragments nullpointerexception

我无法将可绘制文件夹中的图像显示在片段上。 当我尝试显示它时,它会出现java.lang.NullPointerException。 任何帮助将不胜感激。

这是我的代码,

public class Fragment4 extends Fragment {
    public Fragment4() {
    }

    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        View rootView = inflater.inflate (R.layout.fragment4, container, false);
        ImageView image = (ImageView)rootView.findViewById(R.id.image);
        image.setImageResource(R.drawable.image123);
        return  rootView;
    } 
}

XML文件

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent" >

<ImageView
   android:layout_width="wrap_content"
   android:layout_height="wrap_content" />

</LinearLayout>

2 个答案:

答案 0 :(得分:4)

您的ImageView没有id。设置如下,

<ImageView
   android:id="@+id/image"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content" />

答案 1 :(得分:3)

这是因为你没有在xml中为图像添加id属性 试试这个:

<ImageView
android:id="@+id/image"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />