Back to project page Weather.
The source code is released under:
Apache License
If you think the Android project Weather 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 com.volitic.weather; //w w w. j a v a 2s .com import android.app.AlertDialog; import android.app.Dialog; import android.app.DialogFragment; import android.os.Bundle; /** * * */ public class AboutDialog extends DialogFragment { @Override public Dialog onCreateDialog( Bundle savedInstanceState ) { AlertDialog.Builder builder = new AlertDialog.Builder(getActivity()); builder .setMessage(R.string.about) .setPositiveButton(R.string.upper_ok,null) .setCancelable(false); return builder.create(); } }