Explicitly clear link focus

This commit is contained in:
M66B 2020-04-30 11:08:48 +02:00
parent 11a5bea975
commit c5e36dd1cb
1 changed files with 7 additions and 0 deletions

View File

@ -5468,6 +5468,13 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
uriTitle.getHost().equalsIgnoreCase(uri.getHost())
? View.GONE : View.VISIBLE);
new Handler().post(new Runnable() {
@Override
public void run() {
etLink.clearFocus();
}
});
final Context context = getContext();
return new AlertDialog.Builder(context)