0
我在從導航欄中的按鈕開始新活動時遇到問題。 下面一行是創建一個錯誤。導航欄中按鈕的新活動
Intent myIntent = new Intent(NavigationDrawerFragment.this, AddIntake.class);
我在從導航欄中的按鈕開始新活動時遇到問題。 下面一行是創建一個錯誤。導航欄中按鈕的新活動
Intent myIntent = new Intent(NavigationDrawerFragment.this, AddIntake.class);
請嘗試以下::
@Override
public void onNavigationDrawerItemSelected(int position) {
switch(position) {
case 0:
startActivity(new Intent(this, AddIntake.class));
}
}
謝謝,但我已經使用這個解決。
意圖myIntent = new Intent(getActivity(),AddIntake.class);
提供更多代碼。 –