- 1、本文档共20页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
QQ界面学习总结
个人学习总结
1.TextView的使用
其使用步骤具体如下:
= 1 \* GB3 ①在Layout/XXX.xml中定义一个TextView, 然后设置一些属性
TextView android:text=TextView01
android:id=@+id/TextView01
android:layout_width=wrap_content
android:layout_height=wrap_content
android:layout_x=61px
android:layout_y=69px
/TextView
其具体知识可以参考: HYPERLINK /reference/android/widget/TextView.html /reference/android/widget/TextView.html
= 2 \* GB3 ②在src/xxx.java中声明一个 TextView
private TextView mTextView01;
= 3 \* GB3 ③利用findViewById()方法获取xxx.xml中的TextView
mTextView01 = (TextView) findViewById(R.id.TextView01);
2.EditView的使用和TextView类似
3.Button的使用
与TextView、EditView的区别主要是:一般为Button绑定一个监听器,操作如下
= 1 \* GB3 ①在Layout/XXX.xml中定义一个Button
②在src/xxx.java中声明一个 Button
③利用findViewById()方法获取xxx.xml中的Button
= 4 \* GB3 ④写监听器代码
button_exit.setOnClickListener(new OnClickListener(){
public void onClick(View v){
//根据实际需要写代码,注意这里采用的是匿名内部类的方式
}
});
4. AlertDialog对话框的使用
new AlertDialog.Builder(XXX.this).setTitle(Android?提示)?.setMessage(您确定静音登录吗?).setPositiveButton(确定,new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int whichButton) {
// TODO Auto-generated method stub
根据实际需要填写代码
}
})
.setNegativeButton(取消, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int whichButton) {
// TODO Auto-generated method stub
根据实际需要填写代码
}
})
.show();
5.checkBox的使用
这里省略定义、声明、获取都已经省略了,关键是写checkBox的监听器:
setOnCheckedChangeListener(new OnCheckedChangeListener() {
public void onCheckedChanged(CompoundButton arg0, boolean arg1) {
// TODO Auto-generated method stub
// 根据实际情况书写相关代码
//这里采用的也是匿名内部类的方式 }
});
6.子菜单(o
文档评论(0)