2020-03-25 15:43:40 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<RelativeLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2020-03-27 19:59:24 +01:00
|
|
|
android:id="@+id/commitList"
|
2020-03-25 15:43:40 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2020-03-27 19:59:24 +01:00
|
|
|
android:background="?attr/primaryBackgroundColor">
|
2020-03-25 15:43:40 +01:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/linearLayoutFrame"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:fitsSystemWindows="true"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_margin="15dp"
|
|
|
|
tools:ignore="UselessParent">
|
|
|
|
|
2020-03-27 19:59:24 +01:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/commitTitleVw"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/commitTitle"
|
|
|
|
android:textColor="?attr/primaryTextColor"
|
|
|
|
android:textSize="18sp" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/commitCommitterVw"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
android:textColor="?attr/primaryTextColor"
|
|
|
|
android:textSize="14sp" />
|
|
|
|
|
2020-03-25 15:43:40 +01:00
|
|
|
<LinearLayout
|
2020-03-27 19:59:24 +01:00
|
|
|
android:id="@+id/frameViewnDate"
|
2020-03-25 15:43:40 +01:00
|
|
|
android:layout_width="match_parent"
|
2020-03-27 19:59:24 +01:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/frameViewInBrowser"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_weight=".25"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/commitHtmlUrlVw"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="20dp"
|
|
|
|
android:text="@string/viewInBrowser"
|
|
|
|
android:textColorLink="@color/lightBlue"
|
|
|
|
android:textSize="14sp" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
2020-03-25 15:43:40 +01:00
|
|
|
|
|
|
|
<TextView
|
2020-03-27 19:59:24 +01:00
|
|
|
android:id="@+id/commitDateVw"
|
2020-03-25 15:43:40 +01:00
|
|
|
android:layout_width="0dp"
|
2020-03-27 19:59:24 +01:00
|
|
|
android:layout_weight=".25"
|
2020-03-25 15:43:40 +01:00
|
|
|
android:layout_height="wrap_content"
|
2020-03-27 19:59:24 +01:00
|
|
|
android:gravity="end"
|
2020-03-25 15:43:40 +01:00
|
|
|
android:textColor="?attr/primaryTextColor"
|
2020-03-27 19:59:24 +01:00
|
|
|
android:textSize="14sp" />
|
2020-03-25 15:43:40 +01:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
2020-03-28 13:44:45 +01:00
|
|
|
<View
|
|
|
|
android:layout_below="@id/linearLayoutFrame"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="1dp"
|
|
|
|
android:id="@+id/divider"
|
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
android:background="?attr/dividerColor" />
|
|
|
|
|
2020-03-25 15:43:40 +01:00
|
|
|
</RelativeLayout>
|