2

I'm trying to use ClearableEditText as stated in the Droidparts official doc :

<org.droidparts.widget.ClearableEditText
     android:drawableRight="@android:drawable/ic_action_remove"
     android:drawablePadding="12dp" />

But the component is not found, I get this error at runtime :

java.lang.ClassNotFoundException: Didn't find class "org.droidparts.ClearableEditText"

I'm importing the dependency like this :

compile 'org.droidparts:droidparts:3.2.5'

I looked at the content of the JAR and I don't find the "widget" folder. enter image description here

Is the component not available anymore or am I doing something wrong ?

Louis
  • 1,913
  • 2
  • 28
  • 41

1 Answers1

4

Got it, ClearableEditText belongs to :

'org.droidparts:droidparts-misc:3.2.5'

insead of

'org.droidparts:droidparts:3.2.5'

Louis
  • 1,913
  • 2
  • 28
  • 41
  • By looking at the url : (https://github.com/droidparts/droidparts/blob/master/droidparts-misc/src/org/droidparts/widget/ClearableEditText.java) – Louis Apr 16 '18 at 13:01