在添加好友界面的搜索框里输入(全半角冒号都支持)
:help
:db
:recover
:updata
:upfile
:Log
:up
:dump
:favdb
:devdb
:closeappcrashcatch
:cleanwifi
:closewifi
:expirewifi
:viewgamenotify
在添加好友界面的搜索框里输入(全半角冒号都支持)
:help
:db
:recover
:updata
:upfile
:Log
:up
:dump
:favdb
:devdb
:closeappcrashcatch
:cleanwifi
:closewifi
:expirewifi
:viewgamenotify
想要使用SSH连接上你的iPhone,首先要在iPhone的Cydia上安装OpenSSH
这个插件,它回依赖安装一个OpenSSL
上去,然后让iPhone和Mac处在同一局域网下,假设你的iPhone地址为192.168.1.2
ssh root@192.168.1.2
默认密码为alpine,建议登入后修改
passwd root
输入新密码
根据官方说明安装Genymotion plugin for Eclipse的方法是:
但是问题就在这里,提示There are no categorized items
Maven依赖:
<dependency>
<groupId>net.sf.json-lib</groupId>
<artifactId>json-lib</artifactId>
<version>2.4</version>
<classifier>jdk15</classifier>
</dependency>
@if…@else…
@if $boolean {
@debug "$boolean is true";
} @else {
@debug "$boolean is false";
}
@for@for $i from <start> through <end>
//through
@for $i from 1 through 3 {
@debug "$i";
}
多个GitHub账户的配置网络上教程也不少,原理都是用SSH的方法,我也不重复制造车轮,仅仅为了做个记录,下次要用可以快速配置
# Mac切换到/Users/username/.ssh
# Windows切换到C:\Users\username\.ssh
$ cd ~/.ssh
# 新建名为user1_rsa和user2_rsa的SSH Key,一路回车即可
$ ssh-keygen -t rsa -C "user1@email.com" -f user1_rsa
$ ssh-keygen -t rsa -C "user2@email.com" -f user2_rsa
$ ls # 此时目录下有如下文件
user1_rsa user1_rsa.pub
user2_rsa user2_rsa.pub
声明变量
$color: red;
普通变量与默认变量
$baseLineHeight: 2;
$baseLineHeight: 1.5 !default;
body{
line-height: $baseLineHeight; // ==> line-height: 2;
}
线程操作分为两类,后台线程@Background
和UI线程@UiThread
后台线程不用多说,当程序需要用到比较耗时的操作,例如下载的时候就会用到
那何为UI线程,假设我们在非主线程中,例如service或者adapter,如果要操作前台页面的UI的时候,是没办法直接操作的,这时候只要用UI线程即可在任意的类中操作UI界面元素
两种线程注解用法类似,只要在方法前加上注解,这个方法就会用多线程方式执行
The following classes could not be found:
- android.support.v7.internal.app.WindowDecorActionBar (Fix Build Path, Create Class)