1
vote
1answer
46 views

Android Preventing Double Click On A Spinner

I have an unwanted problem by default in spinner view. On Android 2.2 when I double click any spinner it opens twice, Upon pressing the back button the 2nd spinner closes but 1st one remains open. ...
0
votes
1answer
32 views

Spinner onItemSelected keeping called over and over again

Well im new in Android programming and i felt a bit lost with the spinner selector... I found some questions relating the same but none of them fits my purpose: objectSpinner = (Spinner) ...
0
votes
1answer
72 views

spinner inside an alertdialog.builder won't display any item

i am trying to make an alertdialog.builder with a spinner inside it. the spinner item is originally populated from the database. here is part of my code: update.setOnClickListener(new ...
0
votes
2answers
52 views

custom spinner in android like google maps

I need a custom spinner like how Google map application in ICS looks, whenever a spinner is clicked a dropdown will come, spinners have the capacity to take listview (correct me if i m wrong). But how ...
0
votes
1answer
45 views

Can't fetch data from sqlite to spinner in alert dialog

I hope somebody can help me find out why the following code does not work with me. I have a method to fetch all names from database table, and I use List to get them. this is my code to fetch them ...
0
votes
0answers
18 views

Define individual callbacks in the extending activity for a universal action bar

I have created a class to hold an action bar which I will be using within multiple other activities. I have done this to save reproducing code. I am creating a spinner from a resource, in my ...
0
votes
1answer
123 views

Create a spinner programmatically android

I want to create a spinner without using xml. I am new in android and my knowledge is limited. By now i have this code (see above) and i want my spinner in on of the tabs of my TabActivity. There is ...
0
votes
1answer
39 views

Multiple spinners in ActionBar

I use ActionBarSherlock, in which I set the navigation mode to 'list' getSupportActionBar().setNavigationMode(ActionBar.NAVIGATION_MODE_LIST); ...
0
votes
1answer
83 views

Update the Activity based on what item is selected in the Spinner

In the current Activity I'm printing a graph (using Androidplot) of the closing prices of a selected stock from the previous activity. In this activity I have a spinner of a list of indicators the ...
0
votes
0answers
80 views

how to fix the ui of dropdownlist of a spinner in android

I am working with a spinner whose dropdown is coming in augly look like this pic: in this i am working with the spinner like this: <Spinner android:id="@+id/spinnerTitle2" ...
1
vote
0answers
194 views

android custom spinner with dropdown option showing below spinner

I want to create a custom spinner,where the dropdown option will be shown below the spinner itself like the dropdown listbox in webservice.But i could only able to change the color and textcolor of ...
1
vote
0answers
141 views

Spinner won't display items (switch situation : different item lists for one and only one spinner - code inside)

My application works this way : there is a menu with different buttons ("Category 1", "Category 2", etc.) and all these buttons open the same activity called "ResultListViewActivity", which displays a ...
1
vote
2answers
50 views

Select the items in Spinner dynamically through code

I am working on a project in which I need to dynamically add TextView and Spinner as well. I was able to add these two things dynamically from my program. Now when I was trying to select some items ...
0
votes
0answers
69 views

IcsSpinner Coloring

I'm trying to use IcsSpinner (Outside of an action bar from ActionBarSherlock). I have my spinner working, but coloring it isn't working out. This older question isn't addressing what I'm trying to ...
0
votes
3answers
256 views

Add more space between items in Android Spinner without custom style?

I have an Android application I'm writing for a Concrete company that will be used for clocking in and out. I've used some spinners to select things like Work Site and Job from drop downs, but I'm ...
1
vote
2answers
74 views

Spinner tab size

I have spinner on my app and I want to make the spaces between each line larger. I have already tried android:TextSize:"30sp" with no luck any ideas?
0
votes
1answer
54 views

Get value from an array froma java file,Android Spinner

Now i know how to flood values in the spinner drop down from the xml. I have a String array.I need these values to be the data in my spinner. So how do i put values into my spinner from an ...
0
votes
2answers
83 views

Android spinner crashing when clicked on

I have a spinner on my page, which is populated using an arrayAdapter. When i launch my app everything is ok, but the moment i click on the spinner, the app crashes and logcat gives me no reference to ...
1
vote
0answers
108 views

ListView getCheckedItemCount and getCheckPositions.size

I am receiving a weird ass bug and I can't seem to figure out why. I have a "save" button and a drop down spinner with two options {select1 and select2}. When the user press a button, the list view ...
0
votes
0answers
91 views

Spinner in devsmart.horizontallistview doesn't work

If I add Spinner into standard ListView it works perfect, but when I use devsmart.horizontallistview (from here) instead of ListView, then Spinner's onItemSelected calls only after ...
0
votes
0answers
247 views

Spinner in ListView Android

In my application I have implemented the ListView which containg Spinner and TextView but I'am not able to get the values from the spinner when i click on the spinner. I have implemented the ...
0
votes
0answers
286 views

change spinner arrow icon android from code

I have a spinner and I want to change the following things in it 1- Background drawable 2- Icon 3- Text size 4- Text Color 5- Text Style 6- Highlight color I have made my custom adapter that extends ...
2
votes
0answers
289 views

Spinner does not apply dropDownSelector attribute

I'm using spinner and want to add spinner - to change behavior depends of states(focused, pressed) sample project is here https://github.com/vovs/spinner_issue My code: activity_main.xml ...
0
votes
2answers
89 views

Android Spinner on click crashes the application

I have defined a spinner in my app that loads on start of the main activity. The activity loads successfully and also loads the spinner with the values from a String array from another class. ...
0
votes
0answers
67 views

How do I populate a spinner from another activity?

My requirement is too populate a spinner from another actvity. The Main activity: protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); ...
0
votes
2answers
88 views

