[android-beginners] Re: ADB problem

2010-01-30 Thread KitzyKitt
I use Windows 7 and eclipse and haven't had a problem with development
gand testing with the emulator.  However, I did try to hook up my
phone to try to test on it and haven't found the correct drivers.
That part workes great on my husband's XP machine :(

Hope it helps
-Kitzy

On Jan 29, 7:13 pm, Rc3375  wrote:
> Is there anyone who has had any problems using WIN7 and Eclipse?
> Everytime Eclipse starts this error always comes up: "UNABLE TO PARSE
> ADB VERSION".  If you try and run/debug the app from within WIN7,
>
> The connection to adb is down, and a severe error has occured.
> [2010-01-29 19:00:17 - app name] You must restart adb and Eclipse.
> [2010-01-29 19:00:17 - app name] Please ensure that adb is correctly
> located at 'C:\Android\tools\adb.exe' and can be executed.
>
> Adb is in the directory:'C:\Android\tools\adb.exe', and can be
> executed from the cmd line.  Tried quitting eclipse and WIN7 and
> restarted.  Ran adb kill-server, adb start-server...(daemon not
> running...starting it now.   daemon started successfully.
> start eclipse, and then that's when the error comes up.  This is
> driving us crazy.
>
> So, IF by chance there is anyone else using WIN7 professional version
> to develop on and has encountered this problem with ADB, please post
> it and let me know.
> Thanks you for your the time and effortRc3375

-- 
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


[android-beginners] Re: where to start with android

2010-01-29 Thread KitzyKitt
The best place to start would be with the Hello Andoid tutorials on
the Android website.  They give you small projects to code on as well
as how to setup your environment.

After that, you may want to look at the thread on great Android books
and choose one to read.

Happy Coding
-Kitzy

On Jan 28, 1:30 am, "jigish"  wrote:
> Hi guys
>
> I am new to android development, and also I m damn new to java technologies
>
> I am php web developer
>
> Just wanted to know from all u big brains, from where do I need to start..
>
> Adv java?
>
> Or j2me
>
> I have no idea how this stuff works
>
> Looking forward to ur replies
>
> Thanks in advanced  
>
> --
>
> With Regards,
>
> Jigish Thakar

-- 
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


[android-beginners] Re: How can I set max-height on GridView?

2010-01-29 Thread KitzyKitt
Are your GridView and Spinner element all withiin the same element,
such as a LinearLayout?

If so, try posting your layout file here.

-Kitzy

On Jan 27, 4:45 am, CoRex  wrote:
>   Hi all.
>
> I am new to android-development so please be patient with me. :)
>
> I am trying to understand the views and the layout-files. I have written
> some code and now it is about experience and understanding (i think).
>
> I am trying to set up a GridView and to make a special adapter for it.
> In that I have succedded. In every cell in the grid, I have a
> LinearLayout with an ImageView and a TextView added to it. It works.
>
> My problem is that the height of the GridView is to high. It grows up to
> the end of the screen. But I have a Spinner right under it and this
> disappears. My thought was then - how can I set a max-height on the
> GridView.
>
> Am I going the right way? I am still confused about the various
> view-types and how they react to each other.
>
> Best regards,
>
> CoRex

-- 
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


[android-beginners] Re: LogCat window seems to stop working

2010-01-29 Thread KitzyKitt
I have also noticed that hitting the clear log. Button in Eclipce will
wipe the log and not reconnect it. Restarting Eclipse will reconnect
the log.

You can try using the command line to show the log.

-Kitzy

On Jan 28, 11:20 pm, Kevin Duffey  wrote:
> Hey all,
>
> Has anyone noticed that their LogCat window seems to stop working after an
> app force closes.. or maybe for some other reason? I've been having issues
> getting debugging to work on my Ubuntu 9.04 64-bit system with this annoying
> QEMU channel closed problem. That aside, even when things do work, it seems
> that for some odd reason LogCat stops receiving..or displaying anything.
> Even when my app works, and I redeploy it, it seems to just stop showing any
> Log.v output. I did try filtering, setting to verbose, info, error, etc, and
> it only seems on the first run of the app when all works fine that there is
> any output.
>
> Is there some way to reconnect it? When I clear the log, it stays empty
> until I restart Eclipse..which is quite painful to have to do every time I
> want to deploy to watch log output.
>
> Thanks.

-- 
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


[android-beginners] Re: Notification helf

2010-01-29 Thread KitzyKitt
If you could be more persice about what you want to do, that would
help pinpoint a better solution.

You can try doing a toast...
Toast.makeToast("notification string", Toast.SHORT).show();
My syntax might be off, but look up Toast

Or are you wanting something in the notification bar at the top of the
screen?

Happy Coding
-Kitzy

