|
70 | 70 | <androidx.recyclerview.widget.RecyclerView |
71 | 71 | android:id="@+id/members_recycler_view" |
72 | 72 | android:layout_width="match_parent" |
73 | | - android:layout_height="0dp" |
| 73 | + android:layout_height="wrap_content" |
74 | 74 | android:layout_weight="1" |
75 | 75 | android:scrollbars="vertical" |
76 | 76 | android:visibility="visible" |
77 | 77 | tools:visibility="visible"/> |
78 | 78 |
|
| 79 | + <androidx.constraintlayout.widget.ConstraintLayout |
| 80 | + android:layout_width="match_parent" |
| 81 | + android:layout_height="match_parent" |
| 82 | + android:background="@color/actionbar_start_color"> |
| 83 | + |
| 84 | + <TextView |
| 85 | + android:id="@+id/public_links_title" |
| 86 | + android:layout_width="wrap_content" |
| 87 | + android:layout_height="50dp" |
| 88 | + android:layout_centerVertical="true" |
| 89 | + android:gravity="center" |
| 90 | + android:text="@string/share_via_link_section_title" |
| 91 | + android:layout_marginStart="@dimen/standard_half_margin" |
| 92 | + android:textAllCaps="true" |
| 93 | + android:textColor="@color/white" |
| 94 | + android:textStyle="bold" |
| 95 | + android:accessibilityHeading="true" |
| 96 | + app:layout_constraintStart_toStartOf="parent" |
| 97 | + app:layout_constraintTop_toTopOf="parent"/> |
| 98 | + |
| 99 | + </androidx.constraintlayout.widget.ConstraintLayout> |
| 100 | + |
| 101 | + <androidx.recyclerview.widget.RecyclerView |
| 102 | + android:id="@+id/public_links_recycler_view" |
| 103 | + android:layout_width="match_parent" |
| 104 | + android:layout_height="wrap_content" |
| 105 | + android:layout_weight="1" |
| 106 | + android:scrollbars="vertical" |
| 107 | + android:visibility="visible"/> |
| 108 | + |
| 109 | + <include |
| 110 | + android:id="@+id/empty_data_parent" |
| 111 | + layout="@layout/item_empty_dataset" |
| 112 | + android:visibility="gone"/> |
| 113 | + |
79 | 114 | </LinearLayout> |
80 | 115 |
|
81 | 116 | </ScrollView> |
0 commit comments