LoaderCallbacks<Cursor>

说明:异步数据库操作

一、Android中EditText的setOnEditorActionListener

触发条件:当输入框输入完成,点击软键盘回车键触发事件;

二、Android的常见几种布局方式

FrameLayout布局

描述:FrameLayout的布局效果是所有的控件从底部向上堆叠,默认是堆叠在左上角;

LinearLayout布局

设置页面跳转源码

new Handler().postDelayed(new Runnable() {
    @Override
    public void run() {
        Intent intent = new Intent(StartActivity.this, MapActivity.class); //前者为跳转前页面,后者为跳转后页面
        startActivity(mainIntent);
        finish();
    }
}, 5000); //设置时间,5秒后自动跳转 

 

 posted on 2019-05-04 18:11  北极鳕  阅读(163)  评论(0编辑  收藏  举报