On Jan 29, 3:49 am, Chirayu Dalwadi  wrote:
> I dont know how to use NotifyWithText. I need a code, that will help in
> implementing it
>
> On Fri, Jan 29, 2010 at 4:12 PM, Sean Hodges 
> wrote:
>
> > On Fri, Jan 29, 2010 at 10:38 AM, Chirayu Dalwadi
> >  wrote:
>
> > >  Help on notification of android is required. Please help me out
> > > --
> > > Warm Regards,
> > > Chirayu Dalwadi
>
> > What is the problem you're having?
>
> > --
> > You received this message because you are subscribed to the Google
> > Groups "Android Beginners" group.
>
> > NEW! Try asking and tagging your question on Stack Overflow at
> >http://stackoverflow.com/questions/tagged/android
>
> > To unsubscribe from this group, send email to
> > android-beginners+unsubscr...@googlegroups.com > i...@googlegroups.com>
> > For more options, visit this group at
> >http://groups.google.com/group/android-beginners?hl=en
>
> --
> Warm Regards,
> Chirayu Dalwadi
>
> Cell Number: +91-997-470-4341
> Email: chirayu.dalw...@gmail.com
> Profile:http://www.google.com/profiles/chirayu.dalwadi
>
> "Pain is temporary. Quitting lasts forever." -- Lance Armstrong

-- 
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


[android-beginners] Re: Unable to configure emulator network

2010-01-26 Thread KitzyKitt

I'm sorry I don't have the exact link, but google searching web
connection proxy emulator will retun mant suggestions.  One I did see
however, said to go into the setting on the emulator and change the
internet connection settings to those of your proxy.

Hope that helps.
-Kitzy

On Jan 26, 3:28 am, Pebble  wrote:
> Hi all!
>
> I'm using the Android SDK r3 under Windows to develop my application.
> The problem is that I'm not able to connect to the internet through
> the emulator. As I access the internet through a proxy server, I use
> the -http-proxy option when I launch the emulator.
>
> Any ideas? Perhaps, the emulator doesn't support my proxy server.
>
> Thanks in advance

-- 
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


[android-beginners] Re: root == jailbreak ?

2010-01-26 Thread KitzyKitt

Have you set your phone to debug mode? This is the first step to test
an app on your phone.  You may also need to set the permission to run
non-market software on your phone, also under settings.

Sincerly,
-Kitzy

