安卓系统Android应用程序开发PPT教材_第5章Android用户界面(5).ppt
《安卓系统Android应用程序开发PPT教材_第5章Android用户界面(5).ppt》由会员分享,可在线阅读,更多相关《安卓系统Android应用程序开发PPT教材_第5章Android用户界面(5).ppt(5页珍藏版)》请在淘文阁 - 分享文档赚钱的网站上搜索。
1、5.2 界面控件n5.2.2 Button和ImageButtonn第1行至第12行代码定义了一个名为buttonListener的点击事件监听器n第13行代码将该监听器注册到Button上n第14行代码将该监听器注册到ImageButton上1.Button.OnClickListener buttonListener=new Button.OnClickListener()Overridepublic void onClick(View v)1.switch(v.getId()2.case R.id.Button01:textView.setText(Button按钮);return;1.
2、case R.id.ImageButton01:2.textView.setText(ImageButton按钮);return;1.;button.setOnClickListener(buttonListener);imageButton.setOnClickListener(buttonListener);5.2 界面控件n5.2.3 CheckBox和RadioButtonqCheckBox是一个同时可以选择多个选项的控件qRadioButton则是仅可以选择一个选项的控件qRadioGroup是RadioButton的承载体,程序运行时不可见,应用程序中可能包含一个或多个RadioG
3、roupq一个RadioGroup包含多个RadioButton,在每个RadioGroup中,用户仅能够选择其中一个RadioButton5.2 界面控件n5.2.3 CheckBox和RadioButtonq建立一个“CheckboxRadiobuttonDemo”程序,包含五个控件,从上至下分别是TextView01、CheckBox01、CheckBox02、RadioButton01、RadioButton02n当选择RadioButton01,RadioButton02则无法选择5.2 界面控件n5.2.3 CheckBox和RadioButtonqCheckboxRadiobuttonDemo在XML文件中的代码1.1.http:/www.anzhuo.cc/forum-45-1.html 安卓手机壁纸下载5.2 界面控件n5.2.3 CheckBox和RadioButtonn第15行标签声明了一个RadioGroupn在第18行和第23行分别声明了两个RadioButton,这两个RadioButton是RadioGroup的子元素15.15.
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 系统 Android 应用程序 开发 PPT 教材 用户界面
限制150内