我正在尝试使用 Reflections库来获取所有使用特定Java 注释注释的类。
我在.gradle文件中包含了Reflections库:
compile 'org.reflections:reflections:0.9.10'
但是,该库在Android上对我不起作用。我没有从getSubTypesOf
和getTypesAnnotatedWith
获得任何点击。
我的实施有什么问题吗?
package sample.anotherapp;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import org.reflections.Reflections;
import org.reflections.scanners.SubTypesScanner;
import org.reflections.scanners.TypeAnnotationsScanner;
import java.util.Set;
@Deprecated
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Reflections reflections = new Reflections("sample.anotherapp", new SubTypesScanner(false), new TypeAnnotationsScanner());
Set<Class<? extends AppCompatActivity>> subTypesOf = reflections. getSubTypesOf(AppCompatActivity.class);
int size = subTypesOf.size();
Set<Class<?>> annotated = reflections. getTypesAnnotatedWith(Deprecated.class);
size = annotated.size();
}
}
所以问题可能是...... Google反思库是否适用于Dalvik