Questions tagged as 'edittext'

1
answer

Style of editText on Android with shadow similar to Google search

How can I achieve a style for editText on Android like the one in the next image? The part of the magnifying glass is a button, also the editText has a shadow very similar to the one that is using the editText of the Google searc...
asked by 12.01.2017 / 08:03
0
answers

Textwatcher between crossed edittext

I'm trying to do an IGV calculator, in Android Studio, with some additional features and I have several EditText. I need to change any of them, change the value of the others. With the Textwatcher I achieve this but Unidirectionally. That is,...
asked by 04.07.2018 / 03:13
1
answer

I want to create a converter

I have this code with which I want to make a converter, in this I have 3 EditText and what I want is to be able to enter data in celsius and that automatically converts me farenheit and kelvin, and I also want to be able to enter data in farenhe...
asked by 17.06.2018 / 06:05
0
answers

Problem with EditText inside RecyclerView

I hope I can make you understand me, I have a RecyclerView that contains several EditText but when it goes to the last element shown on the screen it does not show me anymore or 7, after eight, it can be written in the EditText but it is not sho...
asked by 12.04.2017 / 17:42
1
answer

Show "activity" with a Edittext multiline

I do not really know how to explain what I need, so I'll use an image to make me understand what I'm looking for is the following. Pressing a button shows the following appearing from bottom to top. What I have is the following in the XML...
asked by 15.01.2017 / 01:11
1
answer

OnKey does not work with mobile keys

I have this code: nuevo.setOnKeyListener(new View.OnKeyListener() { @Override public boolean onKey(View v, int keyCode, KeyEvent event) { if((event.getAction()==KeyEvent.ACTION_DOWN)&&(keyCode==KeyEvent.K...
asked by 27.12.2017 / 22:46
1
answer

Avoid leaving the same text in two EditTexts

I use two EditText ( et_miembro_id ) and ( et_fecha_id ), but what I write in et_miembro_id is what is also added in et_fecha_id . What I do not want is for the same text to appear in both, I want them to go separatel...
asked by 29.12.2016 / 23:03
2
answers

Extract data from an EditText and add them to object

I have the following code: ArrayList<Lista_entrada> llibres = new ArrayList<Lista_entrada>(); // Afegim uns llibres d'exemple. llibres.add(new Lista_entrada( "BUHO", "Búho es el nombre común d.")); llibres.add(ne...
asked by 17.10.2018 / 16:44
1
answer

How do I capture the event when an EditText is modified?

I need to capture the event of an EditText to erase the results I show on the screen.     
asked by 14.01.2018 / 03:52
1
answer

How to allow EditText with only two decimals?

I want to make the EditText accept only two decimals. If for example I put 23.89, do not let me add another decimal.     
asked by 14.01.2018 / 06:33