0
votes
1answer
166 views

Android - set focus on EditText after Spinner selection

I have the following items displayed on the screen: EditText Forename Spinner gender selection (Male | Female) EditText Email When the application is first launched, I want the focus to be set on ...
0
votes
0answers
93 views

android - loop through dynamically added form inputs

I have dynamically added edittexts and spinners into my activity. What is the best way to iterate through all of the dynamically added inputs to validate and get their text values? Should i create ...
0
votes
1answer
154 views

Spinner Default Theme to EditText android

I have EditText and I want it to be shown in the same theme of Spinner , with background and arrow because I have made this EditText Clickable and it is open a custom popup
0
votes
2answers
255 views

Mono for Android: Listview scrolling issue with spinners and edit text

My problem is on two fronts. First issue: Scrolling amnesia I have a ListView with spinners and edit texts. It acquires it's data from webservice. The problem is when I write up a value on the ...
0
votes
1answer
376 views

android spinner setfocus

This question seems to be asked so many times but after trying over 20 different ideas I still have an issue. I have an inflated dialog that consists of (from the top) 7 spinners followed by several ...
0
votes
0answers
249 views

How to save spinner and reload EditText input from spinner click

I've create An EditText to insert my name and one to intert my surname. When i click add it must save my name into a spinner and when i click on it, i want to appear my name and my surname into ...
0
votes
1answer
211 views

If-Else statement not working in Android app

I have a simple if-else statement in my app, but it's not working. If I choose "day" in my Spinner, only that day can be edited. It's not working because all days can still be edited. Can someone tell ...
-1
votes
2answers
220 views

Spinner & Edittext

i'm trying to make a simple apps but i've got a problem. i have a spinner consist of 4 string - day, date, time, location. under the spinner, there are 7checkbox of day from mon - sun, edittext of ...
0
votes
1answer
108 views

Can't get Edittext values to show in new activity?

kinda of a noob at this. I'm Having a little trouble getting some of my values from the edit text to transfer into a new activity. I'm Trying to set it up to where the chosen spinner item will place ...
0
votes
1answer
276 views

Display Toast message for user to key in all EditText if one or all is empty - Android

I've an application where the user keys in his friend's information.My application have Spinner, 4 EditText and 3 Buttons(Save, Main Menu, View). After the user click the Save button, if the user ...
0
votes
0answers
51 views

Android Eclipse GPS get malls from WampServer database enquiries

The latitude, longitude and address are retrieved automatically from GPS. Thus, from the address, I need to get the nearby malls values into the spinner from WampServer database. How do I do that? ...
0
votes
0answers
228 views

How can I add an AutoCompleteTextView within a Spinner in Android?

I want to make an application for Android which has a Spinner for select an item form a list, but due to the list is very big I wanted to add to the Spinner an AutoCompleteTextView or an EditBox for ...
2
votes
0answers
316 views

Android: Spinner does not set selection after edittext had focus

I have a listview of different view types, including spinners and edittexts. I have a single focuslistener that listens for the onfocus lost event as I have to do some post processing. As a user may ...
0
votes
2answers
301 views

EditText visible when selected Spinner

I have a spinner with a list of two items in @ strings. I want that when User A to select the item becomes visible editbox. When you select item B be invisible again. thank you!
1
vote
2answers
105 views

Why cant i get these calculations to display on a textview?

Im trying to make an app that converts distance/area/volume using spinners as a unit selection method. Calculations are meant be done and then the output sent to a textview based on what is entered ...
0
votes
3answers
475 views

Android issue with EditText object

I have an activity where the user is presented with a list of edit texts. The problem is, as soon as the activity starts, the virtual keyboard is brought up right away for the first edit text. I don't ...
2
votes
2answers
2k views

Android Spinner hint?

I have two spinners in my current android app, I would like to have a default value like the editText's android:hint ability. Is there a way to do so, but in a way that doesn't add the hint to the ...
0
votes
2answers
2k views

How to show EditText upon Spinner selection?

I have a preliminary question I want users to answer before a certain EditText field should appear. The Spinner is basically a Yes/No question, upon selection Yes I want EditTextA to show, upon ...
0
votes
1answer
569 views

show an item from editext to spinner and save to db

I want to show an item from editext to spinner and save to db... how to store item in the db... my code : spinner populating final DBAdapter db = new DBAdapter(this); db.open(); Spinner spin = ...
0
votes
1answer
369 views

In spinner items if select particular item means only the edit text has be go enable and get item to add spinner

I am beginner to android... Am trying following: In list of spinner items if select the one particular item (Example:Extra) means only the edittext text has to go enable.Remaining times it want to be ...
2
votes
2answers
2k views

Can't manage to requestFocus a Spinner

I've got an annoying issue with a screen. The screen consists of a bunch of Spinners one under the other, and then underneath the spinner, an EditText. The problem is that when the screen starts, the ...
3
votes
1answer
4k views

EditText Height Issue

I am trying to set smaller height of EditText but still have not managed it. Here is my source: <EditText android:layout_width="150dp" android:layout_height="20dp" android:singleLine="true" ...