use of forpdateam.ru.forpda.api.others.user.ForumUser in project ForPDA by RadiationX.
the class QmsBlackListFragment method onShowSearchRes.
private void onShowSearchRes(List<ForumUser> res) {
List<String> nicks = new ArrayList<>();
for (ForumUser user : res) {
nicks.add(user.getNick());
}
nickField.setAdapter(new ArrayAdapter<>(getContext(), android.R.layout.simple_dropdown_item_1line, nicks));
}
use of forpdateam.ru.forpda.api.others.user.ForumUser in project ForPDA by RadiationX.
the class ChatThemeCreator method onShowSearchRes.
private void onShowSearchRes(List<ForumUser> res) {
List<String> nicks = new ArrayList<>();
for (ForumUser user : res) {
nicks.add(user.getNick());
}
nickField.setAdapter(new ArrayAdapter<>(fragment.getContext(), android.R.layout.simple_dropdown_item_1line, nicks));
}
Aggregations