On Jan 26, 7:35 pm, "Andrés G. Aragoneses"  wrote:
> Hi.
>
> I'm starting to read some tutorials about Android phone development, and
> I'm amazed how limited I seem to be in the first steps, as:
>
> 1) I'm getting a lot of "error: insufficient permissions for device"
> problems.
> 2) When running "adb root" as root (I'm using Linux) I get a message
> that says "adbd cannot run as root in production builds" and the program
> doesn't exit, so I open another terminal and connect with "adb shell"
> and it seems to work, but then I cannot do specific things that require
> "su" permissions.
>
> I'm reading more tutorials and it seems I need to root my phone. Is the
> operation of "rooting" the equivalent to "jailbreaking" on the iPhone
> world? I thought really that the openness of Android was much better
> than iPhone's, am I missing something? Shouldn't you be able to start
> developing on an iPhone very easily and quickly?
>
> I can't believe that Android devs are forced to go into the "unofficial"
> way of getting unofficial ROMs to root their phones if they want to test
> their creations in the phone rather than the virtual simulator.
>
> I would be very grateful if I received some clarifications.
>
> Thanks,
>
>         Andr s
>
> --

-- 
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


[android-beginners] Re: I still don't get XML's...!?

2010-01-25 Thread KitzyKitt
You may need to start the ViewAnimator in the java.  On both of your
xml elements add an id attribute (@+id/id_name) then in your java
class call findViewById(R.main.id_name).

Hope that helps,
-Kitzy

On Jan 24, 4:56 pm, Indicator Veritatis  wrote:
> Well, I can't claim to be the guru you are looking for, but I can say
> this much: I see the code to create the layout, supply it with In and
> Out animation, but not to display the animation itself.
>
> I would study the Google tutorial on "Tween Animation" (or the
> immediately following section on Frame Animation) 
> athttp://developer.android.com/guide/topics/graphics/2d-graphics.html#t...
> to figure out what went wrong.
>
> On Jan 23, 3:08 pm, Duey Oxburger  wrote:> Lads,
>
> > When my game fires up I'm trying to fade from my company logo to my
> > splash page... basically fade from one image to the other.  I'm
> > trying
> > to use ViewAnimator to do this, but I'm confused about how to
> > properly
> > hook this up to my main.xml file.  I've enclosed my main.xml file and
> > my .java file as well.  If some of you more experienced guru's have a
> > moment and wouldn't mind having a quick peak, it'd be much
> > appreciated!:
>
> > ---
> > main.xml:
>
> > 
> > http://schemas.android.com/apk/res/
> > android"
> >     android:orientation="vertical"
> >     android:layout_width="fill_parent"
> >     android:layout_height="fill_parent"
> >     >
>
> >  >         android:layout_width="wrap_content"
> >     android:layout_height="wrap_content"
> >         android:inAnimation="@drawable/ti_splash_logo"
> > />
> >  >         android:layout_width="wrap_content"
> >     android:layout_height="wrap_content"
> >         android:outAnimation="@drawable/ti_presents"
> > />
>
> > 
> > ---
>
> > .java:
>
> > package com.tybon.fe;
>
> > import android.app.Activity;
> > import android.content.Context;
> > import android.os.Bundle;
> > import android.view.View;
> > import android.widget.ViewAnimator;
> > import android.widget.FrameLayout;
> > import android.view.ViewGroup;
> > import android.widget.ViewSwitcher.ViewFactory ;
>
> > public class AMBUSH extends Activity {
> >     /** Called when the activity is first created. */
> >     @Override
> >     public void onCreate(Bundle savedInstanceState) {
> >         super.onCreate(savedInstanceState);
> >         setContentView(R.layout.main);
> >     }
>
> > }
>
> > --
>
> > thx,
>
> > D

-- 
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


[android-beginners] Re: how can I launch my own activity from Home screen?

2010-01-21 Thread KitzyKitt
Are you trying to run it through the Emulator? Or did you get it to
work on the emulator and now you are trying to get it to work on your
phone?

This extra information will be helpful in solving your issue.

Sincerly,
-Kitzy

On Jan 21, 6:19 am, satish bhoyar  wrote:
> hi all,
> I m trying to launch my own activity from Home Screen. I gave the button for
> the same to do it . I then build the code & wen i click the button i get
> error saying the application is not installed on the phone..
>
> please help.
>
> thanks
> sat
-- 
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


[android-beginners] Re: Eclipse Debugger

2010-01-17 Thread KitzyKitt
To get the debugger to work in Eclipse requires that the emulator is
up and running.  If it isn't up and running, eclipse will attempt to
start it.  The startup prosses on my machine can take upto 5 mins.
However, the debugger will not attach until the program starts running
in the emulator.

If however, you are wanting to step-through the android specific code,
and not you own code, I haven't worked with it enough to answer that,
yet.

Happy Coding
-KitzyKitt

On Jan 14, 7:53 am, Yuvi  wrote:
> Hi!
>
> I don't really have a solution for your problem...I can just tell you that
> I'm using Eclipse to develop Android apps, and the source line debugger is
> working fine ;) Are you trying just with the emulator or also with a real
> device?
>
> If you use a real device there might be drivers problems...instead, with the
> emulator you might try using different sdk versions. (although I don't know
> if it might help...).
>
> YuviOn Thu, Jan 14, 2010 at 12:57 PM, Lyndon  wrote:
> > Hi
>
> > Thanks for your help XCaf.
>
> > The problem was intermittent so I am not sure if the problem of
> > vanishing LogCat output is solved yet... I'll keep you posted.
>
> > Now for the real problem of the source line debugger.
>
> > I would say that it is impossible (at least very undesirable) to
> > develop any serious program without using the source line debugger.
>
> > Therefore, I am assuming that most people using Eclipse are using the
> > source line debugger. And most Android developers use Eclipse I
> > believe.
>
> > Since I can get the source line debugger working with stand-alone and
> > web programs in Eclipse without any problem, I assume that this is an
> > Android problem.
>
> > I've been using Eclipse for over 5 years so I am no Newbie.
>
> > Obviously there are technical issues involved, the Android program is
> > running on the emulator but surely it IS POSSIBLE to be able to step
> > line by line through Android code.
>
> > Please tell me it is otherwise I might as well just give up.
>
> > If Android is to beat or even catch up with the iPhone then tools like
> > the source line debugger MUST work.
>
> > And Android developers MUST help eachother.
>
> > Regards
>
> > Lyndon
>
> > On Jan 13, 8:17 pm, XCaffeinated  wrote:
> > > Hi Lyndon,
>
> > > Regarding logcat output, make sure the 'Limit console output' checkbox
> > > is unchecked. This can be found at Windows->Preferences->Run/Debug-
>
> > > >Console.
>
> > > XCaf
>
> > > On Jan 10, 1:03 pm, Lyndon  wrote:
>
> > > > Hi
>
> > > > I am an experienced Java web developer and have been using Eclipse for
> > > > about 5 years.
>
> > > > I recently thought I'd give Android a go and so I set up Galileo with
> > > > the Android ADK.
>
> > > > I can get the example apps and widgets working no problem but...
>
> > > > I cannot get the Eclipse debugger to work at all.
>
> > > > I have followed the instructions and let the 'Debug as...' process
> > > > start the AVD and I have set breakpoints but I can never get the
> > > > process to stop on a breakpoint.
>
> > > > It's very strange.
>
> > > > Also, I have Logcat working but quite often that stops showing
> > > > anything too.
>
> > > > Is the ADK buggy?- Hide quoted text -
>
> > > - Show quoted text -
>
> > --
> > You received this message because you are subscribed to the Google
> > Groups "Android Beginners" group.
>
> > NEW! Try asking and tagging your question on Stack Overflow at
> >http://stackoverflow.com/questions/tagged/android
>
> > To unsubscribe from this group, send email to
> > android-beginners+unsubscr...@googlegroups.com > i...@googlegroups.com>
> > For more options, visit this group at
> >http://groups.google.com/group/android-beginners?hl=en
-- 
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en