OSDN Git Service

APIレベルを30に引き上げる。その2
[gokigen/A01c.git] / wear / src / main / java / jp / sfjp / gokigen / a01c / MainActivity.java
index 3f91664..1c1500f 100644 (file)
@@ -3,21 +3,26 @@ package jp.sfjp.gokigen.a01c;
 import android.content.Intent;
 import android.content.SharedPreferences;
 import android.graphics.Color;
+import android.graphics.drawable.Drawable;
 import android.os.Bundle;
+import android.os.PowerManager;
 import android.os.Vibrator;
 import android.preference.PreferenceManager;
 import android.provider.Settings;
-import android.support.wearable.activity.WearableActivity;
 import android.util.Log;
 import android.widget.ImageButton;
 import android.widget.TextView;
 import android.Manifest;
 import android.content.pm.PackageManager;
-import android.support.v4.app.ActivityCompat;
-import android.support.v4.content.ContextCompat;
+
+import androidx.appcompat.app.AppCompatActivity;
+import androidx.core.app.ActivityCompat;
+import androidx.core.content.ContextCompat;
 
 import jp.sfjp.gokigen.a01c.liveview.CameraLiveImageView;
 import jp.sfjp.gokigen.a01c.liveview.CameraLiveViewListenerImpl;
+import jp.sfjp.gokigen.a01c.liveview.dialog.FavoriteSettingSelectionDialog;
+import jp.sfjp.gokigen.a01c.liveview.dialog.IDialogDismissedNotifier;
 import jp.sfjp.gokigen.a01c.olycamerawrapper.dispatcher.FeatureDispatcher;
 import jp.sfjp.gokigen.a01c.liveview.ICameraStatusReceiver;
 import jp.sfjp.gokigen.a01c.liveview.IMessageDrawer;
@@ -30,19 +35,21 @@ import jp.sfjp.gokigen.a01c.preference.IPreferenceCameraPropertyAccessor;
  *   メインのActivity
  *
  */
