-4
votes
1answer
58 views

Hiding Edittext in spinner onItemSelected

In one of my layouts I have a EditText that I show only when one spinner option is selected. In the rest of options is hide. This action doesn't work, when I select one option the EditText is not ...
-1
votes
1answer
145 views

Passing value from Spinner/EditText in one Activity to another Activity

when pass values directly from a string to another activity it works. But if i retrieve the same values from a EditText and a Spinner and i click on a button(which starts the new activity) the app ...
1
vote
1answer
101 views

How to not lose text selection when tapping a Spinner?

I am working on a text editor. I have an EditText widget in which the text is entered and a line below with various formatting widgets such as buttons and Spinners. The user can select text and then ...
1
vote
2answers
578 views

Android: EditText NextFocusDown not trigger Spinner

In my application I have one registration screen, There are lot of EditTexts and Spinners. I want to go through the Registrations field one by one. So I applied android:imeOptions="actionNext" . But ...
0
votes
5answers
1k views

Select item from spinner to show edittext

I am trying to show an EditText when a certain Item from a Spinner is selected. So far I have created the spinner and the EditText but I don't really know what my next step is. I don't want to display ...
0
votes
4answers
899 views

Passing values of EditText and Spinner from an Activity into TextView of another Activity

I'm having trouble with passing values of EditText & Spinner of activity to TextView which is from another activity. I can only link first activity to second activity. The values are not displayed ...
-1
votes
1answer
2k views

how to insert data into sqlite database with edit text, spinner and button? through android coding

I have 1 Spinner, 4 Edittext and a Button. The save button saves the information into a SQLite database. Oh, I get "force close" message. I need help thanks. Below are the codes of 2 classes. ...
0
votes
4answers
461 views

Set EditText visibility based on Spinner value

I'm trying to create this dialog: . When Spinner is set to custom value, TextEdit should automatically appear. I'm calling View.setVisible() on the TextView but the visibility is not evaluated ...
0
votes
1answer
792 views

How to add EditText on spinner popup in android?

I need to add EditText on top of the Spinner popup for searching purpose. Is this possible? How to do this? give me any idea for this.