티스토리 뷰
MainActivity.java
package com.example.mydialog;
import androidx.appcompat.app.AlertDialog;
import androidx.appcompat.app.AppCompatActivity;
import android.content.DialogInterface;
import android.os.Bundle;
import android.view.View;
import android.widget.AlphabetIndexer;
import android.widget.Button;
import android.widget.TextView;
import android.widget.Toast;
import com.google.android.material.snackbar.Snackbar;
public class MainActivity extends AppCompatActivity {
TextView textView;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
textView = findViewById(R.id.textView);
Button button = (Button) findViewById(R.id.button);
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
showMessage();
}
});
}
public void showMessage(){
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setTitle("안내");
builder.setMessage("종료하시겠습니다?");
builder.setIcon(android.R.drawable.ic_dialog_alert);
builder.setPositiveButton("예", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
Snackbar.make(textView, "예 버튼이 눌렸습니다.",Snackbar.LENGTH_LONG).show();
}
});
builder.setNegativeButton("아니오", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
Snackbar.make(textView, "아니오 버튼이 눌렸습니다.",Snackbar.LENGTH_LONG).show();
}
});
AlertDialog dialog = builder.create();
dialog.show();
}
}
: AlertDialog의 경우 Builder를 이용해서 만들어줌
'Android' 카테고리의 다른 글
인플레이션(Inflation) 예시 (0) | 2020.03.25 |
---|---|
비트맵 버튼 예시 (0) | 2020.03.25 |
토스트, 스낵바 예시 (0) | 2020.03.25 |
이벤트 처리 예시 (터치 리스너, 키 이벤트, 제스처 디텍터) (0) | 2020.03.22 |
안드로이드 테이블 레이아웃 예시 (0) | 2020.03.22 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 프래그먼트매니저
- 부가데이터
- 전화걸기연결
- 비트맵버튼
- 뷰페이저
- 다이얼연결
- 알림대화상자
- Objective-C
- ios
- 데이터
- 액션바
- 어댑터
- 쉐이프드로어블
- 상태드로어블
- prepareforreuse
- 안드로이드
- 터치리스너
- swift
- 인플레이터
- 페이저타이틀스트립
- 스낵바설정
- 카카오톡열기
- 제스처디텍터
- 전화연결하기
- subscript
- objc
- allcases
- 표현패턴
- 프래그먼트
- CaseIterable
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
글 보관함