0
votes
2answers
46 views

Start new Activity from spinner

I am trying to start a new activity when I select an option from my spinner but whenever I select the option that starts a new activity the app crashes. I am starting the new activity with an intent ...
0
votes
0answers
9 views

How do I obtain a value from 2 selected options in spinner

I am new to android and have reached a stumbling block. I am unable to return a number based on 2 conditions set by 2 spinners in a parent activity. Can you help?
0
votes
1answer
46 views

start an activity through selecting item in a spinner

I have a spinner where the user enters items dynamically. I want when the user selects an item from spinner to start another activity. I use: ... m_myDynamicSpinner = ...
0
votes
0answers
36 views

How to display different mapview depending on selection from spinner?

I have a spinner containing a list of attractions (in attractions_layout.xml), when the user selects an attraction from the spinner, its information is displayed in another activity (in ...
0
votes
1answer
47 views

I have a second Activity on Click then how can I get the item form the spinner in the main activity then display it in textview in third activity?

I have a second Activity on Click then how can I get the item from the spinner in the main activity then display it in textview in third activity? I have three's Activity here, The main activity ...
0
votes
1answer
133 views

Different content for each Spinner item in the same Activity

How can I show different content after selecting an item from the Spinner? I want to create a Spinner with locations of chain stores. Ex: When I chose Adress1 from Spinner, immediately under the ...
0
votes
0answers
68 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
0answers
49 views

from spinner to new activity

ive tried all the examples here in stack overflow but its not working for me, im on android and nothing is happening when i select an item from my spinner, its supposed to take me to another activity ...
0
votes
1answer
167 views

Android Spinner crashes on tapping

I have a spinner that populates list of options properly at first. Then when I switch the activity and come back and tap the spinner the app crashes (see log below). spinner1 = (Spinner) ...
0
votes
2answers
84 views

restore spinner position when activity is back in front

I cant seem to set my spinners position back to what it was before I called a second activity. Layout of App: Activity "Main" has a spinner and 8 buttons, the user selects a item from the spinner and ...
0
votes
1answer
913 views

Starting a new Activity with Spinner

I was wondering if anybody knows how to start a new activity, when you change the value of a spinner without having to press an button. I have been searching the web for hours, but I cannot find ...
0
votes
2answers
4k views

Finding Fragment View on Activity. Android findFragmentByTag(String tag) returns null

I'm trying to get a Spinner View from an added Fragment to my activity but it seems that I cannot get the fragment nor the view. I have an Activity which adds a Fragment to it's LinearLayout, the ...
2
votes
2answers
878 views

Cant get intents working with a Spinner

I am trying to replace the toasts in the code below with intents, but no matter how many methods i try they fail to work. The issue is nothing but a white screen on the emulator when loading up the ...
0
votes
1answer
460 views

Cannot Inflate View While in ActivityGroup

I am using an ActivityGroup to open up Activity 2 from within Activity1, which lives under a TabHost. So I have a group of Tabs and Activity 1 is part of those, but when I click a button inside ...
0
votes
2answers
181 views

Several UIWebView and one single activity spinner

I have a setup with three different UIWebViews which loads data from the internet. The time it takes for them to finish differs of course and the order they are finishing also. They start their ...
1
vote
1answer
317 views

Android Patterns: A Spinner where every item launches a different Activity

I'm trying to build a complex form where almost all of the elements are optional. It starts with just a single field and an "add element" button. When you click add, the form shows a Spinner of the ...
0
votes
1answer
288 views

How can I get input from multiple spinners so I can display results from a database?

I have 1 activity with 3 spinners, each about a dozen or so options in them. I would like to get the data from the spinners, access a Sqlite database, then display something in a second activity. I ...
0
votes
1answer
295 views

Problem in displaying in Edit text values corresponding to spinner value

I have a spinner in my layout and according to the values of a spinner i want to change the values of edit text. in the same layout. For example :- i have 2 Edit Text Boxes and 1 spinner in the ...
1
vote
1answer
575 views

Change EditText Box Values on change Spinner value

I have two spinner in my system. Now I have to change the selected value of the 2nd spinner depending on the first spinner value. As soon as the user will change the 1st spinner value, the 2nd spinner ...
0
votes
1answer
1k views

android: Reload activity or refresh the view on spinner item selected,

I have an activity in which I have added a spinner, depending on the value selected of spinner I have to update the whole view immidietly, this operation includes changing the locale (use of ...
0
votes
4answers
548 views

Android: Passing Spinner Selections Across Tabs

I am making an android application with multiple tabs and I followed the developer tutorials that instructed me to make multiple activities. I have spinners on the first tab. How do I pass the values ...
1
vote
1answer
1k views

Android SQlite, How do you pass two values to another activity?

I am modifying my program to get its values from a database and I am having some issues and I am a little bit confused on what to do. I've been stuck for days, I would appreciate the help. When I ...
3
votes
1answer
2k views

Android - How may I change a spinner value without triggering setOnItemSelectedListener

I have a spinner and its adapter. I have a customized the list and an the spinner view. The value of the spinner can be modified by 2 ways : - by a user choice - programaticaly When the user makes a ...
7
votes
2answers
2k views

Refreshing a Spinner

I have a view with a spinner. The activity starts another acvitity with a popup where I add or delete values that the parent shows in the Spinner. So, in onActivityResult() I refresh the content of ...