今天遇到一个问题,在音乐应用里长按一个歌曲,在弹出菜单中选择搜索,在搜索选择框中选择浏览器。正常情况下应该打开浏览器并且使用默认的搜索引擎启动搜索,但是现在浏览器搜索界面并没有打开。首先想到的是打开浏览器工程,在相关位置设置断点,启动调试,发现一切处理正常..
分类:
移动开发 时间:
2014-05-27 03:30:57
阅读次数:
303
1、申请权限:2、创建意图(Intent):Intentintent=newIntent();intent.setAction("android.intent.action.CALL");//操作系统会自动为Intent注册类别:android.intent.category.DEFAULT//i....
分类:
移动开发 时间:
2014-05-23 07:07:45
阅读次数:
282
1.Eucalyptus:Eucalyptus is a Linux-based
software architecture that implements scalable private and hybrid clouds within
your existingIT infrastructur...
分类:
其他好文 时间:
2014-05-22 16:52:01
阅读次数:
263
1.打电话 可以自己写界面,在button的单击事件中添加如下代码即可: Intent intent
= new Intent(); intent.setAction("android.intent.action.CALL");
intent.setData(Uri.parse("tel:"+ .....
分类:
移动开发 时间:
2014-05-22 16:41:15
阅读次数:
473
//调用系统相机Intent i=new
Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE);startActivityFroResult(i,requestCode)
注意使用startActivity没有图片信息返回重写OnActi....
分类:
其他好文 时间:
2014-05-22 06:04:24
阅读次数:
224
在一个应用程序中添加了多个antivity后,在manifest.xml文件中会除了主Activity外,其它的Activity属性中都会有个警告:Exported
activity does not require permission这是因为在Activity中添加了intent-filter属...
分类:
移动开发 时间:
2014-05-22 03:03:00
阅读次数:
488
http://www.howtoforge.com/apache2-how-to-redirect-users-to-mobile-or-normal-web-site-based-on-device-using-mod_rewriteApache2:
How To Redirect Users T...
分类:
Web程序 时间:
2014-05-21 22:53:20
阅读次数:
432
1 #!/bin/bash 2 #based on a script from
http://invisible-island.net/xterm/xterm.faq.html 3 exec /dev/tty 8 # tput u7
> /dev/tty # when TERM=xt...
分类:
其他好文 时间:
2014-05-21 18:43:15
阅读次数:
300
使用意图调用内置应用程序
1、创建一个新的Android项目并命名为Intents,在main.xml文件中添加两个Button:
<Button
android:id="@+id/btn_webbrowser"
android:layout_width="fill_parent"
android:layout_heigh...
分类:
移动开发 时间:
2014-05-21 16:24:12
阅读次数:
298
承接 Mule ESB-Content-Based Routing Tutorial(1)
五、运行应用程序
完成创建,配置,并保存你的新的应用程序,您就可以在嵌入Mule的服务器上运行(包括在Mule Studio中,作为捆绑下载的一部分)。
1、在Package Explorer窗格中,右键单击Basic Tutorial.mflow文件,然后选择Run A...
分类:
其他好文 时间:
2014-05-21 12:35:09
阅读次数:
353