`
wcgdonot
  • 浏览: 91909 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
社区版块
存档分类
最新评论
文章列表
mdpi is the reference density -- that is, 1 px on an mdpi display is equal to 1 dip. The ratio for asset scaling is:   ldpi    | mdpi | tvdpi  | hdpi | xhdpi | xxhdpi | xxxhdpi 0.75    |    1    |   1.33  |  1.5   |     2     |      3     |    4 Although you don't really need to worry about tvdp ...
相同点: 1.二者都可提交preference的修改数据 2.二者都是原子操作   区别: 1.apply没有返回值而commit返回boolean表明修改是否提交成功 2.apply是将修改数据原子提交到内存,而后异步真正提交到硬件磁盘;而commit是同步的提交到硬件磁盘,因此,在多个并发的提交commit的时候,他们会等待正在处理的commit保存到磁盘后在操作,从而降低了效率。而apply只是原子的提交到内容,后面有调用apply的函数的将会直接覆盖前面的内存数据,这样从一定程度上提高了很多效率。 3.apply方法不会提示任何失败的提示。   由于在一个进 ...
package com.yjtc.everhomes.services.util; import android.util.Log; /** * * Logging: Log simple strings or formatted strings in one simple call: * * final String formattedTestString = "first argument = %s, second argument = %s"; * final String firstArgument = "abc"; * ...
WCF REST 4.0授权与基于表单的身份验证(SetAuthCookie)   授权和 Google+ API  
文档 http://open.weibo.com/wiki/%E7%A7%BB%E5%8A%A8%E5%AE%A2%E6%88%B7%E7%AB%AF%E6%8E%A5%E5%85%A5   异常 新浪微博请求数据出错(Android Volley Https证书不信任)的解决方案
For the GET parameters there are two alternatives: First: You can just use String and replace the parameters placeholders with their values like:   String uri = String.format("http://somesite.com/some_endpoint.php?param1=%1$s&param2=%2$s", num1, ...
1. 主叫Activity向被叫Activity传递数据: (1)主叫Activity写数据: Intent intent = new Intent(action); intent.putExtra("key", "value"); startActivity(intent);     (2)被叫Activity读数据:   Intent intent = getIntent(); String strFromCaller = intent.getStringExtra("key");   2. 被叫Acti ...
ImageView中XML属性src和background的区别: background会根据ImageView组件给定的长宽进行拉伸,而src就存放的是原图的大小,不会进行拉伸。src是图片内容(前景),bg是背景,可以同时使用。   此外:scaleType只对src起作用;bg可设置透明度,比如在ImageButton中就可以用android:scaleType控制图片的缩放方式,示例代码如下: <ImageView android:id="@+id/img" android:src="@drawable/logo" ...
安装git环境 下载Volley源码   $ git clone https://android.googlesource.com/platform/frameworks/volley   build jar包 在Volley根目录下执行 $ ant jar    ant自动打包  http://blog.csdn.net/ms03001620/article/details/8490238 http://zhaoyunhe.com/android-ant-build.html  
http://www.tuicool.com/articles/VZzuIf 介绍 http://www.it165.net/pro/html/201308/6765.html 方案  
PNG 是一种无损格式,JPG是有损格式。JPG在处理颜色很多的图片时,根据压缩率的不同,有时会去掉一些肉眼识别差距较小的中间颜色。但是PNG对于无损这个基本要求,会严格保留所有的色彩数。 所以。图片尺寸大,或者色彩数量多特别是渐变色的多的时候,PNG的体积会明显大于JPG.   Android的界面能用PNG 最好是用PNG 了,因为32位的PNG 颜色过渡平滑且支持透明。JPG是像素化压缩过的图片,质量已经下降了,再拿来做9path的按钮和平铺拉伸的控件必然惨不忍睹,要尽量避免。 对于颜色繁杂的,比如照片墙纸之类的图片(有些应用的启动画面喜欢搞这种),那用JPG
官网 http://www.inappsquared.com/devappsdirect.html
导入SherlockNavigationDrawer的Demo时,提示找不到 import android.support.v4.view.GravityCompat; import android.support.v4.widget.DrawerLayout;   原因: 该demo依赖actionbarsherlock库和SherlockNavigationDrawer,而这两个库又同时包含android-support-v4,由于加载的时间不同,导入的时候发生冲突。   解决办法: 将其中一个lib中的support-v4.jar,然后刷新这个包,重新生成即可。   ...
理解RESTful架构 http://www.ruanyifeng.com/blog/2011/09/restful.html   虚拟研讨会:如何设计好的RESTful API? http://www.infoq.com/cn/articles/how-to-design-a-good-restful-api   RESTful 设计最佳实践 http://blog.jobbole.com/41233/  
Android 网络通信框架Volley简介 http://blog.csdn.net/t12x3456/article/details/9221611   [译]Google I/O 2013:Volley 图片缓存教程 http://www.inferjay.com/blog/2013/08/03/google-i-o-2013-volley-image-cache-tutorial/   基于Volley的Dribble开源客户端 https://github.com/vvLavida/Dribbo
Global site tag (gtag.js) - Google Analytics