This commit is contained in:
Vavassor 2017-07-20 22:29:29 -04:00
parent 3f8378ae3a
commit 6e366a1b84
2 changed files with 4 additions and 1 deletions

View file

@ -647,6 +647,10 @@ public class ComposeActivity extends BaseActivity implements ComposeOptionsFragm
}
}
/**
* AB={xA|xB}
* @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) {

View file

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