最近學校讓做個android音樂播放器,我跟著論壇的教學做到這裡時會出現閃退的問題,不知道怎麼解決,求助(我是小白,如果可以請說詳細些,謝謝啦)
放置fragment的activity沒有實現OnMainFragmentInteractionListener這個接口。
樓主如果不需要用到這個接口, 就把@Override
public void onAttach(Context context) {
super.onAttach(context);
if (context instanceof OnMainFragmentInteractionListener) {
mListener = (OnMainFragmentInteractionListener) context;
} else {
throw new RuntimeException(context.toString()
but = (Button)rootView.findViewById(myMusicButton);
這種寫法實在不提倡