码迷,mamicode.com
首页 >  
搜索关键字:intent    ( 3334个结果
Computer Networking: Application layer
Principle of network applications Network application architectures Application architecture: (different from the network architecture) Designed by th ...
分类:移动开发   时间:2018-03-29 14:47:17    阅读次数:204
java基础之finally(转)
原链接https://www.ibm.com/developerworks/cn/java/j-lo-finally/ 个人总结: 1.finally是否一定执行? a) 只有与 finally 相对应的 try 语句块得到执行的情况下,finally 语句块才会执行。若在执行try之前 retur ...
分类:编程语言   时间:2018-03-28 16:55:46    阅读次数:208
安卓学习Day08
静态广播 (为了让程序在未启动的情况下也能接收到广播) 标签intent filter里的东西,相当是在监听系统一个叫"com.example.broadcasttest.MY_BROADCAST"的 action。如果接收到了 就让 .MyBroadcastReceiver 这个继承类 的onRe ...
分类:移动开发   时间:2018-03-24 23:58:08    阅读次数:379
android 广播和服务配合使用,修改界面上的控件
1、创建一个类继承 server 重写onStartCommand。可以根据Intent 传过来的参数 执行不同的子程序,执行完毕之后发送一个广播 在声明文件中声明 server 在 Application 里面 添加 <server>标签,不要隐式调用 Intent intent = new In ...
分类:移动开发   时间:2018-03-19 16:44:09    阅读次数:188
android广播
普通广播: 1.在AndroidManifest.xml中配置广播接收器: 2.需要继承一个BroadcastReceiver对象 3.将消息通过intent方法传递出去 4.最后需要调用context的sendBroadcast(intent)方法 有序广播:与常规广播一样,但是有序广播拥有优先级 ...
分类:移动开发   时间:2018-03-19 13:34:28    阅读次数:210
android广播
普通广播: 1.在AndroidManifest.xml中配置广播接收器: <receiver android:name="com.example.toast.MyBroadReceiver" > <intent-filter> <action android:name="MyBroad" /> < ...
分类:移动开发   时间:2018-03-15 20:17:33    阅读次数:234
Android面试收集录 电话、短信和联系人、多媒体技术
1.请写出调用系统拨号界面? Intent intent=new Intent(Intent.ACTION_DIAL,Uri.pase("tel:12345678910")); startActivity(intent); 添加权限:<uses-permission android:name="an ...
分类:移动开发   时间:2018-03-12 18:37:16    阅读次数:230
安卓-项目目录结构
AndroidManifest.xml 整个安卓的配置文件 intent-filter 里的两行代码非常重要, <action android:name= "android.intent.action.MAIN" />和<category android:name="android.intent.c ...
分类:移动开发   时间:2018-03-11 17:15:24    阅读次数:161
January 31st, 2018 Week 05th Wednesday
Real love is not just instinct, but intent. 真正的爱不是身体上的一见钟情,而是要用心去经营。 What is real love? Honestly, I have no idea, and I think most of the love relatio ...
分类:其他好文   时间:2018-03-09 01:38:27    阅读次数:179
《Android进阶之光》--Android新特性
Android 5.0新特性 1)全新的Material Design设计风格 2)支持多种设备 3)全新的通知中心设计--按照优先级显示 4)支持64位ART虚拟机 5)多任务视窗Overview 6)设备识别解锁--比如附近信任设备 7)Ok Google语音指令 8)Face unlock面部 ...
分类:移动开发   时间:2018-03-03 19:31:48    阅读次数:182
3334条   上一页 1 ... 25 26 27 28 29 ... 334 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!