Advertisement
minafaw3

Aye_distance

Oct 11th, 2015
227
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.67 KB | None | 0 0
  1. package com.imaadv.leaynik.test;
  2.  
  3.  
  4. import android.hardware.Sensor;
  5. import android.hardware.SensorManager;
  6. import android.os.Bundle;
  7. import android.support.v4.app.Fragment;
  8. import android.view.LayoutInflater;
  9. import android.view.View;
  10. import android.view.ViewGroup;
  11. import android.widget.Button;
  12. import android.widget.TextView;
  13.  
  14. import com.imaadv.leaynik.R;
  15.  
  16. public class Aye_distance extends Fragment {
  17. private static final String KEY_CONTENT = "TestFragment:Content";
  18. TextView text;
  19. private SensorManager sensorMgr;
  20. private Sensor sensorAccel;
  21.  
  22. private float moved = 0;
  23. private float speed = 0;
  24. private float accel = 0;
  25. private float accelDiff = 0;
  26.  
  27. private float[] a;
  28.  
  29. private long lastUpdate = 0;
  30. private float curAccel = 0;
  31. private int accelUpdates = 0;
  32. private float A, B;
  33. private Button button;
  34. private SensorManager mSensorManager = null;
  35. private TextView textView;
  36. static final float ALPHA = 0.45f;
  37. Sensor accelerometer;
  38. float accelFilter[] = new float[3];
  39. double temp;
  40. private static final String FILENAME = "acc_data";
  41. private static final String FILENAME2 = "peak_data";
  42. private int filenameNb;
  43. String str = "";
  44. static String pts = "";
  45. static long beginning;
  46.  
  47. public static Aye_distance newInstance(String content) {
  48. Aye_distance fragment = new Aye_distance();
  49.  
  50. StringBuilder builder = new StringBuilder();
  51. for (int i = 0; i < 20; i++) {
  52. builder.append(content).append(" k");
  53. }
  54. builder.deleteCharAt(builder.length() - 1);
  55. fragment.mContent = builder.toString();
  56.  
  57. return fragment;
  58. }
  59.  
  60. private String mContent = "???";
  61.  
  62. @Override
  63. public void onCreate(Bundle savedInstanceState) {
  64. super.onCreate(savedInstanceState);
  65.  
  66. if ((savedInstanceState != null)
  67. && savedInstanceState.containsKey(KEY_CONTENT)) {
  68. mContent = savedInstanceState.getString(KEY_CONTENT);
  69. }
  70. }
  71.  
  72. @Override
  73. public View onCreateView(LayoutInflater inflater, ViewGroup container,
  74. Bundle savedInstanceState) {
  75.  
  76. View view = inflater.inflate(R.layout.tutorial_pg2, null);
  77.  
  78. return view;
  79. }
  80.  
  81.  
  82.  
  83.  
  84. @Override
  85. public void onPause() {
  86. // TODO Auto-generated method stub
  87. super.onPause();
  88. }
  89.  
  90. @Override
  91. public void onResume() {
  92. // TODO Auto-generated method stub
  93. super.onResume();
  94.  
  95. }
  96.  
  97. @Override
  98. public void onSaveInstanceState(Bundle outState) {
  99. super.onSaveInstanceState(outState);
  100. }
  101.  
  102. @Override
  103. public void onStop() {
  104. // TODO Auto-generated method stub
  105. super.onStop();
  106. }
  107.  
  108. @Override
  109. public void onDestroy() {
  110. // TODO Auto-generated method stub
  111. super.onDestroy();
  112. // Remove the TimerTask from the list
  113. // fuseTimer.cancel();
  114. // getActivity().finish();
  115. }
  116.  
  117.  
  118. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement