Give up
This commit is contained in:
parent
3f8378ae3a
commit
6e366a1b84
2 changed files with 4 additions and 1 deletions
|
@ -647,6 +647,10 @@ public class ComposeActivity extends BaseActivity implements ComposeOptionsFragm
|
|||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* A∖B={x∈A|x∉B}
|
||||
* @return all elements of set A that are not in set B.
|
||||
*/
|
||||
private static List<String> setDifference(List<String> a, List<String> b) {
|
||||
List<String> c = new ArrayList<>();
|
||||
for (String s : a) {
|
||||
|
|
|
@ -63,7 +63,6 @@
|
|||
android:hint="@string/hint_compose"
|
||||
android:inputType="text|textMultiLine|textCapSentences"
|
||||
android:dropDownWidth="wrap_content"
|
||||
android:dropDownHeight="58dp"
|
||||
android:completionThreshold="2" />
|
||||
|
||||
<HorizontalScrollView
|
||||
|
|
Loading…
Reference in a new issue