• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Search results

  1. F

    Apps my app doesnt stop properly after ringtone

    hey this works fine if the button is pressed. how do i set it to finish() when the ringtone is over ,so the app will close if the button is not pressed? thanks private void soundalarm() { setContentView(R.layout.alarmstop); mediaPlayer = new MediaPlayer(); Uri notification =...
  2. F

    to play movies what is faster or better >streaming or reading from the sdcard

    why im asking is the sdcards go up to 16gig maybe more. doesnt streaming use alot of your data plan? is streaming faster than reading it from the sdcard? thanks
  3. F

    Apps self texting will this work for all android phones

    hey yall my phone will send myself a text message ,but will my app send it and is this a good way to remind your self or is there a better way? thanks
  4. F

    Apps how do i get my app to check date every day

    hi i not sure how to go about getting my app to check the date at a given time everyday. will it stay running to do this or does the system shut it off ? need advice thanks
  5. F

    Apps if my app needs to sound an alarm ,will it stay on and stop other system stuff up

    im making another app and i need it to sound an alarm at some point. my question is will the app stay running all the time and will if affect the system or not? how do minmize the use of resources or is that best or possible? thank all
  6. F

    Apps im getting error >invalide integer " "<

    hi the app still runs the right way ,i just get that error how would i solve that one? and if i could ask another question about . (question 2) how do i write text to a given line number on an edittext ? reason i need to save this in a text file on my sdcard im able to do that just not able...
  7. F

    Apps is it better to use delete or upgrade to delete data in rows

    if row_id goes from top to bottom and columns go left to right i dont want to delete the row only all data . is it better to use delete or upgrade? column1|column2|column3 1 items | name1 |name2 2 3 4 5 is there a way to delete name1 and name2 without deleteing any rows? i have some code...
  8. F

    Apps on a app does the key pad come up automaticly

    hey and good morning im making an supply app for my sis and on the edit screen she will need the key pad, wil the key pad come up automaticly or do i have to add something? thanks
  9. F

    Apps what does Emp and mgr commands do

    hello using rawQuery i keep running across emp._id and mgr but i get no hits on the internet search could someone help? thanks
  10. F

    Apps what are the steps in make a onListItemClick

    hey yall what is the int position for? i have this in my listactivity and the below code in my edit class. i cant seem to figure out what im soposed to put in place of employee_id. thanks all public void onListItemClick(ListView parent, View view, int position, long id) { Intent intent...
  11. F

    Apps steps involved in makeing a android database

    hi ive looked at 12 or more example tutorials form the web and all had a different way of making one... so if someone knows the best or right way with the steps it would be a great help. thanks all
  12. F

    Apps fatal excption erorr help needed

    morning im getting this error your content must have a listview whos id attribute is android.R.id.list ive been trying for a while ,could use some pointers. i also have another question can this type of database handle 61 items in it? thanks package com.my.supplys; import...
  13. F

    Apps using eclipse how do i change the background color

    hi how do i change the layout background color? there doesnt seem to be a way thanks
  14. F

    Apps Whats the best way to save to file a 2d or 3d array of integers

    can a whole 2d or 3d array be saved to a file ,,all at once or does it have to be one number at a time? if so what do i have to look up? many thanks
  15. F

    Apps whats the best way to send game moves ,between phones

    whats the best way to send and reseve game moves between phones, like text messages ,is this possible? thanks
  16. F

    my first app Dominos

    i love this game ,i cant believe it, i made it in vb6 i had to cut alot off of it.i didnt like java at first ,but wow thanks yall now what to do next
  17. F

    Apps in touchevents how do i shortin this up a bit

    hey i need to make this 21 times in my touchevent. my question is how/or whats the best way to replace the 0,32,416,480, with 21 sets of numbers? thanks if(event.x >= 0 && event.x <= 32 && event.y >= 416 && event.y <= 480) { if (markercancel==true){ setmarker=false; markercancel=false...
  18. F

    Apps i have a string problem i think

    im not quite sure how to make assets show my string right. how do i get assets put in the string name after assets. ? thanks for (int i=0;i<21;i++) { if (holdyourhand[i]!=-1){ g.drawPixmap(Assets.showstring(hstring), 128, 160); } }
  19. F

    Apps how do i hold 2 seperate numbers in 1 array

    in vb you can store like this>>>>hrack(x).Tag = CStr(dom(pipVal(Y), 0)) & CStr(dom(pipVal(Y), 1)) & CStr(dom(pipVal(Y), 2)) i know thats not an array. but is there a way in java to do this? many thanks
  20. F

    Apps in my dominoes app ,how do you go from your game screen to another screen

    hey im not sure how to go about showing another screen then return to the game screen without starting it over. do i have to save the game screen then reload it? thanks
  21. F

    Apps hey im switching from vb6 to java

    im using a vb6 to java program called vb6 to java . should i write small programs to help me learn how to do certain parts of java im haveing trouble with? thanksall
  22. F

    Apps when i make button using a png

    for some reason ,when i run the avd manger i made a human.png ,added it in assets the avd says the app has stoped running. if i change the png to any other it works fine. thanks g.drawPixmap(Assets.human, 80, 100);
  23. F

    hi i just begain learning java and i need advice

    hi im used to vb6 but the future seems to be in java so here i am. what im wanting to do make some of the games i made in vb6 into android apps if possible . should i start off makeing the games in java for windows first or just studying beginning android games ,,because theres alot of stuff i...