|
222 | 222 | android:layout_width="0dp" |
223 | 223 | android:layout_height="wrap_content" |
224 | 224 | app:layout_constraintEnd_toEndOf="parent" |
| 225 | + app:layout_constraintHorizontal_bias="1.0" |
225 | 226 | app:layout_constraintStart_toStartOf="parent" |
226 | 227 | app:layout_constraintTop_toTopOf="parent" |
227 | 228 | tools:itemCount="4" |
228 | 229 | tools:listitem="@layout/item_autocomplete_search_suggestion" /> |
229 | 230 |
|
230 | | - <com.duckduckgo.common.ui.view.text.DaxTextView |
231 | | - android:id="@+id/deviceLabel" |
232 | | - android:layout_width="0dp" |
233 | | - android:layout_height="wrap_content" |
234 | | - android:paddingHorizontal="?attr/autocompleteListItemHorizontalPadding" |
235 | | - android:paddingVertical="@dimen/keyline_2" |
236 | | - android:text="@string/systemSearchDeviceAppLabel" |
237 | | - android:visibility="gone" |
| 231 | + <View |
| 232 | + android:id="@+id/listDivider" |
| 233 | + android:layout_width="match_parent" |
| 234 | + android:layout_height="0.5dp" |
| 235 | + android:background="?attr/daxColorShade" |
| 236 | + android:layout_marginVertical="@dimen/keyline_2" |
238 | 237 | app:layout_constraintEnd_toEndOf="parent" |
239 | 238 | app:layout_constraintStart_toStartOf="parent" |
240 | | - app:layout_constraintTop_toBottomOf="@id/autocompleteSuggestions"/> |
| 239 | + app:layout_constraintTop_toBottomOf="@id/autocompleteSuggestions" |
| 240 | + app:layout_constraintBottom_toTopOf="@id/deviceAppSuggestions"/> |
241 | 241 |
|
242 | 242 | <androidx.recyclerview.widget.RecyclerView |
243 | 243 | android:id="@+id/deviceAppSuggestions" |
244 | 244 | android:layout_width="0dp" |
245 | 245 | android:layout_height="wrap_content" |
| 246 | + android:layout_marginTop="@dimen/keyline_2" |
246 | 247 | app:layout_constraintEnd_toEndOf="parent" |
247 | 248 | app:layout_constraintStart_toStartOf="parent" |
248 | | - app:layout_constraintTop_toBottomOf="@id/deviceLabel" |
| 249 | + app:layout_constraintTop_toBottomOf="@id/listDivider" |
249 | 250 | tools:itemCount="4" |
250 | 251 | tools:listitem="@layout/item_device_app_suggestion" /> |
251 | 252 |
|
|
0 commit comments