これに続いてフラグメントクラスを作成しようとしています:
そして、それらはフラグメントクラスのコードを提供しますが、私は
ExampleFragments.java
package com.example.learn.fragments;
public static class ExampleFragments extends Fragment {
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Inflate the layout for this fragment
return inflater.inflate(R.layout.blue_pill_frag, container, false);
}
}
しかし、9行目でエラーが発生し、クラスの名前を宣言しています。
Illegal modifier for the class ExampleFragments; only public, abstract & final are permitted
理解できない基本的なことだと思います、ありがとう。