Tags
- 프런트엔드
- postman html parse
- postman tests
- c#
- Unity
- postman csv
- solidity
- postman session
- postman collection
- postman collection variables
- 우수한 프런트 개발자
- Front-end developer
- postman automations
- C++
- postman excel
- Intellij
- 다빈치 리졸브
- LSL_Script
- MFC
- postman
- web developer
- emplace_back
- 좋은 개발자
- UI/UX Engineer
- Java
- Android
- postman pre-request
- oracle
- Android/iOS Developer
- Interaction 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 | 31 |
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();
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 |