這個功能是要求,電腦發送一個字符串,然後平板接收到後,調用用攝像頭進行拍照。
(功能我都實現了,就是每次拍照要打開攝像頭,導致拍照等待時間在2-3秒左右)
protected void onDataReceived(final byte[] buffer, final int size) {
runOnUiThread(new Runnable() {
public void run() {
if (mReception != null) {
mReception.append(new String(buffer, 0, size));
Intent intent = new Intent(ConsoleActivity.this,CameraActivity.class);
startActivity(intent);
}
}
});
}
我的做法是接收到數據後跳轉到拍照的Activity,別人說直接讓攝像頭打開,收到數據後直接拍照就是了,我沒有做過類似串口的開發,在串口Activity裡面寫會出錯,這個問題如何解決。
不好意思,是硬件問題,是硬件本身拍照延遲,換做其他的硬件就好了。