0
votes
3answers
23 views

Android: Two buttons but the action from pressing one is only taking place after the other is pressed too

I have two buttons in my application, one is to to start Google Voice and the other is to exit the application. However, when I press the voice button, it doesn't do anything until after I press the ...
2
votes
6answers
72 views

switch loop into a for: why is every case true?

for(int i = 0; i <= lvl-1; ++i) { id = sequence.get(i); switch(id) { case 1: sq1.setBackgroundResource(R.drawable.square_show); ...
0
votes
1answer
39 views

How to move to next case in switch condition

I am in need of a code, using which in my Android App, I want to go through all the cases of switch condition , (Not randomly!!!).I am able to move it randomly as follows. public void ...
0
votes
1answer
13 views

Android Switch compatibility libraries - theme sometimes not applied

I'm currently using the following Switch open-source compatibility library: https://github.com/ankri/SwitchCompatLibrary So far it works well, except on some devices (last reported on Android ...
0
votes
1answer
30 views

Providing Option to change Themes Using Spinners

I am very new to java and android programming and hence, my understanding is not very solid and hence, I would be much obliged if am provided with some assistance here. I want to provide an option to ...
-1
votes
1answer
27 views

Android List view or any other with switch option [closed]

I want to make the above layout from code behind. It could be a listview with switch or any other. Can someone give me some idea about how to proceed? I am open to any layout. Relative layout will ...
0
votes
1answer
44 views

How can Randomize the cases in switch condition without repeating

Hi I am trying to make an Android App in this model.Main aim is to Randomize the cases in the switch condition Shown in the below code. As I am Again calling the method in each case, The chances of ...
0
votes
3answers
55 views

case staement switch with an intent

I was wondering if there was a way to do this so it would look better. How can i change this so i could compare integers instead or is there a easier way to do this so i don't have a lot of if ...
-1
votes
1answer
39 views

Android Development Switch case problems

package com.gofitness.www; import android.app.Activity; import android.os.Bundle import android.view.View; import ...
1
vote
1answer
21 views

Controlling switch using java but not xml in Android

Is there a way that I can control the switch in the java source but not in the .xml ? I want the switch to be on/off depending on a preference I've saved.
0
votes
1answer
34 views

Android using switchpreference to set color background

How can I change the color of the app I'm trying to develop. I have used a switch statement under preferences menu, but do not know how I can code this, so that when the user clicks on the switch, ...
4
votes
2answers
53 views

Button backgroung is not changed in switch case?

I am developing a sample game application, in which i need to change four button images randomly. for, i am using following logic. but, i am unable to change button background in switch case.. so, ...
0
votes
0answers
56 views

Set height for android switch widget

I'm running 4.0 and greater and embedding an android "Switch" in my xml layout. I'd like to control the size of this widget. Setting layout height did nothing... Any ideas? <Switch ...
0
votes
1answer
39 views

Proper way of listening to a lot of Buttons each of which does something else Android

I have a bunch of buttons to listen to. Each button increments or decrements a value in an EditText. Since every Button changes a different EditText I'm left with just switching. There are quite a lot ...
0
votes
1answer
37 views

switch case loop with onListItemClick

I have a listview, and can start activities with onListItemClick using switch cases manually: case 0: case 1: case 2: ....... but I want to get count of listview items dynamicly, and use them like ...
0
votes
2answers
57 views

Android DeviceDefault Switch button

I need to get the device default Switch (Api lvl 14) button. I already have Switch buttons in my app, but I want them to look like the DEVICE default Switch buttons, not like those from Android. How ...
0
votes
0answers
73 views

Android OBD Reader not going through all switch cases

I am working on a Android app that modifies the Bluetooth Chat example given with Eclipse to create an On-Board Diagnostic (OBD) reader. My code sends a message to my vehicle's ECU and retrieves data ...
1
vote
2answers
181 views

Easier way to use Switch/Case Statement in Java Android

I have a getItem(int position) method of type Fragment. I have about more than 100 pages meaning every page is different I was trying to use switch and case statement. Every case returns a new class ...
2
votes
1answer
362 views

Custom switch widget in Android 4

I am getting crazy with switch buttons in Android 4. First of all, I have set a selector as background with two different PNG files selected from drawable folder: <?xml version="1.0" ...
0
votes
1answer
68 views

Switch textColor does not work

I'm having a bizarre problem with standard android Switch component. I've assigned my custom tracker and thumb drawables - everything seems to look and work ok, except the the color of the textColor ...
0
votes
3answers
72 views

Android:Error - Case expressions must be constant expressions

I have been working on an app, and recently got a new computer. I had to import my existing code into this computer. Now, when I do this I get a few errors in the build path, so I fix them. But now, I ...
-2
votes
2answers
71 views

How to add switch to action bar [closed]

I tried this code, but it doesn't work: ActionBar bar = getActionBar(); Switch swi = new Switch(null); bar.setCustomView(swi);
0
votes
1answer
44 views

Switch gets toggled by itself when gone off screen in ListView - CursorAdapter

I am having trouble figuring this one out. I have a ListView with CursorAdapter and if item goes offscreen the switch resets it self. I have a listener onCheckedChangeListener set on the switch, ...
0
votes
1answer
86 views

How to randomize cases in Switch condition?

In this code, I want to shuffle or randomize my 5 cases in the switch condition*After Clicking the Correct button, the Image is appearing fullscreen and going back to the same Case.Instead of this, I ...
1
vote
1answer
197 views

How to use switch statement with 'onCheckedChanged' method in android?

I have been trying for ages to get this to work and I want it so that I can put both checkedChanged in one OnCheckedChanged method. What I have so far doesn't work, but as I had it before with only ...
3
votes
1answer
79 views

Getting Switch instance inside ActionBar

I managed to put a Switch inside the action bar (as in the Wi-Fi settings). I put the following mainmenu.xml file inside the /menu folder: <?xml version="1.0" encoding="utf-8"?> <menu ...
0
votes
1answer
37 views

Android: how to switch with timer?

I am trying to activate a sound with an switch widget, so I can turn it off as well. Though I also want it to shut down automatically of after a few seconds. everything works though the app crashes on ...
0
votes
1answer
58 views

How to use switch case in onFileClick android

I'm trying to use a switch case to choose from a file ending with .txt, and one that ends .pdf, I've been practicing the switch case but just not as implemented in this case, My code is private void ...
-1
votes
2answers
197 views

using switch case statement for spinner to display images in android programming

I have a spinner which has a list of attractions. I want to use switch case statements to change the image displayed depending on which attraction the user selects. @Override protected void ...
0
votes
1answer
80 views

Issue with Switch on custom BaseAdapter

I have a fragment which holds a list of all profile for my applications. This list uses a custom BaseAdapter. Here is the specs of this adapter: User can enable only one profile at a time. If user ...
0
votes
3answers
76 views

Or statement in switch/case ?

Is it possible to use an OR statement in a switch/case structure? Suppose I want to do the same thing when clicking on two different items. I tried (case R.id.bOne || case R.id.tvOne): and case ...
0
votes
2answers
210 views

Retrieving value from Checked Radio button Android

I am working on building a user feedback form. The form consists of a number of RadioGroups. Inside each RadioGroup there is 5 RadioButtons. Currently this is the way I check the values of each ...
0
votes
1answer
61 views

Android switching views

Ok, so I have worked the fading out content from within an id (thanks to http://stackoverflow.com/a/4570977/971392). I have the following function: public void switchView(View view) { ...
0
votes
0answers
43 views

How to switch activities based on a variable from the SurfaceView?

I'm trying to call my 2nd activity from the SurfaceView, but couldn't succeed, there are many examples how to start an intent from the MainActivity class, but there are no examples how to call it from ...
0
votes
1answer
26 views

Android Reading Assets depending on selected Activity

I'm developing an app which consists on different tests and for each test (activity) it is needes to read a different txt file. I know doing this but changing it manually. How could be possible ...
1
vote
2answers
433 views

Random Number in Android [closed]

When I click start button to my quiz game, it goes to this activity. I use this class to random a number and automatically call another activity. I don't know what's wrong but when this class runs, my ...
0
votes
1answer
96 views

Android - Hide Label on Switch Widget

I'm adding a Switch widget to my screen but I do not want the label to show. If I set android:text to an empty string, or don't set it at all, there is empty gap to the left of the widget and tapping ...
0
votes
1answer
112 views

switch preference to send an sms in code

I need some help with an android project I am working on. I am trying to use switch preferences to send a certain text. Basically, it the user switches the switch from off to on, I want the phone to ...
0
votes
2answers
131 views

How to reduce cyclomatic complexity inside an onClick() method

Let's imagine a simple construction: public void onClick(View view) { switch (view.getId()) { case R.id.btn_first: { // some code } break; case ...
0
votes
0answers
17 views

Pellucide mySwitch appscumen

can you help me with this wonderful control in Android https://github.com/pellucide/Android-Switch-Demo-pre-4.0 , I just need to know when the user has reached the end of the Slide Switch (the one ...
1
vote
4answers
73 views

Assign ressource dynamically vs. big switch case

I have a question regarding performance and best approach for my Android code. What I need to do is fairly simple, I want to dynamically assign a text value to a string ressource, depending on a int ...
0
votes
2answers
127 views

Accessing view id in switch case not working for Android application [closed]

Please have a look at this simple code - inside the switch I can't use clear.getId(); no matter where I declare the clear button. In my posted code its been declared in onCreate. I know I can ...
1
vote
1answer
54 views

Text Strings in a fragment with setText

Thank you in advance for any help. I would like to inject different strings in a Fragment but I'm not sure how. The code that I borrowed to clunk things together at this point is: public class ...
0
votes
4answers
88 views

switch\case not working as expected

My Log line says animalclass is 4 but instead of going to "case 4" it returns default. It works with case 2 though. How is this possible? Thanks in advance. public int gettile(int animalclass) { ...
0
votes
6answers
156 views

Android: Button OnClickListener does not working

I have created this activity that should allow me to open a new activity once a button has been pressed. However the OnClickListener does not seem to be working. Am I declaring the buttons wrong? ...
0
votes
0answers
48 views

About screen switch in android

I create a page slide transitions with ViewGroup. It has the effect. I switch to the back page and click on the button. It has no use and no response. Every page correspond one Activity. It just ...
1
vote
1answer
89 views

How to condense a repetitive switch statement

I have an XML resource file for an Android App that contains many string arrays, each named word#, where # is a number (currently from 0-100). i.e. word0, word1, etc. I am using Random to choose a ...
-2
votes
1answer
30 views

getPlayerID() is undefined [closed]

switch (view.getPlayerID()) this line has an error and it says The method getPlayerID() is undefined for the type View Someone please explain the error..thanks you! :)
1
vote
1answer
123 views

onActivityResult crash

I am having trouble using onActivityResult and cannot figure out why the below code is crashing. I have a button in my main activity that starts another activity for result. //---Setting the ...
6
votes
2answers
3k views

How to Switch between activities with viewflipper

In my android app I am using two activities and I want to make a smooth switch between these activities. I have seen many reference tutorials tells that ViewFlipper can make a smooth switch between ...

1 2 3 4