Back to project page turbo-editor.
The source code is released under:
GNU General Public License
If you think the Android project turbo-editor listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* * Copyright (C) 2014 Vlad Mihalachi// w ww . ja v a 2s. c o m * * This file is part of Turbo Editor. * * Turbo Editor is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Turbo Editor is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package sharedcode.turboeditor.dialogfragment; import android.app.AlertDialog; import android.app.Dialog; import android.app.DialogFragment; import android.content.Context; import android.content.pm.PackageInfo; import android.content.pm.PackageManager; import android.content.res.Resources; import android.os.Bundle; import android.text.Html; import android.view.View; import sharedcode.turboeditor.R; import sharedcode.turboeditor.views.DialogHelper; /** * Dialog fragment that shows some info about this application. * * @author Artem Chepurnoy */ public class AboutDialog extends DialogFragment { private static final String VERSION_UNAVAILABLE = "N/A"; /** * Merges app name and version name into one. */ public static CharSequence getVersionName(Context context) { PackageManager pm = context.getPackageManager(); String packageName = context.getPackageName(); String versionName; try { PackageInfo info = pm.getPackageInfo(packageName, 0); versionName = info.versionName; // Make the info part of version name a bit smaller. if (versionName.indexOf('-') >= 0) { versionName = versionName.replaceFirst("\\-", "<small>-") + "</small>"; } } catch (PackageManager.NameNotFoundException e) { versionName = VERSION_UNAVAILABLE; } Resources res = context.getResources(); return Html.fromHtml( res.getString(R.string.about_title, res.getString(R.string.nome_app_turbo_editor), versionName) ); } @Override public Dialog onCreateDialog(Bundle savedInstanceState) { Context context = getActivity(); assert context != null; CharSequence message = Html.fromHtml(getString( R.string.about_message)); View view = new DialogHelper.Builder(context) .setIcon(getResources().getDrawable(R.drawable.ic_launcher)) .setTitle(getVersionName(context)) .setMessage(message) .createCommonView(); return new AlertDialog.Builder(context) .setView(view) .setNeutralButton(R.string.close, null) .create(); } }