时间:4月29日晚上9点地点:信息学院楼组员4月29日今日完成任务4月30日明天计划任务杨波界面数据库链接代码完成;调试整合代码;周亚豪调试欢迎界面设计了查询自习室界面;学习Intent界面跳转;崔海营录入了周一周二的数据;将其余几天的数据导入数据库;闵芮继续调试了昨天的代码,不成功,准备转向调用设...
分类:
其他好文 时间:
2014-07-22 23:10:53
阅读次数:
356
检测到标签后在Activity中的处理流程
1. 在onCreate()中获取NfcAdapter对象;
NfcAdapter nfcAdapter = NfcAdapter.getDefaultAdapter(this);
2.在onNewIntent()中获取Tag对象或者NdefMessage信息;
获取Tag对象:
Tag tag = intent.getParcelableEx...
分类:
移动开发 时间:
2014-07-22 23:04:33
阅读次数:
476
两个Activity之间的传参的具体做法如下: 1.新建一个Bundle类 Bundle
bundle=new Bundle(); 2.向Bundle类中放入数据(类似于map) bundle.putString("key" ," value");
3.新建一个intent对象,并将该bund...
分类:
其他好文 时间:
2014-05-06 09:05:48
阅读次数:
349
调用系统Intent剪裁图片 /** * 调用系统Intent剪裁图片 * @param
context * @param uri * @param w * @param h */ public static void startP...
分类:
移动开发 时间:
2014-05-06 00:29:43
阅读次数:
441
1、权限2、代码public void setPhoneMusic() {
//设置当前文件存放音乐为手机铃声 Intent intent = new
Intent(RingtoneManager.ACTION_RINGTONE_PICKER); //打开系统...
分类:
其他好文 时间:
2014-05-06 00:27:49
阅读次数:
305
当 Activity 的启动模式是 singleTask 或者 singleInstance
的时候。如果使用了 intent 传值,则可能出现 intent 的值无法更新的问题。也就是说每次 intent 接收到的值都是第一次接到的值。因为
intent 没有被更新。想要更新需要做两件事情。1. ...
分类:
移动开发 时间:
2014-05-02 20:54:53
阅读次数:
394
最近在做项目使用webview显示后,有写文档需要打开,找了一些资料,研究了一下,弄出来了!...
分类:
移动开发 时间:
2014-04-30 22:22:40
阅读次数:
296
package com.szy.activity;import
android.app.Activity;import android.content.Intent;import
android.os.Bundle;import android.util.Log;import android.vie...
分类:
其他好文 时间:
2014-04-29 23:35:22
阅读次数:
590
package com.szy.service;import
android.app.IntentService;import android.content.Intent;import
android.util.Log;public class ExampleIntentService exten...
分类:
其他好文 时间:
2014-04-29 18:02:50
阅读次数:
432
复写BroadcastReceiver中的onReceive()方法。intent-filter过滤器:
发送intentprotected static final String ACTION = "com.szy.broadcast.ACTI...
分类:
其他好文 时间:
2014-04-29 09:24:46
阅读次数:
357