2019-06-03 23:25:05 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-06-01 17:53:56 +02:00
|
|
|
<RelativeLayout
|
2019-10-01 12:05:26 +02:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-06-01 18:43:58 +02:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2019-06-03 23:25:05 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2019-10-01 12:05:26 +02:00
|
|
|
android:id="@+id/milestoneFrame"
|
2020-03-04 20:37:28 +01:00
|
|
|
android:background="?attr/primaryBackgroundColor"
|
2021-04-13 16:19:42 +02:00
|
|
|
android:padding="16dp"
|
2019-10-01 12:05:26 +02:00
|
|
|
android:orientation="vertical">
|
2019-06-03 23:25:05 +02:00
|
|
|
|
2019-09-12 07:29:41 +02:00
|
|
|
<LinearLayout
|
2020-06-01 17:53:56 +02:00
|
|
|
android:id="@+id/mainFrame"
|
2019-06-03 23:25:05 +02:00
|
|
|
android:layout_width="match_parent"
|
2019-10-01 12:05:26 +02:00
|
|
|
android:layout_height="wrap_content"
|
2020-06-01 17:53:56 +02:00
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:orientation="vertical">
|
2019-06-03 23:25:05 +02:00
|
|
|
|
2020-06-01 17:53:56 +02:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/frameTitle"
|
|
|
|
android:layout_width="match_parent"
|
2019-10-01 12:05:26 +02:00
|
|
|
android:layout_height="wrap_content"
|
2020-06-01 18:43:58 +02:00
|
|
|
android:gravity="center_vertical"
|
2020-06-01 17:53:56 +02:00
|
|
|
android:orientation="horizontal">
|
2019-06-03 23:25:05 +02:00
|
|
|
|
2020-06-01 17:53:56 +02:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/milestoneTitle"
|
2020-06-01 18:43:58 +02:00
|
|
|
android:layout_width="wrap_content"
|
2020-06-01 17:53:56 +02:00
|
|
|
android:layout_height="wrap_content"
|
2020-06-01 18:43:58 +02:00
|
|
|
android:layout_weight="0"
|
2020-06-01 17:53:56 +02:00
|
|
|
android:textColor="?attr/primaryTextColor"
|
2020-06-01 18:43:58 +02:00
|
|
|
android:textIsSelectable="true"
|
2021-04-13 16:19:42 +02:00
|
|
|
android:textSize="16sp" />
|
2019-06-03 23:25:05 +02:00
|
|
|
|
2020-06-01 18:43:58 +02:00
|
|
|
<ProgressBar
|
|
|
|
android:id="@+id/milestoneProgress"
|
|
|
|
style="@style/Widget.AppCompat.ProgressBar.Horizontal"
|
2020-06-01 17:53:56 +02:00
|
|
|
android:layout_width="0dp"
|
2020-06-01 18:43:58 +02:00
|
|
|
android:layout_height="10dp"
|
2020-07-10 22:54:09 +02:00
|
|
|
android:layout_marginStart="15dp"
|
|
|
|
android:layout_marginEnd="10dp"
|
2020-06-01 18:43:58 +02:00
|
|
|
android:layout_weight="1"
|
|
|
|
android:indeterminate="false"
|
|
|
|
android:progress="50"
|
|
|
|
android:progressDrawable="@drawable/progress_bar"
|
|
|
|
android:progressTint="@color/btnBackground" />
|
2019-10-01 12:05:26 +02:00
|
|
|
|
2020-06-01 17:53:56 +02:00
|
|
|
</LinearLayout>
|
2019-06-03 23:25:05 +02:00
|
|
|
|
2020-06-01 17:53:56 +02:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
2019-10-01 12:05:26 +02:00
|
|
|
android:layout_height="wrap_content"
|
2020-06-01 17:53:56 +02:00
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
android:orientation="horizontal">
|
2019-06-03 23:25:05 +02:00
|
|
|
|
2020-06-01 18:43:58 +02:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
2020-07-10 22:54:09 +02:00
|
|
|
android:layout_marginEnd="15dp"
|
2020-06-01 18:43:58 +02:00
|
|
|
android:gravity="center_vertical"
|
2021-04-13 16:19:42 +02:00
|
|
|
android:orientation="horizontal"
|
|
|
|
tools:ignore="UseCompoundDrawables">
|
2019-06-03 23:25:05 +02:00
|
|
|
|
2020-06-01 18:43:58 +02:00
|
|
|
<ImageView
|
2020-07-19 12:05:08 +02:00
|
|
|
android:layout_width="18dp"
|
2020-06-01 18:43:58 +02:00
|
|
|
android:layout_height="wrap_content"
|
2020-07-10 22:54:09 +02:00
|
|
|
android:layout_marginEnd="5dp"
|
2020-06-01 18:43:58 +02:00
|
|
|
android:contentDescription="@string/generalImgContentText"
|
|
|
|
app:srcCompat="@drawable/ic_calendar" />
|
2020-04-08 20:31:27 +02:00
|
|
|
|
2020-06-01 18:43:58 +02:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/milestoneDueDate"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/dueDate"
|
|
|
|
android:textColor="?attr/primaryTextColor"
|
|
|
|
android:textSize="14sp" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
2020-07-10 22:54:09 +02:00
|
|
|
android:layout_marginEnd="15dp"
|
2020-06-01 18:43:58 +02:00
|
|
|
android:gravity="center_vertical"
|
2021-04-13 16:19:42 +02:00
|
|
|
android:orientation="horizontal"
|
|
|
|
tools:ignore="UseCompoundDrawables">
|
2020-06-01 18:43:58 +02:00
|
|
|
|
|
|
|
<ImageView
|
2020-07-19 12:05:08 +02:00
|
|
|
android:layout_width="18dp"
|
2020-06-01 18:43:58 +02:00
|
|
|
android:layout_height="wrap_content"
|
2020-07-10 22:54:09 +02:00
|
|
|
android:layout_marginEnd="5dp"
|
2020-06-01 18:43:58 +02:00
|
|
|
android:contentDescription="@string/generalImgContentText"
|
2020-07-10 22:54:09 +02:00
|
|
|
app:srcCompat="@drawable/ic_issue" />
|
2020-06-01 18:43:58 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/milestoneIssuesOpen"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/repoStars"
|
|
|
|
android:textColor="?attr/primaryTextColor"
|
|
|
|
android:textSize="14sp" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:gravity="center_vertical"
|
2021-04-13 16:19:42 +02:00
|
|
|
android:orientation="horizontal"
|
|
|
|
tools:ignore="UseCompoundDrawables">
|
2020-06-01 18:43:58 +02:00
|
|
|
|
|
|
|
<ImageView
|
2020-07-19 12:05:08 +02:00
|
|
|
android:layout_width="18dp"
|
2020-06-01 18:43:58 +02:00
|
|
|
android:layout_height="wrap_content"
|
2020-07-10 22:54:09 +02:00
|
|
|
android:layout_marginEnd="5dp"
|
2020-06-01 18:43:58 +02:00
|
|
|
android:contentDescription="@string/generalImgContentText"
|
|
|
|
app:srcCompat="@drawable/ic_issue_closed" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/milestoneIssuesClosed"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/repoWatchers"
|
|
|
|
android:textColor="?attr/primaryTextColor"
|
|
|
|
android:textSize="14sp" />
|
|
|
|
</LinearLayout>
|
2020-04-08 20:31:27 +02:00
|
|
|
|
2020-06-01 17:53:56 +02:00
|
|
|
</LinearLayout>
|
2020-04-08 20:31:27 +02:00
|
|
|
|
2020-06-01 17:53:56 +02:00
|
|
|
<LinearLayout
|
2020-06-01 18:43:58 +02:00
|
|
|
android:id="@+id/milestoneDateMenuFrame"
|
2020-06-01 17:53:56 +02:00
|
|
|
android:layout_width="match_parent"
|
2020-04-08 20:31:27 +02:00
|
|
|
android:layout_height="wrap_content"
|
2020-06-01 18:43:58 +02:00
|
|
|
android:layout_marginTop="5dp"
|
2020-06-01 17:53:56 +02:00
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
<RelativeLayout
|
2020-06-01 18:43:58 +02:00
|
|
|
android:id="@+id/dueDateFrame"
|
2020-06-01 17:53:56 +02:00
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
2020-06-01 18:43:58 +02:00
|
|
|
android:layout_marginTop="3dp"
|
|
|
|
android:layout_weight=".90"
|
|
|
|
android:orientation="horizontal">
|
2020-06-01 17:53:56 +02:00
|
|
|
|
|
|
|
<TextView
|
2020-06-01 18:43:58 +02:00
|
|
|
android:id="@+id/milestoneDescription"
|
|
|
|
android:layout_width="match_parent"
|
2020-06-01 17:53:56 +02:00
|
|
|
android:layout_height="wrap_content"
|
2020-06-01 18:43:58 +02:00
|
|
|
android:text="@string/repoDescription"
|
2020-06-01 17:53:56 +02:00
|
|
|
android:textColor="?attr/primaryTextColor"
|
2020-06-01 18:43:58 +02:00
|
|
|
android:textIsSelectable="true"
|
|
|
|
android:textSize="14sp"
|
|
|
|
android:visibility="visible" />
|
2020-06-01 17:53:56 +02:00
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/milestonesMenu"
|
2021-05-01 00:01:22 +02:00
|
|
|
android:layout_width="wrap_content"
|
2020-06-01 17:53:56 +02:00
|
|
|
android:layout_height="wrap_content"
|
2020-06-01 18:43:58 +02:00
|
|
|
android:layout_gravity="end|bottom"
|
|
|
|
android:contentDescription="@string/menuContentDesc"
|
2021-05-01 00:01:22 +02:00
|
|
|
android:background="?android:attr/selectableItemBackgroundBorderless"
|
2020-06-01 17:53:56 +02:00
|
|
|
android:scaleType="fitEnd"
|
2020-06-01 18:43:58 +02:00
|
|
|
android:src="@drawable/ic_dotted_menu_horizontal" />
|
2020-06-01 17:53:56 +02:00
|
|
|
|
|
|
|
</LinearLayout>
|
2019-06-03 23:25:05 +02:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
2020-06-01 17:53:56 +02:00
|
|
|
</RelativeLayout>
|