tra-analysis/apps/android/main/res/layout/list_item.xml
2018-12-26 12:14:05 -06:00

42 lines
1.8 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" xmlns:app="http://schemas.android.com/apk/res-auto">
<LinearLayout
android:orientation="vertical"
android:layout_width="364dp"
android:layout_height="wrap_content" android:layout_marginTop="8dp"
android:layout_marginLeft="8dp" android:layout_marginStart="8dp"
app:layout_constraintEnd_toEndOf="parent"
android:layout_marginEnd="8dp" android:layout_marginRight="8dp"
android:id="@+id/vertical">
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:text="Match 1"
android:layout_width="127dp"
android:layout_height="wrap_content" android:id="@+id/titleTV"
android:textAppearance="@style/TextAppearance.AppCompat.Large"/>
<TextView
android:text="4 of 6"
android:gravity = "right"
android:layout_width="match_parent"
android:layout_height="wrap_content" android:id="@+id/subtitle"/>
</LinearLayout>
<ProgressBar
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/progressBar" android:progress="66"/>
</LinearLayout>
</RelativeLayout>