[android-beginners] HelloMapView Tutorial not working

2009-10-05 Thread DWischer
Hi, im trying to launch the HelloMapView tutorial from the Android Dev Guide. I copy-pasted the things from the tutorial, but i always get a ClassNotFound Exception. Heres the detail message: com.hellomapview.HelloMapView in loader dalvik.system.PathClassLoader com.hellomapview is my package

[android-beginners] Re: HelloMapView Tutorial not working

2009-10-05 Thread DWischer
I just tried to make it a lot more easier than the tutorial to find the error. This is my main class: package com.map.maptest; import com.google.android.maps.MapView; import android.app.Activity; import android.os.Bundle; public class MapAppTest extends Activity { private MapView mv

[android-beginners] Re: HelloMapView Tutorial not working

2009-10-05 Thread DWischer
, DWischer danielwisc...@googlemail.com wrote: I just tried to make it a lot more easier than the tutorial to find the error. This is my main class: package com.map.maptest; import com.google.android.maps.MapView; import android.app.Activity; import android.os.Bundle; public

[android-beginners] Chosse the connection interface before sending request?

2009-10-02 Thread DWischer
Hi, what im trying to do is, to connect the phone to an adhoc wlan with no internet access. Over this connection, i connect to a printer, to print over wireless. Normal http Requests should be made over the UMTS connection of the phone. Is it possible to choose the interface which will be used

[android-beginners] Behaviour of listviews with Custom Rows

2009-10-01 Thread DWischer
Hi, what i got is 2 listviews which are both subclasses of ListActivity. One is a simple list with a textview in every row. The other has some elements in the top, and a list below. The first and simple row, has its row defnied programmaticly and selected rows are highlighted. In the other list

[android-beginners] Layout one horizontal line with two TextViews

2009-10-01 Thread DWischer
Hi, i will go insane in a minute with this problem. What i want to do is to design a layout, with one Textview on the left oft the screen and on Textview on the right of the screen. So that both fields grow to the center when a longer text is set. My xmlfile: ?xml version=1.0 encoding=utf-8?

[android-beginners] Re: Pass data between activitys

2009-09-30 Thread DWischer
Great, thanks a lot. On 29 Sep., 23:25, Jeffrey Blattman jeffrey.blatt...@gmail.com wrote: yes, the object needs to be serializable or parcelable. On 9/29/09 2:22 PM, DWischer wrote: On 29 Sep., 20:11, Mark Murphymmur...@commonsware.com  wrote: Use putExtra() on the Intent you use

[android-beginners] Re: Placing Layouts in a Relative Layout

2009-09-30 Thread DWischer
On 30 Sep., 00:40, iPaul Pro mr.paulbu...@gmail.com wrote: Hey, I fear you are approaching Android design as if you were coding for HTML in the 90s. ;) There is no real need for a table layout here. Heres an example of a text -- Maybe you are right, but, i want to place

[android-beginners] Pass data between activitys

2009-09-29 Thread DWischer
Hi, in my app, i got a login screen and a screen, where the user information should be displayed. So, when the button is pressed, a login request will be made and in case of sucess, a new activity should be displayed. For later requests, i need the entered login data from the login screen in my

[android-beginners] Re: Pass data between activitys

2009-09-29 Thread DWischer
On 29 Sep., 20:11, Mark Murphy mmur...@commonsware.com wrote: Use putExtra() on the Intent you use to launch the new Activity. The new Activity can then use getExtra() to retrieve them. Is it possible to pass complete Java objects via putExtra? I just found functions for passing simple data