手机版

android常用控件总结(13)

发布时间:2021-06-06   来源:未知    
字号:

android 常用控件总结

KeyEvent(long DownTime,long EventTime,int action,int code,int repeat,int metState,int device,int scancode,int flags);

KeyEvent(KeyEvent origEvent,long EventTime,int newRepart);

例:

public class Activity01 extends Activity{

public void onCreate(Bundle savedInstanceState){

super.onCreate(savedInstanceState);

setContentView(yout.main);

}

public boolean onKeyDown(int keyCode, KeyEvent event){

//这里构建KeyEvent对象,其功能为返回键的功能

//因此我们按任意键都会执行返回键功能

KeyEvent key = new KeyEvent(KeyEvent.ACTION_DOWN, KeyEvent.KEYCODE_BACK);

//这里传入的参数就是我们自己构建的KeyEvent对象key

return super.onKeyDown(key.getKeyCode(), key);

}

}

3.2 常用控件

Button

xml设计

<Button

android:id="@+id/button"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

></Button>

代码设计Button button = new Button(this);

button.setText("我是Button");

button.setWidth(123); //设置宽度

button.setHeight(123); //设置高度

button.setTextColor(Color.BLUE); //设置文字颜色

button.setTextSize(123); //设置字体大小

android常用控件总结(13).doc 将本文的Word文档下载到电脑,方便复制、编辑、收藏和打印
×
二维码
× 游客快捷下载通道(下载后可以自由复制和排版)
VIP包月下载
特价:29 元/月 原价:99元
低至 0.3 元/份 每月下载150
全站内容免费自由复制
VIP包月下载
特价:29 元/月 原价:99元
低至 0.3 元/份 每月下载150
全站内容免费自由复制
注:下载文档有可能出现无法下载或内容有问题,请联系客服协助您处理。
× 常见问题(客服时间:周一到周五 9:30-18:00)