`
ericbaner
  • 浏览: 177011 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论
文章列表
一 原理区别     一般在浏览器中输入网址访问资源都是通过GET方式;在FORM提交中,可以通过Method指定提交方式为GET或者POST,默认为GET提交 Http定义了与服务器交互的不同方法,最基本的方法有4种,分别是GET,POST,PUT,DEL ...
Android NDK, Revision 8 (May 2012) This release of the NDK includes support for MIPS ABI and a few additional fixes. New features: Added support for the MIPS ABI, which allows you to generate machine code that runs on compatible MIPS-based Android devices. Major features for MIPS include M ...
前戏准备: 1. 搭建Eclipse Android开发环境 下载Eclipse, ADT, Android SDK, http://developer.android.com/sdk/index.html   2.  搭建cygwin环境 下载并安装cygwin。 这一步挺考验亲们的宽带状况。   3. 搭建NDK编译环境 下载Android NDK SDK,地址见:http://developer.android.com/sdk/ndk/index.html 重头戏开始了!  1. 为
  通俗的讲,Web服务器传送(serves)页面使浏览器可以浏览,然而应用程序服务器提供的是客户端应用程序可以调用(call)的方法 (methods)。确切一点,你可以说:Web服务器专门处理HTTP请求(request),但是应用程序服务器是通过很多 ...
Android资源字符串/res/values/string.xml中可以包含xliff的节点,Xliff是XML Localization Interchange File Format 的缩写,中文名为XML本地化数据交换格式。   quote from wikipedia (http://en.wikipedia.org/wiki/XLIFF) :   "XLIFF (XML Localisation Interchange File Format) is an XML-based format created to standardize localization ...
  Nine-patch A NinePatchDrawable graphic is a stretchable bitmap image, which Android will automatically resize to accommodate the contents of the View in which you have placed it as the background. An example use of a NinePatch is the backgrounds used by standard Android buttons — buttons must str ...
参考 http://www.cocoachina.com/iphonedev/toolthain/2011/1227/3791.html     因为iOS SDK相对比较底层,所以开发者就得受累多做一些体力活。不过幸运的是,有很多第三方的类库可以用来简化很多不必要的工作。笔者整理了一下在本人学习过程中用到的一些比较有用Objective-C开源类库,既是做一个总结,同时也希望通过这些分享,能提高各位的开发效率。     KissXml——xml解析库相关教程:http://www.iteye.com/topic/625849
以下文字转自 http://www.androidzz.com/2011/08/android-sd-app2sd/   Android系统在2.1版本之前,应用程序是只能安装到机身内存(RAM)中,这一特性从某种角度上讲,阻止了Android的发展,因为RAM的空间是有限的,所以这一特性限制了应用 ...
public boolean isEnoughSpaceInSDcard(long fileSize) { if (Environment.MEDIA_MOUNTED.equals(Environment .getExternalStorageState())) { long avaliableSize = 0; String storageDirectory = null; storageDirectory = Environment.getExternalStorageDirectory() .getAbsolutePath(); ...
  未来三年的移动互联网创业--我在移动开发者大会上的演讲 (汪华)    (2011-11-24 20:59:44)   李开复(@kaifulee) 创新工场创始合伙人汪华 在移动开发者大会上的演讲-未来三年的移动互联网创业: 移动互联网正在从核心用户向 ...
“学编程教你如何思考。计算机科学是文科。”﹣﹣出自乔布斯1995年的一次访谈,录像刚刚重新发现。 这是前雅虎首席设计架构师LukeW所做的笔记,其中还有许多对产品的真知灼见。 http://www.lukew.com/ff/entry.asp?1449   Quotes from Steve Jobs Lost Interview November 18, 2011by Luke Wroblewski   I had the pleasure of catching the opening night showing of Robert X. Cringely's redisco ...
Android自带theme如下: •android:theme="@android:style/Theme.Dialog"   将一个Activity显示为对话框模式 •android:theme="@android:style/Theme.NoTitleBar"  不显示应用程序标题栏 •android:theme="@android:style/Theme.NoTitleBar.Fullscreen"  不显示应用程序标题栏,并全屏 •android:theme="Theme.Light"  背景 ...
Frame Animation实现方法: 定义在一XML文件,比如res/anim/anim_example.xml:         <?xml version="1.0" encoding="utf-8"?>         <animation-list xmlns:android="http://schemas.android.com/apk/res/android"             android:oneshot="false">             <i ...
风格为Theme.Dialog的Activity,即manifest里对Activity加上属性android:theme="@android:style/Theme.Dialog",   如果Activity里的所有布局是纯代码所写,不是从layout xml里生成,布局包含一个ScrollView,ScrollView里有很多TextView, EditText这类的小widget, 当用户点击其中一个EditText时,软键盘弹出来盖住了Activity的UI,Activity的UI没有自动缩小显示出scrollview的滚动条, 这是为什么呢?   这跟Act ...
Failed to install *.apk on device 'emulator-5554': timeout 遇到这种错误,可将Eclipse Window -> Preferences -> Android -> DDMS -> Adb connection timeout(ms), 默认5000改大一些,比如10000, 即可.   如还不行,可将模拟器,eclipse关闭重新打开。
Global site tag (gtag.js) - Google Analytics