Android-找到包下面所有的类
Posted Fwl的小花园
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android-找到包下面所有的类相关的知识,希望对你有一定的参考价值。
android 利用反射找到包下面所有的类
Android下其实有一个DexFile的东西,利用它我们可以很好的找到包下面所有的类
什么是DexFile?
官方的说明是这样的:
Manipulates DEX files. The class is similar in principle to ZipFile. It is used primarily by class loaders.
Note we don\'t directly open and read the DEX file here. They\'re memory-mapped read-only by the VM.
直接上代码:
下面是使用:
以上是关于Android-找到包下面所有的类的主要内容,如果未能解决你的问题,请参考以下文章
从 Android Studio 项目中删除所有未使用的类、方法