-Fixed cursor position to point to end after search text insert.

-Reduced and slightly changed offset of search text insert image.
This commit is contained in:
John Zhen Mo 2017-11-14 15:58:13 -08:00
parent 5e16969d61
commit 69374e25fe
2 changed files with 4 additions and 3 deletions

View File

@ -449,6 +449,7 @@ public class SearchFragment extends BaseListFragment<SearchResult, ListExtractor
@Override
public void onSuggestionItemInserted(SuggestionItem item) {
searchEditText.setText(item.query);
searchEditText.setSelection(searchEditText.getText().length());
}
@Override

View File

@ -57,11 +57,11 @@
android:paddingLeft="16dp"
android:paddingRight="16dp"
android:paddingBottom="8dp"
android:paddingTop="8dp">
android:paddingTop="10dp">
<ImageView
android:layout_width="24dp"
android:layout_height="24dp"
android:layout_width="20dp"
android:layout_height="20dp"
android:layout_gravity="center"
android:src="?attr/search_add"
tools:ignore="ContentDescription,RtlHardcoded"/>