parent
30914b09a9
commit
c94265669b
@ -0,0 +1,33 @@ |
||||
package com.github.florent37.camerafragment.listeners; |
||||
|
||||
/** |
||||
* Convenience implementation of {@link CameraFragmentControlsListener}. Derive from this and only override what you need. |
||||
* @author Skala |
||||
*/ |
||||
|
||||
public class CameraFragmentControlsAdapter implements CameraFragmentControlsListener { |
||||
@Override |
||||
public void lockControls() { |
||||
|
||||
} |
||||
|
||||
@Override |
||||
public void unLockControls() { |
||||
|
||||
} |
||||
|
||||
@Override |
||||
public void allowCameraSwitching(boolean allow) { |
||||
|
||||
} |
||||
|
||||
@Override |
||||
public void allowRecord(boolean allow) { |
||||
|
||||
} |
||||
|
||||
@Override |
||||
public void setMediaActionSwitchVisible(boolean visible) { |
||||
|
||||
} |
||||
} |
@ -0,0 +1,18 @@ |
||||
package com.github.florent37.camerafragment.listeners; |
||||
|
||||
/** |
||||
* Convenience implementation of {@link CameraFragmentResultListener}. Derive from this and only override what you need. |
||||
* @author Skala |
||||
*/ |
||||
|
||||
public class CameraFragmentResultAdapter implements CameraFragmentResultListener { |
||||
@Override |
||||
public void onVideoRecorded(String filePath) { |
||||
|
||||
} |
||||
|
||||
@Override |
||||
public void onPhotoTaken(byte[] bytes, String filePath) { |
||||
|
||||
} |
||||
} |
@ -0,0 +1,75 @@ |
||||
package com.github.florent37.camerafragment.listeners; |
||||
|
||||
import java.io.File; |
||||
|
||||
/** |
||||
* Convenience implementation of {@link CameraFragmentStateListener}. Derive from this and only override what you need. |
||||
* @author Skala |
||||
*/ |
||||
|
||||
public class CameraFragmentStateAdapter implements CameraFragmentStateListener { |
||||
@Override |
||||
public void onCurrentCameraBack() { |
||||
|
||||
} |
||||
|
||||
@Override |
||||
public void onCurrentCameraFront() { |
||||
|
||||
} |
||||
|
||||
@Override |
||||
public void onFlashAuto() { |
||||
|
||||
} |
||||
|
||||
@Override |
||||
public void onFlashOn() { |
||||
|
||||
} |
||||
|
||||
@Override |
||||
public void onFlashOff() { |
||||
|
||||
} |
||||
|
||||
@Override |
||||
public void onCameraSetupForPhoto() { |
||||
|
||||
} |
||||
|
||||
@Override |
||||
public void onCameraSetupForVideo() { |
||||
|
||||
} |
||||
|
||||
@Override |
||||
public void onRecordStateVideoReadyForRecord() { |
||||
|
||||
} |
||||
|
||||
@Override |
||||
public void onRecordStateVideoInProgress() { |
||||
|
||||
} |
||||
|
||||
@Override |
||||
public void onRecordStatePhoto() { |
||||
|
||||
} |
||||
|
||||
@Override |
||||
public void shouldRotateControls(int degrees) { |
||||
|
||||
} |
||||
|
||||
@Override |
||||
public void onStartVideoRecord(File outputFile) { |
||||
|
||||
} |
||||
|
||||
@Override |
||||
public void onStopVideoRecord() { |
||||
|
||||
} |
||||
} |
@ -0,0 +1,28 @@ |
||||
package com.github.florent37.camerafragment.listeners; |
||||
|
||||
/** |
||||
* Convenience implementation of {@link CameraFragmentVideoRecordTextListener}. Derive from this and only override what you need. |
||||
* @author Skala |
||||
*/ |
||||
|
||||
public class CameraFragmentVideoRecordTextAdapter implements CameraFragmentVideoRecordTextListener { |
||||
@Override |
||||
public void setRecordSizeText(long size, String text) { |
||||
|
||||
} |
||||
|
||||
@Override |
||||
public void setRecordSizeTextVisible(boolean visible) { |
||||
|
||||
} |
||||
|
||||
@Override |
||||
public void setRecordDurationText(String text) { |
||||
|
||||
} |
||||
|
||||
@Override |
||||
public void setRecordDurationTextVisible(boolean visible) { |
||||
|
||||
} |
||||
} |
Loading…
Reference in new issue