本文整理汇总了Java中com.androidquery.util.AQUtility.post方法的典型用法代码示例。如果您正苦于以下问题:Java AQUtility.post方法的具体用法?Java AQUtility.post怎么用?Java AQUtility.post使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.androidquery.util.AQUtility
的用法示例。
在下文中一共展示了AQUtility.post方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: showProgress
import com.androidquery.util.AQUtility; //导入方法依赖的package包/类
protected void showProgress(final boolean show)
{
final Object p = progress == null ? null : progress.get();
if (p != null)
{
if (AQUtility.isUIThread())
{
Common.showProgress(p, url, show);
}
else
{
AQUtility.post(new Runnable()
{
@Override
public void run()
{
Common.showProgress(p, url, show);
}
});
}
}
}
示例2: failure
import com.androidquery.util.AQUtility; //导入方法依赖的package包/类
public void failure(int code, String message)
{
if (status != null)
{
status.code(code).message(message).done();
if (uiCallback)
{
AQUtility.post(this);
}
else
{
afterWork();
}
//callback();
}
}
示例3: showProgress
import com.androidquery.util.AQUtility; //导入方法依赖的package包/类
protected void showProgress(final boolean show) {
final Object p = progress == null ? null : progress.get();
if (p != null) {
if (AQUtility.isUIThread()) {
Common.showProgress(p, url, show);
} else {
AQUtility.post(new Runnable() {
@Override
public void run() {
Common.showProgress(p, url, show);
}
});
}
}
}
示例4: reauth
import com.androidquery.util.AQUtility; //导入方法依赖的package包/类
@Override
public boolean reauth(final AbstractAjaxCallback<?, ?> cb)
{
AQUtility.debug("reauth requested");
token = null;
AQUtility.post(new Runnable()
{
@Override
public void run()
{
auth(cb);
}
});
return false;
}
示例5: run
import com.androidquery.util.AQUtility; //导入方法依赖的package包/类
/**
* AQuert internal use. Do not call this method directly.
*/
@Override
public void run()
{
if (!status.getDone())
{
try
{
backgroundWork();
}
catch (Throwable e)
{
AQUtility.debug(e);
status.code(AjaxStatus.NETWORK_ERROR).done();
}
if (!status.getReauth())
{
//if doesn't need to reauth
if (uiCallback)
{
AQUtility.post(this);
}
else
{
afterWork();
}
}
}
else
{
afterWork();
}
}
示例6: failure
import com.androidquery.util.AQUtility; //导入方法依赖的package包/类
public void failure(int code, String message) {
if (status != null) {
status.code(code).message(message).done();
if (uiCallback) {
AQUtility.post(this);
} else {
afterWork();
}
//callback();
}
}
示例7: run
import com.androidquery.util.AQUtility; //导入方法依赖的package包/类
/**
* AQuert internal use. Do not call this method directly.
*/
@Override
public void run() {
if (!status.getDone()) {
try {
backgroundWork();
} catch (Throwable e) {
AQUtility.debug(e);
status.code(AjaxStatus.NETWORK_ERROR).done();
}
if (!status.getReauth()) {
//if doesn't need to reauth
if (uiCallback) {
AQUtility.post(this);
} else {
afterWork();
}
}
} else {
afterWork();
}
}
示例8: internalOnPreExecute
import com.androidquery.util.AQUtility; //导入方法依赖的package包/类
protected void internalOnPreExecute() {
if (Looper.getMainLooper().getThread() == Thread.currentThread()) {
onPreExecute();
} else {
AQUtility.post(new Runnable() {
@Override
public void run() {
onPreExecute();
}
});
}
}