Questions tagged [editview]

33 questions
0
votes
2 answers

How to know when a user is done typing?

In Android Studio, I want to make a program where a TextView changes to an EditView when clicked. After the user is finished typing, I want the EditText to then change back to a TextView which shows the value that was entered. How do I do this? This…
0
votes
1 answer

Tabify Your SharePoint Forms: list to tabs (need to add more to jquery script)

I am using a very helpful script provided by Mark Rackley found here: https://www.youtube.com/watch?v=GSmuailCvKI (I made some minor adjustments but the script is found here http://www.markrackley.net/2015/12/03/tabify-your-sharepoint-forms/). The…
Rspktcod
  • 23
  • 6
0
votes
1 answer

When EditView is touched cursor must be displayed but system soft keyboards must not be displayed?

I want to display the cursor when edit text is touched but soft keyboard must not be displayed. This below code does not displays the cursor when touched. Someone please help me with this. I used samsung galaxy S6 device to test my…
Suthakar
  • 98
  • 8
0
votes
3 answers

ListView setOnItemClickListener doesn't work

I do not have enough knowledge to solve my problem. Before I ask, I have been looking for an answer and tried various options. I have ListView and setOnItemClickListener: New version, just ListItem and setOnItemClickListener activity_main
0
votes
3 answers

editText.getText().toString returns empty

I'm new to Android and with the help of this site I've put together this code : java: public class Activity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); …
user681148
  • 27
  • 1
  • 6
0
votes
1 answer

Redmine Plugin Development edit form_for

I am currently developing a redmine Plugin, so far it went well. But since I integrated the plugin into a project i cant use form_for to create an edit view. Edit View: Formular
C Ahrend
  • 1
  • 3
0
votes
3 answers

Tagged Text in Android EditView

I would like to achieve an edit view that tags the text after a user has entered some text (in my case a phonenumber) and the user presses a comma. So for input that has Trevor Hansen, Alex Nelson, ... the output will be like this:
musale
  • 534
  • 8
  • 18
0
votes
1 answer

UIWebview not showing editview on first tap

This is an issue with iOS9 and later. On the load of application I select a word in UIWebview but theres no editview popup showing copy, share, define etc options on first tap. From next selection after the tap it works fine. even the…
Lax
  • 55
  • 11
0
votes
1 answer

Cakephp Version 2.x Unable to Show selected file name in edit view

Hopefully this is a simple issue. I have a Cakephp MVC set to upload an image and store it in a database table. Index, View and Add are working as I want. However, in the Edit view how can I indicate that the record currently has an uploaded image…
0
votes
3 answers

Open Keyboard for another EditView when click Enter

I would like to open the keyboard for another EditView (than the one I am using) when I click Enter on it (when I am in the first EditView). The scenario should be like this : I am writing something in the keyboard for the 1st EditView, I have…
user3460225
  • 69
  • 1
  • 1
  • 7
0
votes
1 answer

Switching to a latin based soft keyboard programmaticaly in android

Is it possible to change the user's soft keyoard selection to the English when the user focuses on a specific EditView? If a user have installed two different languages for his soft keyboard and taps on a n EditView I would like to make sure he is…
geoak
  • 442
  • 7
  • 18
0
votes
3 answers

android editview as textview and many lines in one textview

Is there any way to make EditView to work sometimes as itself and sometimes as TextView (readonly, but not grayed (when I set setEnabled(false) it becomes gray which I dont like). Simply I would like to use the same form for displaying information…
user2707175
  • 1,133
  • 2
  • 17
  • 44
0
votes
1 answer

EditView perform an action on click

I have an EditView and I have added : android:imeActionLabel="Go" This is showing "Go" button in keyboard, but I don't know how to perform an action when user clicks "Go" button. Is there any solution about this, if yes how can I do it?
Idrizi.A
  • 9,819
  • 11
  • 47
  • 88
0
votes
1 answer

Android Search and Listview keybaord

I have a simple view with a Search EditView and a ListView. When the Activity appears, the keyboard automatically asppears with the cursor in the Search. How do I stop it from doing that. I wish the keyboard only to appear once the user taps the…
Ian Vink
  • 66,960
  • 104
  • 341
  • 555
0
votes
2 answers

Access System date In EditView in android

I have to access Current system and display in EditView in android.I am using this code.please help me. EditText editText = (EditText) findViewById( R.id.your_edittext_id ); SimpleDateFormat sdf = new SimpleDateFormat( "yyyy/MM/dd" );…
Ravi
  • 31
  • 3