티스토리 뷰
http://developer.android.com/guide/topics/ui/dialogs.html
싸이트에 가면
Creating a Custom Dialog의 예제에 소스가
Context mContext = getApplicationContext();
Dialog dialog = new Dialog(mContext);
dialog.setContentView(R.layout.custom_dialog);
dialog.setTitle("Custom Dialog");
TextView text = (TextView) dialog.findViewById(R.id.text);
text.setText("Hello, this is a custom dialog!");
ImageView image = (ImageView) dialog.findViewById(R.id.image);
image.setImageResource(R.drawable.android);
이렇게 돼있다.
근데 실제 이렇게 돼있는거 실행하면 에러나면서 프로그램이 꺼진다.
그래서 위의
Context mContext = getApplicationContext();
Dialog dialog = new Dialog(mContext);
부분을
Dialog dialog = new Dialog(this); 로 바꿔줬더니 잘 되더라.
싸이트에 가면
Creating a Custom Dialog의 예제에 소스가
Context mContext = getApplicationContext();
Dialog dialog = new Dialog(mContext);
dialog.setContentView(R.layout.custom_dialog);
dialog.setTitle("Custom Dialog");
TextView text = (TextView) dialog.findViewById(R.id.text);
text.setText("Hello, this is a custom dialog!");
ImageView image = (ImageView) dialog.findViewById(R.id.image);
image.setImageResource(R.drawable.android);
이렇게 돼있다.
근데 실제 이렇게 돼있는거 실행하면 에러나면서 프로그램이 꺼진다.
그래서 위의
Context mContext = getApplicationContext();
Dialog dialog = new Dialog(mContext);
부분을
Dialog dialog = new Dialog(this); 로 바꿔줬더니 잘 되더라.
'Development > Mobile' 카테고리의 다른 글
[Android] 한글 초성 검색 (27) | 2010.09.28 |
---|---|
[Android] HttpPut으로 서버에 Entity 보내기 (1) | 2010.09.25 |
[Android] 현재 내 위치 출력하기 (2) | 2010.09.22 |
[Android] SD Card 사용하기 (0) | 2010.09.21 |
[Android] SAX Parsing시 쓸데없는 공백이 많이 포함 되는 경우 (0) | 2010.09.12 |
[Android] SAX사용시 startElement가 Override가 안될 때! (0) | 2010.09.12 |
[Android] Google API Key 발급 받고 MAP 사용하기 (0) | 2010.09.11 |
Android 에뮬레이터 속도 빠르게 하는 방법 (0) | 2010.08.24 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- Troubleshooting
- 프로그래밍
- android
- AWS
- jni강좌
- jni
- API
- Python
- Visual C++
- kering
- java
- Cloud
- 드라이버
- Quiz
- source
- database
- 리눅스
- it
- MFC
- db
- winapi
- C
- linux
- C++
- algorithm
- gcc
- 음악
- driver
- NDK
- 안드로이드
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함