NavinfoOutDoor/app/src/main/res/layout/issue_problem_item.xml

19 lines
839 B
XML

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:background="?android:attr/selectableItemBackground"
android:orientation="vertical"
android:paddingTop="15dp">
<TextView
android:id="@+id/tv_issue_title"
android:layout_width="match_parent"
android:layout_height="30dp"
android:layout_marginLeft="15dp"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
android:textSize="16sp" />
</androidx.constraintlayout.widget.ConstraintLayout>