1
vote
1answer
44 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
3answers
32 views

How to change which layout is showing

I am making an app where there is a spinner where you can choose 1 of 4 options. i want it so that if you click option a an image a layout is drawn below and if you pick option b a different layout is ...
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?
2
votes
3answers
392 views

Spinner's Drop Down not working properly

I want to create custom Spinner Dialog for my app. I have found this & this. both are good.I have update my code as per requirement. i am using selector file for changing dialog background view ...
0
votes
1answer
911 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 ...
1
vote
3answers
255 views

Two custom spinner layouts

I am trying to use two spinners with a custom dropdown yet, only the bottom one is showing with the custom layout when pulled down. I have been trying on my own to figure out why but I cannot. ...
0
votes
1answer
84 views

resorce not found exception android

I get following exceptions when I try to add a custom view for spinner. Here is the log cat 01-04 12:37:11.299: E/AndroidRuntime(759): FATAL EXCEPTION: main 01-04 12:37:11.299: E/AndroidRuntime(759): ...
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 ...
0
votes
1answer
238 views

Android Spinner not clearly visible in ICS

I was working with Spinner in Android 2.3 Ginger Bread version which working fine. But when i run the app in Android ICS 4.0 visibility of text in Spinner is poor. It is not clearly visible. Can any ...
0
votes
0answers
95 views

Spinner and TextView not horizontally aligned

My spinner and textView are horizontally aligned on screen but when seen from my actual Samsung Galaxy 10.1 tablet, the spinner and textView is no longer aligned? also the respective spinners are ...
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, ...
1
vote
1answer
579 views

Android layout : Align a TextView and a Spinner

I would like to align a textview (saying : "Day :") with a Spinner where the user can choose the day of the week he wants (Monday, Tuesday, etc.) when I try to align them : <TextView ...
0
votes
0answers
720 views

create custom spinner in my android app

Hi I want to create a custom Spinner in my android app. But I am not able to develop this. Please help me. This is my xml code: main.xml <?xml version="1.0" encoding="utf-8"?> ...
-3
votes
1answer
136 views

Switch Activity on Spinner on Item Select method below the Spinner [closed]

I want an activity in which i have one Spinner at the top, and based on the of selection of items in Spinner, the Activity switches from one to another below the spinner. In other words, I want my ...
3
votes
2answers
525 views

ListSelector color change (while selecting list) and also put text-color (black) for Spinner does not working

Hello i want to change default orange color to red while selecting list item from spinner below is my code To put Text in middle in spinner list and remove radio button in selection i have make ...
9
votes
2answers
906 views

How to wrap text content in ActionBarSherlock navigation spinner

I'm trying to wrap the text content of my ActionBar navigation spinner (I'm using ActionBar Sherlock). It seems that my spinner takes the width of the items contained within the dropdown list. How ...
0
votes
3answers
1k views

How to set the items' text color in Spinner Android

I'm having problems with setting text color for the Spinner. I've seen few examples but most have ArrayAdapter and String array from strings.xml in res folder as my Spinner's items are retrieved from ...
1
vote
1answer
77 views

Android - Spinner Dialog closes right after opening

I use Spinner in my Android application. When I click to change selected item app opens the corresponding spinner dialog but it closes immediately without any user interaction. Are there any thoughts ...
0
votes
2answers
243 views

Android custom spinner (NoDefaultSpinner) prompt cutoff from view

I have implemented a custom spinner where no initial default selection is made. The code for NoDefaultSpinner is from this post http://stackoverflow.com/a/3427058/1257074 The problem is that the ...
1
vote
3answers
471 views

Android spinner in layout

