android,获取结果时方法调用问题

发布于 2024-09-16 09:32:52 字数 347 浏览 3 评论 0原文

我尝试使用反射来调用“List Camera.Parameters.getSupportedFocusModes()”函数,代码如下:

Camera.Parameters params = mCamera.getParameters();
Method method = params.getClass().getDeclaredMethod("getSupportedFocusModes", (Class[]) null);
Object o = method.invoke(params, (Object[]) null);

日志显示它确实找到了该函数,但是结果 o 始终为 null,为什么呢?请帮帮我!

I am try to use reflection to invoke the "List Camera.Parameters.getSupportedFocusModes()" function with the following codes:

Camera.Parameters params = mCamera.getParameters();
Method method = params.getClass().getDeclaredMethod("getSupportedFocusModes", (Class[]) null);
Object o = method.invoke(params, (Object[]) null);

the log shows it does find the function, however, the result o is always null, why is that? Please help me out!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

待"谢繁草 2024-09-23 09:32:52

对我来说效果很好。返回 [auto, infinity]

确保您正在测试的设备使用 API 级别 5 或更高版本,并且 被添加到AndroidManifest.xml中。

这是我使用的代码。

Camera camera = Camera.open();
Camera.Parameters params = camera.getParameters();
try
{
    Method method = params.getClass().getDeclaredMethod("getSupportedFocusModes", (Class[]) null);
    Object o = method.invoke(params, (Object[]) null);
    Log.i("Camera Test", o.toString());
}
catch (Exception e)
{
    e.printStackTrace();
}

Works fine for me. Returned [auto, infinity]

Make sure that the device you are testing on is using API Level 5 or higher and that <uses-permission android:name="android.permission.CAMERA" /> is added to the AndroidManifest.xml.

Here's the code I used.

Camera camera = Camera.open();
Camera.Parameters params = camera.getParameters();
try
{
    Method method = params.getClass().getDeclaredMethod("getSupportedFocusModes", (Class[]) null);
    Object o = method.invoke(params, (Object[]) null);
    Log.i("Camera Test", o.toString());
}
catch (Exception e)
{
    e.printStackTrace();
}
幼儿园老大 2024-09-23 09:32:52

尝试使用“getMethod
下面是使用相同的示例。

Method method = this.getFirstActivity().getClass().getMethod("didReceive", null); 
method.invoke(this.getFirstActivity().getClass().newInstance(), null);

Try using "getMethod"
Below is the sample using the same.

Method method = this.getFirstActivity().getClass().getMethod("didReceive", null); 
method.invoke(this.getFirstActivity().getClass().newInstance(), null);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文