안드로이드 앱에서 가장 쉽게 알림창 띄우는 방법이 뭔가요?
안드로이드 앱에서 가장 쉽게 알림창 띄우는 방법이 뭔가요?
자바스크립트 처럼
alert("hi"); 식으로 안드앱에서도 비슷한 기능이 있나요?
55글자 더 채워주세요.
1개의 답변이 있어요!
https://developer.android.com/guide/topics/ui/dialogs?hl=ko
자바스크립트의 alert 대신 안드로이드에서는 AlertDialog를 띄울 수 있습니다.
new AlertDialog.Builder(getActivity()) .setMessage("내용") .setTitle("제목") .setPositiveButton("확인", null) .show();