Small improvements

This commit is contained in:
M66B 2021-09-25 13:02:56 +02:00
parent 745cd80c33
commit e51ff622c6
2 changed files with 3 additions and 3 deletions

View File

@ -924,8 +924,8 @@ public class BoundaryCallbackMessages extends PagedList.BoundaryCallback<TupleMe
if (with_size != null)
flags.add(context.getString(R.string.title_search_flag_size,
Helper.humanReadableByteCount(with_size)));
return (query == null ? "" : query)
+ (flags.size() > 0 ? " +" : "")
return (query == null ? "" : query + " ")
+ (flags.size() > 0 ? "+" : "")
+ TextUtils.join(",", flags);
}

View File

@ -23,7 +23,7 @@
android:layout_height="wrap_content"
android:layout_marginTop="24dp"
android:imeOptions="actionDone"
android:inputType="textPersonName|textCapWords"
android:inputType="textCapSentences"
android:text="Name"
android:textAppearance="@style/TextAppearance.AppCompat.Medium"
app:layout_constraintEnd_toEndOf="parent"