117 questions
1 vote
0 answers
33 views
com.google.android.material.textfield.MaterialAutoCompleteTextView height issue
Here is presented a part of layout I have in project, I use databinding. <com.google.android.material.textfield.TextInputLayout android:id="@+id/til_name" android:layout_width=&...
0 votes
1 answer
27 views
Android TextInputEditText Multiline
Iam looking for a TextInputEditText to support multiline text. The TextInputLayout implemented in an alertdialog. I tried everything... How to do ? :/ Thanks a lot! example of my code: val editText = ...
0 votes
1 answer
60 views
TextInputLayout > AutompleteTextView (dropdown stlyle) styling problem
Hi I have spent 2 days trying to style an AutocompleteTextView that acts as a DropDown menu. My best result is the next: My goal: When focused, the blue outline go arround all the component. My ...
0 votes
1 answer
168 views
Android Custom TextInput Layout with Hint text and Placeholder are overlapping
I'm facing a weird issue while using a custom TextInputLayout where i have both hint text and placeholder text, in general scenario when the focus comes on the edit text then hint text float up and ...
1 vote
4 answers
808 views
Hint is overlapping with startIconDrawable in TextInputLayout
I am trying to use TextInputLayout in my Login form and have been trying to make it look like this But instead it looks like this I have already tried to fix the margin, and every thing, I have ...
0 votes
1 answer
316 views
Android TextInputLayout Autofill
I am developing an android app, I've used TextInputLayouts to take input from user, while testing it on api level 24 it doesn't cause any problem but when i tried to test it on latest phones some ...
0 votes
2 answers
409 views
set font for the hint TextInputLayout in Kotlin Android Studio
I work with Kotlin and android studio <com.google.android.material.textfield.TextInputLayout android:hint="شماره تلفن همراه" style="@style/Widget....
0 votes
1 answer
213 views
How do I change the boxBackgroundColor of TextInputLayout dropdown while selected?
So I want a transparent box background color even while my dropdown is selected, but by default it is being tented to darker color.. Check out the images below. Not selected Selected Here's my code &...
0 votes
0 answers
773 views
how to set endIconMode in a custom TextInputLayout?
I'm trying to figure out how to set the endIconMode in a custom text input layout. I am trying to set this in the attrs.xml, not programmatically (this is how I'm asked to do it at work) here's what ...
0 votes
1 answer
300 views
Get start and end icon view from TextInputLayout
I want to get the end and start icon view from TextInputLayout so I can do stuff like check if it is hovered or not. I don't know where to start (idk if this is possible), so any help will be greatly ...
0 votes
1 answer
150 views
Change only lebel EditText to uppercase when using TextInputLayout
I am using the new TextInputLayout from material design library. I only need to uppercase the Lebel(when positioned up), not the hint. This is how should looks like Here is my XML for my ...
1 vote
3 answers
621 views
TextInputLayout label overlapping AppCompatAutoCompleteTextView input
I'm having an issue where my TextInputLayout label is being overlapped by the input within an AppCompatAutoCompleteTextView. My apologies if this has been answered before. Here is my code snippet: <...
0 votes
2 answers
123 views
How to disable error check on TextInputEditText when I press "next" action?
I have 3 TextInputEditText and I want to focus on the next field by pressing the "next" key of my keyboard. The problem is that I can't go to another TextInputEditText because of the "...
0 votes
0 answers
74 views
Password toggle for multiple TextInputLayouts
I have two TextInputLayouts where the first one gets the password input and the second one gets the confirmed password input. I'm completely okay with the single-input layout toggle change. However, I ...
2 votes
1 answer
785 views
TextInputLayout - make it clickable with working ripple effect
I want that my TextInputLayout has following functions: open a dialog on click show a ripple background like e.g. the ExposedDropdownMenu style does It should look like a TextInputLayout but work ...