edittext tag

27 questions


1 answers
95 views
0
Can I place the cursor at the end of the text in EditText?

When changing the value of EditText in the keyListenerThere's a cursor at the beginning of EditText, and I want to put it at the end of the text. How do I move the cursor to the end?


1 answers
153 views
0
I want to count the number of characters in EditText.

I have EditText in my project and I want to count the number of characters in EditText. And I wrote the code below to print that number in TextView. It works well. If I type in backspace, the number o...


1 answers
123 views
0
I want to use the Android Arraylist to put the data in, enter the Edittext window, and show it as a list, but I have no idea.

Add button on main screen (A) On the next screen (B) Enter Email (Edit Text)Enter name (edit text) Confirmation (Button) In this screen configuration, press the Email, Name, and OK button in the Edit ...

2 years ago

1 answers
111 views
0
Can I limit the text length of EditText on Android?

What is the best way to limit the text length of EditText on Android? Is it possible by writing XML?


1 answers
108 views
0
Can I process it separately when I enter "Enter" in EditText?

If you type Enter while typing in EditText, I want to process it like an onSubmit event in HTML.Well, I'm trying to make it work like a move or an on-Submit when I click on the Done button on the virt...


2 answers
67 views
0
[Android] When you click the button, save the value of EditText to DB and import it into ListView

button_insert.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { input_name = (EditText) findViewById(R.id.input_Name); input_phoneno = (EditText) findViewB...


1 answers
66 views
0
I want to enter the next EditText when I press the Enter key in EditText, what should I do?

We are currently creating a membership activity. But it's so cumbersome to click on each form one by oneI want to enter the next EditText when I press the Enter key in EditText, what should I do?

2 years ago
« - 3 -

© 2024 OneMinuteCode. All rights reserved.