problems in android spinner

I want to display messages based on selection of value from spinner. so i used folowing code. sp=(Spinner)findViewById(R.id.spinner1); String ar[]={"hello","abc"}; ...
1
vote
1answer
80 views

Spinner getting the text fitting

I have a Spinner and I want to fill this one with a currency array formatted like this: USD - United States Dollar This doesn't fit on a small screen, but it runs very ugly over the arrow of the ...
-1
votes
1answer
66 views

how to add strings from dialog box in android?

I need to add strings from alertdialog box to spinner at run time. Now i have the alertbox with an edittext and a button.please anyone help me to fix this.
0
votes
2answers
226 views

Mono for Android: XML data to spinner

My XML Example: <Table diffgr:id="Table17" msdata:rowOrder="16"> <IdRec>17</IdRec> <FieldId>1213</FieldId> <FieldDesc>Equipment</FieldDesc> ...
0
votes
2answers
226 views

Mono for Android: Spinner within a listview

I have a listview which is populated from a webservice using an ArrayAdapter. The webservice provides me with all the data I need. Some are just plain textviews yet other alternate between EditText ...
0
votes
0answers
55 views

Android spinner items not looking properly in phone

i am using spineer in my android project but after clicking on it it shows me list of item in it on screen but it is too small in height can we increase the height of it? can we fill up the entire ...
0
votes
2answers
66 views

NoDefaultSpinner user has to select default element twice

I asked a question here and got the answer OK, all I needed was to add package name in xml file, so this spinner works now, but another problem has appeared. To select the element, that was ...
0
votes
1answer
920 views

Spinner showing items as Drop Down List

I have made a spinner in an activity getting called inside a tab layout. The problem is that the items (3 in nos.) are being showing in a separate dialog as in case of a drop down list and not as a ...
0
votes
0answers
128 views

Custom Spinner TextView is being cut off

So in the attached screen shot and the code sample you can see my custom spinner. As you can see my text is getting cut off no matter what I try to do. The nine patch image is set up correctly with ...
21
votes
3answers
1k views

