Linkified About links.

pull/14/head
Joshua Gross 14 years ago
parent b449fc3ef1
commit 3820f53e94

@ -20,33 +20,27 @@ import java.util.Formatter;
import android.app.Activity; import android.app.Activity;
import android.app.AlertDialog; import android.app.AlertDialog;
import android.content.res.Resources; import android.content.res.Resources;
import android.text.util.Linkify;
import android.widget.TextView;
import com.timsu.astrid.R; import com.timsu.astrid.R;
/** /**
* Displays an About ("End User License Agreement") that the user has to accept * Displays an About dialog.
* before using the application. Your application should call
* {@link About#showAbout(android.app.Activity)} in the onCreate() method of the
* first activity. If the user accepts the About, it will never be shown again.
* If the user refuses, {@link android.app.Activity#finish()} is invoked on your
* activity.
*/ */
class About { class About {
private static final String PREFERENCES_ABOUT = "About"; //$NON-NLS-1$
/** /**
* Displays the About if necessary. This method should be called from the * Displays the About dialog from the settings menu.
* onCreate() method of your main Activity.
* *
* @param activity * @param activity For context.
* The Activity to finish if the user rejects the About
*/ */
static void showAbout(final Activity activity, final Resources r, final String versionName) { static void showAbout(final Activity activity, final Resources r, final String versionName) {
final AlertDialog.Builder builder = new AlertDialog.Builder(activity); final AlertDialog.Builder d = new AlertDialog.Builder(activity);
builder.setTitle(R.string.p_about); final TextView t = new TextView(activity);
builder.setCancelable(true); t.setText((new Formatter()).format(r.getString(R.string.p_about_text), versionName).toString());
builder.setMessage((new Formatter()).format(r.getString(R.string.p_about_text), versionName).toString()); Linkify.addLinks(t, Linkify.ALL);
builder.show(); d.setView(t);
d.show();
} }
private About() { private About() {

Loading…
Cancel
Save