Advertisement
AzisMM

activity_detail_list_doa.xml

Sep 28th, 2021
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.48 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.    xmlns:app="http://schemas.android.com/apk/res-auto"
  4.    xmlns:tools="http://schemas.android.com/tools"
  5.    android:layout_width="match_parent"
  6.    android:layout_height="match_parent"
  7.    android:background="@color/colorBlue"
  8.    tools:context=".menus.doa.DetailListDoaActivity">
  9.  
  10.     <androidx.appcompat.widget.Toolbar
  11.        android:id="@+id/toolbar_list_detail_doa"
  12.        android:layout_width="match_parent"
  13.        android:layout_height="wrap_content"
  14.        android:background="@color/colorPrimary"
  15.        app:layout_constraintEnd_toEndOf="parent"
  16.        app:layout_constraintStart_toStartOf="parent"
  17.        app:layout_constraintTop_toTopOf="parent"
  18.        app:navigationIcon="@drawable/ic_baseline_arrow_back_ios_24"
  19.        app:titleTextAppearance="@style/ToolbarAppearance"
  20.        app:titleTextColor="@color/colorWhite" />
  21.  
  22.     <androidx.recyclerview.widget.RecyclerView
  23.        android:id="@+id/rv_doa"
  24.        android:layout_width="match_parent"
  25.        android:layout_height="0dp"
  26.        android:layout_marginTop="8dp"
  27.        app:layout_constraintBottom_toBottomOf="parent"
  28.        app:layout_constraintEnd_toEndOf="parent"
  29.        app:layout_constraintStart_toStartOf="parent"
  30.        app:layout_constraintTop_toBottomOf="@id/toolbar_list_detail_doa" />
  31. </androidx.constraintlayout.widget.ConstraintLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement