Newer
Older
org.ntlab.amaryllis.client / app / src / main / res / layout / fragment_maps.xml
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout 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:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".fragment.MapsFragment">

<fragment xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:map="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    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" />


    <Button
        android:id="@+id/button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="録音"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="@+id/Notice" />

    <FrameLayout
        android:layout_width="67dp"
        android:layout_height="60dp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent">

        <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"
        app:layout_constraintBottom_toTopOf="@+id/button"
        app:layout_constraintStart_toStartOf="parent" />

    <TextView
        android:id="@+id/VoiceTime"
        android:layout_width="298dp"
        android:layout_height="55dp"
        android:text="ここに再生時間が表示されます。"
        android:textSize="18sp"
        app:layout_constraintBottom_toTopOf="@+id/Notice"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />



</androidx.constraintlayout.widget.ConstraintLayout>