public static synchronized VolleyRequestController getInstance() { if (sInstance == null) { sInstance = new VolleyRequestController(); Volle...
分类:
其他好文 时间:
2014-07-19 17:16:18
阅读次数:
250
using System;using System.Collections.Generic;using System.Linq;using System.Web;namespace BZ.Web.QiYe.Handler{ /// /// Handler1 的摘要说明 /// ...
分类:
其他好文 时间:
2014-07-19 17:02:49
阅读次数:
168
function CheckUser(fn) { $.get("/Pages/Handler/CheckExistHander.ashx", { "txt_UserNo": $("#txt_UserNo").val(), "flag": "UserExist" }, function (dat...
分类:
编程语言 时间:
2014-07-19 15:36:37
阅读次数:
206
1、通过append方法输出数据到页面/***************************根据企业ID获取企业信息*********************/OBJindexPage.GetNewQiYeInfo = function () { $.getJSON("/Qiye/handl...
分类:
其他好文 时间:
2014-07-19 15:19:18
阅读次数:
302
ashx文件和aspx文件有什么不同? 我们先新建一个ashx文件看看: 1 2 using System; 3 using System.Web; 4 public class Handler : IHttpHandler 5 { 6 public void ProcessRequest ...
分类:
Web程序 时间:
2014-07-19 14:17:24
阅读次数:
186
Flick
package io.appium.android.bootstrap.handler;
import com.android.uiautomator.core.UiDevice;
import io.appium.android.bootstrap.*;
import io.appium.android.bootstrap.exceptions.InvalidCoordi...
分类:
其他好文 时间:
2014-07-19 02:28:56
阅读次数:
220
Swipe
我定义为滑动,但它字面的意思又不是,事件的形式类似于小时候拿着一块石头片,朝水面飞过去,如果你手法可以那么就是swipe走的路线,如果你手法不行,接触水面的时候就没再飞起来那就会被人嘲笑的。
package io.appium.android.bootstrap.handler;
import com.android.uiautomator.core.UiDevi...
分类:
其他好文 时间:
2014-07-19 02:12:25
阅读次数:
282
Orientation
调整屏幕方向的操作。
package io.appium.android.bootstrap.handler;
import android.os.RemoteException;
import com.android.uiautomator.core.UiDevice;
import io.appium.android.bootstrap.*;
...
分类:
其他好文 时间:
2014-07-18 18:00:25
阅读次数:
309
在Android开发过程中,有时候会遇到这样的情况,在一个线程中,执行A操作,B操作需要等A操作结束后才进行,因此需要wait,在java中可以如下代码实现
Handler mBlueHandler = new Handler(Looper.getMainLooper());
Task task = new Task();
mBlueHandler...
分类:
移动开发 时间:
2014-07-18 13:34:17
阅读次数:
323
(上篇文章写完才发现,说好的按顺序但是回头一看完全不是按顺序的)明明WaitForIdle才是第一个。哎,老了,后脑勺不行了。
WaitForIdle
package io.appium.android.bootstrap.handler;
import com.android.uiautomator.core.UiDevice;
import io.appium.andro...
分类:
其他好文 时间:
2014-07-18 12:34:28
阅读次数:
276