Newer
Older
NemophilaClient / app / src / main / res / layout / activity_mypage.xml
k-suzuki on 30 May 2023 1 KB 軽くviewを触った
<?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=".MyPageActivity">

    <TextView
        android:id="@+id/name"
        android:layout_width="627dp"
        android:layout_height="83dp"
        android:text="Name"
        tools:layout_editor_absoluteX="318dp"
        tools:layout_editor_absoluteY="58dp" />

    <ImageView
        android:id="@+id/imageView"
        android:layout_width="167dp"
        android:layout_height="156dp"
        app:srcCompat="@drawable/ic_launcher_foreground"
        tools:layout_editor_absoluteX="114dp"
        tools:layout_editor_absoluteY="73dp" />

    <TextView
        android:id="@+id/id"
        android:layout_width="610dp"
        android:layout_height="83dp"
        android:text="あなたのID"
        tools:layout_editor_absoluteX="335dp"
        tools:layout_editor_absoluteY="149dp" />
</androidx.constraintlayout.widget.ConstraintLayout>