gpt4 book ai didi

android - 在按下对话框(确定,取消)按钮时获取事件(Android)

转载 作者:行者123 更新时间:2023-11-29 14:39:35 28 4
gpt4 key购买 nike

在我的 Android 应用程序中,我正在显示包含 edittext 的对话框。此对话框使用 PreferenceCategory 显示。我的 xml 文件看起来像

<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" >

<PreferenceCategory android:title="@string/security_setting_edittext_hint" >
<EditTextPreference
android:dialogTitle="@string/security_setting_button"
android:key="set_password_preference"
android:summary="@string/set_password_summary"
android:title="@string/security_setting_button"
android:inputType="number"
android:icon="@drawable/lock"
/>
</PreferenceCategory>

</PreferenceScreen>

我的 Java 文件看起来像

public class Settings extends PreferenceActivity {

Dialog setPasswordDialog;
EditText setPassword;
EditTextPreference editPreference;


@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
this.setTitle("Settings");
addPreferencesFromResource(R.xml.preference_authentication);
editPreference=(EditTextPreference) findPreference("set_password_preference");

}

显示 dialog 没有问题,但现在我希望在按下对话框中的确定和取消按钮时获取事件以执行某些操作。请提供解决方案。

最佳答案

如果我答对了你的问题,你想处理“确定”和“取消”事件,然后根据响应执行一些操作。

// This is using code:
AlertDialog.Builder alert = new AlertDialog.Builder(this);
alert.setTitle("TITLE HERE");
alert.setMessage("MESSAGE");

alert.setPositiveButton("Ok", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int whichButton) {
//Do something here where "ok" clicked
}
});
alert.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int whichButton) {
//So sth here when "cancel" clicked.
}
});
alert.show();

关于android - 在按下对话框(确定,取消)按钮时获取事件(Android),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15217118/

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