Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我必须用自定义系统替换 Android 标准日志记录系统。我删除了所有 *.java 文件,现在我必须手动import android.util.Log;删除所有调用,例如. Log.i(MY_TAG, "Something")我的日志系统的方法有不同的签名;所以,我不能简单地运行“组织导入”来导入我的日志记录类并留下标准Log类的调用。
import android.util.Log;
Log.i(MY_TAG, "Something")
Log
在您的工作区进行文件搜索,查找导入日志类(“import ...Log”),检查结果。再做一次,但按下替换按钮并将该字段留空。
最后将您的通话更改为记录。