Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package com.imaadv.leaynik.test;
- import android.hardware.Sensor;
- import android.hardware.SensorManager;
- import android.os.Bundle;
- import android.support.v4.app.Fragment;
- import android.view.LayoutInflater;
- import android.view.View;
- import android.view.ViewGroup;
- import android.widget.Button;
- import android.widget.TextView;
- import com.imaadv.leaynik.R;
- public class Aye_distance extends Fragment {
- private static final String KEY_CONTENT = "TestFragment:Content";
- TextView text;
- private SensorManager sensorMgr;
- private Sensor sensorAccel;
- private float moved = 0;
- private float speed = 0;
- private float accel = 0;
- private float accelDiff = 0;
- private float[] a;
- private long lastUpdate = 0;
- private float curAccel = 0;
- private int accelUpdates = 0;
- private float A, B;
- private Button button;
- private SensorManager mSensorManager = null;
- private TextView textView;
- static final float ALPHA = 0.45f;
- Sensor accelerometer;
- float accelFilter[] = new float[3];
- double temp;
- private static final String FILENAME = "acc_data";
- private static final String FILENAME2 = "peak_data";
- private int filenameNb;
- String str = "";
- static String pts = "";
- static long beginning;
- public static Aye_distance newInstance(String content) {
- Aye_distance fragment = new Aye_distance();
- StringBuilder builder = new StringBuilder();
- for (int i = 0; i < 20; i++) {
- builder.append(content).append(" k");
- }
- builder.deleteCharAt(builder.length() - 1);
- fragment.mContent = builder.toString();
- return fragment;
- }
- private String mContent = "???";
- @Override
- public void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- if ((savedInstanceState != null)
- && savedInstanceState.containsKey(KEY_CONTENT)) {
- mContent = savedInstanceState.getString(KEY_CONTENT);
- }
- }
- @Override
- public View onCreateView(LayoutInflater inflater, ViewGroup container,
- Bundle savedInstanceState) {
- View view = inflater.inflate(R.layout.tutorial_pg2, null);
- return view;
- }
- @Override
- public void onPause() {
- // TODO Auto-generated method stub
- super.onPause();
- }
- @Override
- public void onResume() {
- // TODO Auto-generated method stub
- super.onResume();
- }
- @Override
- public void onSaveInstanceState(Bundle outState) {
- super.onSaveInstanceState(outState);
- }
- @Override
- public void onStop() {
- // TODO Auto-generated method stub
- super.onStop();
- }
- @Override
- public void onDestroy() {
- // TODO Auto-generated method stub
- super.onDestroy();
- // Remove the TimerTask from the list
- // fuseTimer.cancel();
- // getActivity().finish();
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement