Fix flash issue

The flash light should show up at the same time as the control show up.
Also, when we change the flash mode, we should update the flash on screen
indicator.

bug:11064667

Change-Id: I888d3ce76ac618a4c7b40a288ecce13555c89ab0
diff --git a/src/com/android/camera/VideoUI.java b/src/com/android/camera/VideoUI.java
index d255ed7..7080032 100644
--- a/src/com/android/camera/VideoUI.java
+++ b/src/com/android/camera/VideoUI.java
@@ -662,7 +662,7 @@
     }
 
     public boolean isVisible() {
-        return mTextureView.getVisibility() == View.VISIBLE;
+        return mCameraControls.getVisibility() == View.VISIBLE;
     }
 
     @Override