IconEditText icon indicating copy to clipboard operation
IconEditText copied to clipboard

Reusable view for displaying an ImageView with an EditText for Android 4.0 +

Results 2 IconEditText issues
Sort by recently updated
recently updated
newest added

"isPassword = true" seems doesn't work I change code to ``` java _editText.setInputType( _isPassword ? (InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_PASSWORD) : InputType.TYPE_TEXT_FLAG_AUTO_CORRECT ); ``` And it work now.

Does your lib works just like a CompoundDrawable you can use in any TextView? You could just declare property (in your EditText) android:drawableLeft="@drawable/ico_mail" Does your lib replicates this standard android...