Home | History | Annotate | Download | only in fov
      1 // Copyright 2012 Google Inc. All Rights Reserved.
      2 
      3 package com.android.cts.verifier.camera.fov;
      4 
      5 import com.android.cts.verifier.R;
      6 
      7 import android.os.Bundle;
      8 import android.preference.PreferenceActivity;
      9 
     10 /**
     11  * Preferences for the LightCycle calibration app.
     12  *
     13  * @author haeberling (at) google.com (Sascha Haeberling)
     14  */
     15 public class CalibrationPreferenceActivity extends PreferenceActivity {
     16   public static final String OPTION_MARKER_DISTANCE = "markerDistance";
     17   public static final String OPTION_TARGET_DISTANCE = "targetDistanceCm";
     18 
     19   @Override
     20   protected void onCreate(Bundle savedInstanceState) {
     21     super.onCreate(savedInstanceState);
     22     addPreferencesFromResource(R.xml.camera_fov_calibration_preferences);
     23   }
     24 }
     25