码迷,mamicode.com
首页 >  
搜索关键字:bundle intent    ( 7220个结果
Ant build ${renderscript.opt.level}问题解决方案
问题如下:BUILD FAILEDD:\adt-bundle-windows-x86_64-20131030\sdk\tools\ant\build.xml:653: The following error occurred while executing this line:D:\adt-bund...
分类:其他好文   时间:2014-07-16 23:03:08    阅读次数:195
最新基于adt-bundle-windows-x86的android开发环境筹建
最新基于adt-bundle-windows-x86的android开发环境搭建某系统要配套做一个android客户端,来一次android开发环境快速搭建,系统Win7,具体步骤如下:1、下载jdk:http://www.oracle.com/technetwork/java/javase/dow...
分类:移动开发   时间:2014-07-16 21:40:09    阅读次数:272
Could not find a storyboard named 'Main' in bundle NSBundle
1、删掉工程中main.storyboard 后要删除plist文件中对应的键值,否则会报如下错误:Could not find a storyboard named 'Main' in bundle NSBundle2、删除main.storyboard后,需要在AppDelegate.m中初始化...
分类:其他好文   时间:2014-07-16 20:43:35    阅读次数:151
[ISSUE]cannot run on the selected destination
mac 10.7 xcode 4.6.3编译cocos2d-x 3.x 的HelloCpp 的时候,出现如上问题原来越遇到过,一直不知道是什么情况引起的,把它作为xcode的莫名其妙的bug一些解决方法,一切以试为主:1. 修改bundle name, 或者修改product name, 或者修改i...
分类:其他好文   时间:2014-07-16 20:12:25    阅读次数:165
Linux下bundle文件安装
第一步:sudo chmod +x ****.bundle 给执行权限第二步:sudo ./****.bundle 执行
分类:系统相关   时间:2014-07-16 19:57:12    阅读次数:403
android 去掉actionbar 隐藏标题栏 全屏
去掉actionbar :getActionBar().hide();全屏方法一: public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); //隐去标题栏(应用程序的名字) r...
分类:移动开发   时间:2014-07-16 19:52:02    阅读次数:643
Android学习笔记_76_Android ProgressBar 进度条
android 进度条的样式例1:(默认样式(中等圆形))Xml代码例2:(超大圆形)Xml代码例3:(小号圆形)Xml代码例4:(标题小号圆形)Xml代码例4-在标题中使用小号圆形的使用代码:Java代码@Overridepublic void onCreate(Bundle savedInsta...
分类:移动开发   时间:2014-07-16 19:37:47    阅读次数:243
Android实现界面跳转
实现界面跳转的代码如下:第一种:Intent mIntent = new Intent();mIntent.setClassName(mcureeActivity.this, nextActivity.class);startActivity(mIntent)第二种:Intent mIntent =...
分类:移动开发   时间:2014-07-13 10:43:51    阅读次数:200
android intent 跳转
一、不需要返回值的跳转Intent intent=new Intent();intent.setClass(目前的acitivy.this, 目标activity.class);startActivity(intent);二、需要返回值的跳转Intent intent=new Intent();in...
分类:移动开发   时间:2014-07-13 10:09:06    阅读次数:188
Android Intent 使用整理
在一个Android应用中,主要是由一些组件组成,(Activity,Service,ContentProvider,etc.)在这些组件之间的通讯中,由Intent协助完成。正如网上一些人解析所说,Intent负责对应用中一次操作的动作、动作涉及数据、附加数据进行描述,Android则根据此Int...
分类:移动开发   时间:2014-07-13 10:00:38    阅读次数:160
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!