[android-beginners] list - need suggestion

2010-01-26 Thread android beginner
Hi, My Activity has list of items and on clicking any item, new window with different set of list has to appear and this can continue upto 4 or 5 level depths. I need your expert advice on how to achieve this. Can I have each sub-list to be of separate activity? If there are any online examples m

[android-beginners] android xml files

2009-11-05 Thread android beginner
hi i m new to android. my question is what is the use of xml files in android.like in j2me we wont have any xml files..simply we have source file...in andorid also we are having source files...then whats the use of xml files... 2)whats the difference between res/ and assets/ -- You r

[android-beginners] Re: How to begin with android

2009-10-28 Thread android beginner
dont worryinstall the sdkit took some 1 hour...after that install the things with eclipse plug in.then started to run it. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Beginners" group. To post t

[android-beginners] How to share data between the program that launches the thread and the thread itself?

2009-08-07 Thread Android Beginner
Sorry... must be a very easy question... otherwise I would't be a real Android Beginner... :-) How to share the variable pippo between the program that launches the thread and the thread itself? @Override public void onCreate() { super.onCreate(); int pippo = 5;

[android-beginners] Re: compile error: no rule to bu ild “out_sim/debug/host/linux-x86/product/sim/system/etc /permissions/com.google.android.gtalkservice.xml”need to t arget“vendor/google/apps/GTalkS

2009-06-18 Thread beginner
Sir : How can i build simulator. On Andorid 1.0, do those steps, it can build simulator successfully, and run emulator successfully. But I can not relate it to eclipse, because I want to debug it with eclipse IDE as debug on Microsoft Visual C++ Can u help me to do that ? Thx --~--~---

[android-beginners] Re: compile error: no rule to bu ild “out_sim/debug/host/linux-x86/product/sim/system/etc /permissions/com.google.android.gtalkservice.xml”need to t arget“vendor/google/apps/GTalkS

2009-06-18 Thread beginner
Sir: ". build/envsetup.sh" is used to set building environment, and "lunch 2 " is used to set building option and show as following log: TARGET_PRODUCT=sim TARGET_BUILD_VARIANT=eng TARGET_SIMULATOR=true TARGET_BUILD_TYPE=debug TARGET_ARCH=x86 HOST_ARCH

[android-beginners] compile error: no rule to build “out_sim/debug/host/linux-x86/product/sim/system/etc/per missions/com.google.android.gtalkservice.xml”need to tar get“vendor/google/apps/GTalkServi

2009-06-17 Thread beginner
SIR: I get android codes recently. compile it as following: > . build/envsetup.sh > lunch 2 > make by above steps, I want to build simulator for eclipse. But, compile error is occured : no rule to build “out_sim/debug/host/linux-x86/ product/sim/system/etc/permissions/ com.google.android.

[android-beginners] Re: How do I keep OptionsMenu open?

2009-03-28 Thread Beginner
That's a shame. Okay, thank you. On Mar 28, 12:43 pm, Nox wrote: > You can only tap to Menu and then the Menu-Items appear, > but if you click to a Menu-Item, it will close again!!! > > On 28 Mrz., 06:30, Romain Guy wrote: > > > You can't. > > > O

[android-beginners] How do I keep OptionsMenu open?

2009-03-27 Thread Beginner
Hi, I'd like to be able to click an item in the menu, but not have the menu close. I've tried to return both true and false in "onOptionsItemSelected" but that did nothing but upset me... I'm sure I'm missing something very obvious. Any ideas? --~--~-~--~~~---~--~---

[android-beginners] AndroidManifest.xml file missing!

2009-03-11 Thread beginner
HI: I built ADT and integrated it to eclipse, and build android source code in eclipse. It reports as following: Description ResourcePathLocationType AndroidManifest.xml file missing! android Unknown Android ADT Problem Can u help me to resolve it? THX -

[android-beginners] emulator can not be powered on

2009-02-27 Thread beginner
Hi: I do as following: >. /build/envsetup.sh >lunch 1 >make sdk >emulator -datadir imagedir the emulator can be started, but it can not be powered on. Can u help me to resolve it? THX --~--~-~--~~~---~--~~ You received this message because you are subscribed t

[android-beginners] Error when trying to output logcat to a a external file

2009-02-17 Thread Android Beginner
Hi, I am trying to capture logs when emulator starts and I am issuing the following command " ./adb logcat -f ~/androidlog" in order to output the logs to the external file androidlog in my home directory. However I gives an error that "couldn't open output file: No such file or directory". I do

[android-beginners] [Android] Video telephony.

2008-12-08 Thread Beginner
Hi. I have just joined this group. Nice to meet you. I have a question. Android doesn't support Video Telephony in release 1.0 Are there any reasons? If the operators(like VDF, TMO) want the manufacturer to support video telephony call, how can I do that? Should the manufacturer implement whole t

[android-beginners] Re: Setting Font Family (Georgia)

2008-11-29 Thread Beginner
Thanks a lot! On Nov 29, 1:30 pm, Mark Murphy <[EMAIL PROTECTED]> wrote: > Beginner wrote: > > Hi, > > > I'm trying to set the font family in a text view, to Georgia. Is there > > a way to do this? > > Step #1 is for you to find a version of Geor

[android-beginners] Setting Font Family (Georgia)

2008-11-28 Thread Beginner
Hi, I'm trying to set the font family in a text view, to Georgia. Is there a way to do this? Thanks! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Beginners" group. To post to this group, send email to and

[android-beginners] Wrap Text around Image

2008-11-03 Thread Beginner
Hi, I'm trying to get a pretty standard effect. An image (in an ImageView) on the the top-left corner of the screen, with text (in a TextView) that wraps around it. (So part of it is on the right of the image, and the rest is on the bottom. Could someone tell me how to achieve this? I guess I ca

[android-beginners] Wrap Text around Image

2008-11-03 Thread Beginner
Hi, I'm trying to wrap text around an Image. How do I accomplish that? I've got my picture in an ImageView, and my text in a TextView. How do I arrange these things so that the text wraps around the image (i.e. Image is on the top-left, the text flows around it)? Is there a particular parent Vi