Android编程代码速查

Android编程代码速查

ID:41032588

大小:28.74 KB

页数:24页

时间:2019-08-14

Android编程代码速查_第1页
Android编程代码速查_第2页
Android编程代码速查_第3页
Android编程代码速查_第4页
Android编程代码速查_第5页
资源描述:

《Android编程代码速查》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库

1、0android创建按钮Buttonbutton=newButton(this);1android创建输入框EditTexteditText=newEditText(this);2android创建文本TextViewtextView=newTextView(this);3android设置文本显示内容TextViewtextView=newTextView(this);textView.setText("helloworld!");4android设置文本背景色TextViewtextView=newTe

2、xtView(this);textView.setBackgroundColor(Color.YELLOW);5android设置文本颜色TextViewtextView=newTextView(this);textView.setTextColor(Color.YELLOW);6android设置文本文字大小TextViewtextView=newTextView(this);textView.setTextSize(18);7android设置输入框宽度EditTexteditText=newEditT

3、ext(this);editText.setWidth(200);8android设置输入框为密码框EditTexteditText=newEditText(this);editText.setTransformationMethod(PasswordTransformationMethod.getInstance());9android设置输入框为密码框(xml配置)android:password="true"10android提示对话框的使用AlertDialog.Builderbuilder=new

4、AlertDialog.Builder(this);builder.setTitle("你好");builder.setPositiveButton("OK",this);builder.show()需实现android.content.DialogInterface.OnClickListener接口11androidListView的使用ListViewlistView=newListView(this);ArrayList>list=newArrayLis

5、t>();SimpleAdapteradapter=newSimpleAdapter(this,list,R.layout.list,newString[]{"标题"},newint[]{R.id.TextView01});listView.setAdapter(adapter);listView.setOnItemClickListener(this);然后实现OnItemClickListener接口publicvoidonItemClick(Adapter

6、Viewparent,Viewview,intposition,longid){}12android更新ListViewListViewlistView=newListView(this);ArrayList>list=newArrayList>();SimpleAdapteradapter=newSimpleAdapter(this,list,R.layout.list,newString[]{"标题"},n

7、ewint[]{R.id.TextView01});listView.setAdapter(adapter);adapter.notifyDataSetChanged();//通知更新ListView13android创建LinearLayoutLinearLayoutlayoutParant=newLinearLayout(this);14android时间设置对话框的使用DatePickerDialogdlg=newDatePickerDialog(this,this,year,month,day);d

8、lg.show();/*yearmonthday均为int型,第二个参数为this时,该类需要implementsOnDateSetListener并重写publicvoidonDateSet(DatePickerview,intyear,intmonthOfYear,intdayOfMonth){}*/15android创建FrameLayoutFrameLayoutlayout=newFrameLayout(

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。