[android-beginners] Re: Question Regarding the Background Menu

2009-08-08 Thread Liviu Ungureanu
You can make your own class which extends LinearLayout and inside of it you should use this.setBackgroundafter you do this you must add your layout to your activity. I'm not sure if its corect beaceause i don't know if an activity can support two layouts but it is a view so it should. Class MyL

[android-beginners] Re: Question Regarding the Background Menu

2009-08-08 Thread Hamed3d
Anyone?I really appreciate any helps. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Beginners" group. To post to this group, send email to android-beginners@googlegroups.com To unsubscribe from this group, s

[android-beginners] Re: Pictures and EXIF data

2009-08-08 Thread Mark Murphy
tinyang wrote: > Thanks Mark, looks good! Is it possible to incorporate purely > java/non-android libraries into an android app? Possible, yes. Not all libraries will compile, because they require APIs not available on Android. > Does the G1 not have a built-in option for geotagging a picture t

[android-beginners] Re: Pictures and EXIF data

2009-08-08 Thread tinyang
Thanks Mark, looks good! Is it possible to incorporate purely java/non-android libraries into an android app? Does the G1 not have a built-in option for geotagging a picture taken with the camera already? Also, Are there any code examples one might recommend for taking a picture with your app/

[android-beginners] Re: Pictures and EXIF data

2009-08-08 Thread Mark Murphy
tinyang wrote: > I was wondering what needs to be done if you would like a picture taken > by your G1 phone to be geotagged? I am designing an app that will allow > you to take a picture with the camera and geotag it. Are there any code > examples one might recommend for taking a picture with yo

[android-beginners] Pictures and EXIF data

2009-08-08 Thread tinyang
I was wondering what needs to be done if you would like a picture taken by your G1 phone to be geotagged? I am designing an app that will allow you to take a picture with the camera and geotag it. Are there any code examples one might recommend for taking a picture with your app (calling the came

[android-beginners] setLayoutParams on a TextView prevents TextView from being displayed

2009-08-08 Thread Stu
I'm populating a TableLayout with TableRows containing a TextView each. I want the TextViews to FILL_PARENT width and WRAP_CONTENT on the height. If I don't specify any LayoutParams for the TextView then it shows up in the emulator all on one line going off the screen on the right. If I specify

[android-beginners] Simulate a tap

2009-08-08 Thread Liviu Ungureanu
Is posible to simulate a tap over an edittext?thank you --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Beginners" group. To post to this group, send email to android-beginners@googlegroups.com To unsubscribe

[android-beginners] Re: examples for Saurabh sinha, seema sharma, jyoti gupta

2009-08-08 Thread Abhiram Alamuru
Do we have mods for this group? Is it possible to boot someone out for spamming? On Fri, Aug 7, 2009 at 1:15 PM, Julie wrote: > > Saurabh Sinha - is that you? You really need to stop spamming the channel > (and the smart regulars!!) begging and demanding for someone to do YOUR work > for you -

[android-beginners] plz send me example of startActivityForResult in android

2009-08-08 Thread saurabh sinha
plz send me example of startActivityForResult in android --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Beginners" group. To post to this group, send email to android-beginners@googlegroups.com To unsubscrib

[android-beginners]

2009-08-08 Thread saurabh sinha
plz send me example of startActivityForResult in android --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Beginners" group. To post to this group, send email to android-beginners@googlegroups.com To unsubscrib

[android-beginners] Re: Emulator memory

2009-08-08 Thread David Turner
no :-) though by default, you get about 96 MB of emulated RAM, which should correspond to the Dream hardware. As for speed, the emulator's speed totally depends on your host machine's own CPU power, cache size and system bus speed, at the very least, all of these which are possibly unrelated to a

[android-beginners] Re: Developer hardware

2009-08-08 Thread Liviu Ungureanu
I have one htc hero..it is very fast when you will want to test your app on it..you must wait 10seconds till your app will runing..you will like the interface..it is inovative and really nice..but the processor is a bit slow when you have a lot of apps installed.after you will install driver,eclips

[android-beginners] Re: Developer hardware

2009-08-08 Thread Steve Hall
I want to do this as well as a replacement for the Google Developer Phone seems "too long acoming". Hurry up Google and make your intentions clear! Steve --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Beginn

[android-beginners] Re: How to access Phone Book

2009-08-08 Thread Desu Vinod Kumar
HI It vl be helpful for u // Get data and create an adapter for it String dataPath = getIntent().getData().toString(); final Uri data = Uri.parse(dataPath + "people/"); final Cursor c = managedQuery(data, null, null, null, null); final String[] from = new String[]

[android-beginners] Re: Help Needed with Opening File

2009-08-08 Thread Steve Hall
I eventually solved the problem with help of following dicussion http://www.anddev.org/viewtopic.php?p=25297#25297 my solution is:- public void CopyfiletoMemory(String filename){ FileOutputStream fos; DataOutputStream out; try{ FileInputStream in = new F

[android-beginners] Re: How to access Phone Book

2009-08-08 Thread Ajaz Ahmed
Thanks. On Fri, Aug 7, 2009 at 12:20 AM, Kacper86 wrote: > > Hi, > > You have to read this article: > http://developer.android.com/guide/topics/providers/content-providers.html > > If you have any questions after the reading let us now :) > > On 5 Sie, 21:13, eNtriZe wrote: > > Hi, > > > > Iam