Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?xml version="1.0" encoding="utf-8"?>
- <androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent">
- <com.google.android.material.appbar.AppBarLayout
- android:id="@+id/appBarLayout"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintTop_toTopOf="parent">
- <androidx.appcompat.widget.Toolbar
- android:id="@+id/task_info_toolbar"
- android:layout_width="match_parent"
- android:layout_height="?attr/actionBarSize"
- android:background="@color/colorPrimary" />
- </com.google.android.material.appbar.AppBarLayout>
- <LinearLayout
- android:orientation="vertical"
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
- <com.google.android.material.card.MaterialCardView
- android:id="@+id/materialCardView"
- android:layout_width="match_parent"
- android:layout_height="50dp"
- android:visibility="visible"
- android:layout_marginStart="8dp"
- android:layout_marginTop="60dp"
- android:layout_marginEnd="8dp"
- app:cardBackgroundColor="@color/colorWhite"
- app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintTop_toBottomOf="@+id/appBarLayout">
- <androidx.constraintlayout.widget.ConstraintLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent">
- <androidx.constraintlayout.widget.Guideline
- android:id="@+id/guideline5"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:orientation="vertical"
- app:layout_constraintGuide_begin="212dp" />
- <ImageView
- android:id="@+id/imageView5"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginStart="8dp"
- app:layout_constraintBottom_toBottomOf="parent"
- app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintTop_toTopOf="parent"
- app:srcCompat="@drawable/ic_objects" />
- <TextView
- android:id="@+id/textView2"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginStart="8dp"
- android:text="Москва, ул. Котельная 18, второй этаж "
- android:textColor="@color/colorEnterButton"
- app:layout_constraintBottom_toBottomOf="@+id/imageView5"
- app:layout_constraintStart_toEndOf="@+id/imageView5"
- app:layout_constraintTop_toTopOf="@+id/imageView5" />
- <ImageButton
- android:id="@+id/imageButton"
- android:layout_width="24dp"
- android:layout_height="24dp"
- android:layout_marginTop="8dp"
- android:layout_marginEnd="8dp"
- android:layout_marginBottom="7dp"
- android:backgroundTint="@color/colorWhite"
- app:layout_constraintBottom_toBottomOf="parent"
- app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintTop_toTopOf="parent"
- app:srcCompat="@drawable/ic_arrow_forward" />
- </androidx.constraintlayout.widget.ConstraintLayout>
- </com.google.android.material.card.MaterialCardView>
- <androidx.recyclerview.widget.RecyclerView
- android:id="@+id/recycler_view_photos"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
- app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintTop_toBottomOf="@+id/materialCardView"
- app:layout_constraintVertical_bias="0.06999999"
- tools:listitem="@layout/item_add_photo"
- tools:orientation="horizontal" />
- </LinearLayout>
- <androidx.coordinatorlayout.widget.CoordinatorLayout
- app:layout_constraintBottom_toBottomOf="parent"
- app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintHorizontal_bias="1.0"
- app:layout_constraintStart_toStartOf="parent"
- android:layout_marginTop="?attr/actionBarSize"
- app:layout_constraintTop_toBottomOf="@+id/recycler_view_photos"
- android:layout_width="match_parent"
- android:layout_height="match_parent">
- <androidx.recyclerview.widget.RecyclerView
- android:id="@+id/task_recycler"
- app:layout_behavior="@string/bottom_sheet_behavior"
- app:behavior_peekHeight="350dp"
- app:behavior_hideable="false"
- android:background="@color/colorWhite"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- tools:listitem="@layout/item_task" />
- </androidx.coordinatorlayout.widget.CoordinatorLayout>
- </androidx.coordinatorlayout.widget.CoordinatorLayout>
Add Comment
Please, Sign In to add comment