I'm trying to create a alert dialog in a live wallpaper basically asking people to rate..they can skip it here's what I have...but it's not showing up..it works in my webview apps, I'm using livewallpapercreator.com to make the wallpapers, I know you can add in the rating dialog to wallpapers because I've seen it done.
public class SBLiveWallpaper extends WallpaperService {
AlertDialog alert;
public int n=0;
int state;
public static final String SHARED_PREFS_NAME="LiveWallpaperPrefs";
@Override
public void onCreate() {
super.onCreate();
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setMessage("Please Rate Our App 5 Stars! :)")
.setCancelable(false)
.setPositiveButton("RATE NOW", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
dialog.cancel();
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=") ) );
}
})
.setNegativeButton("Skip", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
dialog.cancel();
}
});
alert = builder.create();
alert.show();
}
WallpaperServicea Service? – K-ballo Jan 6 at 18:59