Tagged Questions
0
votes
1answer
24 views
Android Trouble With TextViews and Buttons
Okay so I am making a application just for fun that has a random number pop up on the screen. If you tap the button with the same number as the random number you get a point, and if you tap the button ...
0
votes
1answer
18 views
Random sound onclick button android assets
I want to play random sounds from assets/ folder in my project.
What's wrong with that code? Help me please
Here's my code:
MediaPlayer player;
AssetFileDescriptor descriptor;
private String[] ...
0
votes
3answers
69 views
Generating random index for array
I'm a beginner at android and am working on my first app. I chose a tutorial using the google Places api and worked through it. Afterwards I decided I wanted to add a button that would choose a ...
0
votes
1answer
42 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 ...
2
votes
1answer
54 views
How to make random frame animation in android?
I have a number of animated images(frames) like image_1,image_2 and image_3.I want to use this animated image in my application so I tried
<animation-list ...
0
votes
1answer
32 views
Android: Random Number list to an actual number
My app has a section that will generate random numbers so that the numbers can be combined as an 11 digit number so that it can send out a phone call.
So far I have this:
Random rand = new Random();
...
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 ...
-1
votes
2answers
35 views
How to have different strings displaying different text each time user opens app?
Basically the app opens up to a menu and at the top it says Welcome to bla bla. I want to change that every time they open the app to something different each time so next time it would say. Bla bla ...
-1
votes
2answers
54 views
Best method of finding random English words
I'm looking for the best way to find a random English word using an Android app. Is there a better way than saving a .txt file with all the words in your res/ folder, such as
...
7
votes
6answers
169 views
How to really shuffle a deck of cards
When I need to shuffle a deck of poker cards in Java/Android, I use Collections.shuffle(List<?> list), of course. I've ever been doing this and the results seemed acceptable. But they aren't.
...
-2
votes
2answers
80 views
android how to get 4 images in array from ten array of image randomly
I want to get four images from a array but I need same position images from other array
as like in example.
images = new int[] {
R.drawable.a, R.drawable.f, R.drawable.k,
R.drawable.u, ...
1
vote
1answer
71 views
How to set TextView to other random TextView in same class?
I would like to have a TextView in my Android App be set to another TextView in the same class randomly. I tried this:
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
pop ...
0
votes
4answers
70 views
Why does my random generator always return 0?
I have it set up so If a 0 is returned, than an image of a dice with a 1 on it is set to the place of a buttons image. It does this with different values and images too. 0 = Dice 1, 1 = Dice 2, 2 = ...
0
votes
2answers
161 views
How to display a random image for x second once the activity is first brought up?
I'm trying to display a random image for 5 seconds (I've got 3 images) when my main activity is launched. (It's a kind of tutorial how to use my app and some advertisement). But I just want to display ...
1
vote
1answer
78 views
Creating Android Quiz with random Q and multiple A
I'm trying to make a simple quiz app. I need to make the question to pop out in random order. Now, I have no problem with working the layout and button, the concept of this little quiz is also ...
1
vote
2answers
89 views
My Runner using a Handler is not working on android
Here's what I got so far guys, this is my app, all it does is display a digital clock and move the clock to a new part of the screen every 30 seconds, but it doesn't actually do that last part, here's ...
3
votes
4answers
46 views
Generating a random number outside of the oncreate method
I'm trying to set up my activity so that I can generate a set of random numbers from methods outside of my onCreate method. Here's how my activity is set up...
public void onCreate(Bundle ...
0
votes
1answer
86 views
How can I make buttons click at random
I have a menu with x number of buttons that all go to different pages the problem is I have to start at the button at the top n go down I'm order for it work without crashing. If I click on the second ...
0
votes
2answers
60 views
Android: How do I randomly place an array of buttons in an activity?
I was wondering how I could "randomly" place an array of Buttons in a RelativeLayout?
Is it possible to space the buttons around the entire view?
Thanks for your help! I tried using setX() and ...
0
votes
1answer
60 views
How can I make this function repeat every minute?
I've currently got this code below which randomises the postion of, in this case, a digital clock in a text view.
All I want to do is make the app repeat this after a minute, so the clock ends up in a ...
0
votes
0answers
50 views
Generate a random matrix using JavaCV
How do you generate a matrix of some size using JavaCV? I'd like to make some random projection matrix for image transformation.
I tried something pretty crazy! I'm pretty sure there's an easier way ...
1
vote
2answers
101 views
Simple unique random number generation loop error JAVA Android
I am trying to generate a unique random number from 0-11 and use it an index to assign TextBox some unique characters. Here is the code
int[] previous_random = ...
0
votes
1answer
21 views
How to make the stock “DigitalClock” randomly appear on screen in different location every minute
absolute beginner (to android) here,
I've got a very simple android project in eclipse, Basically just a fullscreen activity with a digital clock placed inside a Linearlayout. I just want that clock ...
0
votes
4answers
69 views
Consistent random numbers across versions and platforms
I need/want to get random (well, not entirely) numbers to use for password generation.
What I do: Currently I am generating them with SecureRandom.
I am obtaining the object with
SecureRandom sec ...
0
votes
1answer
69 views
How do I make the back button I created in the activity change the text in the textView to the previous text created by the random generator?
When I start the activity on my phone, it says that the app is not responding. The problem is the back button which I can't seem to program to make it gather the previous text from the textView. Any ...
0
votes
1answer
53 views
How would I create a back button for a random generator so the previous textview is displayed?
The question really is that simple. I have an activity with a button that randomly changes the text of a textview box. How do I add another button that gathers the previous number generated so the ...
1
vote
1answer
144 views
Cycle random images in Android
I'm beginner to Android / Java development. I just started learning programming and the easiest way for me is to modify open source projects to understand the principles involved.
Anyways, I want to ...
-1
votes
2answers
41 views
Android random countdown app
I previously made simple reaction-time app thing on my TI 84 calculator, and realized that it was so simple I should be able to make it for android, too.
But I'm not really skilled in android yet ...
0
votes
1answer
146 views
Changing images randomly on button click and fire the corresponding listener
I have a requirement that, I have 5 ImageButtons. I want to load Some 60 - 80 Images on these 5 ImageButtons randomly. How can I do that?
public void setRandomImages(int n){
Random rand = new ...
1
vote
0answers
78 views
pick random word from builtin Android word dictionary
As Android suggests words while typing this suggests that all the dictionary words are available in the system. I want to pick a random word from this existing word list.
I have Googled it and ...
0
votes
5answers
217 views
random genaration of image from drawable folder in android
Android version:4.2
I am developing an android App. I need to generate images from drawable folder randomly. In my drawable I have 45 images with different names.
My xml code is:
<ImageView
...
0
votes
2answers
49 views
Randomize string from resources android
I have tried this:
int[] trivias = {
R.string.trivia1, R.string.trivia2, R.string.trivia3, R.string.trivia4, R.string.trivia5,
R.string.trivia6, R.string.trivia7, ...
0
votes
1answer
51 views
Android- Retrieving random entry from SQLite Database?
I'm new to this, so bear with me if I make any noob mistakes. I'm trying to write a database and return a random entry from the database. The program should launch a Randomize activity that will ...
0
votes
1answer
88 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 ...
0
votes
1answer
115 views
Showing Images(or Media) on Button Click on Randomly changing Layouts
I want to show 5 xml layouts in random, and also i'l shuffle them on click of appropriate button each appeared xml file. Upto that the below code is working awesomely.----**I have put a delay of 0.75 ...
0
votes
2answers
59 views
How to sync the time between my application and the server?
I have the code below that generates 7 random digits every 30secs.
I will sync the application time to the server
http://server10.instaforex.com:2012/TimeService/TimeService.svc?wsdl
My question ...
-2
votes
9answers
87 views
how to remove this [[ , , , , ]] in my code android
hello guys i need some help on my code basically i need to remove the [[, , , ,]] in my output
of generated random numbers, question is how to remove this?
Please see my code below I will attached a ...
0
votes
1answer
210 views
auto generate random number every 30 sec android
i want my program to auto generate random number every 30 sec when i hit the generate button, Question is how to do that in my code?
public class MainActivity extends Activity {
@Override
...
0
votes
2answers
143 views
Android - Playing random sound from OnTouch with SoundManager
I am wanting a random sound to play whenever the user touches the screen. I have found and used these other posts to help set up my project and get me moving in the right direction.
Play random ...
0
votes
6answers
216 views
Random 7 digit numbers on click android
I would like you to help me on this code. I can generate random numbers but not in exact count.
Question is, how can I generate 7 random digits once button is click?
Please refer to my code below:
...
-2
votes
1answer
63 views
4 different random number for sqlite test aplication? [closed]
I want four different numbers within the specified range but I get some number and some date.
This application is a test application for these choices
Random rn = new Random();
int rangetp = ...
0
votes
1answer
183 views
Android “wheel of fortune” style random selection [closed]
I have a simple Activity in my Android app that lets a user select a random item from a list of ~100 items. When the user clicks anywhere in the activity, a timer will quickly cycle through random ...
0
votes
2answers
120 views
Random xml layouts files for an Activity
I have five layouts(XML files), each one with a Button on it and two activities, A & B. In the onClick action of start Button in A, I'll open the activity B and all the story begins there:
In my ...
-4
votes
2answers
73 views
Android SDK help (java)
So I'm really not too great at programming, but I am reading and trying to change that, for the time being i need some help. I have a simple app that will generate 7 random numbers 1-49 and place ...
1
vote
1answer
197 views
android: How can I display random buttons to a simple quiz game?
I'm learning how to do a simple quiz game. In the game, a random number is generated to make a new question appear (there's a switch where each case is associated with one different question) after ...
2
votes
1answer
644 views
android.content.res.Resources$NotFoundException: String resource ID Fatal Exception in Main
I've been trying to make a simple program that fetches a small random number and displays it to the user in a textview. After finally getting the random number to generate (I think) the program throws ...
0
votes
2answers
159 views
Random image on ImageView
I am very new to Eclipse, and have been using it only for a day so far, and also have no previous experience with Java, although I don't know much I still understand how it goes.
Could someone please ...
0
votes
3answers
331 views
Make click button generate random numbers without repeating
I want to make an app (just for learning purposes) that generates a random message without repeatition.
I have this code inside the onCreate method:
imgbutton2 = (ImageButton) ...
1
vote
2answers
80 views
Get a set of “static” random values everyday
This is a question for all those good at manipulating randomization. I am making an app in Android. For this app, I need to generate random values with the following conditions:
I need to generate ...
0
votes
1answer
112 views
how to randomize questions in the quiz every time the user play using json array in android
im developing a simple quiz, where i have 50 questions stored..my problem is, i cannot randomize the questions, it should be randomize everytime the user will play, and only 10 questions to ...


