|
10 | 10 | android:id="@+id/toolbar_search" |
11 | 11 | layout="@layout/toolbar" /> |
12 | 12 |
|
| 13 | + <View |
| 14 | + android:id="@+id/view" |
| 15 | + android:layout_below="@+id/toolbar_search" |
| 16 | + android:layout_width="match_parent" |
| 17 | + android:layout_height="4dp" |
| 18 | + android:background="@drawable/pref_shadow_top" /> |
| 19 | + |
13 | 20 | <LinearLayout |
14 | 21 | android:id="@+id/symbols_activity_list_view" |
15 | 22 | android:layout_width="match_parent" |
16 | 23 | android:layout_height="match_parent" |
17 | | - android:layout_below="@+id/toolbar_search" |
| 24 | + android:layout_below="@+id/view" |
18 | 25 | android:orientation="vertical"> |
19 | 26 |
|
20 | 27 | <com.google.android.material.textfield.TextInputLayout |
21 | 28 | style="@style/TextInputLayoutTheme" |
22 | 29 | android:layout_width="match_parent" |
23 | 30 | android:layout_height="wrap_content" |
24 | | - android:layout_marginLeft="10dp" |
25 | | - android:layout_marginTop="10dp" |
26 | | - android:layout_marginEnd="10dp" |
27 | | - android:layout_marginRight="10dp" |
| 31 | + android:layout_margin="10dp" |
28 | 32 | android:hint="@string/search"> |
29 | 33 |
|
30 | 34 | <com.google.android.material.textfield.TextInputEditText |
31 | 35 | android:id="@+id/searchactivityEditText" |
32 | 36 | android:layout_width="match_parent" |
33 | | - android:layout_height="56dp" |
| 37 | + android:layout_height="wrap_content" |
34 | 38 | android:inputType="textNoSuggestions" |
| 39 | + android:textCursorDrawable="@drawable/cursor" |
35 | 40 | android:lines="1" |
36 | 41 | android:singleLine="true" /> |
37 | 42 |
|
|
0 commit comments