我正在尝试在我的应用程序中创建SOS模块选项,我创建代码来处理这个问题:
class SOSModule {
private Camera camera;
private Camera.Parameters params;
private boolean isFlashOn;
void blink(final int delay, final int times) {
Thread t = new Thread() {
public void run() {
try {
for (int i=0; i < times*2; i++) {
if (isFlashOn) {
turnOffFlash();
} else {
Camera.open();
turnOnFlash();
}
sleep(delay);
}
} catch (Exception e){
e.printStackTrace();
}
}
};
t.start();
}
void turnOnFlash() {
if (!isFlashOn) {
if (camera == null || params == null) {
return;
}
params = camera.getParameters();
params.setFlashMode(Camera.Parameters.FLASH_MODE_TORCH);
camera.setParameters(params);
camera.startPreview();
isFlashOn = true;
}
}
void turnOffFlash() {
if (isFlashOn) {
if (camera == null || params == null) {
return;
}
params = camera.getParameters();
params.setFlashMode(Camera.Parameters.FLASH_MODE_OFF);
camera.setParameters(params);
camera.stopPreview();
isFlashOn = false;
}
}
}
我还在清单中添加了所有必需的权限,当然我也会按时检查使用权限。
但这没用。我只是创建其他代码,但工作就像“一个闪存”没有任何循环。
你们能帮助我吗?
伙计这对我来说很重要,我不能这样做因为我的华为p8 Lite和p9 Lite在发生这种情况时不会出现任何错误,这是一个华为的软件问题,带有相机我需要在精神设备上进行测试,而且它很大我没有任何设备日志的问题。
public void flash_effect() throws InterruptedException
{
cam = Camera.open();
final Camera.Parameters p = cam.getParameters();
p.setFlashMode(Camera.Parameters.FLASH_MODE_TORCH);
Thread a = new Thread()
{
public void run()
{
for(int i =0; i < 10; i++)
{
cam.setParameters(p);
cam.startPreview();
try {
Thread.sleep(50);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
cam.stopPreview();
try {
Thread.sleep(50);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
};
a.start();
}}
此代码有效,但闪光灯无限打开,没有任何眨眼效果 任何的想法??
答案 0 :(得分:1)
您需要一个标志,告诉您的线程何时停止。
boolean shouldStop = false;
while (!shouldStop){
if(FlashOn){
...//do SOS stuff
}
}
public void endSOS(){
shouldStop = true;
}
答案 1 :(得分:0)
因为你的线程没有被调用
试试这个
void blink(final int delay, final int times) {
Thread t = new Thread(new Runnable() {
@Override
public void run() {
try {
for (int i=0; i < times*2; i++) {
if (isFlashOn) {
turnOffFlash();
} else {
turnOnFlash();
}
Thread.sleep(delay);
}
} catch (Exception e){
e.printStackTrace();
}
}
});
t.start();
}
你可以在这里阅读更多内容