Skip to content
Snippets Groups Projects
Commit 1d68ea50 authored by Alexandre Lision's avatar Alexandre Lision
Browse files

dnd: workaround for sdk bug

parent e2839d5d
No related branches found
No related tags found
No related merge requests found
......@@ -38,6 +38,6 @@ as that of the covered work.
<resources>
<dimen name="bubble_size">150dp</dimen>
<dimen name="bubble_size">100dp</dimen>
</resources>
\ No newline at end of file
......@@ -45,6 +45,18 @@ public class ClearableEditText extends RelativeLayout {
edit_text.setImeOptions(EditorInfo.IME_ACTION_DONE);
btn_clear = (Button) findViewById(R.id.clearable_button_clear);
btn_clear.setVisibility(RelativeLayout.INVISIBLE);
// Dummy listener to fix an sdk issue: https://code.google.com/p/android/issues/detail?id=21775
edit_text.setOnDragListener(new OnDragListener() {
@Override
public boolean onDrag(View v, DragEvent event) {
if (event.getAction() == DragEvent.ACTION_DROP)
return true;
else
return false;
}
});
clearText();
showHideClearButton();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment