continuar utilizador
This commit is contained in:
@@ -1,41 +1,67 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="wrap_content"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/dayOfMonth"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="1"
|
||||
android:textColor="@android:color/black"
|
||||
android:textSize="16sp" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/dayOfWeek"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="Mon"
|
||||
android:textColor="@android:color/darker_gray"
|
||||
android:textSize="12sp" />
|
||||
|
||||
<View
|
||||
android:id="@+id/topConnector"
|
||||
android:layout_width="2dp"
|
||||
android:layout_height="16dp"
|
||||
android:background="@android:color/darker_gray" />
|
||||
android:layout_width="4dp"
|
||||
android:layout_height="20dp"
|
||||
android:background="@color/border_color" />
|
||||
|
||||
<View
|
||||
android:id="@+id/node"
|
||||
android:layout_width="16dp"
|
||||
android:layout_height="16dp" />
|
||||
<FrameLayout
|
||||
android:id="@+id/nodeContainer"
|
||||
android:layout_width="80dp"
|
||||
android:layout_height="80dp">
|
||||
|
||||
<!-- Progress Ring (Outer) -->
|
||||
<ProgressBar
|
||||
android:id="@+id/nodeProgress"
|
||||
style="?android:attr/progressBarStyleHorizontal"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:max="100"
|
||||
android:progress="0"
|
||||
android:progressDrawable="@drawable/node_progress_ring" />
|
||||
|
||||
<!-- Base Circle (Inner) -->
|
||||
<View
|
||||
android:id="@+id/nodeCircle"
|
||||
android:layout_width="60dp"
|
||||
android:layout_height="60dp"
|
||||
android:layout_gravity="center"
|
||||
android:background="@drawable/node_circle_bg" />
|
||||
|
||||
<!-- Icon or Initial (Optional) -->
|
||||
<TextView
|
||||
android:id="@+id/nodeDayInitial"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center"
|
||||
android:text="S"
|
||||
android:textColor="@color/text_secondary"
|
||||
android:textSize="18sp"
|
||||
android:textStyle="bold" />
|
||||
|
||||
</FrameLayout>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/nodeDayLabel"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="4dp"
|
||||
android:text="SEG"
|
||||
android:textColor="@color/text_secondary"
|
||||
android:textSize="12sp"
|
||||
android:textStyle="bold" />
|
||||
|
||||
<View
|
||||
android:id="@+id/bottomConnector"
|
||||
android:layout_width="2dp"
|
||||
android:layout_height="16dp"
|
||||
android:background="@android:color/darker_gray" />
|
||||
android:layout_width="4dp"
|
||||
android:layout_height="20dp"
|
||||
android:background="@color/border_color" />
|
||||
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
|
||||
Reference in New Issue
Block a user