设置AVD时有些参数比较模糊,特地找了篇文章,大家参考下!本文根据如下的模拟器安装做一些解释:Name:自定义虚拟的名称,不能有空格或者其他非法字符,否则不能创建,即Creat AVD不能高亮点击。Target:选择要运行的android 版本(也可理解为内核?),此处有两个版本,取决于你在最初时下...
分类:
其他好文 时间:
2015-03-07 18:38:58
阅读次数:
221
1.创建一个项目文件夹:mkdir myappcd myapp2.下载rebar的二进制文件到这个项目的文件夹。git clone https://github.com/basho/rebar.git;3.使用rebar模板系统构建我们工程的“骨架”。rebar creat-app appid=my...
分类:
其他好文 时间:
2015-03-06 20:32:53
阅读次数:
179
用户登录-creator编程画好以下界面: 编译时,会自动生成如下内容的头文件ui_mainwindow.h /********************************************************************************** Form generated from reading UI file'mainwindow.ui'**** Creat...
分类:
编程语言 时间:
2015-03-01 18:30:06
阅读次数:
134
1. open() O_RONLY O_WONLY O_RDWR 返回值为 文件描述符fd2. creat() 创建新文件,这个函数的产生是因为最开始open函数没有O_CREAT 功能,所以单独开发的该函数注:不是create,没有e3. read() 读取fd对应的文件内容4. write(.....
分类:
其他好文 时间:
2015-02-28 00:14:06
阅读次数:
165
1. Canvas画布 通常用js来描绘 Canvas var CANVAS_WIDTH = 200;var CANVAS_HEIGHT = 200;var myCanvas;var myContext;window.onload = function () { creat...
分类:
Web程序 时间:
2015-02-13 17:55:04
阅读次数:
215
#include
#include
typedef struct LinkStack
{
int info;
struct LinkStack *next;
}StackNode;
typedef struct LinkTop
{
struct LinkStack *Top;
}LinkTop;
LinkTop* creat_Stack(void)
{
LinkTop *...
分类:
其他好文 时间:
2015-02-10 15:22:58
阅读次数:
169
接收普通消息type TMsgType = (event, text, image, voice, video, location, link); TMessage = Record ToUserName: String; FromUserName: String; Creat...
分类:
微信 时间:
2015-02-09 22:56:53
阅读次数:
488
UXYInjectioUXYInjectio can use Protocol to share data that data has been autosaved.How To Use
creat a Protocol (inherit UXYinjectioProtocol), define the property in that Protocol
let the class support...
分类:
其他好文 时间:
2015-02-05 20:33:28
阅读次数:
153
1 @receiver(post_save, sender=User)2 def create_account(sender, instance=None, **kwargs):3 if instance is None:4 return5 ytuser, creat...
分类:
其他好文 时间:
2015-02-03 12:46:41
阅读次数:
163
Given an integer?n, return the number of trailing zeroes in?n!. Note:?Your solution should be in logarithmic time complexity. Credits: Special thanks to?@ts ?for adding this problem and creat...
分类:
其他好文 时间:
2015-02-03 11:23:32
阅读次数:
125