APPBase/positions/src/main/res/layout/fragment_tasks.xml
2025-04-07 13:59:41 +08:00

43 lines
1.1 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<Spinner
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1.0"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="۞"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="+Task"
android:textAllCaps="false"/>
</LinearLayout>
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recycler_view"
android:layout_width="match_parent"
android:layout_height="200dp"
android:background="@drawable/recycler_view_border"
android:padding="2dp"
android:layout_margin="2dp"
android:layout_alignParentBottom="true"/>
</LinearLayout>