自定义Dialog位置和大小2012-12-06
11:562835人阅读评论(0)收藏举报dialogDialog目录(?)[+]package angel.devil;import
android.app.Activity;import android.app.Dialog;import and...
分类:
移动开发 时间:
2014-04-30 23:16:35
阅读次数:
853
来自:http://blog.csdn.net/oneRain88/article/details/11713299NGUI在Unity3D游戏开发中非常常用,而NGUI对于每一个UI场景,都是以一个UIRoot为UI游戏对象树的根的,那么这个UIRoot是起什么作用的呢?先简单看一下UIRoot中...
分类:
其他好文 时间:
2014-04-30 23:08:30
阅读次数:
483
Defining annotations
Here is the definition of the annotation above. You can see that annotation definitions look a lot like interface definitions.
In fact, they compile to class files like any oth...
分类:
编程语言 时间:
2014-04-27 21:47:05
阅读次数:
348
Lucene 4.0版本的DocIdSetIterator中没有cost方法,而4.7.0则有这个方法,表示遍历整个DocIdSet的代价,对于DocsEnum就是其长度了,对于Scorer就可以是符合查询的个数了。ConjunctionScorer可以取其中cost最小的那个scorer,做and操作,而4.0中则是猜测,认为第一个doc最大的那个应该最稀疏,从那个scorer开始做。...
分类:
其他好文 时间:
2014-04-27 21:24:57
阅读次数:
305
最近在研究ViewPager的使用,我将分段将ViewPager的使用方法和技巧介绍给大家。
1.ViewPager是谷歌一个向下兼容包(android-support-v4.jar)里面的类,所以要使用它先引入android-support-v4.jar。该jar包一般存在于android SDK目录sdk\extras\android\support\v4下面。
2.然后是布局文件中添...
分类:
其他好文 时间:
2014-04-27 21:23:04
阅读次数:
341
1.Android中使用Matrix对图像进行缩放、旋转、平移、斜切等变换的。Matrix是一个3*3的矩阵,其值对应如下:下面给出具体坐标对应变形的属性|scaleX, skewX, translateX| |skewY, scaleY, translateY||0 ,0 , scale |Matrix提供了一些方法来控制图片变换:setTranslate(...
分类:
移动开发 时间:
2014-04-27 21:21:05
阅读次数:
518
搜索是一个核心用户特性在Android上。用户应该能够搜索可用的任何数据,内容是否位于设备或网络。帮助为用户创建一个一致的搜索体验,Android提供了一个搜索框架,可以帮助你实现搜索应用程序。...
分类:
移动开发 时间:
2014-04-27 21:16:05
阅读次数:
422
Annotations are one of the fundamental language changes
introduced in Java SE5. They provide information that you need to fully describe your program, but that cannot be expressed in Java. Thus, anno...
分类:
编程语言 时间:
2014-04-27 21:14:59
阅读次数:
431
Meta-annotations
@Target
CONSTRUCTOR: Constructor declarationFIELD: Field declaration (includes enum constants) LOCAL_VARIABLE: Local variable declaration METHOD: Method declarationPACKAGE: Pack...
分类:
编程语言 时间:
2014-04-27 21:12:04
阅读次数:
385
需要工具:
1.apktool apk打包工具
下载地址:http://android-apktool.googlecode.com/files/apktool1.5.2.tar.bz2
安装:直接解压即可,是一个apktool.jar文件,通过
$java -jar apktool.jar
来运行,依赖于java运行环境
2.dex2jar dex转化...
分类:
系统相关 时间:
2014-04-27 21:11:07
阅读次数:
496