摘要:
一、AndroidManifet.xml 设置为对应的Activity添加:android:windowSoftInputMode="adjustPan"二 、后台代码编写getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_PAN); 阅读全文
摘要:
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& 阅读全文
摘要:
最基本分享方法: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 阅读全文
摘要:
主要步骤: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 阅读全文