|
15 | 15 | android:orientation="vertical" |
16 | 16 | android:paddingTop="@dimen/spacer_1hx"> |
17 | 17 |
|
| 18 | + <LinearLayout |
| 19 | + android:id="@+id/loadingLayout" |
| 20 | + tools:visibility="gone" |
| 21 | + android:visibility="visible" |
| 22 | + android:layout_width="match_parent" |
| 23 | + android:layout_gravity="center" |
| 24 | + android:gravity="center" |
| 25 | + android:orientation="vertical" |
| 26 | + android:layout_height="match_parent"> |
| 27 | + |
| 28 | + <com.google.android.material.progressindicator.CircularProgressIndicator |
| 29 | + android:layout_width="wrap_content" |
| 30 | + android:layout_marginTop="@dimen/spacer_1x" |
| 31 | + android:layout_height="wrap_content" |
| 32 | + android:layout_gravity="center" /> |
| 33 | + |
| 34 | + <TextView |
| 35 | + android:layout_width="match_parent" |
| 36 | + android:layout_marginTop="@dimen/spacer_1x" |
| 37 | + android:gravity="center" |
| 38 | + android:layout_height="wrap_content" |
| 39 | + android:text="@string/common_loading" |
| 40 | + android:textSize="@dimen/note_font_size_large" /> |
| 41 | + |
| 42 | + </LinearLayout> |
| 43 | + |
18 | 44 | <LinearLayout |
19 | 45 | android:id="@+id/search_container" |
| 46 | + tools:visibility="visible" |
| 47 | + android:visibility="gone" |
20 | 48 | android:layout_width="match_parent" |
21 | 49 | android:layout_height="wrap_content" |
22 | 50 | android:orientation="horizontal" |
|
81 | 109 | android:id="@+id/shared_with_you_container" |
82 | 110 | android:layout_width="match_parent" |
83 | 111 | android:layout_height="wrap_content" |
| 112 | + tools:visibility="visible" |
| 113 | + android:visibility="gone" |
84 | 114 | android:layout_marginBottom="@dimen/spacer_1x" |
85 | 115 | android:orientation="horizontal" |
86 | 116 | android:paddingLeft="@dimen/spacer_2x" |
|
138 | 168 |
|
139 | 169 | <androidx.recyclerview.widget.RecyclerView |
140 | 170 | android:id="@+id/sharesList" |
| 171 | + tools:visibility="visible" |
| 172 | + android:visibility="gone" |
141 | 173 | android:layout_width="match_parent" |
142 | 174 | android:layout_height="match_parent" |
143 | 175 | android:divider="@drawable/divider" |
|
0 commit comments