私は基本的に人々に評価を求めるアラートダイアログをライブ壁紙に作成しようとしています..彼らはそれをスキップできます.ここに私が持っているものがあります..しかし、それは表示されません.. .com を使用して壁紙を作成してください。評価ダイアログで壁紙に追加できることはわかっています。
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();
}