|
@@ -1,6 +1,7 @@
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout 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">
|
|
|
|
|
@@ -19,13 +20,48 @@
|
|
|
android:layout_marginTop="25dp"
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
|
|
+ <androidx.constraintlayout.widget.ConstraintLayout
|
|
|
+ android:id="@+id/cl_head"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:background="#fff"
|
|
|
+ android:visibility="gone"
|
|
|
+ app:layout_constraintTop_toBottomOf="@id/toolbar">
|
|
|
+
|
|
|
+ <com.swago.baseswago.cusview.BoldTextView
|
|
|
+ android:id="@+id/tvTitle"
|
|
|
+ android:textSize="14dp"
|
|
|
+ android:textColor="#000000"
|
|
|
+ android:text="@string/agency_invitation"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent"
|
|
|
+ android:layout_marginStart="15dp"
|
|
|
+ android:layout_marginTop="15dp"
|
|
|
+ android:layout_marginEnd="15dp"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"/>
|
|
|
+
|
|
|
+ <com.swago.baseswago.cusview.MediumTextView
|
|
|
+ android:id="@+id/tvContent"
|
|
|
+ android:layout_marginTop="10dp"
|
|
|
+ android:layout_marginEnd="15dp"
|
|
|
+ android:layout_marginStart="15dp"
|
|
|
+ android:textSize="12dp"
|
|
|
+ android:textColor="#aaaaaa"
|
|
|
+ tools:text="dsdsd"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/tvTitle"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"/>
|
|
|
+
|
|
|
+ </androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
+
|
|
|
<com.swago.baseswago.cusview.SwagoRecyclerView
|
|
|
android:id="@+id/swagoRv"
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="0dp"
|
|
|
- android:layout_marginTop="81dp"
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
- app:layout_constraintTop_toTopOf="parent" />
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/cl_head" />
|
|
|
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|