随笔分类 -  Android

摘要:# Built application files/*/build/#guolv/build# Crashlytics configuationscom_crashlytics_export_strings.xml# Local configuration file (sdk path, etc)l... 阅读全文
posted @ 2015-04-27 10:00 godcok 阅读(305) 评论(0) 推荐(0)
摘要:项目中要在string.xml 中显示特殊符号,如@号冒号等,直接写肯定不行啦。。只能考虑使用ASCII码进行显示:@号 @:号 :空格  以下为常见的ASCII十进制交换编码: --> !"#$%&'()*+,-./:;=>?@[--]-->]^_... 阅读全文
posted @ 2013-07-17 11:03 godcok 阅读(210) 评论(0) 推荐(0)
摘要:本文主内容:1、 Android NDK 安装2、 安装Cygwin与使用NDK编译3、 在Eclipse中集成C/C++开发环境CDT4、 安装Sequoyah插件5、 JNI编译环境配置本文建立在已经完成Android开发环境搭建的基础上。其基础环境至少需要包含以下内容:1、 JDK2、 Ecl... 阅读全文
posted @ 2012-11-28 16:01 godcok 阅读(163) 评论(0) 推荐(0)
摘要:Intent intent = new Intent(Intent.ACTION_VIEW);intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);intent.setDataAndType(Uri.parse("file://"+path),"applica... 阅读全文
posted @ 2012-06-11 14:30 godcok 阅读(150) 评论(0) 推荐(0)
摘要:第一、 新建监听类:BootReceiver继承BroadcastReceiverpublic class BootReceiver extends BroadcastReceiver { @Override public void onReceive(Context context, ... 阅读全文
posted @ 2012-06-05 17:14 godcok 阅读(282) 评论(0) 推荐(0)
摘要:android要求所有的程序必须有签名,否则就不会安装该程序。在我们开发过程中,adt使用debug keystore,在 preference->android->buid中设置。debug的keystore默认有效期为一年,如果你是从一年前开始完android程序,那么在一年后导入这个app的时... 阅读全文
posted @ 2011-08-25 10:42 godcok 阅读(142) 评论(0) 推荐(0)