Spinner does not wrap text — is this an Android bug?

If the text of a Spinner item is too long to fit into a single line, the text is not wrapped but cut off. This is only the case for API level >= 11. Here are screenshots of Android 4.2.2 (left) which ...
-1
votes
1answer
109 views

Android Spinner reselects itself to first value every half second

So, I have a spinner, populated with ~35 values. If I select, say, the fifth item, then when it is selected, it does what it is supposed to do (populate a second spinner). My problem is that shortly ...
0
votes
1answer
169 views

Java.lang.NullPointerException when trying to declare a Spinner

public void directionSpinner (String directions []) { //Does some stuff to assign namedDirections [0] and namedDirections[1] a value. dirSpinner = (Spinner) ...
0
votes
0answers
78 views

Android: Store Spinner Selected Value

I have created a spinner that fill data from database. Assume, user select item from spinner and press back button.(or any other button in my android app). then user do some other stuffs and came ...
1
vote
5answers
2k views

Android: Change Spinner Dropdown view

Im My application I want the below type of Spinner Dropdown view . For this type of spinner view. I wrote this code. ArrayAdapter<CharSequence> adapter = ArrayAdapter.createFromResource(this, ...
0
votes
1answer
165 views

ArrayAdapter with Spinner returning android.content.res.Resources$NotFoundException

I trying to populate a Spinner with a List of Strings. He compiles and run in android, but when I enter a touch in the Spinner, the program stops and return this error: ...
1
vote
2answers
292 views

Adding progress bar spinner as a place holder for imageview in Android

I would like to put a spinner progress bar inside the imageview till the image loads from the internet. It is working fine with a static image. There is a way to keep the progressbar inside a ...
0
votes
1answer
157 views

ActionBar's action items not working on some devices

I'm developing an app using ActionbarSherlock for backwards compatibility, and I'm currently having problems with the Spinner I add to the ActionBar. Scenario: I'm using ...
0
votes
2answers
102 views

Converting array to string array and setting data to Spinner in android..?

As I am new to android development i struck up with a problem where i am unable to set data to spinner adapter.. Here i am getting data from database is like String times = ...
2
votes
1answer
58 views

Spinner won't respond to clicks…even though onItemSelected is called?

( I don't know if this is allowed here or not, I'm new) I found an old question here on stackoverflow, the question didn't get a correct answer, and I'm facing the same problem. I would therefore ...
1
vote
1answer
293 views

Changing text size of an Android Spinner dynamically at runtime

I am trying to set the text size of a spinner dynamically in the program. I am using the below code. The text size changes but due to some reason, the spinner always shows the item at index 0 even ...
-1
votes
1answer
42 views

How to fetch values of a column in spinner from database?

Q-1) I just to know how to fetch the values from a cloumn in database and show it in spinner? I am begginer so please make it easy. Q-2) Like i have a column name Districts and there are 22 districts ...
0
votes
5answers
276 views

Setting spinner position dynamically in android?

I am developing an app where i need to set spinner values dynamically based on previous screen values. My code... Main.java. String[] values = {"All","Only Walk-in","Only Phone","Only ...
0
votes
2answers
281 views

Height of dropdown list of spinner

how can i solve the problem like the image below.It's a dropdown list of a spinner which is the size of text is 60sp. Can I resize the height of each row of dropdown list ? Here is the image that I ...
1
vote
2answers
263 views

Custom Spinner listener in Android?

As I am working on getting a custom spinner and displaying the value in toast. The values are setting to the spinner correctly but I am unable to display them in toast. My code is Main.java public ...
0
votes
0answers
99 views

Android Actionbar: Replace spinner with single button/icon?

Can the spinner for list navigation in an actionbar be replaced by a single action item button so I can give it an icon? It would be similar to a submenu look, but I want to populate the navigation ...

1 2 3