Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Search EditText disappear in RTL layout #75

Closed
mina-william opened this issue Jul 17, 2017 · 1 comment
Closed

Search EditText disappear in RTL layout #75

mina-william opened this issue Jul 17, 2017 · 1 comment

Comments

@mina-william
Copy link

mina-william commented Jul 17, 2017

Hi
Thank you for this library. In the RTL layouts if we start typing in the search EditText it will disappear.

and to fix it, In the layout_picker_dialog.xml we just need to add layout_toStartOf to the EditText:

<EditText
            android:id="@+id/editText_search"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_toLeftOf="@+id/img_clear_query"
            android:layout_toStartOf="@+id/img_clear_query"
            android:hint="@string/search_hint"
            android:imeOptions="actionSearch"
            android:singleLine="true"
            android:textColor="@android:color/primary_text_light_nodisable"/>

Thanks.

@hbb20
Copy link
Owner

hbb20 commented Jul 21, 2017

@mina-william , thank you for reporting,
Suggested solution has been implemented in v2.0.2.

@hbb20 hbb20 closed this as completed Jul 21, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants