我只想在安装时显示一次对话框。我在 currentIntervalChoice 中接受用户的价值。但在其他部分无法访问。我怎样才能做到这一点。我已经在全球范围内声明了 currentIntervalChoice。像这样。
int currentIntervalChoice;
这是我的代码:
private void doFirstRun()
{
SharedPreferences settings = getSharedPreferences(PREFS_NAME, MODE_PRIVATE);
if (settings.getBoolean("isFirstRun", true))
{
//-------------------------------------------------------------------------
Toast.makeText(getApplicationContext(),"in 1st run true", Toast.LENGTH_LONG).show();
LayoutInflater li = LayoutInflater.from(this);
View promptsView = li.inflate(R.layout.prompts, null);
AlertDialog.Builder alertDialogBuilder = new AlertDialog.Builder(this);
// set prompts.xml to alertdialog builder
alertDialogBuilder.setView(promptsView);
final EditText userInput = (EditText) promptsView
.findViewById(R.id.editTextDialogUserInput);
// set dialog message
alertDialogBuilder.setCancelable(false).setPositiveButton("OK",
new DialogInterface.OnClickListener()
{
public void onClick(DialogInterface dialog,int which)
{
String value = userInput.getText().toString();
currentIntervalChoice=Integer.parseInt(value);
toggleLogging(AppSettings.getServiceRunning(MainActivity.this),
AppSettings.setLoggingInterval(MainActivity.this,currentIntervalChoice));
dialog.dismiss();
// return;
}
});
// create alert dialog
AlertDialog alertDialog = alertDialogBuilder.create();
// show it
alertDialog.show();
SharedPreferences.Editor editor = settings.edit();
editor.putBoolean("isFirstRun", false);
editor.commit();
}
else
{
Toast.makeText(getApplicationContext(),"in 1st run false", Toast.LENGTH_LONG).show();
toggleLogging(AppSettings.getServiceRunning(MainActivity.this),
AppSettings.setLoggingInterval(MainActivity.this,currentIntervalChoice));
}
}
我在我的 Activity 的 onCreate() 中调用 doFirstRun()。
谢谢你