当前位置:  编程技术>移动开发

android教程之intent的action属性使用示例(intent发短信)

    来源: 互联网  发布时间:2014-10-23

    本文导语:  Action :规定了Intent要完成的动作,是一个字符串常量。使用setAction()来设置Action属性,使用getAction()来获得Action属性。既可以使用系统内置的Action,也可以自己定义。系统自定义的action,如ACTION_VIEW, ACTION_EDIT, ACTION_MAIN等等。 1....

Action :规定了Intent要完成的动作,是一个字符串常量。使用setAction()来设置Action属性,使用getAction()来获得Action属性。既可以使用系统内置的Action,也可以自己定义。系统自定义的action,如ACTION_VIEW, ACTION_EDIT, ACTION_MAIN等等。

1.自定义Action

在“目的Activity”的AndroidManifest.xml中指定action常量。

代码如下:


  
      
      
  


的作用是用来说明,可以通过隐式跳转(即其它类调用setAction("Skywang_ACTION"))来找到ActionDestination这个activity。这样,其它的类就可以通过下面的代码跳转到ActionDestination。跳转时,setAction的字符串"Skywang_ACTION"必须与AndroidManifest.xml中定义的"Skywang_ACTION"一致。
代码如下:

Intent intent = new Intent(); 
intent.setAction("Skywang_ACTION"); 
startActivity(intent);

2系统Action

代码如下:

// 流量网页
Uri uri =Uri.parse("http://www.baidu.com");
Intent intent = newIntent(Intent.ACTION_VIEW, uri); 
startActivity(intent);
// 拨打电话
// if you want to use ACTION_DIAL, you mustadd permissin in manifest, the permission is bellow
//
Uri uri = Uri.parse("tel:12580");
Intent it = new Intent(Intent.ACTION_DIAL,uri);
startActivity(it);
// 发送短信
Uri uri = Uri.parse("smsto:13410177756");
Intent it = newIntent(Intent.ACTION_SENDTO, uri);
it.putExtra("sms_body", "TheSMS text");
startActivity(it);
//播放mp3
Intent it = new Intent(Intent.ACTION_VIEW);
Uri uri =Uri.parse("file:///sdcard/song.mp3"); 
it.setDataAndType(uri, "audio/mp3");
startActivity(it);

    
 
 

您可能感兴趣的文章:

  • Android Intent启动别的应用实现方法
  • android intent使用定义标题
  • Android 使用Intent传递数据的实现思路与代码
  • Android中BroadcastReceiver(异步接收广播Intent)的使用
  • Android Intent开发包 OpenIntents
  • android中Intent传值与Bundle传值的区别详解
  • Android Intent的几种用法详细解析
  • Android提高之Activity+Intent用法示例
  • Android学习笔记--Activity中使用Intent传值示例代码
  • Android 几种屏幕间跳转的跳转Intent Bundle
  • Android系列之Intent传递对象的几种实例方法
  • Android组件间通信--深入理解Intent与IntentFilter
  • Android开发:TextView加入滚动条示例
  • android开发教程之switch控件使用示例
  • android开启免提切换功能示例
  • Android开发之注册登录方法示例
  • 手写android布局示例
  • Android示例程序 apps-for-android
  • android网络编程之android连接网络的简单示例代码
  • android获取当前手机号示例程序
  • android读取assets文件示例
  • android读取raw文件示例
  • android实现来电静音示例(监听来电)
  • android开机自启动app示例分享
  • android开发教程之自定义控件checkbox的样式示例
  • Android创建文件实现对文件监听示例
  • android输入框与文本框加滚动条scrollview示例
  • android保存Bitmap图片到指定文件夹示例
  • android播放gif格式图片示例
  • Android获取apk程序签名信息代码示例
  • android中设置TextView/Button 走马灯(Marquee)效果示例
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • Android控件之EditView常用属性及应用方法
  • android TextView多行文本(超过3行)使用ellipsize属性无效问题的解决方法
  • android ListView 一些重要属性详解
  • Android RelativeLayout相对布局属性简析
  • android布局属性详解分享
  • 浅析Android中的visibility属性
  • android 布局属性详解
  • android TextView属性的详细介绍 分享
  • ImageView的属性android:scaleType的作用分析
  • Android自定义属性 format的深入解析
  • android开发教程之自定义属性用法详解
  • android 自定义控件 自定义属性详细介绍
  • android Tween Animation属性设置方法实例
  • 申请Android Map 的API Key(v2)的最新申请方式(SHA1密钥)
  • Android瀑布流实例 android_waterfall
  • Android开发需要的几点注意事项总结
  • Android系统自带样式 (android:theme)
  • android 4.0 托管进程介绍及优先级和回收机制
  • Android网络共享软件 Android Wifi Tether
  • NOSQL iis7站长之家
  • Android 图标库 Android GraphView
  • Android及andriod无线网络Wifi开发的几点注意事项
  • 轻量级Android开发工具 Android Tools
  • Android 2.3 下StrictMode介绍
  • Android 开发环境 Android Studio
  • IDEA的Android开发插件 idea-android
  • Android手机事件提醒 Android Notifier
  • XBMC的Android客户端 android-xbmcremote
  • Android小游戏 Android Shapes
  • Android电池监控 Android Battery Dog
  • android开发:“android:WindowTitle”没有对应项no resource


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3