摘要:
http://blog.sina.com.cn/s/blog_66ccfca60102ux3h.html彼得堡大教堂(见下图和解释)。这个近千年的教堂非常宏伟,英国人花了125年的时间才把它建成。5百年前,大教堂开始倾斜,为了防止进一步倾斜,在旁边又建了一个副楼。英国每个城市都有教堂,而教堂是这个国... 阅读全文
摘要:
工程导入myeclipse时,出现问题提示:The method of type must override asuperclass?annotation:@Override的原因查阅了一下资料,发现说在jdk1.5下要使用@Override 这个annotation 必须保证 被标注方法来源于cl... 阅读全文
摘要:
http://stackoverflow.com/questions/24566127/jni-java-lang-unsatisfiedlinkerror-native-method-not-found确保在调用jni之前已经调用了以下代码...System.loadLibrary("aes");... 阅读全文
摘要:
1.专访AngularJS框架创始人Misko Hevery:让Web开发更便捷http://www.csdn.net/article/2013-10-08/2817118-AngularJS-Framework-GoogleAngularJS是一款开源的JavaScript MV*(MVW、MVV... 阅读全文
摘要:
1 package com.exmyth.ui.model; 2 3 import java.util.ArrayList; 4 import java.util.List; 5 6 public class ProductItem{ 7 //---------------------... 阅读全文
摘要:
Google为APK定义了两个关于版本属性:VersionCode和VersionName,他们有不同的用途。VersionCode:对消费者不可见,仅用于应用市场、程序内部识别版本,判断新旧等用途。VersionName:展示给消费者,消费者会通过它认知自己安装的版本,下文提到的版本号都是说Ver... 阅读全文
摘要:
我想使调用音乐使用 parcelable,所以我可以访问两个不同的活动中的音乐的实例的类。我不想使用可序列化的速度的目的。当我尝试将它使用传递时,我总是收到 nullPointerException:Intent in = getIntent();thisInstance = (Music) in.... 阅读全文
摘要:
android获取手机cpu并判断是单核还是多核/*** Gets the number of cores available in this device, across all processors.* Requires: Ability to peruse the filesystem at ... 阅读全文
摘要:
参考http://developer.android.com/guide/topics/manifest/uses-sdk-element.htmlAPI Level 是一个整型值,表示Android发布的某个特定版本,新API Level相对于老API Level会增加以下内容:* 新增类、或者已... 阅读全文
摘要:
博客分类:jquery-easyuijQueryAjax框架HTML现象: AJAX返回的html无法做到自动渲染为EasyUI的样式.比如:class="easyui-layout" 等处理方法: 在html片段加载完毕后使用Js代码$.parser.parse(context) 即可重新渲染。实... 阅读全文