令狐冲浪的博客
My Life, My Blog~~
BlogJava
::
首页
::
联系
::
聚合
::
管理
4 Posts :: 0 Stories :: 0 Comments :: 0 Trackbacks
常用链接
我的随笔
我的评论
我的参与
留言簿
(1)
给我留言
查看公开留言
查看私人留言
我参与的团队
随笔档案
2010年12月 (4)
搜索
最新评论
阅读排行榜
1. android打电话程序(3091)
2. android发短信(1709)
3. android文件读取(819)
4. android对话框~~(181)
评论排行榜
1. android对话框~~(0)
2. android文件读取(0)
3. android发短信(0)
4. android打电话程序(0)
android对话框~~
1
package
com.pptv.lesson05;
2
3
import
android.app.Activity;
4
import
android.app.AlertDialog;
5
import
android.content.DialogInterface;
6
import
android.os.Bundle;
7
import
android.view.View;
8
import
android.widget.Button;
9
10
public
class
lesson05Acitivity
extends
Activity
{
11
/** */
/**
Called when the activity is first created.
*/
12
@Override
13
public
void
onCreate(Bundle savedInstanceState)
{
14
super
.onCreate(savedInstanceState);
15
setContentView(R.layout.main);
16
Button button
=
(Button)findViewById(R.id.button_ok);
17
button.setOnClickListener(
new
View.OnClickListener()
{
18
19
@Override
20
public
void
onClick(View v)
{
21
//
TODO Auto-generated method stub
22
new
AlertDialog.Builder(lesson05Acitivity.
this
)
23
.setTitle(
"
警告:
"
).setMessage(
"
你点击了按钮!
"
).setPositiveButton(
"
关 闭
"
,
new
DialogInterface.OnClickListener()
{
24
25
@Override
26
public
void
onClick(DialogInterface dialog,
int
which)
{
27
//
TODO Auto-generated method stub
28
finish();
29
}
30
}
)
31
.show();
32
33
}
34
}
);
35
}
36
}
posted on 2010-12-15 18:01
令狐冲浪
阅读(181)
评论(0)
编辑
收藏
新用户注册
刷新评论列表
只有注册用户
登录
后才能发表评论。
网站导航:
博客园
IT新闻
知识库
C++博客
博问
管理
Copyright @ 令狐冲浪
Powered by:
.Text
and
ASP.NET
Theme by:
.NET Monster