mirror of
https://github.com/gitnex-org/gitnex.git
synced 2026-05-26 22:56:59 -05:00
74 lines
2.6 KiB
XML
74 lines
2.6 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:id="@+id/commitList"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="?attr/primaryBackgroundColor">
|
|
|
|
<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">
|
|
|
|
<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" />
|
|
|
|
<LinearLayout
|
|
android:id="@+id/frameViewnDate"
|
|
android:layout_width="match_parent"
|
|
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>
|
|
|
|
<TextView
|
|
android:id="@+id/commitDateVw"
|
|
android:layout_width="0dp"
|
|
android:layout_weight=".25"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="end"
|
|
android:textColor="?attr/primaryTextColor"
|
|
android:textSize="14sp" />
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
</RelativeLayout>
|