tuttelikz

fragment_snoring_record

Dec 17th, 2017
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 2.15 KB | None | 0 0
  1. <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2.     xmlns:tools="http://schemas.android.com/tools"
  3.     android:layout_width="match_parent"
  4.     android:layout_height="match_parent"
  5.     xmlns:app="http://schemas.android.com/apk/res-auto"
  6.     tools:context="com.example.iptea.hearingclub.fragments.SnoringRecordFragment">
  7.  
  8.     <!-- TODO: Update blank fragment layout -->
  9.     <TextView
  10.         android:layout_width="match_parent"
  11.         android:layout_height="match_parent"
  12.         android:text="@string/hello_blank_fragment" />
  13.  
  14.     <Button
  15.         android:layout_width="150dp"
  16.         android:layout_height="40dp"
  17.         android:text="start record"
  18.         android:id="@+id/startRecBtn"
  19.         android:layout_marginTop="30dp"
  20.         />
  21.  
  22.     <Button
  23.         android:layout_width="150dp"
  24.         android:layout_height="40dp"
  25.         android:text="stop record"
  26.         android:id="@+id/stopRecBtn"
  27.         android:layout_marginTop="80dp"
  28.         />
  29.  
  30.     <Button
  31.         android:layout_width="150dp"
  32.         android:layout_height="40dp"
  33.         android:text="start playing"
  34.         android:id="@+id/playRecBtn"
  35.         android:layout_marginTop="130dp"
  36.         />
  37.  
  38.     <Button
  39.         android:layout_width="150dp"
  40.         android:layout_height="40dp"
  41.         android:text="Stop playing"
  42.         android:id="@+id/stopPlay"
  43.         android:layout_marginTop="180dp"
  44.         />
  45.  
  46.     <Button
  47.         android:layout_width="150dp"
  48.         android:layout_height="40dp"
  49.         android:text="Save Record"
  50.         android:id="@+id/saveRec"
  51.         android:layout_marginTop="230dp"
  52.         />
  53.  
  54. <!--    <com.cleveroad.audiovisualization.GLAudioVisualizationView
  55.         android:id="@+id/visualizer_view"
  56.         android:layout_width="match_parent"
  57.         android:layout_height="350dp"
  58.         app:av_bubblesSize="@dimen/bubble_size"
  59.         app:av_bubblesRandomizeSizes="true"
  60.         app:av_wavesHeight="@dimen/wave_height"
  61.         app:av_wavesFooterHeight="@dimen/footer_height"
  62.         app:av_wavesCount="7"
  63.         app:av_layersCount="4"
  64.         app:av_backgroundColor="@color/av_color_bg"
  65.         />-->
  66.  
  67. </FrameLayout>
Advertisement
Add Comment
Please, Sign In to add comment