如何获取Class的所有方法 // 取得所有方法 Method[] hideMethod =Activity.class.getMethods(); int i = 0; for (; i < hideMethod.length; i++) { Log.e("method name", hideMethod... Other 2023-09-15 226 点赞 3 评论 342 浏览