Tags
- 다빈치 리졸브
- postman collection variables
- Unity
- LSL_Script
- emplace_back
- postman pre-request
- postman csv
- UI/UX Engineer
- Android/iOS Developer
- 좋은 개발자
- c#
- solidity
- postman collection
- postman html parse
- Intellij
- postman automations
- postman tests
- Front-end developer
- Android
- Interaction developer
- postman excel
- postman session
- MFC
- Java
- postman
- oracle
- C++
- 프런트엔드
- 우수한 프런트 개발자
- web developer
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Archives
- Today
- Total
david's daily developer note
[Android] AlertDialog Sample 본문
728x90
Context mContext = getApplicationContext();
LayoutInflater inflater = (LayoutInflater) mContext.getSystemService(LAYOUT_INFLATER_SERVICE);
View layout = inflater.inflate(R.layout.systeminfo,null);
AlertDialog.Builder aDialog = new AlertDialog.Builder(MobileSmartClient.this);
aDialog.setTitle("Connection Information");
aDialog.setView(layout);
aDialog.setPositiveButton("Connection", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
}
});
aDialog.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
}
});
AlertDialog ad = aDialog.create();
ad.show();
출처: http://surprisen.egloos.com/2415659
출처: http://surprisen.egloos.com/2415659
728x90
'Develop (kids)' 카테고리의 다른 글
[Android] XML-DOM (0) | 2011.04.26 |
---|---|
[Android] Intent Class Array 넘기기 (0) | 2011.04.25 |
LSL_Script 오브젝트에게 메세지 듣게 하기. (0) | 2011.04.19 |
LSL_Script 오브젝트 선택시에, 웹페이지 연결하기. (0) | 2011.04.19 |
SL Second Life Viewer2 로컬 OpenSim 서버 접속 하기. (0) | 2011.04.19 |