我正在尝试使用手机的摄像头使用以下代码片段捕获图像
snapShotScreen = new SnapshotScreen( "Snapshot" );
snapShotScreen.addCommand(cmdBack );
snapShotScreen.addCommand(cmdCapture);
snapShotScreen.setCommandListener( new ThreadedCommandListener( this ) );
this.display.setCurrent(snapShotScreen);
我得到一个返回的空值。 我的目标设备是诺基亚/2700_classic,它具有 mmapi 功能,我仍然不明白为什么它不起作用。 有人有什么建议吗?
仅供参考,
要使Android相机正常工作,您需要编辑MidletBridge.java文件。您将找到此文件:
J2ME-Polish_Root\j2mepolish-src\j2me\src\de\enough\polish\android\midlet\MidletBridge.java
您需要通过两种方法(在MidletBridge活动中)添加通用的android相机代码以及一个公共字节[],以便在拍照,单击保存并设置byte[]图像后检索数据:
MidletBridge.java file:
public byte[] imagebytearray = null;
public void startCameraIntent(){
Intent i = new Intent("android.media.action.IMAGE_CAPTURE");
startActivityForResult(intent, 10121);
}
@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
switch (requestCode) {
case 10121:
imagebytearray = (byte[]) data.getExtras().get("data");
break;
}
}
完成此操作后,您需要通过调用 j2me 波兰语应用程序中的任何位置实例化 MidletBridge
。de.enough.polish.android.midlet.MidletBridge m = new de.enough.polish.android.midlet.MidletBridge();
m.startCameraIntent();
//I couldnt remember if the code continues here after you have taken the picture
byte[] img = m.imagebytearray;
//If the code doesnt pause here, you can just use a button to retreive the image or store the
//image within the RMSStorage -- need some more code for that -- and then retreive it that way.
我希望这对某人有所帮助,因为我花了几周的时间才走到这一步。我的应用程序运行良好并已售出。我丢失了源代码,否则所有 J2ME-波兰用户都会非常高兴。与黑莓,诺基亚,Android以及Windows ce合作。
顺便说一句..我当时已经将整段代码发送给了 J2ME-波兰人,看起来他们并没有发布它。如果你真的想要所有的源...去打扰他们。