Campus-Capture/campus-capture

View on GitHub
app/src/main/res/layout/fragment_score_item.xml

Summary

Maintainability
Test Coverage
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginStart="10dp"
    android:layout_marginTop="0.5dp"
    android:layout_marginEnd="10dp"
    android:layout_marginBottom="0.5dp"
    android:theme="@style/Theme.CampusCapture"
    android:orientation="horizontal">

    <TextView
        android:id="@+id/item_number"
        android:layout_width="40dp"
        android:layout_height="wrap_content"
        android:layout_margin="@dimen/text_margin"
        android:textAlignment="center"
        android:textAppearance="?attr/textAppearanceListItem" />

    <View
        android:id="@+id/myRectangleView"
        android:layout_width="1dp"
        android:layout_height="54dp"
        android:background="@drawable/rectangle_white" />

    <TextView
        android:id="@+id/content"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_margin="@dimen/text_margin"
        android:textAppearance="?attr/textAppearanceListItem" />

</LinearLayout>