Back to project page Stormy.
The source code is released under:
This is free and unencumbered software released into the public domain. Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a co...
If you think the Android project Stormy listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package hmmelton.com.stormy; /*from w w w . j a va 2s . c om*/ import android.app.AlertDialog; import android.app.Dialog; import android.app.DialogFragment; import android.content.Context; import android.os.Bundle; /** * Created by hmmelton on 1/17/15. */ public class AlertDialogFragment extends DialogFragment { @Override public Dialog onCreateDialog(Bundle savedInstanceState) { Context context = getActivity(); AlertDialog.Builder builder = new AlertDialog.Builder(context) .setTitle(context.getString(R.string.error_title)) .setMessage(context.getString(R.string.error_message)) .setPositiveButton(context.getString(R.string.error_ok_button_text), null); AlertDialog dialog = builder.create(); return dialog; } }