-public class MainActivity extends WearableActivity implements  IChangeScene, IShowInformation, ICameraStatusReceiver
+public class MainActivity extends AppCompatActivity implements  IChangeScene, IShowInformation, ICameraStatusReceiver, IDialogDismissedNotifier
 {
     private final String TAG = toString();
     static final int REQUEST_NEED_PERMISSIONS = 1010;
-    static final int COMMAND_MY_PROPERTY = 0x00000100;
+    //static final int COMMAND_MY_PROPERTY = 0x00000100;
 
+    private PowerManager powerManager = null;
     private CameraLiveImageView liveView = null;
     private IOlyCameraCoordinator coordinator = null;
     private IMessageDrawer messageDrawer = null;
     private OlyCameraLiveViewOnTouchListener listener = null;
+    private FavoriteSettingSelectionDialog selectionDialog = null;
     private Vibrator vibrator = null;
     private boolean cameraDisconnectedHappened = false;
-    private boolean ambientMode = false;
+    //private boolean ambientMode = false;
 
     /**
      *
@@ -54,7 +61,7 @@ public class MainActivity extends WearableActivity implements  IChangeScene, ISh
         Log.v(TAG, "onCreate()");
 
         // Ambientモードを許してみる...
-        setAmbientEnabled();
+        //setAmbientEnabled();
 
         //  画面全体の設定
         setContentView(R.layout.activity_main);
@@ -82,20 +89,30 @@ public class MainActivity extends WearableActivity implements  IChangeScene, ISh
                     REQUEST_NEED_PERMISSIONS);
         }
 
-        if (!hasGps())
+        try
         {
-            // GPS機能が搭載されていない場合...
-            Log.d(TAG, "This hardware doesn't have GPS.");
-            // Fall back to functionality that does not use location or
-            // warn the user that location function is not available.
-        }
+            if (!hasGps())
+            {
+                // GPS機能が搭載されていない場合...
+                Log.d(TAG, "This hardware doesn't have GPS.");
+                // Fall back to functionality that does not use location or
+                // warn the user that location function is not available.
+            }
 
-        // バイブレータをつかまえる
-        vibrator = (Vibrator) getSystemService(VIBRATOR_SERVICE);
+            // バイブレータをつかまえる
+            vibrator = (Vibrator) getSystemService(VIBRATOR_SERVICE);
 
-        setupCameraCoordinator();
-        setupInitialButtonIcons();
-        setupActionListener();
+            // パワーマネージャをつかまえる
+            powerManager = (PowerManager) getSystemService(POWER_SERVICE);
+
+            setupCameraCoordinator();
+            setupInitialButtonIcons();
+            setupActionListener();
+        }
+        catch (Exception e)
+        {
+            e.printStackTrace();
+        }
     }
 
     /**
@@ -141,10 +158,7 @@ public class MainActivity extends WearableActivity implements  IChangeScene, ISh
         exitApplication();
     }
 
-    /**
-     *
-     *
-     */
+/*
      @Override
      public void onEnterAmbient(Bundle ambientDetails)
      {
@@ -153,10 +167,6 @@ public class MainActivity extends WearableActivity implements  IChangeScene, ISh
          ambientMode =true;
      }
 
-    /**
-     *
-     *
-     */
     @Override
     public void onExitAmbient()
     {
@@ -165,16 +175,13 @@ public class MainActivity extends WearableActivity implements  IChangeScene, ISh
         ambientMode = false;
     }
 
-    /**
-     *
-     *
-     */
     @Override
     public void onUpdateAmbient()
     {
         super.onUpdateAmbient();
         Log.v(TAG, "onUpdateAmbient()");
     }
+*/
 
     /**
      *   ボタンが押された、画面がタッチされた、、は、リスナクラスで処理するよう紐づける
@@ -182,53 +189,60 @@ public class MainActivity extends WearableActivity implements  IChangeScene, ISh
      */
     private void setupActionListener()
     {
-        final ImageButton btn1 = (ImageButton) findViewById(R.id.btn_1);
-        btn1.setOnClickListener(listener);
-        btn1.setOnLongClickListener(listener);
+        try
+        {
+            final ImageButton btn1 = findViewById(R.id.btn_1);
+            btn1.setOnClickListener(listener);
+            btn1.setOnLongClickListener(listener);
 
-        final ImageButton btn2 = (ImageButton) findViewById(R.id.btn_2);
-        btn2.setOnClickListener(listener);
-        btn2.setOnLongClickListener(listener);
+            final ImageButton btn2 = findViewById(R.id.btn_2);
+            btn2.setOnClickListener(listener);
+            btn2.setOnLongClickListener(listener);
 
-        final ImageButton btn3 = (ImageButton) findViewById(R.id.btn_3);
-        btn3.setOnClickListener(listener);
-        btn3.setOnLongClickListener(listener);
+            final ImageButton btn3 = findViewById(R.id.btn_3);
+            btn3.setOnClickListener(listener);
+            btn3.setOnLongClickListener(listener);
 
-        final ImageButton btn4 = (ImageButton) findViewById(R.id.btn_4);
-        btn4.setOnClickListener(listener);
-        btn4.setOnLongClickListener(listener);
+            final ImageButton btn4 = findViewById(R.id.btn_4);
+            btn4.setOnClickListener(listener);
+            btn4.setOnLongClickListener(listener);
 
-        final ImageButton btn5 = (ImageButton) findViewById(R.id.btn_5);
-        btn5.setOnClickListener(listener);
-        btn5.setOnLongClickListener(listener);
+            final ImageButton btn5 = findViewById(R.id.btn_5);
+            btn5.setOnClickListener(listener);
+            btn5.setOnLongClickListener(listener);
 
-        final ImageButton btn6 = (ImageButton) findViewById(R.id.btn_6);
-        btn6.setOnClickListener(listener);
-        btn6.setOnLongClickListener(listener);
+            final ImageButton btn6 = findViewById(R.id.btn_6);
+            btn6.setOnClickListener(listener);
+            btn6.setOnLongClickListener(listener);
 
-        final TextView textArea1 = (TextView) findViewById(R.id.text_1);
-        textArea1.setOnClickListener(listener);
-        textArea1.setOnLongClickListener(listener);
+            final TextView textArea1 = findViewById(R.id.text_1);
+            textArea1.setOnClickListener(listener);
+            textArea1.setOnLongClickListener(listener);
 
-        final TextView textArea2 = (TextView) findViewById(R.id.text_2);
-        textArea2.setOnClickListener(listener);
-        textArea2.setOnLongClickListener(listener);
+            final TextView textArea2 = findViewById(R.id.text_2);
+            textArea2.setOnClickListener(listener);
+            textArea2.setOnLongClickListener(listener);
 
-        final TextView textArea3 = (TextView) findViewById(R.id.text_3);
-        textArea3.setOnClickListener(listener);
-        textArea3.setOnLongClickListener(listener);
+            final TextView textArea3 = findViewById(R.id.text_3);
+            textArea3.setOnClickListener(listener);
+            textArea3.setOnLongClickListener(listener);
 
-        final TextView textArea4 = (TextView) findViewById(R.id.text_4);
-        textArea4.setOnClickListener(listener);
-        textArea4.setOnLongClickListener(listener);
+            final TextView textArea4 = findViewById(R.id.text_4);
+            textArea4.setOnClickListener(listener);
+            textArea4.setOnLongClickListener(listener);
 
-        if (liveView == null)
+            if (liveView == null)
+            {
+                liveView = findViewById(R.id.liveview);
+            }
+            liveView.setOnTouchListener(listener);
+            messageDrawer = liveView.getMessageDrawer();
+            messageDrawer.setLevelGauge(coordinator.getLevelGauge());
+        }
+        catch (Exception e)
         {
-            liveView = (CameraLiveImageView) findViewById(R.id.liveview);
+            e.printStackTrace();
         }
-        liveView.setOnTouchListener(listener);
-        messageDrawer = liveView.getMessageDrawer();
-        messageDrawer.setLevelGauge(coordinator.getLevelGauge());
     }
 
     /**
@@ -237,21 +251,25 @@ public class MainActivity extends WearableActivity implements  IChangeScene, ISh
      */
     private void setupInitialButtonIcons()
     {
-        if (coordinator != null)
+        try
         {
-            int resId;
-            SharedPreferences preferences = android.support.v7.preference.PreferenceManager.getDefaultSharedPreferences(this);
-            if (preferences.getBoolean(IPreferenceCameraPropertyAccessor.SHOW_GRID_STATUS, true))
+            if (coordinator != null)
             {
-                // ボタンをGrid OFFアイコンにする
-                resId = R.drawable.btn_ic_grid_off;
-            }
-            else
-            {
-                // ボタンをGrid ONアイコンにする
-                resId = R.drawable.btn_ic_grid_on;
+                int resId;
+                SharedPreferences preferences = PreferenceManager.getDefaultSharedPreferences(this);
+                if (preferences.getBoolean(IPreferenceCameraPropertyAccessor.SHOW_GRID_STATUS, true)) {
+                    // ボタンをGrid OFFアイコンにする
+                    resId = R.drawable.btn_ic_grid_off;
+                } else {
+                    // ボタンをGrid ONアイコンにする
+                    resId = R.drawable.btn_ic_grid_on;
+                }
+                setButtonDrawable(IShowInformation.BUTTON_1, resId);
             }
-            setButtonDrawable(IShowInformation.BUTTON_1, resId);
+        }
+        catch (Exception e)
+        {
+            e.printStackTrace();
         }
     }
 
@@ -261,6 +279,7 @@ public class MainActivity extends WearableActivity implements  IChangeScene, ISh
      */
     private boolean launchWifiSettingScreen()
     {
+        Log.v(TAG, "launchWifiSettingScreen()");
         try
         {
             // Wifi 設定画面を表示する... (SONY Smart Watch 3では開かないけど...)
@@ -289,6 +308,18 @@ public class MainActivity extends WearableActivity implements  IChangeScene, ISh
                 catch (Exception ee)
                 {
                     ee.printStackTrace();
+                    try
+                    {
+                        // LG G Watch Rで開く場合のIntent...
+                        Intent intent = new Intent("android.intent.action.MAIN");
+                        intent.setClassName("com.google.android.apps.wearable.settings", "com.google.android.clockwork.settings.MainSettingsActivity");
+                        startActivity(intent);
+                        return (true);
+                    }
+                    catch (android.content.ActivityNotFoundException ex3)
+                    {
+                        ex3.printStackTrace();
+                    }
                 }
             }
             catch (Exception e)
@@ -309,15 +340,22 @@ public class MainActivity extends WearableActivity implements  IChangeScene, ISh
      */
     private void setupCameraCoordinator()
     {
-        if (liveView == null)
+        try
+        {
+            if (liveView == null) {
+                liveView = findViewById(R.id.liveview);
+            }
+            coordinator = null;
+            coordinator = new OlyCameraCoordinator(this, liveView, this, this);
+            coordinator.setLiveViewListener(new CameraLiveViewListenerImpl(liveView));
+            listener = new OlyCameraLiveViewOnTouchListener(this, new FeatureDispatcher(this, coordinator, liveView), this);
+            selectionDialog = new FavoriteSettingSelectionDialog(this, coordinator.getCameraPropertyLoadSaveOperations(), this);
+            connectToCamera();
+        }
+        catch (Exception e)
         {
-            liveView = (CameraLiveImageView) findViewById(R.id.liveview);
+            e.printStackTrace();
         }
-        coordinator = null;
-        coordinator = new OlyCameraCoordinator(this, liveView, this, this);
-        coordinator.setLiveViewListener(new CameraLiveViewListenerImpl(liveView));
-        listener = new OlyCameraLiveViewOnTouchListener(this, new FeatureDispatcher(this, coordinator, liveView), this);
-        connectToCamera();
     }
 
     /**
@@ -351,29 +389,45 @@ public class MainActivity extends WearableActivity implements  IChangeScene, ISh
     @Override
     public void exitApplication()
     {
-        Log.v(TAG, "exitApplication()");
-        if (ambientMode)
+        try
         {
-            // アンビエントモードの時(≒自分でアプリを終了しなかったとき)は、何もしない
-            // (接続したままとする)
-            Log.v(TAG, "keep liveview.");
-            return;
-        }
+            Log.v(TAG, "exitApplication()");
+/*
+            if (ambientMode)
+            {
+                // アンビエントモードの時(≒自分でアプリを終了しなかったとき)は、何もしない
+                // (接続したままとする)
+                Log.v(TAG, "keep liveview.");
+                return;
+            }
+*/
 
-        // ライブビューを停止させる
-        coordinator.stopLiveView();
+            // パワーマネージャを確認し、interactive modeではない場合は、ライブビューも止めず、カメラの電源も切らない
+            if ((powerManager != null) && (!powerManager.isInteractive()))
+            {
+                Log.v(TAG, "not interactive, keep liveview.");
+                return;
+            }
 
-        //  パラメータを確認し、カメラの電源を切る
-        if (PreferenceManager.getDefaultSharedPreferences(this).getBoolean(IPreferenceCameraPropertyAccessor.EXIT_APPLICATION_WITH_DISCONNECT, true))
-        {
-            Log.v(TAG, "Shutdown camera...");
+            // ライブビューを停止させる
+            coordinator.stopLiveView();
+
+            //  パラメータを確認し、カメラの電源を切る
+            if (PreferenceManager.getDefaultSharedPreferences(this).getBoolean(IPreferenceCameraPropertyAccessor.EXIT_APPLICATION_WITH_DISCONNECT, true))
+            {
+                Log.v(TAG, "Shutdown camera...");
 
-            // カメラの電源をOFFにする
-            coordinator.getConnectionInterface().disconnect(true);
+                // カメラの電源をOFFにする
+                coordinator.getConnectionInterface().disconnect(true);
+            }
+            //finish();
+            //finishAndRemoveTask();
+            //android.os.Process.killProcess(android.os.Process.myPid());
+        }
+        catch (Exception e)
+        {
+            e.printStackTrace();
         }
-        //finish();
-        //finishAndRemoveTask();
-        //android.os.Process.killProcess(android.os.Process.myPid());
     }
 
     /**
@@ -392,17 +446,37 @@ public class MainActivity extends WearableActivity implements  IChangeScene, ISh
     }
 
     /**
+     *   画面をタッチした場所を受信する
+     *
+     * @param posX  X座標位置 (0.0f - 1.0f)
+     * @param posY  Y座標位置 (0.0f - 1.0f)
+     * @return true / false
+     */
+    @Override
+    public boolean touchedPosition(float posX, float posY)
+    {
+        Log.v(TAG, "touchedPosition (" + posX + ", " + posY);
+        return ((liveView != null)&&(liveView.touchedPosition(posX, posY)));
+    }
+
+    /**
      *   接続状態を見る or 再接続する
      */
     @Override
     public boolean showConnectionStatus()
     {
-        if ((!listener.isEnabledOperation())&&(cameraDisconnectedHappened))
+        try
         {
-            // カメラが切断されたとき、再接続を指示する
-            connectToCamera();
-            cameraDisconnectedHappened = false;
-            return (true);
+            if ((listener.isEnabledOperation() == IShowInformation.operation.ONLY_CONNECT) && (cameraDisconnectedHappened)) {
+                // カメラが切断されたとき、再接続を指示する
+                connectToCamera();
+                cameraDisconnectedHappened = false;
+                return (true);
+            }
+        }
+        catch (Exception e)
+        {
+            e.printStackTrace();
         }
         return (false);
     }
@@ -423,13 +497,19 @@ public class MainActivity extends WearableActivity implements  IChangeScene, ISh
     public void onCameraConnected()
     {
         Log.v(TAG, "onCameraConnected()");
-
-        // ライブビューの開始 & タッチ/ボタンの操作を可能にする
-        coordinator.startLiveView();
-        coordinator.setRecViewMode(false);
-        listener.setEnableOperation(true, false);
-        setMessage(IShowInformation.AREA_C, Color.WHITE, "");
-        coordinator.updateStatusAll();
+        try
+        {
+            // ライブビューの開始 & タッチ/ボタンの操作を可能にする
+            coordinator.startLiveView();
+            coordinator.setRecViewMode(false);
+            listener.setEnableOperation(operation.ENABLE);
+            setMessage(IShowInformation.AREA_C, Color.WHITE, "");
+            coordinator.updateStatusAll();
+        }
+        catch (Exception e)
+        {
+            e.printStackTrace();
+        }
     }
 
     /**
@@ -440,9 +520,16 @@ public class MainActivity extends WearableActivity implements  IChangeScene, ISh
     public void onCameraDisconnected()
     {
         Log.v(TAG, "onCameraDisconnected()");
-        setMessage(IShowInformation.AREA_C, Color.YELLOW, getString(R.string.camera_disconnected));
-        listener.setEnableOperation(false, false);
-        cameraDisconnectedHappened = true;
+        try
+        {
+            setMessage(IShowInformation.AREA_C, Color.YELLOW, getString(R.string.camera_disconnected));
+            listener.setEnableOperation(operation.ONLY_CONNECT);
+            cameraDisconnectedHappened = true;
+        }
+        catch (Exception e)
+        {
+            e.printStackTrace();
+        }
     }
 
     /**
@@ -452,9 +539,17 @@ public class MainActivity extends WearableActivity implements  IChangeScene, ISh
     public void onCameraOccursException(String message, Exception e)
     {
         Log.v(TAG, "onCameraOccursException()");
-        setMessage(IShowInformation.AREA_C, Color.YELLOW, message);
-        listener.setEnableOperation(false, false);
-        cameraDisconnectedHappened = true;
+        try
+        {
+            setMessage(IShowInformation.AREA_C, Color.YELLOW, message);
+            listener.setEnableOperation(operation.ONLY_CONNECT);
+            cameraDisconnectedHappened = true;
+        }
+        catch (Exception ee)
+        {
+            e.printStackTrace();
+            ee.printStackTrace();
+        }
     }
 
     /**s
@@ -524,6 +619,16 @@ public class MainActivity extends WearableActivity implements  IChangeScene, ISh
                 messageDrawer.setMessageToShow(IMessageDrawer.MessageArea.LOWCENTER, color, IMessageDrawer.SIZE_STD, message);
                 return;
             }
+            if (area == IShowInformation.AREA_B)
+            {
+                messageDrawer.setMessageToShow(IMessageDrawer.MessageArea.CENTERLEFT, color, IMessageDrawer.SIZE_STD, message);
+                return;
+            }
+            if (area == IShowInformation.AREA_D)
+            {
+                messageDrawer.setMessageToShow(IMessageDrawer.MessageArea.CENTERRIGHT, color, IMessageDrawer.SIZE_STD, message);
+                return;
+            }
 
             if (id == 0)
             {
@@ -536,11 +641,15 @@ public class MainActivity extends WearableActivity implements  IChangeScene, ISh
         runOnUiThread(new Runnable()
         {
              @Override
-             public void run() {
-                 final TextView textArea = (TextView) findViewById(areaId);
-                 textArea.setTextColor(color);
-                 textArea.setText(message);
-                 textArea.invalidate();
+             public void run()
+             {
+                 final TextView textArea = findViewById(areaId);
+                 if (textArea != null)
+                 {
+                     textArea.setTextColor(color);
+                     textArea.setText(message);
+                     textArea.invalidate();
+                 }
              }
         });
     }
@@ -582,10 +691,22 @@ public class MainActivity extends WearableActivity implements  IChangeScene, ISh
         runOnUiThread(new Runnable()
         {
             @Override
-            public void run() {
-                final ImageButton button = (ImageButton) findViewById(areaId);
-                button.setImageDrawable(getDrawable(labelId));
-                button.invalidate();
+            public void run()
+            {
+                try
+                {
+                    final ImageButton button = findViewById(areaId);
+                    final Drawable drawTarget = ContextCompat.getDrawable(getApplicationContext(), labelId);
+                    if (button != null)
+                    {
+                        button.setImageDrawable(drawTarget);
+                        button.invalidate();
+                    }
+                }
+                catch (Exception e)
+                {
+                    e.printStackTrace();
+                }
             }
         });
     }
@@ -625,13 +746,13 @@ public class MainActivity extends WearableActivity implements  IChangeScene, ISh
                             vibrator.vibrate(150);
                             break;
                         case IShowInformation.VIBRATE_PATTERN_SIMPLE_MIDDLE:
-                            vibrator.vibrate(75);
+                            vibrator.vibrate(80);
                             break;
                         case IShowInformation.VIBRATE_PATTERN_SIMPLE_SHORT:
-                            vibrator.vibrate(20);
+                            vibrator.vibrate(30);
                             break;
                         case IShowInformation.VIBRATE_PATTERN_SHORT_DOUBLE:
-                            long[] pattern = { 10, 25, 20, 25, 0 };
+                            long[] pattern = { 10, 35, 30, 35, 0 };
                             vibrator.vibrate(pattern, -1);
                             break;
                         case IShowInformation.VIBRATE_PATTERN_NONE:
@@ -650,11 +771,11 @@ public class MainActivity extends WearableActivity implements  IChangeScene, ISh
     }
 
     @Override
-    public void setEnabledOperation(boolean operation, boolean suppress)
+    public void setEnabledOperation(IShowInformation.operation operation)
     {
         if (listener != null)
         {
-            listener.setEnableOperation(operation, suppress);
+            listener.setEnableOperation(operation);
         }
     }
 
@@ -665,26 +786,32 @@ public class MainActivity extends WearableActivity implements  IChangeScene, ISh
     @Override
     public void showFavoriteSettingsDialog()
     {
-/*
-        // お気に入り設定画面を開く...
-        LoadSaveMyCameraPropertyDialog dialog = new LoadSaveMyCameraPropertyDialog();
-        dialog.setTargetFragment(this, COMMAND_MY_PROPERTY);
-        dialog.setPropertyOperationsHolder(coordinator.getCameraPropertyLoadSaveOperations());
-        dialog.show(this, "my_dialog");
-*/
-/*
-        //  コマンドの実行確認ダイアログ... 動かん。。
-        ConfirmationDialog dialog = new ConfirmationDialog(this);
-        dialog.show(R.string.title_my_settings, R.string.message_none, new ConfirmationDialog.Callback()
+        if ((liveView != null)&&(listener != null)&&(listener.isEnabledOperation() != operation.ONLY_CONNECT))
         {
-            @Override
-            public void confirm()
-            {
-                vibrate(IShowInformation.VIBRATE_PATTERN_SIMPLE_LONGLONG);
-            }
-        });
-*/
+            listener.setEnableOperation(operation.ENABLE_ONLY_TOUCHED_POSITION);
+            liveView.showDialog(selectionDialog);
+        }
     }
 
+    /**
+     *   「お気に入り設定」表示画面を閉じる
+     *
+     */
+    @Override
+    public void dialogDismissed(boolean isExecuted)
+    {
+        try
+        {
+            if ((liveView != null) && (listener != null))
+            {
+                liveView.hideDialog();
+                listener.setEnableOperation(operation.ENABLE);
 
+            }
+        }
+        catch (Exception e)
+        {
+            e.printStackTrace();
+        }
+    }
 }