I'm trying to build a boxdialog for a listview. I'm having a hard time finding an example to build on and develop my solution.
Does anyone know of any material to tell me? Here is a photo of the expected dialog (above the "i")
I'm trying to build a boxdialog for a listview. I'm having a hard time finding an example to build on and develop my solution.
Does anyone know of any material to tell me? Here is a photo of the expected dialog (above the "i")
Caio Sanchez Christino , I had the same doubt that you follow my solution:
Use the setError()
method to assign this dialog, I do not know how you want (click or automatic), the implementation may be the same.
Example of how to implement:
EditText agendado = (EditText)findViewById(R.id.agendado);
if(resgate.isAgendado())
{
agendado.setError("Agendado");
}
This will generate a popup:
Youcantakealookat Documentation for more information.