- 浏览: 238780 次
- 性别:
-
最新评论
-
yanwang19930305:
android 同一个界面多个跑马灯实现 -
aplixy:
关键是destroyItem函数中不能写代码,问题暂时解决了
ViewPager左右无限循环 -
q316085319:
可以参考一下该文章:http://www.glmei.cn/? ...
android4.0以上监听home(屏蔽home或做其他操作) -
arel:
找了很久,总算找到原因了,非常感谢
android自动弹出软键盘(输入键盘) -
liangsaifei:
注释乱码啊。。。
ViewPager左右无限循环
首先,我们先看拨号界面,代码如下:
- Intent intent =new Intent();
- intent.setAction("android.intent.action.CALL_BUTTON");
- startActivity(intent);
和
- Uri uri = Uri.parse("tel:xxxxxx");
- Intent intent = new Intent(Intent.ACTION_DIAL, uri);
- startActivity(intent);
两者都行
但是如果是跳转到应用,使用一下代码:
- Intent intent= new Intent("android.intent.action.DIAL");
- intent.setClassName("com.android.contacts","com.android.contacts.DialtactsActivity");
到通话记录界面:
- Intent intent=new Intent();
- intent.setAction(Intent.ACTION_CALL_BUTTON);
- startActivity(intent);
到联系人界面:
- Intent intent = new Intent();
- intent.setAction(Intent.ACTION_VIEW);
- intent.setData(Contacts.People.CONTENT_URI);
- startActivity(intent);
同理,到应用:
- Intent intent= new Intent("com.android.contacts.action.LIST_STREQUENT");
- intent.setClassName("com.android.contacts","com.android.contacts.DialtactsActivity");
调用联系人界面:
- Intent intent = new Intent();
- intent.setAction(Intent.ACTION_PICK);
- intent.setData(Contacts.People.CONTENT_URI);
- startActivity(intent);
插入联系人
- Intent intent=new Intent(Intent.ACTION_EDIT,Uri.parse("content://com.android.contacts/contacts/"+"1"));
- startActivity(intent);
到联系人列表界面
- Intent intent = new Intent(Intent.ACTION_INSERT_OR_EDIT);
- intent.setType("vnd.android.cursor.item/person");
- intent.setType("vnd.android.cursor.item/contact");
- intent.setType("vnd.android.cursor.item/raw_contact");
- intent.putExtra(android.provider.ContactsContract.Intents.Insert.NAME, name);
- intent.putExtra(android.provider.ContactsContract.Intents.Insert.COMPANY,company);
- intent.putExtra(android.provider.ContactsContract.Intents.Insert.PHONE, tel);
- intent.putExtra(android.provider.ContactsContract.Intents.Insert.PHONE_TYPE, 3);
到短信界面:
- Intent intent = new Intent(Intent.ACTION_VIEW);
- intent.setType("vnd.android-dir/mms-sms");
- // intent.setData(Uri.parse("content://mms-sms/conversations/"));//此为号码
- startActivity(intent);
到应用:
- Intent intent = new Intent("android.intent.action.CONVERSATION");
- startActivity(intent);
以下是在网上找到的其他方法:
1.从google搜索内容
- Intent intent = new Intent();
- intent.setAction(Intent.ACTION_WEB_SEARCH);
- intent.putExtra(SearchManager.QUERY,"searchString")
- startActivity(intent);
2.浏览网页
- Uri uri = Uri.parse("http://www.google.com");
- Intent it = new Intent(Intent.ACTION_VIEW,uri);
- startActivity(it);
3.显示地图
- Uri uri = Uri.parse("geo:38.899533,-77.036476");
- Intent it = new Intent(Intent.Action_VIEW,uri);
- startActivity(it);
4.路径规划
- Uri uri = Uri.parse("http://maps.google.com/maps?f=dsaddr=startLat%20startLng&daddr=endLat%20endLng&hl=en");
- Intent it = new Intent(Intent.ACTION_VIEW,URI);
- startActivity(it);
5.拨打电话
- Uri uri = Uri.parse("tel:xxxxxx");
- Intent it = new Intent(Intent.ACTION_DIAL, uri);
- startActivity(it);
和
- uri = Uri.parse("tel:"+number);
- intent = new Intent(Intent.ACTION_CALL,uri);
- startActivity(intent);
其中不同自己试验一下就知道了。
6.调用发短信的程序
- Intent it = new Intent(Intent.ACTION_VIEW);
- it.putExtra("sms_body", "The SMS text");
- it.setType("vnd.android-dir/mms-sms");
- startActivity(it);
和
- uri = Uri.parse("smsto:"+要发送短信的对方的number);
- intent = new Intent(Intent.ACTION_SENDTO,uri);
- startActivity(intent);
和
- mIntent = new Intent(Intent.ACTION_VIEW);
- mIntent.putExtra("address", c.getString(c.getColumnIndex(column)));
- mIntent.setType("vnd.android-dir/mms-sms");
- startActivity(mIntent);
7.发送短信
- Uri uri = Uri.parse("smsto:0800000123");
- Intent it = new Intent(Intent.ACTION_SENDTO, uri);
- it.putExtra("sms_body", "The SMS text");
- startActivity(it);
- String body="this is sms demo";
- Intent mmsintent = new Intent(Intent.ACTION_SENDTO, Uri.fromParts("smsto", number, null));
- mmsintent.putExtra(Messaging.KEY_ACTION_SENDTO_MESSAGE_BODY, body);
- mmsintent.putExtra(Messaging.KEY_ACTION_SENDTO_COMPOSE_MODE, true);
- mmsintent.putExtra(Messaging.KEY_ACTION_SENDTO_EXIT_ON_SENT, true);
- startActivity(mmsintent);<span style="font-family:Simsun;white-space: normal; background-color: rgb(255, 255, 255);"> </span>
8.发送彩信
- Uri uri = Uri.parse("content://media/external/images/media/23");
- Intent it = new Intent(Intent.ACTION_SEND);
- it.putExtra("sms_body", "some text");
- it.putExtra(Intent.EXTRA_STREAM, uri);
- it.setType("image/png");
- startActivity(it);
- StringBuilder sb = new StringBuilder();
- sb.append("file://");
- sb.append(fd.getAbsoluteFile());
- Intent intent = new Intent(Intent.ACTION_SENDTO, Uri.fromParts("mmsto", number, null));
- // Below extra datas are all optional.
- intent.putExtra(Messaging.KEY_ACTION_SENDTO_MESSAGE_SUBJECT, subject);
- intent.putExtra(Messaging.KEY_ACTION_SENDTO_MESSAGE_BODY, body);
- intent.putExtra(Messaging.KEY_ACTION_SENDTO_CONTENT_URI, sb.toString());
- intent.putExtra(Messaging.KEY_ACTION_SENDTO_COMPOSE_MODE, composeMode);
- intent.putExtra(Messaging.KEY_ACTION_SENDTO_EXIT_ON_SENT, exitOnSent);
- startActivity(intent);
9.发送Email
- Uri uri = Uri.parse("mailto:xxx@abc.com");
- Intent it = new Intent(Intent.ACTION_SENDTO, uri);
- startActivity(it);
- Intent it = new Intent(Intent.ACTION_SEND);
- it.putExtra(Intent.EXTRA_EMAIL, "me@abc.com");
- it.putExtra(Intent.EXTRA_TEXT, "The email body text");
- it.setType("text/plain");
- startActivity(Intent.createChooser(it, "Choose Email Client"));
- Intent it=new Intent(Intent.ACTION_SEND);
- String[] tos={"me@abc.com"};
- String[] ccs={"you@abc.com"};
- it.putExtra(Intent.EXTRA_EMAIL, tos);
- it.putExtra(Intent.EXTRA_CC, ccs);
- it.putExtra(Intent.EXTRA_TEXT, "The email body text");
- it.putExtra(Intent.EXTRA_SUBJECT, "The email subject text");
- it.setType("message/rfc822");
- startActivity(Intent.createChooser(it, "Choose Email Client"));
-
- Intent it = new Intent(Intent.ACTION_SEND);
- it.putExtra(Intent.EXTRA_SUBJECT, "The email subject text");
- it.putExtra(Intent.EXTRA_STREAM, "file:///sdcard/mysong.mp3");
- sendIntent.setType("audio/mp3");
- startActivity(Intent.createChooser(it, "Choose Email Client"));
10.播放多媒体
- Intent it = new Intent(Intent.ACTION_VIEW);
- Uri uri = Uri.parse("file:///sdcard/song.mp3");
- it.setDataAndType(uri, "audio/mp3");
- startActivity(it);
- Uri uri = Uri.withAppendedPath(MediaStore.Audio.Media.INTERNAL_CONTENT_URI, "1");
- Intent it = new Intent(Intent.ACTION_VIEW, uri);
- startActivity(it);
11.uninstall apk
- Uri uri = Uri.fromParts("package", strPackageName, null);
- Intent it = new Intent(Intent.ACTION_DELETE, uri);
- startActivity(it);
12.install apk
- Uri installUri = Uri.fromParts("package", "xxx", null);
- returnIt = new Intent(Intent.ACTION_PACKAGE_ADDED, installUri);
13. 打开照相机
- <1>Intent i = new Intent(Intent.ACTION_CAMERA_BUTTON, null);
- this.sendBroadcast(i);
- <2>long dateTaken = System.currentTimeMillis();
- String name = createName(dateTaken) + ".jpg";
- fileName = folder + name;
- ContentValues values = new ContentValues();
- values.put(Images.Media.TITLE, fileName);
- values.put("_data", fileName);
- values.put(Images.Media.PICASA_ID, fileName);
- values.put(Images.Media.DISPLAY_NAME, fileName);
- values.put(Images.Media.DESCRIPTION, fileName);
- values.put(Images.ImageColumns.BUCKET_DISPLAY_NAME, fileName);
- Uri photoUri = getContentResolver().insert(
- MediaStore.Images.Media.EXTERNAL_CONTENT_URI, values);
-
- Intent inttPhoto = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
- inttPhoto.putExtra(MediaStore.EXTRA_OUTPUT, photoUri);
- startActivityForResult(inttPhoto, 10);
14.从gallery选取图片
- Intent i = new Intent();
- i.setType("image/*");
- i.setAction(Intent.ACTION_GET_CONTENT);
- startActivityForResult(i, 11);
15. 打开录音机
- Intent mi = new Intent(Media.RECORD_SOUND_ACTION);
- startActivity(mi);
16.显示应用详细列表
- Uri uri = Uri.parse("market://details?id=app_id");
- Intent it = new Intent(Intent.ACTION_VIEW, uri);
- startActivity(it);
- //where app_id is the application ID, find the ID
- //by clicking on your application on Market home
- //page, and notice the ID from the address bar<span style="font-family:Simsun;white-space: normal; background-color: rgb(255, 255, 255);"> </span>
刚才找app id未果,结果发现用package name也可以 Uri uri = Uri.parse("market://details?id=<packagename>");
这个简单多了
17寻找应用
- Uri uri = Uri.parse("market://search?q=pname:pkg_name");
- Intent it = new Intent(Intent.ACTION_VIEW, uri);
- startActivity(it);
- //where pkg_name is the full package path for an application<span style="font-family:Simsun;white-space: normal; background-color: rgb(255, 255, 255);"> </span>
18打开联系人列表
- Intent i = new Intent();
- i.setAction(Intent.ACTION_GET_CONTENT);
- i.setType("vnd.android.cursor.item/phone");
- startActivityForResult(i, REQUEST_TEXT);
- Uri uri = Uri.parse("content://contacts/people");
- Intent it = new Intent(Intent.ACTION_PICK, uri);
- startActivityForResult(it, REQUEST_TEXT);
19 打开另一程序
- Intent i = new Intent();
- ComponentName cn = new ComponentName("com.yellowbook.android2",
- "com.yellowbook.android2.AndroidSearch");
- i.setComponent(cn);
- i.setAction("android.intent.action.MAIN");
- startActivityForResult(i, RESULT_OK);
20 添加到短信收件箱
- ContentValues cv = new ContentValues();
- cv.put("type", "1");
- cv.put("address","短信地址");
- cv.put("body", "短信内容");
- getContentResolver().insert(Uri.parse("content://sms/inbox"), cv);
21 从sim卡或者联系人中查询
- Cursor cursor;
- Uri uri;
- if (type == 1) {
- Intent intent = new Intent();
- intent.setData(Uri.parse("content://icc/adn"));
- uri = intent.getData();
- } else
- uri = People.CONTENT_URI;
-
- cursor = activity.getContentResolver().query(uri, null, null, null, null);
- while (cursor.moveToNext()) {
- int peopleId = cursor.getColumnIndex(People._ID);
- int nameId = cursor.getColumnIndex(People.NAME);
- int phoneId = cursor.getColumnIndex(People.NUMBER);}
查看某个联系人,当然这里是ACTION_VIEW,如果为选择并返回action改为ACTION_PICK,当然处理intent时返回需要用到 startActivityforResult
Uri personUri = ContentUris.withAppendedId(People.CONTENT_URI, ID);//最后的ID参数为联系人Provider中的数据库BaseID,即哪一行
Intent intent = new Intent(); intent.setAction(Intent.ACTION_VIEW); intent.setData(personUri); startActivity(intent);
22 删除
- uri = ContentUris.withAppendedId(People.CONTENT_URI, 联系人id);
- int count = activity.getContentResolver().delete(uri, null, null
23 添加到联系人:
- ContentValues cv = new ContentValues();
- ArrayList<ContentProviderOperation> operationList = new ArrayList<ContentProviderOperation>();
- ContentProviderOperation.Builder builder = ContentProviderOperation.newInsert(RawContacts.CONTENT_URI);
- builder.withValues(cv);
- operationList.add(builder.build());
- builder = ContentProviderOperation.newInsert(Data.CONTENT_URI);
- builder.withValueBackReference(StructuredName.RAW_CONTACT_ID, 0);
- builder.withValue(Data.MIMETYPE, StructuredName.CONTENT_ITEM_TYPE);
- builder.withValue(StructuredName.DISPLAY_NAME, "自定义联系人名");
- operationList.add(builder.build());
- builder = ContentProviderOperation.newInsert(Data.CONTENT_URI);
- builder.withValueBackReference(Phone.RAW_CONTACT_ID, 0);
- builder.withValue(Data.MIMETYPE, Phone.CONTENT_ITEM_TYPE);
- builder.withValue(Phone.NUMBER, "联系人的phonenumber");
- builder.withValue(Data.IS_PRIMARY, 1);
- operationList.add(builder.build());
- try {
- getContentResolver().applyBatch(ContactsContract.AUTHORITY, operationList);
- } catch (RemoteException e) {
- e.printStackTrace();
- } catch (OperationApplicationException e) {
- e.printStackTrace();
- }
23 选择一个图片
- Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
- intent.addCategory(Intent.CATEGORY_OPENABLE);
- intent.setType("image/*");
- startActivityForResult(intent, 0);
24 调用
Android
设备的照相机,并设置拍照后存放位置
- Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
- intent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(new File(Environment .getExternalStorageDirectory().getAbsolutePath()+"/cwj", android123 + ".jpg"))); //存放位置为sdcard卡上cwj文件夹,文件名为android123.jpg格式
- startActivityForResult(intent, 0);
25 在market上搜索指定package name,比如搜索com.android123.cwj的写法如下
- Uri uri = Uri.parse("market://search?q=pname:com.android123.cwj");
- Intent intent = new Intent(Intent.ACTION_VIEW, uri); startActivity(intent);
26获取文件信息,并使用相对应软件打开
- private void openFile(File f)
- {
- Intent intent = new Intent();
- intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
- intent.setAction(android.content.Intent.ACTION_VIEW);
- String type = getMIMEType(f);
- intent.setDataAndType(Uri.fromFile(f), type);
- startActivity(intent);
- }
-
- private String getMIMEType(File f){
- String end = f
- .getName()
- .substring(f.getName().lastIndexOf(".") + 1,
- f.getName().length()).toLowerCase();
- String type = "";
- if (end.equals("mp3") || end.equals("aac") || end.equals("aac")
- || end.equals("amr") || end.equals("mpeg")
- || end.equals("mp4"))
- {
- type = "audio";
- } else if (end.equals("jpg") || end.equals("gif")
- || end.equals("png") || end.equals("jpeg"))
- {
- type = "image";
- } else
- {
- type = "*";
- }
- type += "/*";
- return type;
- }
发表评论
-
android 获取实时麦克风声音大小
2014-01-16 11:31 32410好久没来这里了。一直在吸取别人的东西。今天也发一个吧。获取安 ... -
android获取当前正在运行的桌面launcher包名
2013-11-18 11:33 13211/** * 获取正在运行桌面包名(注:存在多个桌面 ... -
android竖排TextView(字是横向的)
2013-10-25 17:21 21786最近项目开发用到竖立的TextView。找了找资料大体都是旋 ... -
android 同一个界面多个跑马灯实现
2013-07-16 11:58 4349要实现跑马灯效果。指定的TextView必须获得焦点。而一个 ... -
引入第三方jar或者library报NoClassDefFoundError: R$styleable
2013-07-15 15:04 11213引入第三方jar或者library时比如自定义控件。突然报 ... -
viewpager点击页签(label)为空解决方案
2013-01-07 16:52 2600刚刚项目中使用viewpager。由于该控件出现的初衷应该是滑 ... -
ViewPager左右无限循环
2012-11-16 02:19 16660个人项目需要做到完美的左右可以循环的加载的ViewPager。 ... -
android4.0以上监听home(屏蔽home或做其他操作)
2012-09-29 14:54 5691android 4.0以后无法通过 ... -
android自动弹出软键盘(输入键盘)
2012-08-10 17:32 54442很多应用中对于一个界面比如进入搜索界面或者修改信息等等情况,为 ... -
android自定义ProgressDialog
2012-08-03 17:49 3762有些需求为了与软件风格保持一致需要自定义控件。progress ... -
自定义ProgressBar
2012-08-03 17:42 1404public class MofficeProgressBar ... -
android后台运行时弹出正在运行通知(类似QQ效果)
2012-07-16 23:16 13342对于一些应用要求应用 ... -
屏幕唤醒与解锁解决方案
2012-07-08 22:04 4610由于有些项目有解锁唤醒屏幕的需求。比如闹钟,打电话等。下面是使 ... -
从一个android应用看android最新版本分布
2012-07-05 22:32 1036最新android版本的使用情况。有图有真相。 ... -
锁屏下点亮屏幕弹出界面
2012-07-05 21:36 2058加入下面这段代码。给你好看。 Window ...
相关推荐
python学习资源
jfinal-undertow 用于开发、部署由 jfinal 开发的 web 项目
基于Andorid的音乐播放器项目设计(国外开源)实现源码,主要针对计算机相关专业的正在做毕设的学生和需要项目实战练习的学习者,也可作为课程设计、期末大作业。
python学习资源
python学习资源
python学习一些项目和资源
【毕业设计】java-springboot+vue家具销售平台实现源码(完整前后端+mysql+说明文档+LunW).zip
HTML+CSS+JavaScarip开发的前端网页源代码
python学习资源
【毕业设计】java-springboot-vue健身房信息管理系统源码(完整前后端+mysql+说明文档+LunW).zip
成绩管理系统C/Go。大学生期末小作业,指针实现,C语言版本(ANSI C)和Go语言版本
1_基于大数据的智能菜品个性化推荐与点餐系统的设计与实现.docx
【毕业设计】java-springboot-vue交流互动平台实现源码(完整前后端+mysql+说明文档+LunW).zip
内容概要:本文主要探讨了在高并发情况下如何设计并优化火车票秒杀系统,确保系统的高性能与稳定性。通过对比分析三种库存管理模式(下单减库存、支付减库存、预扣库存),强调了预扣库存结合本地缓存及远程Redis统一库存的优势,同时介绍了如何利用Nginx的加权轮询策略、MQ消息队列异步处理等方式降低系统压力,保障交易完整性和数据一致性,防止超卖现象。 适用人群:具有一定互联网应用开发经验的研发人员和技术管理人员。 使用场景及目标:适用于电商、票务等行业需要处理大量瞬时并发请求的业务场景。其目标在于通过合理的架构规划,实现在高峰期保持平台的稳定运行,保证用户体验的同时最大化销售额。 其他说明:文中提及的技术细节如Epoll I/O多路复用模型以及分布式系统中的容错措施等内容,对于深入理解大规模并发系统的构建有着重要指导意义。
基于 OpenCV 和 PyTorch 的深度车牌识别
【毕业设计-java】springboot-vue教学资料管理系统实现源码(完整前后端+mysql+说明文档+LunW).zip
此数据集包含有关出租车行程的详细信息,包括乘客人数、行程距离、付款类型、车费金额和行程时长。它可用于各种数据分析和机器学习应用程序,例如票价预测和乘车模式分析。
把代码放到Word中,通过开发工具——Visual Basic——插入模块,粘贴在里在,把在硅基流动中申请的API放到VBA代码中。在Word中,选择一个问题,运行这个DeepSeekV3的宏就可以实现在线问答
【毕业设计】java-springboot+vue机动车号牌管理系统实现源码(完整前后端+mysql+说明文档+LunW).zip
【毕业设计】java-springboot-vue交通管理在线服务系统的开发源码(完整前后端+mysql+说明文档+LunW).zip