Answer the question
In order to leave comments, you need to log in
How to make tooltips in edittext like in the picture?
This Google Calendar example moves to the top of the Activity/Fragment when the edittext is entered
and any remaining space is filled with tooltips. How to do something like this? is there an instruction?
Answer the question
In order to leave comments, you need to log in
This is done through AutoCompleteTextView
https://habrahabr.ru/post/243853/
In order for AutoCompleteTextView to rise up
<android.support.design.widget.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
>
<AutoCompleteTextView
android:id="@+id/auto_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:enabled="false"
android:hint="Текст"
android:singleLine="true"/>
</android.support.design.widget.TextInputLayout>
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question