tmap/res/layout/notice_item_list_item_layout.xml
2022-06-10 21:38:30 +09:00

6 lines
1.1 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout android:layout_width="fill_parent" android:layout_height="wrap_content"
xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto">
<TextView android:textSize="@dimen/tmap_15dp" android:textColor="@color/color_000000" android:id="@id/item_name_text" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="@dimen/tmap_16dp" android:fontFamily="@font/skt_tmap_300" app:layout_constraintLeft_toLeftOf="parent" app:layout_constraintTop_toTopOf="parent" />
<TextView android:textSize="@dimen/tmap_15dp" android:textColor="@color/color_0064ff" android:id="@id/item_message_text" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="@dimen/tmap_4dp" android:fontFamily="@font/skt_tmap_300" app:layout_constraintLeft_toLeftOf="parent" app:layout_constraintTop_toBottomOf="@id/item_name_text" />
</androidx.constraintlayout.widget.ConstraintLayout>