OSDN Git Service

Canonのライブビュー通信安定性を向上させる。
[gokigen/A01d.git] / app / src / main / java / net / osdn / gokigen / a01d / camera / IFocusingControl.java
1 package net.osdn.gokigen.a01d.camera;
2
3 import android.view.MotionEvent;
4
5 /**
6  *
7  *
8  */
9 public interface IFocusingControl
10 {
11     boolean driveAutoFocus(MotionEvent motionEvent);
12     void unlockAutoFocus();
13     void halfPressShutter(boolean isPressed);
14 }