[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@google

[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 c

[android-developers] Re: date and time

2011-11-02 Thread leigh8347
e value you assigned to it earlier > (in onCreate?), no matter how many times you click the button. > > Oh, and rather than "getBaseContext()", use " class>.class" or "v.getContext()". > > -- Kostya > > 02.11.2011 23:39, leigh8347 пишет: > > >

[android-developers] Re: date and time

2011-11-02 Thread leigh8347
On Nov 2, 7:22 pm, Kostya Vasilyev wrote: > The date / time conversion variations you 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 пишет: > >

[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 wrote: > try add follow line before format to string : > date.setTime(System.currentTimeMillis()); > > r^ > > On 2 November 2011 10:44, leigh8347 wrote: > > > > > >

[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 wrote: > leigh8347 wrote: > > > im [sic] making an app that writes to a .txt file and at the end of each > > "

[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 java.uti

[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 re

[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 wrote: > On Tue, Oct 4, 2011 at 4:36 PM, leigh8347 wrote: > > any help would be great > > Help

[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. ,, 04/10/2011 09:37:36) then save on the click of a b

[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 andr

[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 t

[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.widget.But

[android-developers] Re: maths in android

2011-09-20 Thread leigh8347
nd try to implement the formula. If you have any problem > come back. > On Sep 19, 2011 9:42 PM, "leigh8347" 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

[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 } s