|
@@ -1,34 +1,417 @@
|
|
package me.yoqi.flashlight;
|
|
package me.yoqi.flashlight;
|
|
|
|
|
|
-import android.support.v7.app.ActionBarActivity;
|
|
|
|
|
|
+
|
|
|
|
+import java.io.IOException;
|
|
|
|
+import java.util.List;
|
|
|
|
+
|
|
|
|
+import android.app.Activity;
|
|
|
|
+import android.appwidget.AppWidgetManager;
|
|
|
|
+import android.content.ComponentName;
|
|
|
|
+import android.content.Context;
|
|
|
|
+import android.hardware.Camera;
|
|
|
|
+import android.hardware.Camera.AutoFocusCallback;
|
|
|
|
+import android.hardware.Camera.Parameters;
|
|
|
|
+import android.os.Build;
|
|
import android.os.Bundle;
|
|
import android.os.Bundle;
|
|
-import android.view.Menu;
|
|
|
|
-import android.view.MenuItem;
|
|
|
|
|
|
+import android.support.v7.app.AppCompatActivity;
|
|
|
|
+import android.view.SurfaceHolder;
|
|
|
|
+import android.view.SurfaceView;
|
|
|
|
+import android.view.View;
|
|
|
|
+import android.widget.Button;
|
|
|
|
+import android.widget.RemoteViews;
|
|
|
|
|
|
-public class MainActivity extends ActionBarActivity {
|
|
|
|
|
|
+public class MainActivity extends Activity implements SurfaceHolder.Callback {
|
|
|
|
+
|
|
|
|
+ int count = 0;
|
|
|
|
+ static Camera mCameraActivity;
|
|
|
|
+ static Button flashlight_button;
|
|
|
|
+ Parameters params;
|
|
|
|
+ SurfaceView preview;
|
|
|
|
+ SurfaceHolder mHolder;
|
|
|
|
|
|
@Override
|
|
@Override
|
|
protected void onCreate(Bundle savedInstanceState) {
|
|
protected void onCreate(Bundle savedInstanceState) {
|
|
super.onCreate(savedInstanceState);
|
|
super.onCreate(savedInstanceState);
|
|
setContentView(R.layout.activity_main);
|
|
setContentView(R.layout.activity_main);
|
|
|
|
+ preview = (SurfaceView) findViewById(R.id.preview);
|
|
|
|
+ mHolder = preview.getHolder();
|
|
|
|
+
|
|
|
|
+ if (MyApplication.getIsFlashOn()) {
|
|
|
|
+ if (FlashlightWidgetReceiver.getmCameraWidget() != null) {
|
|
|
|
+ flashOffWidget();
|
|
|
|
+ setWidgetTo(R.drawable.light_on);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ if (getmCameraActivity() != null) {
|
|
|
|
+
|
|
|
|
+ try {
|
|
|
|
+ flashOffApp();
|
|
|
|
+ } catch (Exception e) {
|
|
|
|
+ e.printStackTrace();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ setWidgetTo(R.drawable.light_on);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ count = 0;
|
|
|
|
+ turnMotorolaOff();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ try {
|
|
|
|
+ setmCameraActivity(Camera.open());
|
|
|
|
+ } catch (Exception e) {
|
|
|
|
+ e.printStackTrace();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ flashlight_button = (Button) findViewById(R.id.flashlight_button);
|
|
|
|
+ flashlight_button.setOnClickListener(new View.OnClickListener() {
|
|
|
|
+ @Override
|
|
|
|
+ public void onClick(View view) {
|
|
|
|
+ if (MyApplication.getIsFlashOn()) {
|
|
|
|
+ processOffClick();
|
|
|
|
+ } else {
|
|
|
|
+ processOnClick();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+
|
|
}
|
|
}
|
|
|
|
|
|
@Override
|
|
@Override
|
|
- public boolean onCreateOptionsMenu(Menu menu) {
|
|
|
|
- // Inflate the menu; this adds items to the action bar if it is present.
|
|
|
|
- getMenuInflater().inflate(R.menu.main, menu);
|
|
|
|
- return true;
|
|
|
|
|
|
+ protected void onPause() {
|
|
|
|
+ super.onPause();
|
|
|
|
+ if (!MyApplication.getIsFlashOn()) {
|
|
|
|
+ processOffClick();
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /* 返回键关闭
|
|
|
|
+ */
|
|
|
|
+ @Override
|
|
|
|
+ public void onBackPressed() {
|
|
|
|
+ super.onBackPressed();
|
|
|
|
+ processOffClick();
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ // When the app resumes turn the LED off. This is a design decision. I think
|
|
|
|
+ // the user will likely want to open the app when it is on only to turn it
|
|
|
|
+ // off.
|
|
@Override
|
|
@Override
|
|
- public boolean onOptionsItemSelected(MenuItem item) {
|
|
|
|
- // Handle action bar item clicks here. The action bar will
|
|
|
|
- // automatically handle clicks on the Home/Up button, so long
|
|
|
|
- // as you specify a parent activity in AndroidManifest.xml.
|
|
|
|
- int id = item.getItemId();
|
|
|
|
- if (id == R.id.action_settings) {
|
|
|
|
- return true;
|
|
|
|
- }
|
|
|
|
- return super.onOptionsItemSelected(item);
|
|
|
|
|
|
+ protected void onResume() {
|
|
|
|
+ super.onResume();
|
|
|
|
+
|
|
|
|
+ if (MyApplication.getIsFlashOn()) {
|
|
|
|
+ if (FlashlightWidgetReceiver.getmCameraWidget() != null) {
|
|
|
|
+
|
|
|
|
+ flashOffWidget();
|
|
|
|
+ setWidgetTo(R.drawable.light_on);
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ if (getmCameraActivity() != null) {
|
|
|
|
+
|
|
|
|
+ try {
|
|
|
|
+ flashOffApp();
|
|
|
|
+ } catch (Exception e) {
|
|
|
|
+ e.printStackTrace();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ setWidgetTo(R.drawable.light_on);
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ count = 0;
|
|
|
|
+ turnMotorolaOff();
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ if (MyApplication.getIsFlashOn()) {
|
|
|
|
+ flashlight_button.setBackgroundResource(R.drawable.light_off);
|
|
|
|
+ } else if (!MyApplication.getIsFlashOn()) {
|
|
|
|
+ flashlight_button.setBackgroundResource(R.drawable.light_on);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ // Any time the widget or the button in the app is pressed to turn the LED
|
|
|
|
+ // on we process this off click. On method that is deprecated is needed for
|
|
|
|
+ // earlier than Android 3.0 devices.
|
|
|
|
+ @SuppressWarnings("deprecation")
|
|
|
|
+ private void processOnClick() {
|
|
|
|
+
|
|
|
|
+ flashlight_button.setBackgroundResource(R.drawable.light_off);
|
|
|
|
+ setWidgetTo(R.drawable.light_off);
|
|
|
|
+
|
|
|
|
+ if (getmCameraActivity() == null) {
|
|
|
|
+ try {
|
|
|
|
+ mHolder.addCallback(this);
|
|
|
|
+ if (Build.VERSION.SDK_INT < Build.VERSION_CODES.HONEYCOMB) {
|
|
|
|
+ mHolder.setType(SurfaceHolder.SURFACE_TYPE_PUSH_BUFFERS);
|
|
|
|
+ }
|
|
|
|
+ setmCameraActivity(Camera.open());
|
|
|
|
+ try {
|
|
|
|
+ if (mHolder != null) {
|
|
|
|
+ getmCameraActivity().setPreviewDisplay(mHolder);
|
|
|
|
+ }
|
|
|
|
+ } catch (IOException e) {
|
|
|
|
+ e.printStackTrace();
|
|
|
|
+ }
|
|
|
|
+ } catch (Exception e) {
|
|
|
|
+ e.printStackTrace();
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ if (getmCameraActivity() != null) {
|
|
|
|
+ flashOnApp();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ if (FlashlightWidgetReceiver.getmCameraWidget() != null) {
|
|
|
|
+ flashOnWidget();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ turnMotorolaOn();
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ private void flashOnApp() {
|
|
|
|
+ setParams(getmCameraActivity().getParameters());
|
|
|
|
+
|
|
|
|
+ List<String> flashModes = getParams().getSupportedFlashModes();
|
|
|
|
+
|
|
|
|
+ if (flashModes == null) {
|
|
|
|
+ return;
|
|
|
|
+ } else {
|
|
|
|
+ if (count == 0) {
|
|
|
|
+ getParams().setFlashMode(Parameters.FLASH_MODE_OFF);
|
|
|
|
+ getmCameraActivity().setParameters(getParams());
|
|
|
|
+ preview = (SurfaceView) findViewById(R.id.preview);
|
|
|
|
+ mHolder = preview.getHolder();
|
|
|
|
+ mHolder.addCallback(this);
|
|
|
|
+
|
|
|
|
+ try {
|
|
|
|
+ getmCameraActivity().startPreview();
|
|
|
|
+ } catch (Exception e) {
|
|
|
|
+ e.printStackTrace();
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ MyApplication.setIsFlashOn(true);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ String flashMode = getParams().getFlashMode();
|
|
|
|
+
|
|
|
|
+ if (!Parameters.FLASH_MODE_TORCH.equals(flashMode)) {
|
|
|
|
+
|
|
|
|
+ if (flashModes.contains(Parameters.FLASH_MODE_TORCH)) {
|
|
|
|
+ getParams().setFlashMode(Parameters.FLASH_MODE_TORCH);
|
|
|
|
+ getmCameraActivity().setParameters(getParams());
|
|
|
|
+ } else {
|
|
|
|
+ getParams().setFlashMode(Parameters.FLASH_MODE_ON);
|
|
|
|
+
|
|
|
|
+ getmCameraActivity().setParameters(getParams());
|
|
|
|
+ try {
|
|
|
|
+ getmCameraActivity().autoFocus(new AutoFocusCallback() {
|
|
|
|
+ public void onAutoFocus(boolean success,
|
|
|
|
+ Camera camera) {
|
|
|
|
+ count = 1;
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+ } catch (Exception e) {
|
|
|
|
+ e.printStackTrace();
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ MyApplication.setIsFlashOn(true);
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ // Turns the LED on when the widget is pressed.
|
|
|
|
+ private void flashOnWidget() {
|
|
|
|
+ FlashlightWidgetReceiver.setParamsWidget(FlashlightWidgetReceiver
|
|
|
|
+ .getmCameraWidget().getParameters());
|
|
|
|
+
|
|
|
|
+ List<String> flashModes = FlashlightWidgetReceiver.getParamsWidget()
|
|
|
|
+ .getSupportedFlashModes();
|
|
|
|
+
|
|
|
|
+ if (flashModes == null) {
|
|
|
|
+ return;
|
|
|
|
+ } else {
|
|
|
|
+ if (count == 0) {
|
|
|
|
+ FlashlightWidgetReceiver.getParamsWidget().setFlashMode(
|
|
|
|
+ Parameters.FLASH_MODE_OFF);
|
|
|
|
+ FlashlightWidgetReceiver.getmCameraWidget().setParameters(
|
|
|
|
+ FlashlightWidgetReceiver.getParamsWidget());
|
|
|
|
+
|
|
|
|
+ try {
|
|
|
|
+ FlashlightWidgetReceiver.getmCameraWidget().startPreview();
|
|
|
|
+ } catch (Exception e) {
|
|
|
|
+ e.printStackTrace();
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ MyApplication.setIsFlashOn(true);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ String flashMode = FlashlightWidgetReceiver.getParamsWidget()
|
|
|
|
+ .getFlashMode();
|
|
|
|
+
|
|
|
|
+ if (!Parameters.FLASH_MODE_TORCH.equals(flashMode)) {
|
|
|
|
+
|
|
|
|
+ if (flashModes.contains(Parameters.FLASH_MODE_TORCH)) {
|
|
|
|
+ FlashlightWidgetReceiver.getParamsWidget().setFlashMode(
|
|
|
|
+ Parameters.FLASH_MODE_TORCH);
|
|
|
|
+ FlashlightWidgetReceiver.getmCameraWidget().setParameters(
|
|
|
|
+ FlashlightWidgetReceiver.getParamsWidget());
|
|
|
|
+ } else {
|
|
|
|
+ FlashlightWidgetReceiver.getParamsWidget().setFlashMode(
|
|
|
|
+ Parameters.FLASH_MODE_ON);
|
|
|
|
+
|
|
|
|
+ FlashlightWidgetReceiver.getmCameraWidget().setParameters(
|
|
|
|
+ FlashlightWidgetReceiver.getParamsWidget());
|
|
|
|
+ try {
|
|
|
|
+ FlashlightWidgetReceiver.getmCameraWidget().autoFocus(
|
|
|
|
+ new AutoFocusCallback() {
|
|
|
|
+ public void onAutoFocus(boolean success,
|
|
|
|
+ Camera camera) {
|
|
|
|
+ count = 1;
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+ } catch (Exception e) {
|
|
|
|
+ e.printStackTrace();
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ MyApplication.setIsFlashOn(true);
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ static void turnMotorolaOn() {
|
|
|
|
+ DroidLED led;
|
|
|
|
+ try {
|
|
|
|
+ led = new DroidLED();
|
|
|
|
+ led.enable(true);
|
|
|
|
+ MyApplication.setIsFlashOn(true);
|
|
|
|
+ } catch (Exception e) {
|
|
|
|
+ e.printStackTrace();
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ // Any time the widget or the button in the app is pressed to turn the LED
|
|
|
|
+ // off we process this off click.
|
|
|
|
+ private void processOffClick() {
|
|
|
|
+
|
|
|
|
+ flashlight_button.setBackgroundResource(R.drawable.light_on);
|
|
|
|
+ setWidgetTo(R.drawable.light_on);
|
|
|
|
+
|
|
|
|
+ if (getmCameraActivity() != null) {
|
|
|
|
+ count = 0;
|
|
|
|
+ flashOffApp();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ if (FlashlightWidgetReceiver.getmCameraWidget() != null) {
|
|
|
|
+ count = 0;
|
|
|
|
+ flashOffWidget();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ turnMotorolaOff();
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ // Turns the LED off when the button on the app is pressed.
|
|
|
|
+ private void flashOffApp() {
|
|
|
|
+ getmCameraActivity().stopPreview();
|
|
|
|
+ getmCameraActivity().release();
|
|
|
|
+ setmCameraActivity(null);
|
|
|
|
+ MyApplication.setIsFlashOn(false);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ // Turns the LED off when the widget is pressed.
|
|
|
|
+ private void flashOffWidget() {
|
|
|
|
+ FlashlightWidgetReceiver.getmCameraWidget().stopPreview();
|
|
|
|
+ FlashlightWidgetReceiver.getmCameraWidget().release();
|
|
|
|
+ FlashlightWidgetReceiver.setmCameraWidget(null);
|
|
|
|
+ MyApplication.setIsFlashOn(false);
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ // Turns the LED off for some Motorola phones.
|
|
|
|
+ static void turnMotorolaOff() {
|
|
|
|
+ DroidLED led;
|
|
|
|
+ try {
|
|
|
|
+ led = new DroidLED();
|
|
|
|
+ led.enable(false);
|
|
|
|
+ MyApplication.setIsFlashOn(false);
|
|
|
|
+ } catch (Exception e) {
|
|
|
|
+ e.printStackTrace();
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ // setWidgetTo changes the widget view to either off or on.
|
|
|
|
+ private void setWidgetTo(int drawable) {
|
|
|
|
+ Context context = this;
|
|
|
|
+ AppWidgetManager appWidgetManager = AppWidgetManager
|
|
|
|
+ .getInstance(context);
|
|
|
|
+ RemoteViews remoteViews = new RemoteViews(context.getPackageName(),
|
|
|
|
+ R.layout.widget_layout);
|
|
|
|
+ ComponentName thisWidget = new ComponentName(context,
|
|
|
|
+ FlashlightWidgetProvider.class);
|
|
|
|
+ remoteViews.setImageViewResource(R.id.flashlight_widget_imageview,
|
|
|
|
+ drawable);
|
|
|
|
+ appWidgetManager.updateAppWidget(thisWidget, remoteViews);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public void surfaceCreated(SurfaceHolder holder) {
|
|
|
|
+ mHolder = holder;
|
|
|
|
+ mHolder.addCallback(this);
|
|
|
|
+ if (getmCameraActivity() != null) {
|
|
|
|
+ try {
|
|
|
|
+ getmCameraActivity().setPreviewDisplay(mHolder);
|
|
|
|
+ } catch (IOException e) {
|
|
|
|
+ e.printStackTrace();
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public void surfaceChanged(SurfaceHolder holder, int format, int width,
|
|
|
|
+ int height) {
|
|
|
|
+ mHolder = holder;
|
|
|
|
+ mHolder.addCallback(this);
|
|
|
|
+
|
|
|
|
+ if (getmCameraActivity() != null) {
|
|
|
|
+ try {
|
|
|
|
+ getmCameraActivity().setPreviewDisplay(mHolder);
|
|
|
|
+ } catch (IOException e) {
|
|
|
|
+ e.printStackTrace();
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public void surfaceDestroyed(SurfaceHolder holder) {
|
|
|
|
+ mHolder = null;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ // Getters and setters for mCameraActivity.
|
|
|
|
+ public static Camera getmCameraActivity() {
|
|
|
|
+ return mCameraActivity;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public static void setmCameraActivity(Camera mCameraActivity) {
|
|
|
|
+ MainActivity.mCameraActivity = mCameraActivity;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ // Getters and setters for params.
|
|
|
|
+ public Parameters getParams() {
|
|
|
|
+ return params;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setParams(Parameters params) {
|
|
|
|
+ this.params = params;
|
|
}
|
|
}
|
|
}
|
|
}
|