标签:技术分享 text 选择器 评分 可编辑 padding view 时钟 ott
Android控件大多位于android.widget, android.view.View为他们的父类
对于Dialog系列, android.app.Dialog为父类
Android的原生控件, 一般是在res/layout下的xml文件中声明
然后在Activity通过使用super.setContentView(R.layout.layout_name)来加载layout
在Activity中获取控件的引用使用super.findViewById(R.id.widget_id), 然后接可以使用这个引用对控件进行操作(添加监听, 设置内容).
值得提出的是, 上一篇文章中的Layout(LinearLayout, TableLayout, RelativeLayout, …)都是控件.
View子类结构图:
TextView子类结构:
ViewGroup子类结构图:
FrameLayout子类结构:
android.app.Dialog子类结构:
常用文本类控件如下:
Button 按钮 ImageButton 图片按钮
ToggleButton 开关按钮 RadioButton/RadioGroup 单选按钮 CheckBox 复选按钮
ImageView 负责显示图片
ProgressBar 显示进度条, 不可拖动
SeekBar 拖动条
RatingBar 星级评分条
TextClock 文本时钟
AnalogClock 模拟时钟
Chronometer 计时器
DatePicker 日期选择器
TimePicker 时间选择器
CalendarView 日期视图
Toast 消息提示框
Notification 状态栏通知
AlertDialog 对话框
ProgressDialog 进度条对话框
详细信息参考<Activity布局>
该类控件需要Adapter(BaseAdapter, ArrayAdapter, SimpleAdapter)来配合使用
ListView 列表视图 ExpandableListView 可折叠的列表 GridView 网格视图 Spinner 列表选项框 ViewFlipper 翻转视图 Gallery 画廊视图
ScrollView 可滚动的布局容器
参考:
<Android笔记---常用控件以及用法>
<Android开发学习之五、基本界面控件>
标签:技术分享 text 选择器 评分 可编辑 padding view 时钟 ott
原文地址:http://www.cnblogs.com/hzl6255/p/6698500.html