mediatek\operator下面有单独的apk,也有overlay的数据,单独的apk会配置anroid.mk,找到对应的路径直接build。
如果是overlay,则编译原来应用的路径,例如
\mediatek\operator\OP02\SPEC0200\SEGA\OverLayResource\packages\apps\Launcher2\res\xml
需要编译mm pack...
分类:
其他好文 时间:
2014-09-19 12:07:45
阅读次数:
260
本系列主要参考《Unity Shaders and Effects Cookbook》一书(感谢原书作者),同时会加上一点个人理解或拓展。这里是本书所有的插图。这里是本书所需的代码和资源(当然你也可以从官网下载)。========================================== 分割线 ==========================================写在前面...
分类:
其他好文 时间:
2014-09-18 23:52:22
阅读次数:
569
之前为了方便mm模块编译,写了个脚本,功能是在某个模块目录下执行该脚本,会智能判断该目录所属模块,并进行编译。所谓智能,也就是一层一层目录地往上寻找Android.mk文件而已。找到存放Android.mk目录后,就把该目录当作./mk mm 的目录参数。(脚本现在还有点bug,等改好再放上来,以免...
分类:
其他好文 时间:
2014-09-09 19:48:09
阅读次数:
207
我想这样的一个需求很是会经常遇到的,研究了一下,现在记录下来,也希望分享给大家!
先看一下效果图,如下所示:
代码如下:
$(function(){
var docHeight = $(window).height();
var docWidth = $(window).width();
$("#overlay").height(docHeight).cs...
分类:
Web程序 时间:
2014-09-02 21:27:35
阅读次数:
236
1.base layers & overlay layers
base layer:最底层的layer,其他的图层是在他之上,最先加入的图层默认作为base layer.
overlay layer:不是base layer的layer就是overlay layer
2.使用layer的步骤:
创建layer把layer添加到Map中,可以用map.addlayer(layer...
分类:
其他好文 时间:
2014-09-02 00:20:03
阅读次数:
381
.pop_overlay{ width: 100%; height: 100%; background: #c2c2c2; opacity: 0.5; filter:alpha(opacity=50); position: fixed; z-index: 1; left: 0; top:0; dis...
分类:
其他好文 时间:
2014-08-12 16:47:14
阅读次数:
189
jQuery弹出层效果
.black_overlay{
display: none;
position: absolute;
top: 0%;
left: 0%;
width: 100%;
height: 100%;
background-color: black;
z-index:1001;
-moz-opacity: 0.8;
opacity:.80;
filter: alpha(opa...
分类:
Web程序 时间:
2014-08-11 00:28:11
阅读次数:
294
解析SampleBrowser项目的SampleBrowser.h文件,我们可以发现其中有这么一个函数:...
分类:
其他好文 时间:
2014-08-08 12:44:35
阅读次数:
264
By default, the action bar appears at the top of your activity window, slightly reducing the amount of space available for the rest of your activity's layout. If, during the course of user interaction, you want to hide and show the action bar, you can do s...
分类:
移动开发 时间:
2014-08-07 03:07:19
阅读次数:
344
1,要想使用Google Map进行开发,则创建项目时一定要选择支持Google APIs的SDK。
2,使用LocationManager可以实现对用户所处位置的坐标监听。
3,要想在手机上显示Google Map,则需要向Google申请服务。
4,在一个地图上可以设置多个地图层(Overlay),用户可以通过ItemizedOverlay类手工标记,也可以使用M...
分类:
其他好文 时间:
2014-08-03 15:20:35
阅读次数:
285