今天遇到一个问题,在音乐应用里长按一个歌曲,在弹出菜单中选择搜索,在搜索选择框中选择浏览器。正常情况下应该打开浏览器并且使用默认的搜索引擎启动搜索,但是现在浏览器搜索界面并没有打开。首先想到的是打开浏览器工程,在相关位置设置断点,启动调试,发现一切处理正常..
分类:
移动开发 时间:
2014-05-27 03:30:57
阅读次数:
303
protected void onCreate(Bundle savedInstanceState)
{ super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_INDETERMINATE_PRO...
分类:
其他好文 时间:
2014-05-24 00:02:33
阅读次数:
227
和startActivity()类似,startActivities也是界面跳转,但是传入的intent是一个数组,也就是说是多个。
假设我传入的是两个intent: I1和I2,则调用startActivities之后,直接到I2界面,按返回键,到I1界面。其中到I2的过程中,不会经过I1界面,也就是说,不过存在I1的生命周期之说。...
分类:
其他好文 时间:
2014-05-22 12:44:31
阅读次数:
235
创建兼容android activity的OSGI bundle...
分类:
移动开发 时间:
2014-05-22 12:20:00
阅读次数:
410
今天真机调试的时候莫名其妙遇到了这样的一个问题:This product type must be built using a provisioning profile, however no provisioning profile matching both the identity "iPhone Developer" and the bundle identifier.....具体如下图所...
分类:
移动开发 时间:
2014-05-22 11:17:43
阅读次数:
415
//调用系统相机Intent i=new
Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE);startActivityFroResult(i,requestCode)
注意使用startActivity没有图片信息返回重写OnActi....
分类:
其他好文 时间:
2014-05-22 06:04:24
阅读次数:
224
android开发环境的搭建本文使用集成的ADT
bundle来搭建android开发环境,所谓bundle就是谷歌搭建好的一个eclipse+sdk集成环境。需要下载的软件列表如下:1、ADT
bundle:http://developer.android.com/sdk/index.html进入...
分类:
移动开发 时间:
2014-05-22 05:47:03
阅读次数:
312
源于:http://www.jkqnb.com/ydkf/article/36预览图描述最近做IOS应用上传时,想改一下SUK或者Bundle ID
,发现改不了,只能删除。但是删除却没有找到删除按钮,百度半天不给力,不过后来多亏一位群里的兄弟给找个链接,终于解决今天就给他记录下来,希望帮到更多的人...
分类:
移动开发 时间:
2014-05-22 05:41:15
阅读次数:
260
出现找不到xib指定的图片,需要指定图片的完整路径,不能只是图片名详见:http://vocaro.com/trevor/blog/2012/10/21/xcode-groups-vs-folder-references/An
image stored as a folder reference w...
分类:
移动开发 时间:
2014-05-22 03:44:48
阅读次数:
491
在一个应用程序中添加了多个antivity后,在manifest.xml文件中会除了主Activity外,其它的Activity属性中都会有个警告:Exported
activity does not require permission这是因为在Activity中添加了intent-filter属...
分类:
移动开发 时间:
2014-05-22 03:03:00
阅读次数:
488