1

我正在尝试创建一个顶部有三个选项卡的记事本应用程序,每个选项卡都链接到不同的视图。

前两个选项卡将仅包含要填写的表格,而第三个选项卡将是实际编写完成的地方。问题是,每当我尝试扩充第三个视图时,我都会收到此行的空指针异常:

((LinearLayout) findViewById(R.id.drawRoot)).addView(v,0);

这是我的代码:

public void onTabSelected(ActionBar.Tab tab, FragmentTransaction fragmentTransaction) {
    // When the given tab is selected, show the tab contents in the container
    Fragment fragment = new Section3Fragment();
    Bundle args = new Bundle();
    args.putInt(Section3Fragment.ARG_SECTION_NUMBER, tab.getPosition() + 1);
    fragment.setArguments(args);
    getSupportFragmentManager().beginTransaction()
            .replace(R.id.container3, fragment)
            .commit();
}


public void onTabReselected(ActionBar.Tab tab, FragmentTransaction fragmentTransaction) {
}


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

    int section;
    public static final String ARG_SECTION_NUMBER = "section_number";

    @Override
    public  View  onCreateView(LayoutInflater inflater, ViewGroup container,
            Bundle savedInstanceState) {

        Bundle args = getArguments();
       section = args.getInt(ARG_SECTION_NUMBER);
       View view;

       if (section == 1)
       {
            view = inflater.inflate(R.layout.section3_page1, container,false);

           return view;
       }
       if (section == 2){

        view = inflater.inflate(R.layout.section3_page2, container, false);
        return view;
       }
       else {


            if(v != null)
                Log.v("not null", "not null");

            view = inflater.inflate(R.layout.section3_page3, container, false);
            ((LinearLayout) findViewById(R.id.drawRoot)).addView(v,0); //null pointer exception here!!


           return view;

       }
    }
}

对象 v 是我用来进行实际绘图的类的一个实例。

和 section3_page3 布局文件

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

非常感谢您对此问题的任何见解。

4

3 回答 3

2

快速浏览一下,您是否正在尝试执行以下操作:

 ((LinearLayout) view.findViewById(R.id.drawRoot)).addView(v,0);

您正在寻找片段上的视图。不是您在 if 语句中夸大的观点。

于 2012-07-09T15:47:34.623 回答
1

您发布了 section3_page3.xml 但您打开了inflater.inflate(R.layout.section3_page2, container, false). 这是一个错字还是问题的根本原因?

打开错误的 XML 文件会导致 findViewById() 在此处返回 null:

view = inflater.inflate(R.layout.section3_page2, container, false);
((LinearLayout) findViewById(R.id.drawRoot)).addView(v,0);

因此出现 NullPointerException ......我猜你的意思是:

view = inflater.inflate(R.layout.section3_page3, container, false);
((LinearLayout) findViewById(R.id.drawRoot)).addView(v,0);
于 2012-07-09T15:47:37.147 回答
1

由于您使用的是 ActionBar 和 Fragments,我建议更改此设置:

((LinearLayout) findViewById(R.id.drawRoot)).addView(v,0);

进入这个:

((LinearLayout) getActivity().findViewById(R.id.drawRoot)).addView(v,0);
于 2012-07-09T15:57:31.597 回答