I am trying to populate a spinner but I seem to be missing something in my layout file ArrayAdapter<String> cuisines = new ArrayAdapter<String>(this, R.layout.spinner_view, ...
-1
votes
1answer
164 views

Android “toast” command explanation

public void someClass(AdapterView<?>arg0,View arg1,int arg2,long arg3) { Toast.makeText(arg0.getContext(), "<SOME STRING> ...
1
vote
2answers
252 views

my android spinner doesn't look fine

I need to customize my android spinner. For this I created this spinner_selector.xml : <selector xmlns:android="http://schemas.android.com/apk/res/android"> <item ...
3
votes
2answers
2k views

Android- Multiple Spinners

I have this code: package lijap.app.starcraft2counters; import java.io.File; import android.app.Activity; import android.os.Bundle; import android.os.Environment; import android.view.View; import ...
1
vote
1answer
941 views

Align spinner values to right instead of left

In spinner xml, I'm using: android:entries="@array/cars" where cars is list of numeric items. The spinner automatically align values to left, and I can't find in xml/code how to change it.
0
votes
2answers
1k views

Issues with custom layout for spinner for Android

I know there is a lot of discussions around custom spinners, however I am still not able to grasp how to do it. What I want is a spinner with a custom layout for the dropdown items and a custom layout ...
0
votes
1answer
190 views

Android Spinner is not fully visible in custom ListView

I need to show some data in a grid-like format. For that purpose, I am using a ListView and I have a separate XML layout defined for ListViewROW. Main.xml: <TableLayout ...
0
votes
2answers
105 views

Basic Query about Spinner

As per Android Docs, public int getSelectedItemPosition () Since: API Level 1 Return the position of the currently selected item within the adapter's data set Returns int Position (starting at 0), ...
0
votes
2answers
701 views

Sorting ListBiew by Spinner in android?

I have one ListView and one Spinner. The Spinner is situated at the right top of the layout. My ListView contains some names (eg. country names) and the spinner has some alphabets (a-z). Suppose if I ...
0
votes
1answer
1k views

Android custom spinner

I have a custom spinner that uses two custom views, one for the drop down and one for the currently selected item. My problem is, the custom view for the currently selected item is always at least as ...
0
votes
3answers
254 views

Android - xml text views not filling parent correctly

Whats up stackoverflow. I am trying to make my android xml layout look as professional as possible, but as of right now it feels very amature(probably because im new at app development), would ...
3
votes
3answers
761 views

Two spinners next to eachother

I have this problem when i put two spinners next to eachother. Here is the fragment of the layout xml: ... <LinearLayout android:layout_width="fill_parent" ...
0
votes
1answer
225 views

Spinner selection issue

I want to implement the below: A spinner which would have a custom layout, its background color would be black and font would be white. But what I want is that when I select any component then my ...
0
votes
4answers
518 views

Returning a String from ArrayAdapter

I have created a Spinner and ArrayAdapter as follows: Spinner spinner1 = (Spinner) findViewById(R.id.spinner1); final ArrayAdapter<CharSequence> adapter1 = ArrayAdapter.createFromResource( ...
1
vote
2answers
3k views

Method for Spinner item click listener with SimpleCursorAdapter and ViewBinder

I got a Spinner element which I populate with data from a Cursor using a SimpleCursorAdapter. Also I'm using setViewBinder for a custom row layout of the Spinner. Everything works out fine, the ...
0
votes
1answer
403 views

Adding Spinner ID to android:layout_below doesn't seem to work on Ice Cream Sandwhich

I am experiencing the weirdest thing. When I try to create a spinner. if I do not give it the ID "test" I will always see an error that say's "Couldn't resolve resource @id/..." in the graphical ...
0
votes
2answers
254 views

DropDown Spinner Alignment

I develop an Adroid application. So i want to customize programmatically the behavior of DropDown Spinner. I overwrite the getDropDownView method but i cannot find anything to change the dimension of ...
1
vote
1answer
223 views

Why my ProgressBar looks different in different layouts

I used style="?android:attr/progressBarStyleLarge" to create the spinning ProgressBar. Not sure why in different layout XML it behaves differently(I am using the same device). It shows as a blue ...
1
vote
1answer
755 views

Custom Spinner doesnt show the value returned from custom Dialog

I'm creating a custom Spinner that shows a custom Dialog. For that, I created a class called CustomSpinner and another called CustomSpinnerDialog. The problem is that, in the Spinner, the selected ...
3
votes
2answers
3k views

Android spinner text size

Due to some designing issues i am designing my spinner with smaller width and height. And this smaller width and height not showing complete text written in the prompt of spinner. Please help if any ...
1
vote
1answer
740 views

How to change the text size and orientation of a spinner

I need to change the text size and orientation of the selected item shown on a spinner, but also I need to continue using the default layout for the spinner: android.R.layout.simple_spinner_item Why? ...
0
votes
1answer
463 views

How to use a personalized spinner with programatically created array of Strings instead of a hard-coded string array of my strings.xml file?

i have a personaliced spinner (that uses a adapter that uses a personalized xml layout file) i want to pass him a array of strings, programatically created, instead of passing the tipical hard coded ...
2
votes
0answers
786 views

Customize an android spinner

I m trying to customize a spinner so that it has a image as selector instead of radio buttons(default). I am referring to this blog. But it doesnt seem to work. Any suggestions on how to proceed or ...
0
votes
1answer
192 views

Expand spinner downward as items are added…as well as adjust layout

I am making a form in an android app. I currently have it in a relative layout with this snippet pictured below in a table layout within the relative layout: When a user clicks on the spinner it ...
0
votes
1answer
399 views

Spinner not filling its parent

I am using spinner in an activity with Theme dialog. I can't get the spinners to fill parent width - those are always in the length of the text only - no matter what i do. this ismy layout definition. ...
1
vote
2answers
2k views

alternating colors of spinner items

Can I make the items to show up in alternating colors in spinner control
0
votes
1answer
508 views

Android - Reading common data between Activities using a Spinner

I have an Android application which retrieves from a external server, a name and a corresponding ID (this could be 1 name and ID combo or multiple name ID combinations), these are all stored in a ...
8
votes
3answers
12k views

Android Spinner - onItemSelected / setOnItemSelectedListener not triggering

This is driving me nuts since it's something I've done before but can't figure out why it isn't working now... I've got a menu button, implemented in the usual way via a menu.xml file and the ...
0
votes
1answer
3k views

Android: a spinner in a list view, Where is the OnClick/OnItemClick/OnItemSelected event?

I have N "books" each with some number of chapters. So I create a ListView. Each item in the ListView has two parts: TextView for the name, and a Spinner to list the chapters. I have created a ...
0
votes
1answer
483 views

layout messed up once spinner has entries

I have <LinearLayout android:id="@+id/LinearLayoutPlayer" xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="horizontal" android:layout_width="fill_parent" ...
0
votes
1answer
5k views

Simple Android Spinner code [closed]

Hallo, I have written a simple spinner wrapper, but was wondering if any of you experts out there could think of any ways to make it more robust. It only handles strings at the moment, so that could ...

1 2