1

尝试使用时出现错误:TextView tv = (TextView) getView().findViewById(R.id.textView1); 在我的 FragmentOne 课程中。

我是 Fragments 的新手,我希望学习 PagerView,但我不知道如何动态更改我的小部件。

MainActivity.java

public class MainActivity extends FragmentActivity {
    FragmentOne mFrag;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        if(savedInstanceState==null){
            mFrag = new FragmentOne();
            FragmentTransaction ft = getSupportFragmentManager().beginTransaction();
            ft.add(R.id.fragment_layout, mFrag).commit();
        }

    }
}

布局/activity_main.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" 
    android:id="@+id/fragment_layout">

   <FrameLayout 
    android:id="@+id/fragment_frame"
    android:layout_width="match_parent"
    android:layout_height="match_parent" />


</LinearLayout>

FragmentOne.java

public class FragmentOne extends Fragment {
    TextView tv;

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
        Bundle savedInstanceState) {
        View v = inflater.inflate(R.layout.fragment, container, false);
        // Inflate the layout for this fragment
        tv = (TextView) getView().findViewById(R.id.textView1);
        tv.setText("Yellow World!");
        return v;
    }
}

布局/片段.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Blellow World!" />

</LinearLayout>

日志文件:https ://www.dropbox.com/home/Projects?select=log.txt 错误是“无法开始活动”如果我删除错误就会消失

tv = (TextView) getView().findViewById(R.id.textView1);
            tv.setText("Yellow World!");

FragmentOne 类中的行。

我今天只学习了片段,所以如果它很简单,我很抱歉!

4

1 回答 1

2

您应该使用膨胀视图而不是 getView()。

 tv = (TextView) v.findViewById(R.id.textView1);
于 2013-08-18T22:38:05.260 回答