mv /system/lib/libserria_gps.so /system/
这个是关掉gps
mv /system/lib/libnm-ril.so /system/
这个是关掉ril
nmea就是gps规范格式的gps数据
Bridge驱动的配置
+CONFIG_USB_G_SERIAL=y
-CONFIG_USB_ANDROID=y
-...
分类:
移动开发 时间:
2014-05-21 16:58:07
阅读次数:
1013
先来看一段代码: public static void main(String[] args) {
new Timer().schedule(new TimerTask() {
@Override
public void run() {
System.out.println("阳光小强");
}
}, 5000);
int i = 0;
wh...
分类:
移动开发 时间:
2014-05-21 16:56:51
阅读次数:
296
public class setZero {
static void print(int [][]a){
for(int i=0;i<a.length;i++){
for(int j=0;j<a[i].length;j++){
System.out.print(a[i][j]+" ");
}
System.out.println();
}
}
/*stati...
分类:
其他好文 时间:
2014-05-21 16:16:56
阅读次数:
252
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
us...
分类:
其他好文 时间:
2014-05-21 09:36:30
阅读次数:
302
结构化布线系统
结构化综合布线系统(Structure Cabling System)是基于现代计算机技术的通信物理平台,集成了语音、数据、图像和视频的传输功能,消除了原有通信线路在传输介质上的差别。
工作区子系统 Work Location
工作区子系统是由终端到信息插座的整个区域。一个独立的需要安装终端设备的区域划分成一个工作区。工作区应支持电话、数据终端、计算机、电视机、监视器以及传感...
分类:
其他好文 时间:
2014-05-21 08:47:19
阅读次数:
257
写在前面
照亮的球体(Lit Sphere,翻译过来很怪)类型的光照模型是一种非常有趣的基于图像的光照。实际上,我们可以使用一张2D贴图来完整地烘焙我们的光照。你可以得到Zbrush这个软件实现的相同效果。如果你对Zbrush的MatCaps(Material
Captures)很熟悉,那么恭喜你,被照亮的球体是相同的实现原理。我们可以创建一个贴图,然后完全照搬各种烘焙类型,...
分类:
其他好文 时间:
2014-05-21 08:44:42
阅读次数:
324
1获得当前屏幕中鼠标的位置
int i = MousePosition.X;
int j = MousePosition.Y;
这是control类中的方法。
2移动鼠标
首先引入dll
[System.Runtime.InteropServices.DllImport("user32")]
private st...
分类:
其他好文 时间:
2014-05-21 07:28:51
阅读次数:
229
本系列主要参考《Unity Shaders and Effects Cookbook》一书(感谢原书作者),同时会加上一点个人理解或拓展。
这里是本书所有的插图。这里是本书所需的代码和资源(当然你也可以从官网下载)。
========================================== 分割线 ==================================...
分类:
其他好文 时间:
2014-05-21 06:47:29
阅读次数:
356
1 2 3 4 5 20 21 22 23 24 25 26 27 28 View
Code上面是前台代码,下面是后台代码. 1 public partial class WebForm1 : System.Web.UI.P...
分类:
Web程序 时间:
2014-05-21 05:40:54
阅读次数:
321
using System.Data.SqlClient;static void
Main(string[] args) { string connString = @"Data Source=.; Initial
Catalog=lh0216; User ID=s...
分类:
数据库 时间:
2014-05-21 04:18:08
阅读次数:
388