[android-developers] hi bud

2015-11-28 Thread leigh8347 via Android Developers
Interesting news http://www.mobile-application-developers.net/sphtalrk/sulukuxu.php?def=1697+idconn=poqjra+statoavanzamid=268577 -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to

[android-developers] spliting srings

2012-03-02 Thread leigh8347
Hello sorry for the simple and i guess basic question but how would i get some lines ot text saved in a .txt file on a sd card. then split the line and display word 1 and word 3. the words are separated by commas. i have spent a good few hours looking through google for the answer but have not

[android-developers] Re: date and time

2011-11-02 Thread leigh8347
The peice of code im using to disply the date and time is as follows datetime.toString() but like i said this does not update regards On Nov 2, 12:02 am, Lew lewbl...@gmail.com wrote: leigh8347 wrote: im [sic] making an app that writes to a .txt file and at the end of each save i want

[android-developers] Re: date and time

2011-11-02 Thread leigh8347
Thank you but this did not work. Any other ideas regards On Nov 2, 11:04 am, Robert Slama robsl...@gmail.com wrote: try add follow line before format to string : date.setTime(System.currentTimeMillis()); r^ On 2 November 2011 10:44, leigh8347 leigh8...@aol.com wrote: The peice

[android-developers] Re: date and time

2011-11-02 Thread leigh8347
posted all seem Ok. If the issue is with how you update the file, look for a bug there, not in date formatting. -- Kostya 02.11.2011 22:59, leigh8347 пишет: Thank you but this did not work. Any other ideas regards -- Kostya Vasilyev -- You received this message because you

[android-developers] Re: date and time

2011-11-02 Thread leigh8347
assigned to it earlier (in onCreate?), no matter how many times you click the button. Oh, and rather than getBaseContext(), use your activity class.class or v.getContext(). -- Kostya 02.11.2011 23:39, leigh8347 пишет: well here is the code for file update but this seems to work fine

[android-developers] date and time

2011-11-01 Thread leigh8347
hello im making an app that writes to a .txt file and at the end of each save i want to put the date and time. this is my code that turns the time/date into a string. which works fine. SimpleDateFormat dateFormat = new SimpleDateFormat(dd/MM/ hh:mm:ss); java.util.Date date = new

[android-developers] Writing to file problem

2011-10-30 Thread leigh8347
hello can anyone help? on my app im trying to do the following - Save 2 user inputs to a .txt file and save it, then be able to enter 2 more inputs and save again and repeat many times. so far my code creates a file, writes the first 2 inputs and saves. but when i try saving another 2 it just

[android-developers] Re: filewriter

2011-10-05 Thread leigh8347
Well that is the problem. I cant seem to fine any info on how to do it. I can fine bit and bobs. But when tryed to put together nothing works. Any ideas? On Oct 5, 12:00 am, TreKing treking...@gmail.com wrote: On Tue, Oct 4, 2011 at 4:36 PM, leigh8347 leigh8...@aol.com wrote: any help would

[android-developers] filewriter

2011-10-04 Thread leigh8347
hello Is there anyone out there that can help me? i have been look for info on the fileWriter. i am trying to write a piece of code that will create a .txt file on the opening of a activity. Write input from 2 textboxes + date and time. (eg. input1,input2, 04/10/2011 09:37:36) then save on the

[android-developers] barcode scanner not launching

2011-09-30 Thread leigh8347
im having a little trouble with my app i want the barcode scanner to open on the click of a button(scan1), scan barcode, and return details to a edittext (barcode1). here is what i have so far.. package com.android.app; import android.app.Activity; import android.content.Intent; import

[android-developers] excel file in android

2011-09-27 Thread leigh8347
Is it possible to create a last view form an excel file? Or any ideas how it is done many thanks -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from

[android-developers] barcode scanner - displaying info

2011-09-26 Thread leigh8347
hello im having a bit of trouble displaying the results of a bar code scan in a EditText box please can you help here is what i have package com.android.app; import android.app.Activity; import android.content.Intent; import android.os.Bundle; import android.view.View; import

[android-developers] Re: maths in android

2011-09-20 Thread leigh8347
) and try to implement the formula. If you have any problem come back. On Sep 19, 2011 9:42 PM, leigh8347 leigh8...@aol.com wrote: I am currently working on an app that takes 4 user input values and puts them through the following equation and gives an answer. The only thing is that it wont

[android-developers] maths in android

2011-09-19 Thread leigh8347
I am currently working on an app that takes 4 user input values and puts them through the following equation and gives an answer. The only thing is that it wont work. the equation is as follows. answer = max { round ( (value1 / 10.9375)+(value2 / 9.2105)+(value3 / 3.889)-(value4 / 12.5) ) ,0 }