フラグメントを使ったアクティビティの実行で以下のエラー
InflateException: Binary XML file line #0
〜いろいろスタック〜
Must implement OnFragmentInteractionListener
フラグメントの以下のコードを削除したら動いた。このコードはIDEが自動生成したもの
@Override
public void onAttach(Context context) {
super.onAttach(context);
if (context instanceof OnFragmentInteractionListener) {
mListener = (OnFragmentInteractionListener) context;
} else {
throw new RuntimeException(context.toString()
+ " must implement OnFragmentInteractionListener");
}
}