6 changed files with 269 additions and 58 deletions
@ -1,12 +1,62 @@
@@ -1,12 +1,62 @@
|
||||
<LinearLayout |
||||
xmlns:android="http://schemas.android.com/apk/res/android" |
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
||||
android:layout_width="match_parent" |
||||
android:layout_height="match_parent"> |
||||
<TextView |
||||
android:layout_width="wrap_content" |
||||
android:layout_height="wrap_content" |
||||
android:layout_gravity="center_horizontal" |
||||
android:textSize="50sp" |
||||
android:text="list"/> |
||||
android:layout_height="match_parent" |
||||
android:orientation="vertical" |
||||
> |
||||
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
||||
android:layout_width="match_parent" |
||||
android:layout_height="50dp" |
||||
android:background="@color/gray_light_more" |
||||
> |
||||
|
||||
<Spinner |
||||
android:id="@+id/stat_list_spinner_project" |
||||
android:layout_width="0dp" |
||||
style="@style/Widget.AppCompat.Button.Borderless.Colored" |
||||
android:layout_height="match_parent" |
||||
android:layout_marginLeft="20dp" |
||||
android:layout_weight="0.3" /> |
||||
|
||||
<TextView |
||||
android:id="@+id/stat_list_start_date" |
||||
android:layout_width="0dp" |
||||
android:layout_height="match_parent" |
||||
android:layout_weight="0.3" |
||||
android:gravity="center" |
||||
android:text="2024-11-11" |
||||
android:textSize="16dp" /> |
||||
|
||||
<TextView |
||||
android:layout_width="wrap_content" |
||||
android:layout_height="wrap_content" |
||||
android:gravity="center" |
||||
android:text="~" |
||||
android:textSize="16dp" /> |
||||
|
||||
<TextView |
||||
android:id="@+id/stat_list_end_date" |
||||
android:layout_width="0dp" |
||||
android:layout_height="match_parent" |
||||
android:layout_marginRight="20dp" |
||||
android:layout_weight="0.3" |
||||
android:gravity="center" |
||||
android:text="2024-11-11" |
||||
android:textSize="16dp" /> |
||||
|
||||
</LinearLayout> |
||||
|
||||
<androidx.core.widget.NestedScrollView |
||||
android:layout_width="match_parent" |
||||
android:layout_height="match_parent" |
||||
android:background="@color/gray_light_less"> |
||||
|
||||
<LinearLayout |
||||
android:id="@+id/stat_list_check_in_list" |
||||
android:layout_width="match_parent" |
||||
android:layout_height="match_parent" |
||||
android:orientation="vertical"/> |
||||
</androidx.core.widget.NestedScrollView> |
||||
|
||||
|
||||
</LinearLayout> |
Loading…
Reference in new issue