- <?xml version="1.0" encoding="utf-8"?>
- <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- tools:context=".VoiceActivity">
-
- <fragment
- android:id="@+id/map"
- android:name="com.google.android.gms.maps.SupportMapFragment"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- tools:context=".fragment.MapsFragment"
- tools:layout_editor_absoluteX="0dp"
- tools:layout_editor_absoluteY="0dp" />
-
- <LinearLayout
- android:layout_width="411dp"
- android:layout_height="240dp"
- android:orientation="vertical"
- tools:layout_editor_absoluteX="-1dp"
- tools:layout_editor_absoluteY="0dp">
-
- <Button
- android:id="@+id/button"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="録音" />
-
- <FrameLayout
- android:layout_width="67dp"
- android:layout_height="60dp">
-
- <Button
- android:id="@+id/button2"
- android:layout_width="52dp"
- android:layout_height="48dp"
- android:alpha="0"
- android:text="再生" />
-
- <ImageView
- android:id="@+id/Stoping"
- android:layout_width="46dp"
- android:layout_height="42dp"
- android:src="@android:drawable/ic_media_play" />
-
- <ImageView
- android:id="@+id/Playing"
- android:layout_width="45dp"
- android:layout_height="40dp"
- android:alpha="0"
- android:src="@android:drawable/ic_media_pause" />
-
- </FrameLayout>
-
- <TextView
- android:id="@+id/Notice"
- android:layout_width="wrap_content"
- android:layout_height="47dp"
- android:text="ここにボタンを押した時の挙動が表示されます。"
- android:textSize="18sp" />
-
- <TextView
- android:id="@+id/VoiceTime"
- android:layout_width="298dp"
- android:layout_height="55dp"
- android:text="ここに再生時間が表示されます。"
- android:textSize="18sp" />
-
- </LinearLayout>
-
- </FrameLayout>