本文整理汇总了Java中com.androidquery.util.AQUtility.isUIThread方法的典型用法代码示例。如果您正苦于以下问题:Java AQUtility.isUIThread方法的具体用法?Java AQUtility.isUIThread怎么用?Java AQUtility.isUIThread使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.androidquery.util.AQUtility
的用法示例。
在下文中一共展示了AQUtility.isUIThread方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: block
import com.androidquery.util.AQUtility; //导入方法依赖的package包/类
/**
* Block the current thread until the ajax call is completed. Returns immediately if ajax is already completed.
* Exception will be thrown if this method is called in main thread.
*/
public void block()
{
if (AQUtility.isUIThread())
{
throw new IllegalStateException("Cannot block UI thread.");
}
if (completed)
return;
try
{
synchronized (this)
{
blocked = true;
//wait at most the network timeout plus 5 seconds, this guarantee thread will never be blocked forever
this.wait(NET_TIMEOUT + 5000);
}
}
catch (Exception e)
{
}
}
示例2: 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);
}
});
}
}
}
示例3: block
import com.androidquery.util.AQUtility; //导入方法依赖的package包/类
/**
* Block the current thread until the ajax call is completed. Returns immediately if ajax is already completed.
* Exception will be thrown if this method is called in main thread.
*/
public void block() {
if (AQUtility.isUIThread()) {
throw new IllegalStateException("Cannot block UI thread.");
}
if (completed) return;
try {
synchronized (this) {
blocked = true;
//wait at most the network timeout plus 5 seconds, this guarantee thread will never be blocked forever
this.wait(NET_TIMEOUT + 5000);
}
} catch (Exception e) {
}
}
示例4: 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);
}
});
}
}
}