Most visited

Recently visited

UiThread

public abstract @interface UiThread
implements Annotation

android.support.annotation.UiThread


表示注释的方法或构造函数只应在UI线程上调用。 如果带注释的元素是一个类,则应该在UI线程上调用该类中的所有方法。

例:


  @UiThread

  public abstract void setText(@NonNull String text) { ... }
 

Summary

Inherited methods

From interface java.lang.annotation.Annotation

Hooray!