本文整理了Java中androidx.annotation.NonNull
类的一些代码示例,展示了NonNull
类的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。NonNull
类的具体详情如下:
包路径:androidx.annotation.NonNull
类名称:NonNull
暂无
代码示例来源:origin: airbnb/lottie-android
@Override
public void setTextLocales(@NonNull LocaleList locales) {
// Do nothing.
}
}
代码示例来源:origin: square/picasso
/**
* Callback indicating the image could not be successfully loaded.
* <p>
* <strong>Note:</strong> The passed {@link Drawable} may be {@code null} if none has been
* specified via {@link RequestCreator#error(android.graphics.drawable.Drawable)}
* or {@link RequestCreator#error(int)}.
*/
void onBitmapFailed(@NonNull Exception e, @Nullable Drawable errorDrawable);
代码示例来源:origin: square/picasso
@Override public void load(@NonNull Picasso picasso, @NonNull Request request,
@NonNull Callback callback) {
callback.onError(new IllegalStateException("Unrecognized type of request: " + request));
}
};
代码示例来源:origin: JakeWharton/butterknife
/**
* BindView annotated fields and methods in the specified {@code target} using the {@code source}
* {@link Activity} as the view root.
*
* @param target Target class for view binding.
* @param source Activity on which IDs will be looked up.
*/
@NonNull @UiThread
public static Unbinder bind(@NonNull Object target, @NonNull Activity source) {
View sourceView = source.getWindow().getDecorView();
return bind(target, sourceView);
}
代码示例来源:origin: JakeWharton/butterknife
/**
* BindView annotated fields and methods in the specified {@code target} using the {@code source}
* {@link Dialog} as the view root.
*
* @param target Target class for view binding.
* @param source Dialog on which IDs will be looked up.
*/
@NonNull @UiThread
public static Unbinder bind(@NonNull Object target, @NonNull Dialog source) {
View sourceView = source.getWindow().getDecorView();
return bind(target, sourceView);
}
代码示例来源:origin: JakeWharton/butterknife
/**
* BindView annotated fields and methods in the specified {@code target} using the {@code source}
* {@link Activity} as the view root.
*
* @param target Target class for view binding.
* @param source Activity on which IDs will be looked up.
*/
@NonNull @UiThread
public static Unbinder bind(@NonNull Object target, @NonNull Activity source) {
View sourceView = source.getWindow().getDecorView();
return bind(target, sourceView);
}
代码示例来源:origin: JakeWharton/butterknife
/**
* BindView annotated fields and methods in the specified {@code target} using the {@code source}
* {@link Dialog} as the view root.
*
* @param target Target class for view binding.
* @param source Dialog on which IDs will be looked up.
*/
@NonNull @UiThread
public static Unbinder bind(@NonNull Object target, @NonNull Dialog source) {
View sourceView = source.getWindow().getDecorView();
return bind(target, sourceView);
}
代码示例来源:origin: JakeWharton/butterknife
/**
* BindView annotated fields and methods in the specified {@link View}. The view and its children
* are used as the view root.
*
* @param target Target view for view binding.
*/
@NonNull @UiThread
public static Unbinder bind(@NonNull View target) {
return bind(target, target);
}
代码示例来源:origin: JakeWharton/butterknife
/**
* BindView annotated fields and methods in the specified {@link View}. The view and its children
* are used as the view root.
*
* @param target Target view for view binding.
*/
@NonNull @UiThread
public static Unbinder bind(@NonNull View target) {
return bind(target, target);
}
代码示例来源:origin: JakeWharton/butterknife
/**
* BindView annotated fields and methods in the specified {@link Activity}. The current content
* view is used as the view root.
*
* @param target Target activity for view binding.
*/
@NonNull @UiThread
public static Unbinder bind(@NonNull Activity target) {
View sourceView = target.getWindow().getDecorView();
return bind(target, sourceView);
}
代码示例来源:origin: JakeWharton/butterknife
/**
* BindView annotated fields and methods in the specified {@link Activity}. The current content
* view is used as the view root.
*
* @param target Target activity for view binding.
*/
@NonNull @UiThread
public static Unbinder bind(@NonNull Activity target) {
View sourceView = target.getWindow().getDecorView();
return bind(target, sourceView);
}
代码示例来源:origin: JakeWharton/butterknife
/**
* BindView annotated fields and methods in the specified {@link Dialog}. The current content
* view is used as the view root.
*
* @param target Target dialog for view binding.
*/
@NonNull @UiThread
public static Unbinder bind(@NonNull Dialog target) {
View sourceView = target.getWindow().getDecorView();
return bind(target, sourceView);
}
代码示例来源:origin: JakeWharton/butterknife
/**
* BindView annotated fields and methods in the specified {@link Dialog}. The current content
* view is used as the view root.
*
* @param target Target dialog for view binding.
*/
@NonNull @UiThread
public static Unbinder bind(@NonNull Dialog target) {
View sourceView = target.getWindow().getDecorView();
return bind(target, sourceView);
}
代码示例来源:origin: PhilJay/MPAndroidChart
@Override
public void onRequestPermissionsResult(int requestCode, @NonNull String[] permissions, @NonNull int[] grantResults) {
if (requestCode == PERMISSION_STORAGE) {
if (grantResults.length == 1 && grantResults[0] == PackageManager.PERMISSION_GRANTED) {
saveToGallery();
} else {
Toast.makeText(getApplicationContext(), "Saving FAILED!", Toast.LENGTH_SHORT)
.show();
}
}
}
代码示例来源:origin: PhilJay/MPAndroidChart
@Override
public View onCreateView(@NonNull LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
tf = Typeface.createFromAsset(context.getAssets(), "OpenSans-Regular.ttf");
return super.onCreateView(inflater, container, savedInstanceState);
}
代码示例来源:origin: JakeWharton/butterknife
/** Set the {@code value} using the specified {@code setter} across the {@code list} of views. */
@UiThread
public static <T extends View, V> void set(@NonNull List<T> list,
@NonNull Setter<? super T, V> setter, @Nullable V value) {
for (int i = 0, count = list.size(); i < count; i++) {
setter.set(list.get(i), value, i);
}
}
代码示例来源:origin: JakeWharton/butterknife
/**
* Apply the specified {@code value} across the {@code array} of views using the {@code property}.
*/
@UiThread
public static <T extends View, V> void set(@NonNull T[] array,
@NonNull Property<? super T, V> setter, @Nullable V value) {
//noinspection ForLoopReplaceableByForEach
for (int i = 0, count = array.length; i < count; i++) {
setter.set(array[i], value);
}
}
代码示例来源:origin: JakeWharton/butterknife
/** Apply the specified {@code actions} across the {@code list} of views. */
@UiThread
@SafeVarargs public static <T extends View> void run(@NonNull List<T> list,
@NonNull Action<? super T>... actions) {
for (int i = 0, count = list.size(); i < count; i++) {
for (Action<? super T> action : actions) {
action.apply(list.get(i), i);
}
}
}
代码示例来源:origin: JakeWharton/butterknife
/** Apply the specified {@code actions} across the {@code array} of views. */
@UiThread
@SafeVarargs public static <T extends View> void run(@NonNull T[] array,
@NonNull Action<? super T>... actions) {
for (int i = 0, count = array.length; i < count; i++) {
for (Action<? super T> action : actions) {
action.apply(array[i], i);
}
}
}
代码示例来源:origin: JakeWharton/butterknife
/** Apply the specified {@code action} across the {@code list} of views. */
@UiThread
public static <T extends View> void run(@NonNull List<T> list,
@NonNull Action<? super T> action) {
for (int i = 0, count = list.size(); i < count; i++) {
action.apply(list.get(i), i);
}
}
内容来源于网络,如有侵权,请联系作者删除!