程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程解疑 >> android-在fragment轉換中出現java.lang.NullPointerException

android-在fragment轉換中出現java.lang.NullPointerException

編輯:編程解疑
在fragment轉換中出現java.lang.NullPointerException

最近學校讓做個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()

  • " must implement OnFragmentInteractionListener"); } } 注釋掉吧!!! 另外 import static com.example.ycxh.atry.R.id.myMusicButton;

but = (Button)rootView.findViewById(myMusicButton);
這種寫法實在不提倡

HelloWorld_swh
HelloWorld_swh
Rock_is_a_goodboy
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved