Small improvements

pull/206/head
M66B 3 years ago
parent 745cd80c33
commit e51ff622c6

@ -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);
}

@ -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"

Loading…
Cancel
Save