画像ボタンをクリックすると、ポップアップ通知がポップアップします。どのように私はボタンのデフォルトの外観を使用する代わりに "OK"と "キャンセル"ボタンをカスタマイズする、私は自分のカスタムImageButtonsを "OK"と "キャンセル"として使用したい。ポップアップ通知をカスタマイズするにはどうすればよいですか?
ここに私のコードがポップアップ通知です。
ので、代わりのそこに赤色で「OK」と「キャンセル」で、私は "を入れたい:
public class Notifications extends AppCompatActivity {
ImageButton Notifications;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_notifications);
Notifications = (ImageButton) findViewById(R.id.AllowNotifications);
Notifications.setOnClickListener(new View.OnClickListener(){
@Override
public void onClick(View v) {
AlertDialog.Builder builder = new AlertDialog.Builder(Notifications.this);
builder.setCancelable(false); //False= ONLY way to exist notification is by clicking NO
//True= Exit notification by clicking anywhere on screen outside of notification box.
builder.setTitle("Here is the alert dialog");
builder.setMessage("Here is my message thing");
builder.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int WhichButton) {
dialog.cancel();
}
});
builder.setPositiveButton("OK", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
}
});
builder.show();
}
});
}
}
は、ここでは上記のコードで通知をポップアップデフォルトです「ok」と「cancel」を自分のカスタムイメージボタンとして使用し、色を赤から別のものに変更したいと考えています。ポップアップ通知の中でこれを行うにはどうすればいいですか?