1

使用しようとするとエラーが発生します: TextView tv = (TextView) getView().findViewById(R.id.textView1); 私のFragmentOneクラス内。

私はフラグメントが初めてで、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();
        }

    }
}

レイアウト/アクティビティ_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;
    }
}

レイアウト/fragment.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 に答える