Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- xmlns:tools="http://schemas.android.com/tools"
- android:id="@+id/recordVideoLayout"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:keepScreenOn="true"
- android:orientation="vertical"
- android:paddingBottom="@dimen/activity_vertical_margin"
- android:paddingLeft="@dimen/activity_horizontal_margin"
- android:paddingRight="@dimen/activity_horizontal_margin"
- android:paddingTop="@dimen/activity_vertical_margin"
- android:background="@color/colorBg"
- android:weightSum="10"
- tools:context=".FFmpegRecordActivity">
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
- <Button
- android:id="@+id/btn_reset"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentLeft="true"
- android:text="@string/reset"
- android:visibility="invisible" />
- <Button
- android:id="@+id/btn_switch_camera"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentRight="true"
- android:text="@string/switch_camera" />
- </RelativeLayout>
- <!-- <FrameLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
- <!– <com.soialab.askaruly.camera_sensor.FixedRatioCroppedTextureView
- android:id="@+id/camera_preview"
- android:layout_width="match_parent"
- android:layout_height="wrap_content" />–>
- <com.soialab.askaruly.camera_sensor.FixedRatioCroppedTextureView
- android:id="@+id/camera_preview"
- android:layout_width="200dp"
- android:layout_height="200dp"
- android:layout_gravity="center_horizontal"
- />
- </FrameLayout>-->
- <FrameLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
- <!-- <com.soialab.askaruly.camera_sensor.FixedRatioCroppedTextureView
- android:id="@+id/camera_preview"
- android:layout_width="match_parent"
- android:layout_height="wrap_content" />-->
- <com.soialab.askaruly.camera_sensor.FixedRatioCroppedTextureView
- android:id="@+id/camera_preview"
- android:layout_width="50dp"
- android:layout_height="50dp"
- android:layout_gravity="center_horizontal"
- />
- </FrameLayout>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_alignParentBottom="true"
- android:orientation="horizontal">
- <Button
- android:id="@+id/btn_resume_or_pause"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:text="@string/resume" />
- <Button
- android:id="@+id/btn_done"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:text="@string/done" />
- </LinearLayout>
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
- <ScrollView
- android:id="@+id/scrollView"
- android:layout_width="match_parent"
- android:layout_height="50dp">
- <TextView
- android:id="@+id/text"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:gravity="bottom"
- android:textColor="@color/colorGrayText"
- />
- </ScrollView>
- <Button
- android:id="@+id/send"
- android:text="Send"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentRight="true"
- android:layout_alignParentEnd="true"
- android:layout_below="@id/scrollView"
- />
- </RelativeLayout>
- <RelativeLayout
- android:layout_width="wrap_content"
- android:layout_height="wrap_content">
- <Switch
- android:id="@+id/model_switch"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textOff="OFF"
- android:textOn="ON"/>
- </RelativeLayout>
- <FrameLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent">
- <GridLayout
- android:columnCount="3"
- android:rowCount="3"
- android:alignmentMode="alignMargins"
- android:columnOrderPreserved="false"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:padding="0dp"
- android:id="@+id/sensorsGridLayout"
- >
- <!-- android:layout_width="match_parent"
- android:layout_height="match_parent"-->
- <!--Row 1-->
- <!--Column 1-->
- <!--Time -->
- <android.support.v7.widget.CardView
- android:layout_width="0dp"
- android:layout_height="0dp"
- android:layout_columnWeight="1"
- android:layout_rowWeight="1"
- android:layout_marginBottom="0dp"
- android:layout_marginLeft="0dp"
- android:layout_marginRight="0dp"
- app:cardElevation="8dp"
- app:cardCornerRadius="0dp"
- app:cardBackgroundColor="@color/colorCardBg">
- <LinearLayout
- android:layout_gravity="center_horizontal|center_vertical"
- android:layout_margin="16dp"
- android:orientation="vertical"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- >
- <!--<ImageView-->
- <!--android:src="@drawable/bb"-->
- <!--android:layout_gravity="center_horizontal"-->
- <!--android:layout_width="30dp"-->
- <!--android:layout_height="30dp" />-->
- <TextView
- android:id="@+id/timeStat"
- android:text="#"
- android:textAlignment="center"
- android:textColor="@android:color/white"
- android:textSize="@dimen/sensor_text_size"
- android:textStyle="bold"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center"/>
- <TextView
- android:id="@+id/timeStatLabel"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="Time"
- android:textSize="@dimen/sensorlabel_text_size"
- android:textColor="@color/colorGrayText"
- android:layout_below="@id/timeStat"
- android:layout_gravity="center"
- />
- </LinearLayout>
- </android.support.v7.widget.CardView>
- <!--Row 1-->
- <!--Column 2-->
- <!--Heart Rate -->
- <android.support.v7.widget.CardView
- android:layout_width="0dp"
- android:layout_height="0dp"
- android:layout_columnWeight="1"
- android:layout_rowWeight="1"
- android:layout_marginBottom="@dimen/sensor_padding_value"
- android:layout_marginLeft="@dimen/sensor_padding_value"
- android:layout_marginRight="@dimen/sensor_padding_value"
- app:cardElevation="8dp"
- app:cardCornerRadius="@dimen/card_corner_radius"
- app:cardBackgroundColor="@color/colorCardBg"
- >
- <LinearLayout
- android:layout_gravity="center_horizontal|center_vertical"
- android:layout_margin="16dp"
- android:orientation="vertical"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content">
- <!--<ImageView-->
- <!--android:src="@drawable/bb"-->
- <!--android:layout_gravity="center_horizontal"-->
- <!--android:layout_width="30dp"-->
- <!--android:layout_height="30dp" />-->
- <TextView
- android:id="@+id/hrStat"
- android:text="#"
- android:textAlignment="center"
- android:textColor="@android:color/white"
- android:textSize="@dimen/sensor_text_size"
- android:textStyle="bold"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center"/>
- <TextView
- android:id="@+id/hrStatLabel"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="Heart Rate (bpm)"
- android:textSize="@dimen/sensorlabel_text_size"
- android:textColor="@color/colorGrayText"
- android:layout_below="@id/hrStat"
- android:layout_gravity="center"
- />
- </LinearLayout>
- </android.support.v7.widget.CardView>
- <!--Row 1-->
- <!--Column 3-->
- <!--Oxygen Saturation -->
- <android.support.v7.widget.CardView
- android:layout_width="0dp"
- android:layout_height="0dp"
- android:layout_columnWeight="1"
- android:layout_rowWeight="1"
- android:layout_marginBottom="@dimen/sensor_padding_value"
- android:layout_marginLeft="@dimen/sensor_padding_value"
- android:layout_marginRight="@dimen/sensor_padding_value"
- app:cardElevation="8dp"
- app:cardCornerRadius="@dimen/card_corner_radius"
- app:cardBackgroundColor="@color/colorCardBg"
- >
- <LinearLayout
- android:layout_gravity="center_horizontal|center_vertical"
- android:layout_margin="16dp"
- android:orientation="vertical"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content">
- <!--<ImageView-->
- <!--android:src="@drawable/bb"-->
- <!--android:layout_gravity="center_horizontal"-->
- <!--android:layout_width="30dp"-->
- <!--android:layout_height="30dp" />-->
- <TextView
- android:id="@+id/oxStat"
- android:text="#"
- android:textAlignment="center"
- android:textColor="@android:color/white"
- android:textSize="@dimen/sensor_text_size"
- android:textStyle="bold"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center"/>
- <TextView
- android:id="@+id/oxStatLabel"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="Oxygen Sat (%)"
- android:textSize="@dimen/sensorlabel_text_size"
- android:textColor="@color/colorGrayText"
- android:layout_below="@id/oxStat"
- android:layout_gravity="center"
- />
- </LinearLayout>
- </android.support.v7.widget.CardView>
- <!--Row 2-->
- <!--Column 1-->
- <!--Temperature -->
- <android.support.v7.widget.CardView
- android:layout_width="0dp"
- android:layout_height="0dp"
- android:layout_columnWeight="1"
- android:layout_rowWeight="1"
- android:layout_marginBottom="@dimen/sensor_padding_value"
- android:layout_marginLeft="@dimen/sensor_padding_value"
- android:layout_marginRight="@dimen/sensor_padding_value"
- app:cardElevation="8dp"
- app:cardCornerRadius="@dimen/card_corner_radius"
- app:cardBackgroundColor="@color/colorCardBg"
- >
- <LinearLayout
- android:layout_gravity="center_horizontal|center_vertical"
- android:layout_margin="16dp"
- android:orientation="vertical"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content">
- <!--<ImageView-->
- <!--android:src="@drawable/bb"-->
- <!--android:layout_gravity="center_horizontal"-->
- <!--android:layout_width="30dp"-->
- <!--android:layout_height="30dp" />-->
- <TextView
- android:id="@+id/tempStat"
- android:text="#"
- android:textColor="@android:color/white"
- android:textSize="@dimen/sensor_text_size"
- android:textStyle="bold"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center"
- />
- <TextView
- android:id="@+id/tempStatLabel"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="Temperature (C)"
- android:textSize="@dimen/sensorlabel_text_size"
- android:textColor="@color/colorGrayText"
- android:layout_below="@id/tempStat"
- android:layout_gravity="center"
- />
- </LinearLayout>
- </android.support.v7.widget.CardView>
- <!--Row 2-->
- <!--Column 2-->
- <!--Stretch -->
- <android.support.v7.widget.CardView
- android:layout_width="0dp"
- android:layout_height="0dp"
- android:layout_columnWeight="1"
- android:layout_rowWeight="1"
- android:layout_marginBottom="@dimen/sensor_padding_value"
- android:layout_marginLeft="@dimen/sensor_padding_value"
- android:layout_marginRight="@dimen/sensor_padding_value"
- app:cardElevation="8dp"
- app:cardCornerRadius="@dimen/card_corner_radius"
- app:cardBackgroundColor="@color/colorCardBg"
- >
- <LinearLayout
- android:layout_gravity="center_horizontal|center_vertical"
- android:layout_margin="16dp"
- android:orientation="vertical"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content">
- <!--<ImageView-->
- <!--android:src="@drawable/bb"-->
- <!--android:layout_gravity="center_horizontal"-->
- <!--android:layout_width="30dp"-->
- <!--android:layout_height="30dp" />-->
- <TextView
- android:id="@+id/stretchStat"
- android:text="#"
- android:textAlignment="center"
- android:textColor="@android:color/white"
- android:textSize="@dimen/sensor_text_size"
- android:textStyle="bold"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center"
- />
- <TextView
- android:id="@+id/stretchStatLabel"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="Stretch"
- android:textSize="@dimen/sensorlabel_text_size"
- android:textColor="@color/colorGrayText"
- android:layout_below="@id/stretchStat"
- android:layout_gravity="center"
- />
- </LinearLayout>
- </android.support.v7.widget.CardView>
- <!--Row 2-->
- <!--Column 3-->
- <!--Audio -->
- <android.support.v7.widget.CardView
- android:layout_width="0dp"
- android:layout_height="0dp"
- android:layout_columnWeight="1"
- android:layout_rowWeight="1"
- android:layout_marginBottom="@dimen/sensor_padding_value"
- android:layout_marginLeft="@dimen/sensor_padding_value"
- android:layout_marginRight="@dimen/sensor_padding_value"
- app:cardElevation="8dp"
- app:cardCornerRadius="@dimen/card_corner_radius"
- app:cardBackgroundColor="@color/colorCardBg"
- >
- <LinearLayout
- android:layout_gravity="center_horizontal|center_vertical"
- android:layout_margin="16dp"
- android:orientation="vertical"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content">
- <!--<ImageView-->
- <!--android:src="@drawable/bb"-->
- <!--android:layout_gravity="center_horizontal"-->
- <!--android:layout_width="30dp"-->
- <!--android:layout_height="30dp" />-->
- <TextView
- android:id="@+id/audioStat"
- android:text="#"
- android:textAlignment="center"
- android:textColor="@android:color/white"
- android:textSize="@dimen/sensor_text_size"
- android:textStyle="bold"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center"
- />
- <TextView
- android:id="@+id/audioStatLabel"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="Audio"
- android:textSize="@dimen/sensorlabel_text_size"
- android:textColor="@color/colorGrayText"
- android:layout_below="@id/audioStat"
- android:layout_gravity="center"
- />
- </LinearLayout>
- </android.support.v7.widget.CardView>
- <!--Row 3-->
- <!--Column 1-->
- <!--Yaw -->
- <android.support.v7.widget.CardView
- android:layout_width="0dp"
- android:layout_height="0dp"
- android:layout_columnWeight="1"
- android:layout_rowWeight="1"
- android:layout_marginBottom="@dimen/sensor_padding_value"
- android:layout_marginLeft="@dimen/sensor_padding_value"
- android:layout_marginRight="@dimen/sensor_padding_value"
- app:cardElevation="8dp"
- app:cardCornerRadius="@dimen/card_corner_radius"
- app:cardBackgroundColor="@color/colorCardBg"
- >
- <LinearLayout
- android:layout_gravity="center_horizontal|center_vertical"
- android:layout_margin="16dp"
- android:orientation="vertical"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content">
- <!--<ImageView-->
- <!--android:src="@drawable/bb"-->
- <!--android:layout_gravity="center_horizontal"-->
- <!--android:layout_width="30dp"-->
- <!--android:layout_height="30dp" />-->
- <TextView
- android:id="@+id/yawStat"
- android:text="#"
- android:textAlignment="center"
- android:textColor="@android:color/white"
- android:textSize="@dimen/sensor_text_size"
- android:textStyle="bold"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center"
- />
- <TextView
- android:id="@+id/yawStatLabel"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="Yaw"
- android:textSize="@dimen/sensorlabel_text_size"
- android:textColor="@color/colorGrayText"
- android:layout_below="@id/yawStat"
- android:layout_gravity="center"
- />
- </LinearLayout>
- </android.support.v7.widget.CardView>
- <!--Row 3-->
- <!--Column 2-->
- <!--Pitch -->
- <android.support.v7.widget.CardView
- android:layout_width="0dp"
- android:layout_height="0dp"
- android:layout_columnWeight="1"
- android:layout_rowWeight="1"
- android:layout_marginBottom="@dimen/sensor_padding_value"
- android:layout_marginLeft="@dimen/sensor_padding_value"
- android:layout_marginRight="@dimen/sensor_padding_value"
- app:cardElevation="8dp"
- app:cardCornerRadius="@dimen/card_corner_radius"
- app:cardBackgroundColor="@color/colorCardBg"
- >
- <LinearLayout
- android:layout_gravity="center_horizontal|center_vertical"
- android:layout_margin="16dp"
- android:orientation="vertical"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content">
- <!--<ImageView-->
- <!--android:src="@drawable/bb"-->
- <!--android:layout_gravity="center_horizontal"-->
- <!--android:layout_width="30dp"-->
- <!--android:layout_height="30dp" />-->
- <TextView
- android:id="@+id/pitchStat"
- android:text="#"
- android:textAlignment="center"
- android:textColor="@android:color/white"
- android:textSize="@dimen/sensor_text_size"
- android:textStyle="bold"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center"
- />
- <TextView
- android:id="@+id/pitchStatLabel"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="Pitch"
- android:textSize="@dimen/sensorlabel_text_size"
- android:textColor="@color/colorGrayText"
- android:layout_below="@id/pitchStat"
- android:layout_gravity="center"
- />
- </LinearLayout>
- </android.support.v7.widget.CardView>
- <!--Row 3-->/
- <!--Column 3-->
- <!--Roll -->
- <android.support.v7.widget.CardView
- android:layout_width="0dp"
- android:layout_height="0dp"
- android:layout_columnWeight="1"
- android:layout_rowWeight="1"
- android:layout_marginBottom="@dimen/sensor_padding_value"
- android:layout_marginLeft="@dimen/sensor_padding_value"
- android:layout_marginRight="@dimen/sensor_padding_value"
- app:cardElevation="8dp"
- app:cardCornerRadius="@dimen/card_corner_radius"
- app:cardBackgroundColor="@color/colorCardBg"
- >
- <LinearLayout
- android:layout_gravity="center_horizontal|center_vertical"
- android:layout_margin="16dp"
- android:orientation="vertical"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content">
- <!--<ImageView-->
- <!--android:src="@drawable/bb"-->
- <!--android:layout_gravity="center_horizontal"-->
- <!--android:layout_width="30dp"-->
- <!--android:layout_height="30dp" />-->
- <TextView
- android:id="@+id/rollStat"
- android:text="#"
- android:textAlignment="center"
- android:textColor="@android:color/white"
- android:textSize="@dimen/sensor_text_size"
- android:textStyle="bold"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center"
- />
- <TextView
- android:id="@+id/rollStatLabel"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="Roll"
- android:textSize="@dimen/sensorlabel_text_size"
- android:textColor="@color/colorGrayText"
- android:layout_below="@id/rollStat"
- android:layout_centerInParent="true"
- android:layout_gravity="center"
- />
- </LinearLayout>
- </android.support.v7.widget.CardView>
- </GridLayout>
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:id="@+id/linechartLayout"
- >
- <com.github.mikephil.charting.charts.LineChart
- android:id="@+id/mChart1"
- android:layout_width="match_parent"
- android:layout_height="50dp"
- />
- <!-- android:layout_marginTop="280dp"
- android:layout_marginLeft="20dp"
- android:layout_marginRight="20dp"
- android:layout_marginBottom="0dp"-->
- <!-- android:layout_marginTop="350dp"
- android:layout_marginLeft="20dp"
- android:layout_marginRight="20dp"
- android:layout_marginBottom="0dp"-->
- </RelativeLayout>
- </FrameLayout>
- <!--<RelativeLayout-->
- <!--android:layout_width="match_parent"-->
- <!--android:layout_height="wrap_content">-->
- <!--<Button-->
- <!--android:id="@+id/btn_ex1"-->
- <!--android:layout_width="wrap_content"-->
- <!--android:layout_height="wrap_content"-->
- <!--android:layout_alignParentLeft="true"-->
- <!--android:text="@string/reset"-->
- <!--android:visibility="invisible" />-->
- <!--<Button-->
- <!--android:id="@+id/btn_ex2"-->
- <!--android:layout_width="wrap_content"-->
- <!--android:layout_height="wrap_content"-->
- <!--android:layout_alignParentRight="true"-->
- <!--android:text="@string/switch_camera" />-->
- <!--</RelativeLayout>-->
- </LinearLayout>
- <!--android:layout_weight="8"-->
- <!--android:layout_height="0dp"-->
- <!--<RelativeLayout-->
- <!--android:layout_width="match_parent"-->
- <!--android:layout_height="wrap_content">-->
- <!--<TextView-->
- <!--android:id="@+id/timeStatLabel"-->
- <!--android:layout_width="wrap_content"-->
- <!--android:layout_height="match_parent"-->
- <!--android:text="TIME:"-->
- <!--android:layout_marginTop="100dp"-->
- <!--android:textSize="20dp"-->
- <!--/>-->
- <!--<TextView-->
- <!--android:id="@+id/timeStat"-->
- <!--android:layout_width="wrap_content"-->
- <!--android:layout_height="match_parent"-->
- <!--android:text="##"-->
- <!--android:layout_marginTop="100dp"-->
- <!--android:textSize="20dp"-->
- <!--android:layout_toRightOf="@id/timeStatLabel"-->
- <!--/>-->
- <!--<TextView-->
- <!--android:id="@+id/hrStatLabel"-->
- <!--android:layout_width="wrap_content"-->
- <!--android:layout_height="match_parent"-->
- <!--android:text="HR:"-->
- <!--android:layout_marginTop="120dp"-->
- <!--android:textSize="20dp"-->
- <!--/>-->
- <!--<TextView-->
- <!--android:id="@+id/hrStat"-->
- <!--android:layout_width="wrap_content"-->
- <!--android:layout_height="match_parent"-->
- <!--android:text="###"-->
- <!--android:layout_marginTop="120dp"-->
- <!--android:textSize="20dp"-->
- <!--android:layout_toRightOf="@id/hrStatLabel"-->
- <!--/>-->
- <!--<TextView-->
- <!--android:id="@+id/oxStatLabel"-->
- <!--android:layout_width="wrap_content"-->
- <!--android:layout_height="match_parent"-->
- <!--android:text="OX:"-->
- <!--android:layout_marginTop="140dp"-->
- <!--android:textSize="20dp"-->
- <!--/>-->
- <!--<TextView-->
- <!--android:id="@+id/oxStat"-->
- <!--android:layout_width="wrap_content"-->
- <!--android:layout_height="match_parent"-->
- <!--android:text="###"-->
- <!--android:layout_marginTop="140dp"-->
- <!--android:textSize="20dp"-->
- <!--android:layout_toRightOf="@id/oxStatLabel"-->
- <!--/>-->
- <!--<TextView-->
- <!--android:id="@+id/tempStatLabel"-->
- <!--android:layout_width="wrap_content"-->
- <!--android:layout_height="match_parent"-->
- <!--android:text="TEMP:"-->
- <!--android:layout_marginTop="160dp"-->
- <!--android:textSize="20dp"-->
- <!--/>-->
- <!--<TextView-->
- <!--android:id="@+id/tempStat"-->
- <!--android:layout_width="wrap_content"-->
- <!--android:layout_height="match_parent"-->
- <!--android:text="##"-->
- <!--android:layout_marginTop="160dp"-->
- <!--android:textSize="20dp"-->
- <!--android:layout_toRightOf="@id/tempStatLabel"-->
- <!--/>-->
- <!--<TextView-->
- <!--android:id="@+id/yawStatLabel"-->
- <!--android:layout_width="wrap_content"-->
- <!--android:layout_height="match_parent"-->
- <!--android:text="YAW:"-->
- <!--android:layout_marginTop="180dp"-->
- <!--android:textSize="20dp"-->
- <!--/>-->
- <!--<TextView-->
- <!--android:id="@+id/yawStat"-->
- <!--android:layout_width="wrap_content"-->
- <!--android:layout_height="match_parent"-->
- <!--android:text="##"-->
- <!--android:layout_marginTop="180dp"-->
- <!--android:textSize="20dp"-->
- <!--android:layout_toRightOf="@id/yawStatLabel"-->
- <!--/>-->
- <!--<TextView-->
- <!--android:id="@+id/pitchStatLabel"-->
- <!--android:layout_width="wrap_content"-->
- <!--android:layout_height="match_parent"-->
- <!--android:text="PITCH:"-->
- <!--android:layout_marginTop="200dp"-->
- <!--android:textSize="20dp"-->
- <!--/>-->
- <!--<TextView-->
- <!--android:id="@+id/pitchStat"-->
- <!--android:layout_width="wrap_content"-->
- <!--android:layout_height="match_parent"-->
- <!--android:text="##"-->
- <!--android:layout_marginTop="200dp"-->
- <!--android:textSize="20dp"-->
- <!--android:layout_toRightOf="@id/pitchStatLabel"-->
- <!--/>-->
- <!--<TextView-->
- <!--android:id="@+id/rollStatLabel"-->
- <!--android:layout_width="wrap_content"-->
- <!--android:layout_height="match_parent"-->
- <!--android:text="ROLL:"-->
- <!--android:layout_marginTop="220dp"-->
- <!--android:textSize="20dp"-->
- <!--/>-->
- <!--<TextView-->
- <!--android:id="@+id/rollStat"-->
- <!--android:layout_width="wrap_content"-->
- <!--android:layout_height="match_parent"-->
- <!--android:text="##"-->
- <!--android:layout_marginTop="220dp"-->
- <!--android:textSize="20dp"-->
- <!--android:layout_toRightOf="@id/rollStatLabel"-->
- <!--/>-->
- <!--<TextView-->
- <!--android:id="@+id/audioStatLabel"-->
- <!--android:layout_width="wrap_content"-->
- <!--android:layout_height="match_parent"-->
- <!--android:text="AUDIO:"-->
- <!--android:layout_marginTop="240dp"-->
- <!--android:textSize="20dp"-->
- <!--/>-->
- <!--<TextView-->
- <!--android:id="@+id/audioStat"-->
- <!--android:layout_width="wrap_content"-->
- <!--android:layout_height="match_parent"-->
- <!--android:text="##"-->
- <!--android:layout_marginTop="240dp"-->
- <!--android:textSize="20dp"-->
- <!--android:layout_toRightOf="@id/audioStatLabel"-->
- <!--/>-->
- <!--<TextView-->
- <!--android:id="@+id/stretchStatLabel"-->
- <!--android:layout_width="wrap_content"-->
- <!--android:layout_height="match_parent"-->
- <!--android:text="STRETCH:"-->
- <!--android:layout_marginTop="260dp"-->
- <!--android:textSize="20dp"-->
- <!--/>-->
- <!--<TextView-->
- <!--android:id="@+id/stretchStat"-->
- <!--android:layout_width="wrap_content"-->
- <!--android:layout_height="match_parent"-->
- <!--android:text="##"-->
- <!--android:layout_marginTop="260dp"-->
- <!--android:textSize="20dp"-->
- <!--android:layout_toRightOf="@id/stretchStatLabel"-->
- <!--/>-->
- <!---->
- <!--</RelativeLayout>-->
Advertisement
Add Comment
Please, Sign In to add comment