I use an Alert class where I define all alert dialogs to show status message to the user. This because is more comfortable to manage.
A typical dialog defined in this class is
public static void DataCleared(Context con) {
AlertDialog.Builder builder = new AlertDialog.Builder(con);
builder.setTitle(R.string.data_cleared_title);
builder.setIcon(android.R.drawable.ic_dialog_info);
DialogListner listner = new DialogListner();
builder.setMessage(R.string.data_cleared_text);
builder.setPositiveButton("ok", listner);
AlertDialog diag = builder.create();
diag.show();
}
This dialog has an ok button that when is clicked close the dialog.
I show these dialog in whatever activity simply calling
Alerts.DataCleared(MyActivity.this)
Now, in the same way I want to create a dialog with two buttons a Cancel button to close the dialog and a Market button to open a link to another Google Play App
I have tried
public static void TryThisApp(Context con) {
AlertDialog.Builder builder = new AlertDialog.Builder(con);
builder.setTitle(R.string.my_title);
builder.setIcon(android.R.drawable.ic_dialog_info);
builder.setMessage(R.string.my_text)
.setCancelable(false)
.setPositiveButton("Ok", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
Intent marketIntent = new Intent(
Intent.ACTION_VIEW,
Uri.parse("market://details?id=com.myapp.sample"
+ getPackageName()));
startActivity(marketIntent);
}
})
.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
dialog.cancel();
}
});
AlertDialog diag = builder.create();
diag.show();
}
But doesn't work, get various compilation error "Cannot make a static reference to the non static method..."
getPackageName() and startActivity(marketIntent); are underlined red by Eclipse, with this message
How could I fix this issue? How could I create a dialog with open link and cancel button?