Skip to content

Instantly share code, notes, and snippets.

@codingwithsara
Created September 8, 2019 11:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codingwithsara/fc33612baaebbef686454d7fdb48b3a1 to your computer and use it in GitHub Desktop.
Save codingwithsara/fc33612baaebbef686454d7fdb48b3a1 to your computer and use it in GitHub Desktop.
AlertDialog Customize 3
// タイトル
TextView titleView = new TextView(this);
titleView.setText("タイトル");
titleView.setTextSize(24);
titleView.setTextColor(Color.WHITE);
titleView.setBackgroundColor(getResources().getColor(R.color.alertBlue));
titleView.setPadding(20, 20, 20, 20);
titleView.setGravity(Gravity.CENTER);
AlertDialog dialog = new AlertDialog.Builder(this)
.setCustomTitle(titleView)
.setMessage("ここにメッセージを入力します。ここにメッセージを入力します。ここにメッセージを入力します。")
.setPositiveButton("OK", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
// OK が押された時の処理を書く
}
})
.show();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment