Newer
Older
org.ntlab.acanthus_client / app / src / main / res / layout / activity_logout.xml
parsecmonkey on 31 Oct 2021 2 KB ヘルプの画面作成、遷移
<?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=".views.main_menu_ui.mypage.logout.LogoutActivity">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_margin="16dp"
        android:padding="30dp"
        android:background="@drawable/flame_edit_list"
        android:orientation="vertical"
        app:layout_constraintTop_toTopOf="parent"
        tools:layout_editor_absoluteX="0dp">

        <TextView
            android:id="@+id/text_logout"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center_horizontal"
            android:layout_marginTop="15dp"
            android:layout_marginBottom="20dp"
            android:textColor="@color/theme_color"
            android:text="ログアウトしますか?"
            android:textSize="24sp"
            android:textStyle="bold" />

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginBottom="20dp"
            android:layout_marginLeft="30dp"
            android:layout_marginRight="30dp"
            android:layout_weight="0.1"
            android:orientation="horizontal"
            android:gravity="center|center_horizontal">

            <org.ntlab.acanthus_client.views.button.PushButton
                android:id="@+id/logout_yes"
                android:layout_width="wrap_content"
                android:layout_height="35dp"
                android:layout_marginRight="35dp"
                android:layout_weight="0.1"
                android:background="@drawable/flame_edit_list"
                android:text="はい"
                android:typeface="sans"/>
            <org.ntlab.acanthus_client.views.button.PushButton
                android:id="@+id/logout_no"
                android:layout_width="wrap_content"
                android:layout_height="35dp"
                android:layout_weight="0.1"
                android:background="@drawable/flame_edit_list"
                android:text="いいえ"
                android:typeface="sans"/>

        </LinearLayout>

    </LinearLayout>

</androidx.constraintlayout.widget.ConstraintLayout>