調用函數我試圖調用此函數public void arrowClick()
如何從其他片段類
是我的主要片段內public class CounterMain extends Fragment implements View.OnClickListener{
,這個片段擴展android.support.v4.app.Fragment
我想調用這個函數另一個Custmoe對話框片段
public class CustmoeDialog extends DialogFragment {
我試過((CounterMain)getActivity()).arrowClick();
,但我不能使用它,它說:android.support.v4.app.Fragment cannot be cast to my.example.CounterMain
和
CounterMain x = new CounterMain(); x.arrowClick();
它使我的應用程序停止工作時,我把它叫做
任何幫助嗎?