标签 Annotations 下的文章

Annotations(注解)支持库

compile 'com.android.support:support-annotations:24.2.0' 1 compile 'com.android.support:support-annotations:24.2.0' Nullness注解 使用@NonNull注解修饰的字段,方法参数,返回值, 都不可已为null。 @Nullable 表示可以为空 @Nullable public String notNull(@NonNull Fragment fragment){ return null; } 123  &nb ...