Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- 앱 만들기
- 안드로이드
- 안드로이드 코딩 기초
- 개발강의
- Android
- 자바
- 플러터
- 안드로이드 앱 만들기
- 홍드로이드 강의
- 안드로이드 스튜디오
- 자바 튜토리얼
- 안드로이드 예제
- 안드로이드 튜토리얼
- IOS
- android studio 앱 만드는 법
- flutter
- 안드로이드 서비스
- 코틀린
- java
- android example
- Android Java
- 홍드로이드
- 개발자
- 안드로이드 네비게이션 메뉴
- 코딩
- Android Studio
- android tutorial
- hongdroid
- 안드로이드 기초
- 앱 만드는 법
Archives
- Today
- Total
홍드로이드의 야매코딩
#16 안드로이드 스튜디오 다이얼로그 팝업창 (Dialog) 예제 [ 홍드로이드 ] 본문
<activity_main.xml>
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity"> <Button android:id="@+id/btn_dialog" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="다이얼로그"/> <TextView android:id="@+id/tv_result" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textSize="40sp" android:text="테스트"/> </LinearLayout> | cs |
<MainActivity.java>
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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | package com.example.dialogexample; import android.content.DialogInterface; import android.support.v7.app.AlertDialog; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.widget.Button; import android.widget.EditText; import android.widget.TextView; public class MainActivity extends AppCompatActivity { Button btn_dialog; TextView tv_result; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); btn_dialog = (Button)findViewById(R.id.btn_dialog); tv_result = (TextView)findViewById(R.id.tv_result); btn_dialog.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { AlertDialog.Builder ad = new AlertDialog.Builder(MainActivity.this); ad.setIcon(R.mipmap.ic_launcher); ad.setTitle("제목"); ad.setMessage("홍드로이드는 존잘입니까?"); final EditText et = new EditText(MainActivity.this); ad.setView(et); ad.setPositiveButton("확인", new DialogInterface.OnClickListener() { @Override public void onClick(DialogInterface dialog, int which) { String result = et.getText().toString(); tv_result.setText(result); dialog.dismiss(); } }); ad.setNegativeButton("취소", new DialogInterface.OnClickListener() { @Override public void onClick(DialogInterface dialog, int which) { dialog.dismiss(); } }); ad.show(); } }); } } | cs |
'Android Java' 카테고리의 다른 글
#18 안드로이드 스튜디오 동영상 녹화 (MediaRecorder) 예제 [ 홍드로이드 ] (2) | 2019.06.02 |
---|---|
#17 안드로이드 스튜디오 백그라운드 음악 서비스(Service) 예제 [ 홍드로이드 ] (0) | 2019.06.02 |
#15 안드로이드 스튜디오 Thread & Handler (스레드 & 핸들러) 예제 [ 홍드로이드 ] (0) | 2019.06.02 |
#14 안드로이드 스튜디오 (Log출력 및 주석다는 법) 예제 [ 홍드로이드 ] (2) | 2019.06.02 |
#13 안드로이드 스튜디오 프래그먼트 (Fragment) 예제 [ 홍드로이드 ] (0) | 2019.06.02 |
Comments