摘要: 一、AndroidManifet.xml 设置为对应的Activity添加:android:windowSoftInputMode="adjustPan"二 、后台代码编写getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_PAN); 阅读全文
posted @ 2012-05-16 16:07 墨❤ 阅读(392) 评论(0) 推荐(0) 编辑
摘要: import java.util.*; public class object { public static void main(String[] args) { String str1 = new String("abcde"); String str2 = new String("abcde"); String str3 = new String("abcde"); String str4 = new String("abcde"); String str5 = new String("abcde& 阅读全文
posted @ 2012-05-16 16:06 墨❤ 阅读(18591) 评论(1) 推荐(2) 编辑
摘要: 最基本分享方法:Intentintent=newIntent(Intent.ACTION_SEND);//启动分享发送的属性intent.setType("text/plain");//分享发送的数据类型intent.setPackage(packAgeName);intent.putExtra(Intent.EXTRA_SUBJECT,"xx分享");//分享的主题intent.putExtra(Intent.EXTRA_TEXT,"分享内容");//分享的内容mActivity.startActivity(Intent.creat 阅读全文
posted @ 2012-05-16 16:05 墨❤ 阅读(5867) 评论(0) 推荐(1) 编辑
摘要: 主要步骤:1、 获取短信会话列表2、根据获取到的会话列表中的recipient_ids信息去canonical_addresses 中获取对应的地址信息。packagecom.xx.readsms;importjava.text.SimpleDateFormat;importjava.util.ArrayList;importjava.util.Date;importjava.util.List;importandroid.app.Activity;importandroid.content.ContentResolver;importandroid.content.Context;impor 阅读全文
posted @ 2012-05-16 16:01 墨❤ 阅读(2204) 评论(1) 推荐(0) 编辑