gpt4 book ai didi

java - 在主要 Activity 中处理来自 dialogfragment 的按钮

转载 作者:搜寻专家 更新时间:2023-11-01 08:29:25 24 4
gpt4 key购买 nike

我想在我的主要 Activity 中处理新游戏按钮和添加玩家按钮。如您所见,我在我的 warningdialog 类中定义了 View (它扩展了 DialogFragment,我尝试使用 getter 并尝试调用它,但出现空指针异常,我也尝试了其他方法,但应用程序崩溃了。

最好的方法是什么?我想这样做的原因是因为在按下按钮时我想在主要 Activity 中调用其他方法,所以我认为从主要 Activity 处理对话框按钮是最佳选择。

这是我的 Warningdialog,它从 dialogfragment 扩展而来

public class WarningDialog extends DialogFragment {

public Button mNewGame, mAddPlayersBtn;
private ImageButton mCloseBtn;


/**
* Method to close the dialog
*/
private View.OnClickListener mBtnListener = new View.OnClickListener(){
@Override
public void onClick(View v){
dismiss();
}
};

public WarningDialog() {

}

@Override
public void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setStyle(DialogFragment.STYLE_NORMAL, R.style.DialogTheme);
}

@Nullable
@Override
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
return inflater.inflate(R.layout.newgame_dialog,container,false);
}

@Override
public void onViewCreated(View view, @Nullable Bundle savedInstanceState) {
super.onViewCreated(view, savedInstanceState);
mAddPlayersBtn = (Button) view.findViewById(R.id.btnAddPlayers);
mNewGame = (Button) view.findViewById(R.id.btnNewGame);
mCloseBtn = (ImageButton) view.findViewById(R.id.btnClose);

//closing the dialog
mCloseBtn.setOnClickListener(mBtnListener);

}


public Button getmNewGame() {
return mNewGame;
}

主要 Activity 方法:

    private void warningDialog(){
final WarningDialog warningDialog = new WarningDialog();
warningDialog.show(getSupportFragmentManager(),"Warning");

warningDialog.getmNewGame().setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View arg0) {
}
});

}

最佳答案

您需要做的就是让 DialogFragment 回调到 Activity 中的公共(public)方法。

在 DialogFragment 中,为新游戏按钮添加一个新的 OnClickListener:

/**
* Method to start new game
*/
private View.OnClickListener mNewGameBtnListener = new View.OnClickListener(){
@Override
public void onClick(View v){
((MainActivity)getActivity()).doNewGame();
dismiss();
}
};

然后将其设置为新游戏按钮的点击监听器:

 mNewGame = (Button) view.findViewById(R.id.btnNewGame);
mNewGame.setOnClickListener(mNewGameBtnListener);

然后,在 Activity 中,定义将在单击 DialogFragment 按钮时调用的公共(public)方法:

public void doNewGame() {
//User chose new game!
}

关于java - 在主要 Activity 中处理来自 dialogfragment 的按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42013936/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com