`
uz31415926
  • 浏览: 7571 次
社区版块
存档分类
最新评论

android的action

阅读更多
[b][/b][b]android intent和intent action大全

android 中intent是经常要用到的。不管是页面牵转,还是传递数据,或是调用外部程序,系统功能都要用到intent。在做了一些intent的例子之后,整理了一下intent,希望对大家有用。由于intent内容太多,不可能真的写全,难免会有遗落,以后我会随时更新。如果你们有疑问或新的intent内容,希望交流。
★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);

6.调用发短信的程序
Intent it = new Intent(Intent.ACTION_VIEW);   
it.putExtra("sms_body", "The SMS text");   
it.setType("vnd.android-dir/mms-sms");   
startActivity(it);

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);

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     

刚才找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      

18打开联系人列表
            <1>           
           Intent i = new Intent();
           i.setAction(Intent.ACTION_GET_CONTENT);
           i.setType("vnd.android.cursor.item/phone");
           startActivityForResult(i, REQUEST_TEXT);

            <2>
            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.调用系统编辑添加联系人(高版本SDK有效):
Intent it = new Intent(Intent.ACTION_INSERT_OR_EDIT);
                it.setType("vnd.android.cursor.item/contact");
                // it.setType(Contacts.CONTENT_ITEM_TYPE);
                it.putExtra("name", "myName");
                it.putExtra(android.provider.Contacts.Intents.Insert.COMPANY,  "organization");
                it.putExtra(android.provider.Contacts.Intents.Insert.EMAIL, "email");
                it.putExtra(android.provider.Contacts.Intents.Insert.PHONE,"homePhone");
                it.putExtra( android.provider.Contacts.Intents.Insert.SECONDARY_PHONE,
                                "mobilePhone");
                it.putExtra(  android.provider.Contacts.Intents.Insert.TERTIARY_PHONE,
                                "workPhone");
                it.putExtra(android.provider.Contacts.Intents.Insert.JOB_TITLE,"title");
                startActivity(it);

21.调用系统编辑添加联系人(全有效):
Intent intent = new Intent(Intent.ACTION_INSERT_OR_EDIT);
            intent.setType(People.CONTENT_ITEM_TYPE);
            intent.putExtra(Contacts.Intents.Insert.NAME, "My Name");
            intent.putExtra(Contacts.Intents.Insert.PHONE, "+1234567890");
            intent.putExtra(Contacts.Intents.Insert.PHONE_TYPE, Contacts.PhonesColumns.TYPE_MOBILE);
            intent.putExtra(Contacts.Intents.Insert.EMAIL, "com@com.com");
            intent.putExtra(Contacts.Intents.Insert.EMAIL_TYPE,                    Contacts.ContactMethodsColumns.TYPE_WORK);
            startActivity(intent);

22(更新)
    //直接打电话出去  
    Uri uri = Uri.parse("tel:0800000123");  
    Intent it = new Intent(Intent.ACTION_CALL, uri);  
    startActivity(it);  
    //用這個,要在 AndroidManifest.xml 中,加上  
    //<uses-permission id="android.permission.CALL_PHONE" />

23.最基本的share 信息的intent,可以传一段text信息到各个手机上已安装程序:如SMS,Email,sina微波,米聊,facebook,twitter等等

                Intent it = new Intent(Intent.ACTION_SEND);
                it.putExtra(Intent.EXTRA_TEXT, "The email subject text");
                it.setType("text/plain");
                startActivity(Intent.createChooser(it, "Choose Email Client"));
         
24.调用skype 的intent

方法1:老版,新版不可用,可能是因为skype的activity结构变动:

//        Intent sky = new Intent("android.intent.action.CALL_PRIVILEGED");
//        sky.setClassName("com.skype.raider",
//                "com.skype.raider.contactsync.ContactSkypeOutCallStartActivity");
//        sky.setData(Uri.parse("tel:" + phone));
//        startActivity(sky);

方法2:打开到skype的main page:

//        PackageManager packageManager = getActivity().getPackageManager();
//        Intent skype = packageManager.getLaunchIntentForPackage("com.skype.raider");
//        skype.setData(Uri.parse("tel:65465446"));
//        startActivity(skype);

方法3:传入号码,直接进入skype拨号画面并打电话:

        Intent intent = new Intent("android.intent.action.CALL_PRIVILEGED");  
        intent.setClassName("com.skype.raider",
        "com.skype.raider.Main");
        intent.setData(Uri.parse("tel:" + phone));  
        startActivity(intent);   

★intent action大全:
android.intent.action.ALL_APPS
android.intent.action.ANSWER
android.intent.action.ATTACH_DATA
android.intent.action.BUG_REPORT
android.intent.action.CALL
android.intent.action.CALL_BUTTON
android.intent.action.CHOOSER
android.intent.action.CREATE_LIVE_FOLDER
android.intent.action.CREATE_SHORTCUT
android.intent.action.DELETE
android.intent.action.DIAL
android.intent.action.EDIT
android.intent.action.GET_CONTENT
android.intent.action.INSERT
android.intent.action.INSERT_OR_EDIT
android.intent.action.MAIN
android.intent.action.MEDIA_SEARCH
android.intent.action.PICK
android.intent.action.PICK_ACTIVITY
android.intent.action.RINGTONE_PICKER
android.intent.action.RUN
android.intent.action.SEARCH
android.intent.action.SEARCH_LONG_PRESS
android.intent.action.SEND
android.intent.action.SENDTO
android.intent.action.SET_WALLPAPER
android.intent.action.SYNC
android.intent.action.SYSTEM_TUTORIAL
android.intent.action.VIEW
android.intent.action.VOICE_COMMAND
android.intent.action.WEB_SEARCH
android.net.wifi.PICK_WIFI_NETWORK
android.settings.AIRPLANE_MODE_SETTINGS
android.settings.APN_SETTINGS
android.settings.APPLICATION_DEVELOPMENT_SETTINGS
android.settings.APPLICATION_SETTINGS
android.settings.BLUETOOTH_SETTINGS
android.settings.DATA_ROAMING_SETTINGS
android.settings.DATE_SETTINGS
android.settings.DISPLAY_SETTINGS
android.settings.INPUT_METHOD_SETTINGS
android.settings.INTERNAL_STORAGE_SETTINGS
android.settings.LOCALE_SETTINGS
android.settings.LOCATION_SOURCE_SETTINGS
android.settings.MANAGE_APPLICATIONS_SETTINGS
android.settings.MEMORY_CARD_SETTINGS
android.settings.NETWORK_OPERATOR_SETTINGS
android.settings.QUICK_LAUNCH_SETTINGS
android.settings.SECURITY_SETTINGS
android.settings.SETTINGS
android.settings.SOUND_SETTINGS
android.settings.SYNC_SETTINGS
android.settings.USER_DICTIONARY_SETTINGS
android.settings.WIFI_IP_SETTINGS
android.settings.WIFI_SETTINGS
android.settings.WIRELESS_SETTINGS




分享到:
评论

相关推荐

    android Action call 拨打电话 Intent.ACTION.CALL

    接下来,我们将深入探讨如何在Android中使用Intent ACTION_CALL来实现拨打电话的功能。 首先,理解Intent ACTION_CALL的含义是关键。ACTION_CALL是一个特殊的Intent动作,当设置为Intent的动作时,系统会尝试拨打...

    自定义Android Action Bar的布局

    在Android应用开发中,Action Bar是一个非常重要的组件,它位于应用程序顶部,通常包含应用的logo、标题、菜单项以及其他的导航元素。自定义Action Bar布局可以让开发者根据需求创建具有独特风格和功能的用户界面。...

    Android action bar

    **Android Action Bar** Android Action Bar 是 Android 应用程序设计中的一个重要组件,它位于应用程序界面的顶部,提供了对主要操作的快速访问,并显示了应用程序的标识。Action Bar 提供了一种标准化的方式,...

    Android Action大全

    Android Action/Intent/Category类别集合

    Android的ACTION说明文档

    Android系统内置了许多预定义的ACTION,比如ACTION_VIEW、ACTION_CALL、ACTION_SEND等,开发者也可以自定义ACTION以满足特定需求。以下是一些常见的ACTION及其用途: 1. ACTION_MAIN:这是所有应用启动的入口点,...

    Android代码-一种简便、可变Action的实现方案

    Android Dynamic Action(动态Action) Android Dynamic Action,简称DA,是一种简便、可变Action的实现方案。DA框架的初衷是为了取代Context.startActivity的调用方式,使用建造者模式(Builder Pattern)构建交互参数...

    android.intent.action.TIME_TICK

    3. 注册IntentFilter:为IntentFilter添加对应的ACTION,如"android.intent.action.TIME_TICK"、"android.intent.action.SCREEN_ON"和"android.intent.action.BATTERY_CHANGED"。 4. 不再需要时,记得在合适的位置...

    android action mode

    在Android开发中,Action Mode是一种特殊类型的Context Menu,它在用户选择一个或多个项时出现,提供了一种更直观的交互方式。Action Mode通常用于列表视图、网格视图等可多选的场景,允许用户对选定的项目执行操作...

    最新的Android书籍(Android in Action 2nd)

    《Android in Action 2nd Edition》是一本针对2011年时的最新Android开发技术的权威指南。这本书深入浅出地介绍了如何使用Android SDK进行应用程序开发,是开发者不可或缺的参考资料。书中涵盖了一系列关键知识点,...

    android Action大全

    在Android开发中,Action是一个非常重要的概念,它与Intent紧密关联,构成了Android系统中的消息传递机制。本篇文章将深入解析Android中的Action,并结合提供的资源——"android_action大全.doc",来详细阐述Action...

    android action bar例子

    android:id="@+id/action_search" android:icon="@drawable/ic_search" android:title="Search" app:showAsAction="always"/&gt; ``` 5. 处理菜单项点击事件: 在MainActivity.java中,重写onOptionsItemSelected...

    Android system action

    本文将围绕标题“Android system action”,对描述中提到的“总结了安卓开发中的Action”进行详细解读,并结合标签“Android Action”以及部分内容来探讨Android开发中常见的系统Intent Action应用场景。 #### 一、...

    Android中蓝牙的基本使用----BluetoothAdapter类简介

    在Android系统中,蓝牙功能是通过蓝牙适配器(BluetoothAdapter)类来实现的,它提供了与设备上的蓝牙硬件交互的接口。本文将详细介绍BluetoothAdapter类及其在Android中蓝牙基本使用的方法。 首先,理解...

    android 调用相机显示拍摄后的图片

    对于拍摄照片我们可以直接调用系统自带的相机拍照,一般情况下无需我们自己开发相机拍照。 ... @Override public void onClick(View v) { ...&lt;uses-permission android:name="android.permission.CAMERA"/&gt;

    Android自定义action与permission_java_action_

    在Android系统中,Action和Permission是两个非常关键的概念,它们对于构建可扩展和安全的应用程序至关重要。本教程将深入探讨如何在Android应用中自定义Action和Permission,以及它们在应用程序架构中的作用。 ...

    Android 多个service的action 相同冲突 验证demo

    当多个Service声明了相同的ACTION,Android系统在接收到具有该ACTION的Intent时,可能会遇到困难决定启动哪个Service。默认情况下,Android只会启动一个Service,即使有多个Service声明了相同的ACTION。这可能导致...

    Android in Action.pdf

    《Android in Action》这本书是Android开发领域的经典之作,它深入浅出地介绍了Android平台的各个方面,旨在帮助读者从初学者到熟练开发者实现蜕变。书中的内容涵盖了Android开发的基础到高级技术,包括UI设计、网络...

    Android in Action 3rd Edition

    Android in Action 3rd Edition.pdf

    android安卓app 标题栏+导航栏+Tab页.zip

    `Android UI开发详解之ActionBar.docx`和`Android Action Bar 详解篇.docx`这两份文档应该深入探讨了如何创建和自定义Action Bar,包括添加自定义按钮、使用Action Items、设置Logo以及使用Overflow Menu等。...

Global site tag (gtag.js) - Google Analytics