Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <LinearLayout 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"
- android:divider="@drawable/separator"
- android:orientation="vertical"
- android:showDividers="middle">
- <androidx.appcompat.widget.Toolbar
- android:id="@+id/toolbar"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="@color/design_default_color_background"
- android:fitsSystemWindows="true"
- android:minHeight="?attr/actionBarSize"
- app:theme="@style/ToolbarColoredBackArrow">
- <androidx.constraintlayout.widget.ConstraintLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent">
- <ImageView
- android:id="@+id/imageView_back"
- android:layout_width="48dp"
- android:layout_height="48dp"
- android:padding="12dp"
- app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintTop_toTopOf="parent"
- app:srcCompat="@drawable/back" />
- <TextView
- android:id="@+id/toolbar_title"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center"
- android:layout_marginStart="8dp"
- android:layout_marginLeft="8dp"
- android:layout_marginEnd="8dp"
- android:layout_marginRight="8dp"
- android:textColor="@color/colorTextBlack"
- android:textSize="18sp"
- app:layout_constraintBottom_toBottomOf="parent"
- app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintTop_toTopOf="parent" />
- <ImageView
- android:id="@+id/imageView_setting"
- android:layout_width="48dp"
- android:layout_height="48dp"
- android:layout_marginEnd="8dp"
- android:layout_marginRight="8dp"
- android:padding="8dp"
- app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintTop_toTopOf="parent"
- app:srcCompat="@drawable/setting" />
- </androidx.constraintlayout.widget.ConstraintLayout>
- </androidx.appcompat.widget.Toolbar>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_marginBottom="10dp"
- android:background="@color/design_default_color_background"
- android:orientation="vertical">
- <com.app.peshkariki.CustomSwipeRefreshLayout
- android:id="@+id/swipeRefreshLayout"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:visibility="visible">
- <LinearLayout
- android:id="@+id/root_ll"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical"
- android:visibility="visible">
- <androidx.core.widget.NestedScrollView
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:fillViewport="true">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical">
- <androidx.constraintlayout.widget.ConstraintLayout
- android:id="@+id/ll_changestatus"
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
- <androidx.appcompat.widget.AppCompatButton
- android:id="@+id/button_edit"
- android:layout_width="0dp"
- android:layout_height="36dp"
- android:layout_marginStart="16dp"
- android:layout_marginLeft="16dp"
- android:layout_marginTop="8dp"
- android:layout_marginEnd="8dp"
- android:layout_marginRight="8dp"
- android:layout_weight="0.5"
- android:background="@drawable/button_outline_red"
- android:text="Редактировать"
- android:textColor="@color/colorRed2"
- app:layout_constraintBottom_toTopOf="@+id/textView_head_order"
- app:layout_constraintEnd_toStartOf="@+id/space"
- app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintTop_toTopOf="parent" />
- <androidx.appcompat.widget.AppCompatButton
- android:id="@+id/button_rate_courier"
- android:layout_width="0dp"
- android:layout_height="36dp"
- android:layout_marginStart="16dp"
- android:layout_marginLeft="16dp"
- android:layout_marginTop="8dp"
- android:layout_marginEnd="8dp"
- android:layout_marginRight="8dp"
- android:layout_weight="0.5"
- android:background="@drawable/button_outline_red"
- android:text="Поставить оценку"
- android:textColor="@color/colorRed2"
- app:layout_constraintBottom_toTopOf="@+id/textView_head_order"
- app:layout_constraintEnd_toStartOf="@+id/space"
- app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintTop_toTopOf="parent"
- android:visibility="gone"/>
- <Space
- android:id="@+id/space"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginTop="8dp"
- app:layout_constraintBottom_toTopOf="@+id/textView_head_order"
- app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintTop_toTopOf="parent" />
- <androidx.appcompat.widget.AppCompatButton
- android:id="@+id/button_info"
- android:layout_width="0dp"
- android:layout_height="36dp"
- android:layout_marginStart="8dp"
- android:layout_marginLeft="8dp"
- android:layout_marginTop="8dp"
- android:layout_marginEnd="16dp"
- android:layout_marginRight="16dp"
- android:layout_weight="0.5"
- android:background="@drawable/button_outline_red"
- android:text="Маршрут"
- android:textColor="@color/colorRed2"
- app:layout_constraintBottom_toTopOf="@+id/textView_head_order"
- app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintStart_toEndOf="@+id/space"
- app:layout_constraintTop_toTopOf="parent" />
- <TextView
- android:id="@+id/textView_head_order"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginStart="8dp"
- android:layout_marginLeft="8dp"
- android:layout_marginEnd="8dp"
- android:layout_marginRight="8dp"
- app:layout_constraintBottom_toBottomOf="parent"
- app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintStart_toStartOf="parent"
- tools:visibility="visible" />
- </androidx.constraintlayout.widget.ConstraintLayout>
- <androidx.cardview.widget.CardView
- android:id="@+id/order_courier"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_margin="5dp"
- android:padding="10dp"
- app:cardBackgroundColor="@color/orderColor"
- app:cardCornerRadius="14dp"
- app:cardElevation="3dp">
- <androidx.constraintlayout.widget.ConstraintLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginLeft="12dp"
- android:layout_marginTop="8dp"
- android:layout_marginRight="12dp"
- android:layout_marginBottom="8dp"
- android:orientation="vertical">
- <TextView
- android:id="@+id/textView_name"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:lineSpacingExtra="4dp"
- android:textColor="@color/colorTextBlack"
- app:layout_constraintLeft_toLeftOf="parent"
- app:layout_constraintRight_toLeftOf="@id/textView_rating"
- app:layout_constraintTop_toTopOf="parent"
- tools:text="fdsfsd fsdfdsf sdfdsfsdf fdsfsd" />
- <TextView
- android:id="@+id/textView_phone"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:lineSpacingExtra="4dp"
- android:textColor="@color/colorTextBlack"
- app:layout_constraintLeft_toLeftOf="parent"
- app:layout_constraintRight_toRightOf="parent"
- app:layout_constraintTop_toBottomOf="@id/textView_name"
- tools:text="fdsfsd fsdfdsf sdfdsfsdf fdsfsd2" />
- <TextView
- android:id="@+id/textView_rate"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:lineSpacingExtra="4dp"
- android:textColor="@color/colorTextBlack"
- app:layout_constraintBottom_toBottomOf="parent"
- app:layout_constraintLeft_toLeftOf="parent"
- app:layout_constraintRight_toRightOf="parent"
- app:layout_constraintTop_toBottomOf="@id/textView_phone"
- tools:text="рейтинг кура" />
- <TextView
- android:id="@+id/textView_rating"
- android:layout_width="40dp"
- android:layout_height="wrap_content"
- android:gravity="center"
- android:lineSpacingExtra="4dp"
- android:textColor="@color/colorTextBlack"
- app:layout_constraintRight_toRightOf="parent"
- app:layout_constraintTop_toBottomOf="@id/textView_rating"
- app:layout_constraintTop_toTopOf="parent"
- tools:text="100" />
- </androidx.constraintlayout.widget.ConstraintLayout>
- </androidx.cardview.widget.CardView>
- <androidx.recyclerview.widget.RecyclerView
- android:id="@+id/recyclerView_order"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:overScrollMode="never" />
- <androidx.cardview.widget.CardView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_margin="5dp"
- android:padding="10dp"
- app:cardBackgroundColor="@color/orderColor"
- app:cardCornerRadius="14dp"
- app:cardElevation="3dp">
- <TextView
- android:id="@+id/textView_gruz"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="12dp"
- android:layout_marginTop="8dp"
- android:layout_marginRight="12dp"
- android:layout_marginBottom="8dp"
- android:lineSpacingExtra="4dp"
- android:textColor="@color/colorTextBlack" />
- </androidx.cardview.widget.CardView>
- <androidx.recyclerview.widget.RecyclerView
- android:id="@+id/recyclerView_photos"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginBottom="10dp"
- android:clipToPadding="false"
- android:divider="@null"
- android:dividerHeight="0dp"
- android:scrollbars="horizontal"
- tools:visibility="visible" />
- </LinearLayout>
- </androidx.core.widget.NestedScrollView>
- </LinearLayout>
- </com.app.peshkariki.CustomSwipeRefreshLayout>
- </LinearLayout>
- </LinearLayout>
Add Comment
Please, Sign In to add comment