[android-beginners] Re: Downgrading 2.1 app to 1.5

2010-04-26 Thread MartinM
In your 'etc', does that include turning on Build Automatically? Yep. But now turned off. And I hope that was a typo when you said R.java.layout.main. It should be just plain R.java. Sort of! I have R.java with class R with layout.main Try cleaning the project without rebuilding. There

[android-beginners] Re: Android Managing services and activities

2010-04-26 Thread msurrow
Okay - I might remember incorrectly (explains why I couldn't find it again :), but I did some testing on this. If i force a RuntimeException in a scheduled timer task in a service, the task will keep on triggering after the exception. if I force a RuntimeException in a method of a service I do

[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
(Apologies with the last post, keyboard went a bit screwey) Wondering if someone can point me in the right direciton, I'm trying to bind a spinner to a List of custom objects. public class serverStatus { ... few other things public string getServerName(); public string

[android-beginners] inflate xml custom component

2010-04-26 Thread Victor Hugo
Hi people, Im trying create my own component. I go show my source code for you. (MyComponent.class) package com.victor.componets; import com.victor.R; import android.content.Context; import android.util.AttributeSet; import android.view.LayoutInflater; import android.view.View; public class

Re: [android-beginners] App icon development?

2010-04-26 Thread Wayne Wenthin
I would just pull your current icon into photoshop and mess around with the layer styles. You can pull off some 3d effect there. On Mon, Apr 26, 2010 at 11:22 AM, Chris Ross cross+goo...@distal.comcross%2bgoo...@distal.com wrote: I have an app mostly ready for initial release. What I

Re: [android-beginners] App icon development?

2010-04-26 Thread TreKing
On Mon, Apr 26, 2010 at 1:22 PM, Chris Ross cross+goo...@distal.comcross%2bgoo...@distal.com wrote: I have a 2D icon that I built for the iPhone version of the app, but that doesn't fit the android look-n-feel very well, so I'd like to come up with a tilted 3Dish icon according to the

[android-beginners] Re: App icon development?

2010-04-26 Thread Rob Mazur
Here is a link to an old tutorial for the 3D style icon: http://phandroid.com/2009/06/04/video-tutorial-creating-an-android-application-icon/ But like TreKing mentioned, the new style is basically 2D and IMHO looks much better...

[android-beginners] ListView items cut off in 1.5, but not 1.6+

2010-04-26 Thread Stormtap Studios
Hi folks, I have the following layout which defines a cell for my list view. ?xml version=1.0 encoding=utf-8? RelativeLayout xmlns:android=http://schemas.android.com/apk/res/android; android:layout_width=fill_parent android:layout_height=wrap_content android:id=@+id/CellRLayout

[android-beginners] How to connect Android Phone to Windows Laptop through bluetooth

2010-04-26 Thread guru
Hi All, I want to connect Android Phone to Windows Laptop through bluetooth. I tried but it is not pairing. Please let me know the steps to be followed to connect. Thanks Gururaja B O -- You received this message because you are subscribed to the Google Groups Android Beginners group. NEW!

[android-beginners] Problem - How to copy .apk to /system/app ???

2010-04-26 Thread sridevi
I have installed Android x86 on my PC from LiveCD. I have also mounted the sdcard. But I am not able to copy the .apk file from SDCARD into / system/app folder in Android. Kindly help. I also tried doing this using the adb command - adb install file.apk But this didn work. In Android-developer

Re: [android-beginners] App icon development?

2010-04-26 Thread Chris Ross
On Apr 26, 2010, at 15:21, TreKing wrote: Isn't the current style mostly 2D? Well, yeah, I guess it mostly it. It's somewhat 3D though, and there's a recommended projection into a 3D space. My advice: go with whatever you have, want, or can make and don't stress about the recommended

[android-beginners] Why does my app Stop Unexpectedly every time I remove an item from myListView.

2010-04-26 Thread ajb468
I am creating a sample example from a book. Its called To Do List. I'm at the point where I am working with the Options menu. I have the options of adding and removing an item to a list. I can add items to a list but every time I remove an item, the program Stopped Unexpectedly. Everything in my

Re: [android-beginners] Why does my app Stop Unexpectedly every time I remove an item from myListView.

2010-04-26 Thread Justin Anderson
Debug it and look at the logcat info... It will give you more information about the problem. -- There are only 10 types of people in the world... Those who know binary and those who don't.

Re: [android-beginners] Why does my app Stop Unexpectedly every time I remove an item from myListView.

2010-04-26 Thread Kaustubh Padegaonkar
In the logcat, you will see a barrage of red colored lines. find the class that removes the listview. it will tell you on which line the error occured. Kaustubh Padegaonkar, thetuxra...@gmail.com On Tue, Apr 27, 2010 at 8:18 AM, Justin Anderson janderson@gmail.comwrote: Debug it and look