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文档下载到电脑

精彩图片

热门精选

大家正在看

× 游客快捷下载通道(下载后可以自由复制和排版)

限时特价:7 元/份 原价:20元

支付方式:

开通VIP包月会员 特价:29元/月

注:下载文档有可能“只有目录或者内容不全”等情况,请下载之前注意辨别,如果您已付费且无法下载或内容有问题,请联系我们协助你处理。
微信:fanwen365 QQ:370150219