summaryrefslogtreecommitdiffstats
path: root/src/com/android/camera/VideoUI.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/camera/VideoUI.java')
-rw-r--r--src/com/android/camera/VideoUI.java8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/com/android/camera/VideoUI.java b/src/com/android/camera/VideoUI.java
index 1ce025ec4..a91f03846 100644
--- a/src/com/android/camera/VideoUI.java
+++ b/src/com/android/camera/VideoUI.java
@@ -54,7 +54,6 @@ public class VideoUI implements PreviewStatusListener {
private VideoRecordingHints mVideoHints;
private TextView mRecordingTimeView;
private LinearLayout mLabelsLinearLayout;
- private View mTimeLapseLabel;
private RotateLayout mRecordingTimeRect;
private boolean mRecordingStarted = false;
private final VideoController mController;
@@ -162,7 +161,6 @@ public class VideoUI implements PreviewStatusListener {
mReviewImage = (ImageView) mRootView.findViewById(R.id.review_image);
mRecordingTimeView = (TextView) mRootView.findViewById(R.id.recording_time);
mRecordingTimeRect = (RotateLayout) mRootView.findViewById(R.id.recording_time_rect);
- mTimeLapseLabel = mRootView.findViewById(R.id.time_lapse_label);
// The R.id.labels can only be found in phone layout.
// That is, mLabelsLinearLayout should be null in tablet layout.
mLabelsLinearLayout = (LinearLayout) mRootView.findViewById(R.id.labels);
@@ -182,12 +180,6 @@ public class VideoUI implements PreviewStatusListener {
}
}
- public void showTimeLapseUI(boolean enable) {
- if (mTimeLapseLabel != null) {
- mTimeLapseLabel.setVisibility(enable ? View.VISIBLE : View.GONE);
- }
- }
-
public void setSwipingEnabled(boolean enable) {
mActivity.setSwipingEnabled(enable);
}