Newer
Older
CosmosClient / app / src / main / res / layout / activity_add_member.xml
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.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=".views.AddMemberActivity">

    <TextView
        android:id="@+id/groupName"
        android:layout_width="match_parent"
        android:layout_height="75dp"
        android:background="#e6eae3"
        android:gravity="center"
        android:text=""
        android:textSize="24sp"
        app:layout_constraintTop_toTopOf="parent"
        tools:layout_editor_absoluteX="0dp" />

    <LinearLayout
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:layout_marginTop="8dp"
        android:layout_marginBottom="8dp"
        android:orientation="vertical"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/groupName">

        <ListView
            android:id="@+id/list_view"
            android:layout_width="match_parent"
            android:layout_height="match_parent" />
    </LinearLayout>
    <!--<Button-->
        <!--android:id="@+id/addQR"-->
        <!--android:layout_width="match_parent"-->
        <!--android:layout_height="144dp"-->
        <!--android:background="@drawable/white"-->
        <!--android:gravity="center"-->
        <!--android:text="QRコードで追加"-->
        <!--android:textSize="24sp"-->
        <!--android:drawableLeft="@drawable/camera_image"-->
        <!--app:layout_constraintTop_toBottomOf="@+id/groupName"-->
        <!--tools:layout_editor_absoluteX="0dp" />-->

    <!--<Button-->
        <!--android:id="@+id/addID"-->
        <!--android:layout_width="match_parent"-->
        <!--android:layout_height="144dp"-->
        <!--android:background="@drawable/white"-->
        <!--android:gravity="center"-->
        <!--android:text="IDで追加"-->
        <!--android:textSize="24sp"-->
        <!--android:drawableLeft="@drawable/search_image"-->
        <!--app:layout_constraintTop_toBottomOf="@+id/addQR"-->
        <!--tools:layout_editor_absoluteX="0dp" />-->

    <!--<Button-->
        <!--android:id="@+id/addMail"-->
        <!--android:layout_width="match_parent"-->
        <!--android:layout_height="144dp"-->
        <!--android:background="@drawable/white"-->
        <!--android:drawableLeft="@drawable/mail_image"-->
        <!--android:gravity="center"-->
        <!--android:text="メールで招待"-->
        <!--android:textSize="24sp"-->
        <!--app:layout_constraintTop_toBottomOf="@+id/addID"-->
        <!--tools:layout_editor_absoluteX="0dp" />-->

    <!--<ListView-->
        <!--android:id="@android:id/list"-->
        <!--android:layout_width="match_parent"-->
        <!--android:layout_height="wrap_content" />-->

</android.support.constraint.ConstraintLayout>

<!--<LinearLayout-->
    <!--xmlns:android="http://schemas.android.com/apk/res/android"-->
    <!--xmlns:tools="http://schemas.android.com/tools"-->
    <!--android:padding="5dp"-->
    <!--android:orientation="vertical"-->
    <!--android:background=""-->
    <!--android:layout_width="match_parent"-->
    <!--android:layout_height="match_parent"-->
    <!--tools:context=".views.AddMemberActivity">-->

    <!--<ListView-->
        <!--android:id="@android:id/list"-->
        <!--android:layout_width="match_parent"-->
        <!--android:layout_height="wrap_content" />-->

<!--</LinearLayout>-->