[android-beginners] My column '_id' does not exist?

2010-07-28 Thread Mitch
already put together. Is there some sort of environmental change I need to make for a new app to use a sqlite database? Hopefully this is easy to spot by someone that's not a newbie like me. Thanks. Mitch -- You received this message because you are subscribed to the Google Groups Android

[android-beginners] Android Scaled Drawing to ImageView

2010-05-19 Thread Mitch
I'm drawing some simple shapes using canvas.drawCircle(), canvas.drawLine() etc. I originally copied the code from: http://developer.android.com/resources/samples/ApiDemos/src/com/example/android/apis/graphics/DrawPoints.html Which extends a View and draws directly to a canvas. It doesn't load a

[android-beginners] Binding to list of custom objects

2010-04-26 Thread mitch
Hiya, wonder if someone can point me in the right direction, I'm trying to bind a spinner to a list which contains a custom object type serverStatus { } -- You received this message because you are subscribed to the Google Groups Android Beginners group. NEW! Try asking and tagging your

[android-beginners] Binding spinner to a list of custom objects

2010-04-26 Thread mitch
getServerGuid(); ... few other things } Is it doable (and easily) or and I just missing stuff on my (possibly bad) searches. Thanks! mitch -- You received this message because you are subscribed to the Google Groups Android Beginners group. NEW! Try asking and tagging your question

[android-beginners] Re: Start My Next Activity

2010-03-09 Thread Mitch
as follows: activity android:name=.NoteEdit/activity But it makes no difference. I'm still getting the same error. Hm??? On Mar 7, 6:01 pm, Mitch besse...@gmail.com wrote: I'm trying start a new Activity from my current one.  Every place I look for example code is different

[android-beginners] Start My Next Activity

2010-03-07 Thread Mitch
close] = Here's one of the things I tried (among dozens) which causes this: Intent myIntent = new Intent(this, NextActivity.class); startActivity(myIntent); Does anyone have a link to simple example that starts up a new activity that is complete and works? Thanks Mitch -- You received

[android-beginners] Re: Start My Next Activity

2010-03-07 Thread Mitch
...@commonsware.com wrote: Mitch wrote: I'm trying start a new Activity from my current one.  Every place I look for example code is different, but the result is the same.  The code brings up the following dialog: = Sorry! The application MyApp (process com.example.mypackage) has stopped

[android-beginners] Re: Start My Next Activity

2010-03-07 Thread Mitch
So, I need to add the next activity I'm trying to call to my current activity's manifest? If I do, then, no, that could very well be my problem. On Mar 7, 6:06 pm, Greg Donald gdon...@gmail.com wrote: On Sun, Mar 7, 2010 at 8:01 PM, Mitch besse...@gmail.com wrote: I'm trying start a new

[android-beginners] Re: Start My Next Activity

2010-03-07 Thread Mitch
project for the new activity, but not for any particular reason. On Mar 7, 6:28 pm, Mitch besse...@gmail.com wrote: So, I need to add the next activity I'm trying to call to my current activity's manifest?  If I do, then, no, that could very well be my problem. On Mar 7, 6:06 pm, Greg Donald gdon

[android-beginners] Re: Start My Next Activity

2010-03-07 Thread Mitch
the same project and add the activity. Can I get a simple full example of only this with the Direct Invoke? On Mar 7, 6:51 pm, Mark Murphy mmur...@commonsware.com wrote: Mitch wrote: Looks like maybe I need one manifest for all my application's activities? If you want to use an Intent like

[android-beginners] Class Diagram

2010-03-03 Thread Mitch
Does anyone know where I can find a simplified Android Class Diagram? I think a diagram that shows the basic structure of the Android classes and cuts out the non-major classes would be helpful to understand the connections between the classes. Thanks, Mitch -- You received this message

[android-beginners] Re: Library Class Method

2010-03-02 Thread Mitch
Tried that, but so far it's not working. So far I have: 1. Create a JAR file and use it in my activity. The JAR file must be a standard Java JAR (whatever that means). I see there are options to choose in the wizard for the JRE and no idea what a good choice is. 2. Try to put the code

[android-beginners] Re: Library Class Method

2010-03-02 Thread Mitch
. No? On Mar 2, 9:24 am, Mark Murphy mmur...@commonsware.com wrote: Mitch wrote: 1.  Create a JAR file and use it in my activity.  The JAR file must be a standard Java JAR (whatever that means).  I see there are options to choose in the wizard for the JRE and no idea what a good choice is. 2.  Try

[android-beginners] Re: Library Class Method

2010-03-01 Thread Mitch
to create a library I could reuse in various programs, I would appreciate it. Is this question a Java or Android question? Thanks, Mitch On Mar 1, 6:59 am, Dori dorian.cus...@googlemail.com wrote: What exactly are you trying to do here? Do you just want an activity to call a method from

[android-beginners] Re: Library Class Method

2010-03-01 Thread Mitch
on you device/emulator. (At least that is the only way I think you can do it) -Kitzy On Feb 28, 10:24 pm, Mitch besse...@gmail.com wrote: I'm using Eclipse.  I created a new Android Project with the wizard and I can start the application in the emulator.  I would like to create

