[android-developers] Re: onFling() Question

2011-12-13 Thread Derek Winstead
Does anyone have any help for this? I don't know enough about Android to look in ViewGroup.OnInterceptTouchEvent and know what I'm looking at. Is there a working model somewhere that I can see how it happens? Or at least an explanation of why I need to use something. Sorry for the lack of knowl

[android-developers] Re: onFling() Question

2011-12-09 Thread Derek Winstead
Is there an example of this in action? SDK's aren't very helpful to me. I'm still new to programming Android or Java. Thanks, Derek -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@g

[android-developers] onFling() Question

2011-12-09 Thread Derek Winstead
I have an activity that implements GestureDetector.OnGestureListener. This variable: GestureDetector gestureDetector = new GestureDetector(this). This @Override public boolean onTouchEvent(MotionEvent event) { return gestureDetector.onTouchEvent(event); } My application works as expected using

[android-developers] Re: Activity Help

2011-09-23 Thread Derek Winstead
I changed the name of my variable in the fetchLiteratureTypes function on the LiteratureEditor.java file so it wasn't the same as the one in the LiteratureManager.java. That seemed to work and fix my problem. I no longer error when running my app. I assume it had something to do with the varia

Re: [android-developers] Re: Activity Help

2011-09-23 Thread Derek Winstead
My SQL queries are fine, I copy and paste the queries into SQLite Database Browser with the current database that is on the VM. Runs fine and returns the results expected. If it was a SQL error wouldn't the program error out before finishing the load? No breakpoints get hit on my debug mode and

[android-developers] Re: Activity Help

2011-09-21 Thread Derek Winstead
Thanks Richard, I have directly skipped the LiteratureManager.java and run the intent LiteratureEditor.java from an activity before that normally calls the manager file. The editor works just fine and doesn't crash. I will post a stack trace tomorrow when I'm at work and can run the program...

[android-developers] Re: Activity Help

2011-09-21 Thread Derek Winstead
It starts in the LiteratureManager.java and the intent goes to LiteratureEditor.java -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, s

[android-developers] Activity Help

2011-09-21 Thread Derek Winstead
Hello all, I have an issue where my activity has a spinner up top to change the listview below it with data from the sqlite database. Using this activity everything works fine. However, when I click on one of the list items it runs the next activity intent and after this new activity finishes l

[android-developers] Re: Updated .apk wants uninstall first

2011-04-30 Thread Derek Winstead
I checked out this: http://developer.android.com/guide/publishing/app-signing.html#releasemode I created a keytool as the example shows. I have now Right Click Project -> Export and put in the new keystore and alias on the export. I need to first write down everything on my phones version. Then

[android-developers] Re: Updated .apk wants uninstall first

2011-04-30 Thread Derek Winstead
Ok, so when I right click my project and Run As -> Android Application it installs on the VM but also creates the .apk file in the bin folder and that is what I'm coping and sending to friends. Is this incorrect to do? I'm still a novice with Android. -- You received this message because you a

Re: [android-developers] Updated .apk wants uninstall first

2011-04-30 Thread Derek Winstead
Where do I change the cert? That doesn't sound like something I've done (knowingly). When doing my development on the ADV with eclipse I make my changes and rerun the program. It reinstalls everything but I don't loose data. Only when I try to push it to a real phone does it want an uninstall.

[android-developers] Updated .apk wants uninstall first

2011-04-30 Thread Derek Winstead
I have been developing an app I want to share with friends and family for beta testing before I publish it to the android market. Problem is, since I've already had them install a previous version of the app, that when I send them the new .apk to install the installer wants the already installed

[android-developers] App function help

2011-03-08 Thread Derek Winstead
I am not sure this is the right place/group to post this but I am looking for a way to respond to incoming phone calls with a text (canned response is fine). I have the app Locale with the calendar plugin. I would like to know I'm receiving a call and respond to that call with a text saying "I'm

[android-developers] Re: Multiple TextViews Inside a Button

2010-12-19 Thread Derek Winstead
I've already done this before in my app (layout with textviews and the layout has the onclicks), however I do have a new question. Adding the statelist as the background works for the layout but what about the text changing colors? I've had a hard time figuring out how to do style changes on the f

[android-developers] Re: Multiple TextViews Inside a Button

2010-12-19 Thread Derek Winstead
eKing wrote: > On Sun, Dec 19, 2010 at 8:33 PM, Derek Winstead > wrote: > > > The buttons that say "Connections" and then on the right has the count > > of your connections. > > Do you have a screen shot? Because from your description, I can't imagin

[android-developers] Multiple TextViews Inside a Button

2010-12-19 Thread Derek Winstead
I want to make a button like the ones in the LinkedIn beta app. The buttons that say "Connections" and then on the right has the count of your connections. To me this looks like a button with two textviews inside it. Is that even possible. I tried creating that and got errors at runtime. Do I need

[android-developers] Re: Passing an ArrayList of Objects

2010-11-12 Thread Derek Winstead
Awesome! That worked. Thanks. On Nov 12, 4:57 pm, TreKing wrote: > On Fri, Nov 12, 2010 at 3:15 PM, Derek Winstead > wrote: > > > Bundle extras = getIntent().getExtras(); > > myObjArray = extras.getParcelableArray("myObjArray"); > > The list of items you

[android-developers] Passing an ArrayList of Objects

2010-11-12 Thread Derek Winstead
Is there a way to pass an ArrayList of objects between activities? The myObject implements Parcelable and I'm able to successfully pass the objects around individually, but that means I need to have an exact amount of "myObjects" coded. I want this to dynamically grow/shrink by what the user does w

[android-developers] Re: Multiple Object Passing Between Activies

2010-10-14 Thread Derek Winstead
> should work > > On 15-Oct-2010 12:54 AM, "Kostya Vasilyev" wrote: > >  14.10.2010 23:16, Derek Winstead пишет: > > > > > I have an application that I would like to have multiple objects > > passed around the activities... > > You can attach a

[android-developers] Multiple Object Passing Between Activies

2010-10-14 Thread Derek Winstead
I have an application that I would like to have multiple objects passed around the activities. It seems that when I'm passing multiple objects using Parcelables it seems it only grabs the first object and the rest become null. Is this a issue with android not able to handle more than one object mad

[android-developers] Re: Custom DatePickerDialog

2010-10-11 Thread Derek Winstead
setting up frameworks. Thanks, Derek On Oct 10, 7:15 pm, Mark Murphy wrote: > On Sun, Oct 10, 2010 at 6:45 PM, Derek Winstead > > wrote: > > I am still new to Android and Java in itself. How would I create a > > subclass of a class? Do I make a class the extends the DatePick

[android-developers] Re: Custom DatePickerDialog

2010-10-10 Thread Derek Winstead
Thanks for the info Mark. I am still new to Android and Java in itself. How would I create a subclass of a class? Do I make a class the extends the DatePicker or does it implement the DatePicker? Or is it done totally different. Thanks, Derek On Oct 1, 2:27 pm, Mark Murphy wrote: > On Wed, Sep