2011年2月28日

Intent 传输对象

摘要: Bundle bundle = new Bundle();intent = new Intent(getApplicationContext(), YourActivity.class); bundle.putSerializable("youJavaBean", youJavaBean); intent.putExtras(bundle); startActivity(intent);------------------------------Intent intent = getIntent(); Bundle bundle=intent.getExtras(); yo 阅读全文

posted @ 2011-02-28 22:51 陆晓峰 阅读(1053) 评论(0) 推荐(0)

AndroidNDK开发之“文件操作”

摘要: 其实和上层没什么关系,主要是通过C来完成文件的基本操作。不好意思大家,时间不够,不多说,贴上关键代码。 阅读全文

posted @ 2011-02-28 17:18 陆晓峰 阅读(16973) 评论(7) 推荐(1)

导航