[android-beginners] Re: Library Class Method

2010-03-01 Thread Mitch
(no warnings, errors, etc), but when it runs, it's ugly and unhelpful as to what's wrong. Even debugging doesn't help. I assume there's a model here for sharing code. Source sharing, compiled code sharing, runtime sharing, ... I simply don't know what the options are for sharing. Mitch On Mar 1, 6:59 am

[android-beginners] Re: Library Class Method

2010-03-01 Thread Mitch
in the somehows, that would be good too. Thanks. Mitch On Mar 1, 10:05 am, Mark Murphy mmur...@commonsware.com wrote: Mitch wrote: I'm not sure what the options are, which is the basis of my question. I have some code that is general (geometry calculations, Android UI helpers, ... etc).  I

[android-beginners] Library Class Method

2010-02-28 Thread Mitch
explain or show me a tutorial on how to create a class in a library so I can call it from my project? Should I be creating a Android Project or something else? Thanks, Mitch -- You received this message because you are subscribed to the Google Groups Android Beginners group. NEW! Try asking

[android-beginners] Custom Compound Control

2009-11-06 Thread Mitch
control with others, so I'd want it to be flexible in that I can define my own attributes. Also, it should allow users to declare the control in XML and not just instantiate it in Java code. Any hints on how to do this? Thanks, Mitch -- You received this message because you are subscribed

[android-beginners] Re: Android 2.0 SDK is here!

2009-10-29 Thread Mitch
My emulator is showing what looks like Chinese characters when I try to enter names into the address book. Is there a configuration I need to set? Is there an emulator user's guide? On Oct 28, 6:54 am, donden1 dond...@gmail.com wrote: Same error here... does anyone know how to fix this error

[android-beginners] Scroll Left and Right

2009-10-05 Thread Mitch
? If this isn't possible, then I assume I'll need to find another way. See original question below... Thanks - Mitch From: Mitch Date: Thu, 1 Oct 2009 22:54:17 -0700 (PDT) Subject: Spreadsheet View I've been trying to make a layout that displays something like a mini spreadsheet that's specialized for my

[android-beginners] Spreadsheet View

2009-10-01 Thread Mitch
as a single view I can simple drop into my xml, but how would I create such a thing by combining other views? Is there some other way through code to do his? I'm new so simple hints are appreciated. Thanks in advance. - Mitch --~--~-~--~~~---~--~~ You received this message

[android-beginners] INTERNET

2009-08-20 Thread Mitch
I would like to play around with sockets to see if I can get them to work, but I'm not having any luck. Here's what I tried: new Socket(www.google.com, 80); I've also tried new Socket(localhost, 7); but anything you can suggest that's simple is appreciated. I'm no socket expert so I'm not

[android-beginners] Re: INTERNET

2009-08-20 Thread Mitch
. I haven't found out how to get 2 simulators up yet either. On Aug 19, 11:14 pm, Mitch besse...@gmail.com wrote: I would like to play around with sockets to see if I can get them to work, but I'm not having any luck.  Here's what I tried: new Socket(www.google.com, 80); I've also tried new

[android-beginners] Share Code

2009-08-06 Thread Mitch
Hi, I've been told posting general questions is not a good idea, but I've had some luck so I'll try again. SInce this is a general question, general answers are fine. I'm working on an idea for a game and was wondering if it's possible in Android. It's basically an ad-hoc game so that 2 (or

[android-beginners] TicTacToe et al

2009-07-26 Thread Mitch
that. Thanks for any hints... Mitch --~--~-~--~~~---~--~~ 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] XML Layout Language

2009-07-02 Thread Mitch
of each attribute. Perhaps with a specification I could read the details about the examples. Thanks. Mitch --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Beginners group. To post to this group, send email

[android-beginners] XML Layout Language

2009-06-14 Thread Mitch
Does anyone know a link to the specification for the XML Layout? I'm looking for a description of the tags etc. Since I'm new and just learning, a simplified version would be nice, focusing on the most common tags. Everything I read now is vague. If not, here's some questions I have that are

[android-beginners] XML Layout Specification

2009-06-14 Thread Mitch
Here's a layout from the DevGuide: http://developer.android.com/guide/topics/ui/declaring-layout.html ?xml version=1.0 encoding=utf-8? LinearLayout xmlns:android=http://schemas.android.com/apk/res/ android android:layout_width=fill_parent

[android-beginners] Delete android database

2009-01-07 Thread mitch
using triggers to force referential integrity). Thanks in advance! mitch --~--~-~--~~~---~--~~ 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

[android-beginners] CSS in WebView

2008-12-26 Thread mitch
! Thanks mitch --~--~-~--~~~---~--~~ 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 to android

[android-beginners] Re: CSS in WebView

2008-12-26 Thread mitch
Thanks Mark, That seemed to fix it, I've also bugged it at http://code.google.com/p/android/issues/detail?id=1659 mitch! On Dec 26, 11:26 pm, Mark Murphy mmur...@commonsware.com wrote: mitch wrote: I'm having a slightly strange problem, I'm using a WebView widget in a page, when I put