
Android
文章平均质量分 58
xiaoruhan
这个作者很懒,什么都没留下…
展开
-
Android Bundle类
Bundle类是一个key-value对,“A mapping from String values to various Parcelable types.”类继承关系:java.lang.Object android.os.BundleBundle类是一个final类:public final classBundleextends Objectimplements Parcel...原创 2012-03-01 11:14:06 · 142 阅读 · 0 评论 -
android Binder 工作流程
一.Linux系统进程间通信有哪些方式? 1.socket; 2.name pipe命名管道; 3.message queue消息队列; 4.singal信号量; 5.share memory共享内存; 二.Java系统的通信方式是什么? 1.socket; 2.name pipe; 三.Android系统通信方式是什么? Binde...原创 2012-03-01 11:37:02 · 256 阅读 · 0 评论 -
Bundle 的两个常用方法
public Set<String> keySet () Since: API Level 1 Returns a Set containing the Strings used as keys in this Bundle. Returns a Set of String keys...原创 2012-03-01 14:27:05 · 389 阅读 · 0 评论 -
关于 httpUrlConnection 的 setDoOutput 与 setDoInput
httpUrlConnection.setDoOutput(true)httpUrlConnection.setDoInput(true) 这两个方法在develope的httpUrlConnection方法中找不到的。一般情况是: HttpURLConnection conn = (HttpURLConnection)url.openConnecti...原创 2012-03-01 17:16:27 · 696 阅读 · 0 评论 -
有关Android发送E-mail
传递信息的Action是Intent.ACTION_SEND。代码如下: Intent sendEmailIntent = new Intent(Intent.ACTION_SEND);String subject = "subject ";String body = "body ";String[] extra = new String[] {"111@bbb....2012-03-02 10:28:46 · 251 阅读 · 0 评论