[android-beginners] How to fix: focusable EditText prevents ScrollView from scrolling

2010-07-03 Thread Mike
to setFocusableInTouchMode to false, but then you can can't click on it (which is where I was going to re-enable it) Thanks! --MIke -- 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

[android-beginners] Why does TextView.setText cause the enclosing ScrollView to scroll?

2010-06-25 Thread Mike
Hello! I'm new to this group and (full disclosure) cross posting this question here from StackOverflow, just because I'm not 100% sure how my question will be found by other SO users (I made sure to read the suggested How To Ask Questions The Smart Way, and made sure to search SO for a clear

[android-beginners] Problems with alarmManager.setRepeating() not triggering subsequent alarms

2010-05-28 Thread Mike Wolfson
I am trying to set an alarm to occur every morning at 6:00am. The first alarm is being triggerred, but the subsequent alarms are not. Anybody have any idea what I am doing wrong? I am using a service as my PendingIntent, which triggers a notification. Here is a code snippet: private void

[android-beginners] Problem getting a linearlayout to be scrollable

2010-05-25 Thread Mike Topper
Hey, I'm having problems with a layout I'm currently working with. Everything looks fine with it in portrait mode, but when i switch to landscape, the linearlayout that encompasses the textviews and edittexts go below the end of the screen and you can't see/edit them. I tried wrapping that

[android-beginners] Re: Problem getting a linearlayout to be scrollable

2010-05-25 Thread Mike Topper
at 10:32 AM, Mike Topper top...@gmail.com wrote: Hey, I'm having problems with a layout I'm currently working with. Everything looks fine with it in portrait mode, but when i switch to landscape, the linearlayout that encompasses the textviews and edittexts go below the end of the screen

[android-beginners] Re: Android Emulator don't show up (Linux Fedora 12 x86_64)

2010-04-17 Thread Mike Jones
Sorry about the reporting, reading this on the train going to work and my fat fingers hit it by mistake :/ sorry about that On Apr 17, 3:03 am, Michael Cheselka chese...@gmail.com wrote: Hello, I just installed android 2.1 on Fedora 12 x86_64 and it's working for me. 1st step, I followed

[android-beginners] how can i write a Broadcast Receiver that will be invoked when user clicks on any application icon.

2010-03-18 Thread mike
hai every one, i have a query. how can i write a Broadcast Receiver that will be invoked when user clicks on any application icon. i tried by writing receiver android:name = myreceiver intent-filter action android:name = android.intent.action.MAIN /intent-filter /receiver but it is not called.

[android-beginners] Re: Snake Demo Question

2010-03-10 Thread Mike
in the world... Those who know binary and those who don't. -- On Fri, Feb 26, 2010 at 1:40 PM, Mike baronbo...@gmail.com wrote: My first post here...hello! Can anyone tell me what is to prevent the Snake demo from putting 2

[android-beginners] adb won't start

2010-03-02 Thread Mike
Running vista when I execute adb nodaemon server with ADB_TRACE=ALL it shows that adb can't bind to port 5037. Any suggestions what the problem is or where to investigate would be appreciated. -- You received this message because you are subscribed to the Google Groups Android Beginners group.

[android-beginners] Snake Demo Question

2010-03-02 Thread Mike
My first post here...hello! Can anyone tell me what is to prevent the Snake demo from putting 2 apples in the same location? When the game starts, it populates 2 apples. Here is the relevant method; private void addRandomApple() { Coordinate newCoord = null; boolean found =

[android-beginners] Re: Default Map Not Showing Up During Tutorial

2010-02-23 Thread Mike
for the help and hopefully this helps others as well. Mike On Feb 22, 7:10 pm, Imran Tanveer imrantanvee...@gmail.com wrote: Hello Mark, I am stuck in prob similar to this  i-e i am making basic Map app that jst displays map.Only grid appears when i run my app and no map...:( I posted

[android-beginners] Default Map Not Showing Up During Tutorial

2010-02-22 Thread Mike
Hi all, not sure if this has been talked about somewhere, but I did some pretty extensive searching and couldn't find it. I've been doing the tutorial at http://developer.android.com/resources/tutorials/views/hello-mapview.html I am able to complete it all the way through having the little

[android-beginners] Re: Default Map Not Showing Up During Tutorial

2010-02-22 Thread Mike
you mentioned should be taken care of, but did I type something incorrectly? Thanks for the quick replies, I really appreciate the help. On Feb 22, 6:17 pm, Mark Murphy mmur...@commonsware.com wrote: Mike wrote: Hi all, not sure if this has been talked about somewhere, but I did some pretty

[android-beginners] Re: Default Map Not Showing Up During Tutorial

2010-02-22 Thread Mike
OK, thanks for the info. Yah, I wasn't sure about the security of the apikey so I threw those asterisks in there. I will take a look at your project and let you know what I find. Thanks again for the help. On Feb 22, 6:39 pm, Mark Murphy mmur...@commonsware.com wrote: Mike wrote: It looks

[android-beginners] Re: How to style text in string array?

2010-02-19 Thread Mike
Hi Chris, If you want to do something more in line with HTML formatting, then use a WebView. You can either load the html directly into the webview, or load it from an html file packaged with your application. The html file should go in the assets folder. Hope this helps. - Mike On Feb 15, 6

[android-beginners] Re: How to draw Text in a rectangle after onTouch

2010-02-19 Thread Mike
. Regards, - Mike On Feb 9, 2:22 am, mithun rajn.mit...@gmail.com wrote: Below is part of the code of onTouch                         if(event.getAction() == MotionEvent.ACTION_DOWN){                                 for(int i = 0; i 2; i++){                                         if(tiles[i

[android-beginners] Re: Scrollbars Problem

2010-02-19 Thread Mike
I assume you want some part of a view in one of your layouts to scroll? Place that view inside a ScrollView. - Mike On Feb 8, 11:02 pm, Chirayu Dalwadi chirayu.dalw...@gmail.com wrote: hii folks, How to apply horizontal scroll bars? -- Warm Regards, Chirayu Dalwadi Cell Number: +91-997

[android-beginners] Why is Force Close happening?

2010-02-04 Thread Mike Safron
I see many posts about this problem and recently I have been getting it from several apps. Could it be because I upgraded the OS version? -- You received this message because you are subscribed to the Google Groups Android Beginners group. NEW! Try asking and tagging your question on Stack

[android-beginners] Re: NullPoinerException in XML

2010-02-03 Thread Mike M
Can you provide the LogCat output? Then we can see where the NullPointerException is coming from... As far as scroll bars, you can wrap the root element in the tab (which would be the TableLayout in the above example) with a ScrollView. On Feb 3, 10:39 am, Chirayu Dalwadi

[android-beginners] How to add a toggle list to a view

2010-01-13 Thread Mike M
Hey all, I've seen some of the demos to create a list that you can add items to (toggle list). There's an example in the API Demos (http:// tinyurl.com/yfscgl9). This creates an activity that is nothing but a toggle list (it extends the ListActivity) I want to add a list that I can add items

Re: [android-beginners] Re: New Android Project in Eclipse - Build Target Section Not Selectable

2010-01-04 Thread Mike Robinson
I had similar problems. I believe that if you select the project, then right click, choosing Run As-Run Configuration. Then select the Target tab and make sue that the proper Android Virtual Device is selected. Then click Run. I admit that this seems that it should not be necessary since the

[android-beginners] Is there an app for this?

2010-01-04 Thread Mike G.
Pardon me if I'm in the wrong group, please. If there is a more appropriate group, I'd be happy to move along. I'm considering an Android phone IF I know a particular app exists I want my tasks displayed on my home screen. That's it. Simple I now use an iPhone and I can't do this. The

[android-beginners] Re: Splitting the homepage screen to two screens

2009-12-24 Thread Mike!
Wouldn't you want to just build some widgets (or find some existing ones) to do what you want and use the existing homepage app? Mike! On Dec 24, 8:49 am, Justin Anderson janderson@gmail.com wrote: You would have to write your own homepage app On Dec 22, 2009 3:39 AM, Eyal eyalm

[android-beginners] Re: MD5 Hash is wrong

2009-12-10 Thread Mike M
different hash generation sites? On Dec 6, 2009 11:00 PM, Mike M mike.mos...@gmail.com wrote: Hey guys, I'm trying to get an MD5 Hash in my Android app, but it's not giving the correct hash. For example, in my app I have this: MD5_Hash hash = new MD5_Hash

[android-beginners] how to open another application with Intent

2009-12-10 Thread Mike M
I am wondering if there is a way to open another Application (not Activity) with intents. I want users to be able to look at the pictures on their device, so when they push a button, it will open the GalleryPicker that comes on Android devices. I've debugged my Droid when I am on the Home screen

[android-beginners] Re: how to open another application with Intent

2009-12-10 Thread Mike M
Samuh, thanks for the link. I was able to get what I wanted with the following code: Intent i = new Intent(); i.setAction(Intent.ACTION_VIEW); i.setComponent(new ComponentName(com.android.gallery, com.android.camera.ImageGallery));

[android-beginners] MD5 Hash is wrong

2009-12-06 Thread Mike M
Hey guys, I'm trying to get an MD5 Hash in my Android app, but it's not giving the correct hash. For example, in my app I have this: MD5_Hash hash = new MD5_Hash(); myHash = hash.Hash(What I want to Hash); I get this from the above code: 306a801b82d299c8e965c2bf1d7fc18 I go to a website

[android-beginners] Dynamically added ImageView pacement

2009-12-02 Thread Mike M
Hey all, I'm trying to add ImageView's dynamically, and I want them to be placed next to each other. Everything I try just puts them on top of each other: for (int i=0; i num_photos; i++) { ImageView iv = new ImageView(this); iv.setLayoutParams(new

[android-beginners] Noob Question

2009-11-29 Thread Mike Clark
I am following the directions to create the Hello, Android application shown in the tutorial (http://developer.android.com/guide/tutorials/ hello-world.html), but instead of the expected Hello, Android text appearing, all I see are, first of all, the letters A N D R O I D onscreen for a few

[android-beginners] Help getting Hello world to go

2009-11-18 Thread Mike Bogues
Hello all, I just downloaded the SDK for Android yesterday and I'm looking forward in being part of the community. The bottom line is I can't choose a Build target in the Eclipse(Galileo) wizard. Menu item File\new\Project... to the wizard were I select Android\Android Project next but no build

[android-beginners] Help getting Hello world to go

2009-11-18 Thread Mike Bogues
Hello all, I just downloaded the SDK for Android yesterday and I'm looking forward in being part of the community. The bottom line is I can't choose a Build target in the Eclipse(Galileo) wizard. Menu item File\new\Project... to the wizard were I select Android\Android Project next but no build

[android-beginners] Problem transitioning to TabActivity

2009-11-05 Thread Mike
Hi all, I am trying to start activity to a TabActivity intent and I keep getting the same error. I have tried to make this as simplistic as possible code wise...but no luck. My code is below the error message. java.lang.RuntimeException: Unable to start activity ComponentInfo

[android-beginners] Location Update

2009-10-26 Thread Mike
Hello, I am having some issue regarding requestLocationUpdates(). Aim: To get location updates every 5 mins irrespective of the individual having moved or not. My function: Time = 30 , Distance = 0; Observation: I do get updates every 5 mins but, - If I am on the move, I get more than 1

[android-beginners] Re: Unsubscribe

2009-10-16 Thread Mussard, Mike J
If the signature of the group text said the correct e-mail it might work better for people. Note the second – should be a + sign. Mike To unsubscribe from this group, send email to android-beginners+unsubscr...@googlegroups.com From: android-beginners@googlegroups.com [mailto:android

[android-beginners] Re: Ant build error : package R does not exist

2009-08-26 Thread Mike Wolfson
Delete the R.class, then rebuild. On Aug 25, 10:36 pm, sagar sagar.india...@gmail.com wrote: Hello everyone, I am trying to build my project using ant. I first generate build.xml file using android update project command. Now i want to run it using ant. When i type ant debug commnad it

[android-beginners] Email File using content provider

2009-08-24 Thread Mike
I'm trying to email out a file using intents and content providers. I've hit a road block with the below code. It crashes gmail. I think it may have something to do the attachment having a size of 0 according to the gmail app. Yea I now I can save it to the sd card, but I'd like to do it

[android-beginners] Re: Struggling with google maps

2009-08-11 Thread Mike Wolfson
NoClassDef always points me to think about Classpath, or inconsistencies between packages on your system (perhaps you are running a different version of Android out of eclipse, and linking to a different library package on your system). Maybe not that helpful, but something I was thinking about

[android-beginners] Defaulting to numeric keyboard on EditText without forcing numeric input.

2009-08-06 Thread Mike Olson
, but still allow me to enter letters if I press the ABC button? If I say add android:number=integer it won't allow non- numeric inputs. Thanks, Mike --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Beginners group

[android-beginners] Re: How do i run the emulator?

2009-07-26 Thread Mike Wolfson
At a minimum, you will need to download the SDK, and install it on your system. (Which includes making sure everything is properly configured in your path) Then, you can issue the following command on at any command prompt: emulator -avd avd name You should have an avd named 'G1', I think it

[android-beginners] Re: How do i run the emulator?

2009-07-26 Thread Mike Wolfson
Jinx you owe me a coke ;-) On Jul 26, 6:37 pm, greg sep...@eduneer.com wrote: The SDK has a tools directory that includes the emulator application, which you can start with the following command line:    emulator -avd your_avd_name as described at    

[android-beginners] Re: Developing on a G2.

2009-07-26 Thread Mike Wolfson
I did a little development on the G2 Lack of a physical keyboard was a problem for some of the tools (like putting the phone in Recovery Mode, etc). Otherwise, for the most part there weren't any significant roadblocks (the SDK works the same on both the G1 and the G2 - ie. the APIs are all the

[android-beginners] Problem: Holding the Home button, and powering on the device doesn't send me into recovery mode.

2009-07-24 Thread Mike Wolfson
Trying to apply a manual update to my phone, and can't get the phone to go into recovery mode. I have tried all sorts of permutations of holding down the power and home buttons on startup (holding them both, holding home, and releasing power, pressing power, then holding both, etc). I have been

[android-beginners] Re: book questions..

2009-07-21 Thread Mike Lissner
Being a safari subscriber, I don't have any android books. Just FYI. On Jul 20, 8:52 pm, janardhan vuruvakilina...@gmail.com wrote: Hi this is janardhan, Can u send hello android book for me also. I am waiting for u reply. Thanks Regards janardhan On Jul 21, 3:34 am, Mark Murphy

[android-beginners] Re: G2 vs G1

2009-07-16 Thread Mike Wolfson
The lack of a physical keyboard was a problem for me on the Magic (some of my applications - like Teminal wouldn't work). There are workarounds, but require some advanced techniques, or downloading alternative applications. The lack of a physical keyboard also made flashing a new ROM more

[android-beginners] Re: How to run the latest version of the OS

2009-07-16 Thread Mike Lissner
OK, thanks. I've reposted this message here: http://groups.google.com/group/android-framework/browse_thread/thread/4b66d07bec8aca6a M On Jul 16, 3:15 pm, Mark Murphy mmur...@commonsware.com wrote: mjlissner wrote: Hi, I'm trying to do some work on the location framework, but I can't figure

[android-beginners] Re: creating an avd

2009-07-01 Thread Mike Wolfson
Eclipse lives entirely in the folder you initially installed it to (meaning the folder you unzipped the download to - in my case it is C: \Eclipse). Your eclipse projects live in a different directory (this is unique to each machine, so there would be no way to tell what it might be on your own

[android-beginners] Can I get Root access on my Google IO Magic?

2009-06-26 Thread Mike Wolfson
I know the Magic phone I got at IO is unlocked, but it doesn't have root enabled out of the box (I tried to install an app that required Root, that wouldn't work). Is there a specific way I can enable root on the phone (ie. a setting some where)? Is this possible on this phone? I know I can

[android-beginners] Re: Problem when trying to run the emulator

2009-06-25 Thread Mike Wolfson
Just run the emulator with the G1 avd (which I think is shipped with the SDK), you shouldn't need to create your own (unless you have a specific need for something special). emulator -avd g1 On Jun 24, 4:36 am, ники тончев ton...@gmail.com wrote: when i run the emulator either from the cmd

[android-beginners] Re: adb: command not found

2009-06-22 Thread Mike Wolfson
you should issue the command as: ./adb (the ./ tells UNIX that you are looking for the file in the current dir). Double check your path, and ensure that you sourced the file in the window you are trying to run (either open a new terminal window, or type source ~/.bash_profile in the window you

[android-beginners] Re: adb: command not found

2009-06-22 Thread Mike Wolfson
'echo $PATH' will output the path that is set in the window you are running. This will allow you to verify that the directory is properly set. On Jun 19, 10:37 am, droiddroid dmo...@gmail.com wrote: This is more of a unix question.  In my terminal, I cd to my tools directory, adb is right

[android-beginners] Re: Issues with Hello World

2009-06-10 Thread Mike Garcia
Have any of you tried opening the applications pane to see if the application Hello, Android is listed? If it is, try pressing it with the mouse and see if the app starts. If it isn't there, then with the emulator successfully running and at the home screen, relaunch the application. Once in a

[android-beginners] Re: fBook on G2

2009-06-10 Thread Mike Garcia
it removed. On Mon, Jun 8, 2009 at 5:57 PM, Mike Wolfson mwolf...@gmail.com wrote: Disconnect, why be so harsh? Debasish, I assume you are asking about the HTC Magic (or Ion it is also called). I can't find the 'fbook' app at all in the TMobile Marketplace (in the US). No big loss, I

[android-beginners] Re: Timer

2009-06-10 Thread Mike Garcia
I use Runners and Handlers instead of Timer although each has their benefits and drawbacks. On Mon, Jun 8, 2009 at 11:51 PM, ian.fawcett.hun...@googlemail.com ian.fawcett.hun...@googlemail.com wrote: java.util.Timer see http://developer.android.com/reference/java/util/Timer.html Use

[android-beginners] Re: Beginner Help needed

2009-06-10 Thread Mike Garcia
What operating system (Linux/Windows)? What version of Eclipse? Any console output including a verbose error would also be helpful. On Mon, Jun 8, 2009 at 6:22 PM, Robert Meza robertm...@gmail.com wrote: I am very new to the Android SDK, I cannot get the emulator to run, I have looked to

[android-beginners] Re: Hello World not displays in simulator

2009-06-10 Thread Mike Garcia
Check the default text of the text view inside the main.xml. In 1.5, this is set there and not in the string xml file. On Tuesday, June 9, 2009, devycn...@googlemail.com devycn...@googlemail.com wrote: Hello All, I have added or followed all steps as it is given in the tutorial guide.

[android-beginners] Re: To Add ScrollWindow in TabHost

2009-06-10 Thread Mike Garcia
The easiest way using latest tools is the xml gui. To edit the properties use the properties tab next to the console output window. On Wednesday, June 10, 2009, vikneesh vikneesh...@gmail.com wrote: Hi , I am new to android. i Need to know the procedure how to add a ScrollWindow to a

[android-beginners] Re: fBook on G2

2009-06-08 Thread Mike Wolfson
Disconnect, why be so harsh? Debasish, I assume you are asking about the HTC Magic (or Ion it is also called). I can't find the 'fbook' app at all in the TMobile Marketplace (in the US). No big loss, I didn't find it reliable when I installed it on my G1. Bottom line, looks like the app is

[android-beginners] Re: Force Close on startActivityForResult since 1.5 update on phones but not emulator

2009-06-04 Thread Mike
launches the activity that was last on the top of the stack. Hope this helps, - Mike --~--~-~--~~~---~--~~ 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

[android-beginners] Re: Is there any official way to upgrade Android OS?

2009-06-02 Thread Mike Wolfson
To be clear, I don't have a dog in this race (I don't work for TMobile, or any other company related to this). Here is a link to the TOS, with specific language restricting modifying devices: (http://www.t-mobile.com/Templates/Popup.aspx? PAsset=Ftr_Ftr_TermsAndConditionsprint=true) 16. *

[android-beginners] Re:

2009-06-01 Thread Mike Yang
To unsubscribe from this group, send email to android-beginners-unsubscr...@googlegroups.com On Sat, May 30, 2009 at 10:33 PM, SONIH MANSOUR bevno...@verizon.net wrote: i want to unsubscribe from every google android group i want no emails from you guys or alerts or any updates!! Thank

[android-beginners] Re: Is there any official way to upgrade Android OS?

2009-06-01 Thread Mike Wolfson
Bottom line, if you buy a carrier supported phone (I am using my experience with TMobile for this discussion, not sure about Vodaphone), you will not be able to upgrade the phone manually on a regular basis. Most of the upgrades currently have come over the air (OTA). For the cupcake release,

[android-beginners] Re: HTC G1 vs G2

2009-06-01 Thread Mike Wolfson
To clear things up, the phone given away at Google IO was the HTC Magic (also named the Ion; and when someone referred to it as the G2 at the fireside chat, the Android guys shivered, and clearly didn't like that moniker for it). That phone is fully unlocked, and rooted. So, it is a true dev

[android-beginners] Re: How can I install my app to Dev G1 phone?

2009-06-01 Thread Mike Wolfson
Looks like you need to upgrade the software on the phone. You developed your app using 1.5, and the software on the phone is 1.0. (Read the stack). Upgrade your device. On May 28, 1:59 pm, zirubak ziru...@gmail.com wrote: hi. I have Android Dev G1 phone. I try to install my app to phone. But

[android-beginners] Re: Is there any official way to upgrade Android OS?

2009-06-01 Thread Mike Wolfson
device. 2009/6/1 Mike Wolfson mwolf...@gmail.com: Bottom line, if you buy a carrier supported phone (I am using my experience with TMobile for this discussion, not sure about Vodaphone), you will not be able to upgrade the phone manually on a regular basis. Most of the upgrades

[android-beginners] Re: I'm not able to receive more than two GPS position. The application hangs.

2009-05-19 Thread Mike
I suspect you need to update the Toast (which is a UI widget) on the UI thread. You do this by creating a Handler and posting a Runnable with the code you are using to update the Toast. If you don't, you run the risk of deadlock. - Mike On May 7, 2:52 pm, Patricio Echague patric...@gmail.com

[android-beginners] Re: Today New Posting at funfashion4u

2009-04-23 Thread Mike Wolfson
STOP!! This has nothing to do with Android. Please stop posting to this group! (Admin's can you block this poster please?) On Apr 23, 1:47 am, tariq hassan tariqfwo2...@gmail.com wrote:    - Beavis http://funfashion4u.blogspot.com/2009/04/beavis.html    -

[android-beginners] Re: Today New Posting at funfashion4u

2009-04-23 Thread Mike Wolfson
On Thu, Apr 23, 2009 at 8:32 AM, Mike Wolfson mwolf...@gmail.com wrote: STOP!! This has nothing to do with Android.  Please stop posting to this group!  (Admin's can you block this poster please?) On Apr 23, 1:47 am, tariq hassan tariqfwo2...@gmail.com wrote

[android-beginners] Re: Installing the ADT plugin for Eclipse with only the command line.

2009-04-04 Thread Mike Garcia
and although I have not done this for a custom Eclipse build, I have done it for other applications. I know you can get the necessary info on google with a little effort. Mike On Tue, Mar 31, 2009 at 6:59 PM, Ken ken.grib...@gmail.com wrote: Greetings! I want to install the ADT plugin on over

[android-beginners] Re: Having Problems with Layout

2009-04-01 Thread Mike Wolfson
You could: - Use a different layout (grid perhaps), which would allow you to define your layout more directly - set specific width values (instead of fill_parent) which would force the layout you want. Not sure what might be happenning with this layout (not able to mess with it at work), but

[android-beginners] Re: SimpleCursorAdapter Use

2009-03-19 Thread Mike Garcia
); } -- Mike Garcia There is no coincidence! --~--~-~--~~~---~--~~ 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

[android-beginners] Re: Seems questioins here are rarely answered? Better place to post them?

2009-03-18 Thread Mike Garcia
The biggest reason is that most of us are still learning. A good deal of us post if we have experienced similar issues ourselves. If a response goes unanswered here, just post it on the developers list and you are likely to get the response you need to point you in the right direction On Mar 18,

[android-beginners] Re: Test on real phone

2009-03-17 Thread Mike Garcia
Glad we could point you in the right direction. On Tue, Mar 17, 2009 at 9:01 AM, BeWillDir wmmichael...@gmail.com wrote: Bingo. That's what I was missing. adb finds it now. Not using eclipse. Thank you very much. On Mar 16, 8:50 pm, Mike Garcia sddm...@gmail.com wrote: 1. Login

[android-beginners] Re: Android beginners

2009-03-16 Thread Mike Garcia
help me please? Regards Michael J McLean -- Mike Garcia There is no coincidence! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Beginners group. To post to this group, send email to android

[android-beginners] Re: Test on real phone

2009-03-16 Thread Mike Garcia
on my G1. I think I have to use the -d option of adb. I plug in the USB, and see the device recognized as sdg in log/messages. I don't mount a filesystem, but no incantation seems to move the .apk to my phone. I'm missing some points here. Clues, please? -- Mike Garcia

[android-beginners] Re: Failed to reopen debug port for Selected Client to: 8700 error

2009-03-16 Thread Mike Garcia
thanks. -- Mike Garcia There is no coincidence! --~--~-~--~~~---~--~~ 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

[android-beginners] Re: New to SDK. What to do?

2009-03-15 Thread Mike Garcia
command line typing to get it all working. Not too bad I don't thinkmaybe a total of 5-30 minutes depending on skill level. Mike On Sat, Mar 14, 2009 at 10:35 AM, australopitecus ricardofala...@gmail.comwrote: Hello, folks! A friend of mine came to me with a problem he could not solve: he

[android-beginners] Re: Linux Eclipse Error

2009-03-10 Thread Mike Garcia
I managed to get it working. The problem just turned out being that my cache wasn't clearing in eclipse (fedora 10 distro) which I am filing with fedora to get it fixed. Thanks though. On Mar 10, 2009 5:09 PM, Xavier Ducrohet x...@android.com wrote: Are you running a 64bit installation? If so,

[android-beginners] Re: Android ecplise plugin site is unreachable

2009-02-18 Thread Mike Tamis
im not sure im have the same problems i hope its up soon!!! On 2/18/09, Leeall lixiaos...@gmail.com wrote: eclipse plugin site:https://dl-ssl.google.com/android/eclipse/ is unreachable now. Any guy know why? Thanks --~--~-~--~~~---~--~~ You received this

[android-beginners] Re: Problems with R.java in Eclipse 3.4

2009-01-19 Thread Mike Wolfson
Not sure but sounds like you need to add android.jar to the project classpath (somewhere in Project/properties menu of eclipse). It's always the classpath. Good Luck. On Jan 18, 8:26 pm, djupp manuelkaepp...@swissworld.com wrote: Hello all I'm sorry, but I couldn't find anything searching

[android-beginners] Google please give us 'su -' was:Re: Am I root?

2009-01-19 Thread Mike Wolfson
I can certainly appreciate that the dev phone ships with root access available (and would love my retail one to have that capability). But I can certainly understand why Google would ship with it disabled by default. Let the people, who maybe shouldn't be root in the first place save themselves

[android-beginners] Re: Google please give us 'su -' was:Re: Am I root?

2009-01-19 Thread Mike Wolfson
What I really meant was 'sudo'. Cheers. On Jan 19, 4:02 pm, Mike Wolfson mwolf...@gmail.com wrote: I can certainly appreciate that the dev phone ships with root access available (and would love my retail one to have that capability). But I can certainly understand why Google would ship

[android-beginners] Re: why doesn't this work? Simple question - I hope...

2008-12-30 Thread Mike
ArrayListString(); than this: ArrayListString myStrings = new ArrayListString(); If you don't believe me, it's probably because you haven't had to support your own code. - Mike On Dec 27, 4:53 am, madcoder paperga...@gmail.com wrote: Ah, I see.  Now it makes sense. So why even bother

[android-beginners] Re: sluggishness of G1 android

2008-12-29 Thread Mike Wolfson
I was having the same problem. This is likely a memory leak caused by one of the applications you are running (which you could try to figure out using a variety of methods). Simplest way to fix this is to reboot the computer (ie. G1). Easiest way to power-cycle the phone is to hold down the

[android-beginners] Handling Symbol Keys using onKeyDown

2008-11-22 Thread Secretly Mike Young
KeyEvent.KEYCODE_STAR: //this never gets called because I'm always getting KEYCODE_8. AppendOp(*); return true; } return false; } Note that I've tried it with getting the code from msg with no luck. Any help? Thanks, Mike

[android-beginners] Re: Handling Symbol Keys using onKeyDown

2008-11-22 Thread Secretly Mike Young
? KeyEvent.META_ALT_ON : 0)); and I get what I need. Thanks, Mike On Nov 22, 1:22 am, Secretly Mike Young [EMAIL PROTECTED] wrote: Hi there, I'm trying to use OnKeyDown to find out what key was pressed; however, when I want, say *, it always returns 8 (or rather KeyEvent.KEYCODE_8, or I can

[android-beginners] Re: Getting set up in windowsXP

2008-11-08 Thread Mike Wagman
Fixed it - COMODO firewall Mike Wagman wrote:Defense + security level was the problem Getting an error failed to get adb version - ... CreateProcess error = 5, Access is denied Thought I did setup by the books. Eclipse 3.4 Not sure what else to tell you. Mike

[android-beginners] Getting set up in windowsXP

2008-11-07 Thread Mike Wagman
Getting an error failed to get adb version - ... CreateProcess error = 5, Access is denied Thought I did setup by the books. Eclipse 3.4 Not sure what else to tell you. Mike --~--~-~--~~~---~--~~ You received this message because you are subscribed

[android-beginners] Application Organization and Structure

2008-10-30 Thread Mike F
many Activities? Thanks, -Mike --~--~-~--~~~---~--~~ 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, send email

[android-beginners] Re: View after ListView does not show up

2008-10-07 Thread Mike F
I would try including the Button in the same LinearLayout as the ListView. That worked for me. On Sep 22, 3:14 pm, elephantbug [EMAIL PROTECTED] wrote: Hi, I have a problem to display the view (e.g. Button after theListView which I will bind and populate from a CursorAdapter). Here is the

[android-beginners] Re: Andriod on Sidekick

2008-09-08 Thread Mike Wolfson
It shouldn't be lost in the discussion, that Microsoft now owns Danger. So, they certainly don't have an incentive to make porting Android to their device easy (in fact, I would imagine they would prefer it is hard). Doesn't mean it can't be done, just that I wouldn't depend on company(MS -