Android でのフラグメントの使用
フラグメントを学習しようとしています
public class FirstFragment extends Fragment implements OnClickListener {
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.first_fragment,
container, false);
Button nextButton = (Button) view.findViewById(R.id.button_first);
nextButton.setOnClickListener(this);
return view;
}
}
行内::
View view = inflater.inflate(R.layout.first_fragment,container, false);
- なぜ私たちは与えるのですか
false
- これは何についてですか
container
誰かが素人の言葉で、最も簡単な言葉で説明できますか
答えを簡単にしてください...私は初心者です