Android Studio 的NotePad制作(日志本),Android面试题及解析

}else {Toast.makeText(NotePadMainActivity.this,“密码错误”,Toast.LENGTH_LONG).show();NotePadMainActivity.this.finish();}}});builder.setOnCancelListener(new DialogInterface.OnCancelListener() {@Overridepublic void onCancel(DialogInterface dialog) {Note
摘要由CSDN通过智能技术生成

}

else {

Toast.makeText(NotePadMainActivity.this,“密码错误”,Toast.LENGTH_LONG).show();

NotePadMainActivity.this.finish();

}

}

});

builder.setOnCancelListener(new DialogInterface.OnCancelListener() {

@Override

public void onCancel(DialogInterface dialog) {

NotePadMainActivity.this.finish();

}

});

builder.create().show();

}

}

//刷新界面

private void flush() {

PrefVO.dataFlush();

noteVOList = access.findAllNote();

noteBaseAdapter = new NoteBaseAdapter(NotePadMainActivity.this, R.layout.item, noteVOList);

noteList.setAdapter(noteBaseAdapter);

noteNumText.setText(noteVOList.size() + “”);

}

private class OnItemSelectedListener implements AdapterView.OnItemClickListener {

@Override

public void onItemClick(AdapterView<?> parent, View view, int position, long id) {

note = noteVOList.get(position);

Intent intent = new Intent();

intent.setClass(NotePadMainActivity.this, NotePadScanActivity.class);

Bundle bundle = new Bundle();

bundle.putParcelable(“note”, note);

intent.putExtra(“noteBundle”, bundle);

NotePadMainActivity.this.startActivity(intent);

}

}

private void showProgressDialog() {

pgDialog.setTitle(“loading…”);

pgDialog.setMessage(“少女祈祷中…”);

pgDialog.show();

new progressThread().start();

}

private Handler handler = new Handler(){

public void handleMessage(Message msg){

flush();

pgDialog.cancel();

}

};

private class progressThread extends Thread{

@Override

public void run() {

try{

Thread.sleep(1000);

handler.sendEmptyMessage(1);

} catch (InterruptedException e) {

e.printStackTrace();

}

}

}

这里对列表日志设置了一个长按选项,长按后出现删除和短信发送的提示。这里写图片描述

代码如下:

public void onCreateContextMenu(ContextMenu

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值