[android-beginners] Re: Problem to show a button below a scrollview

2009-05-08 Thread Chavepeyer Geoffrey
If I do such thing I loose my layout if the screen is rotated or if the program is running on another display. Anybody has a solution that stays relative ? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android

[android-beginners] Re: Problem to show a button below a scrollview

2009-05-08 Thread Chavepeyer Geoffrey
Hi Cristian Radu and thanks a lot for answering my question. In fact I totally missed the notion of weight of the linear level ! I'll look into that ;) Thanks a lot ! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

[android-beginners] Problem to show a button below a scrollview

2009-05-07 Thread Chavepeyer Geoffrey
Hi guys and first of all thanks for reading me :) What I want to do is to display a button that is always visible on the bottom of my view. The problem is that my scrollview is going all through the end of the screen. Therefore my button is hiding the last items of my scroll view. Here is my

[android-beginners] Re: Problem with textview in a Dialog

2009-03-12 Thread Chavepeyer Geoffrey
Found the problem : I needed to call the findViewById() method on the dialog like this : TextView tv = (TextView) d.findViewById(R.id.TextView01); and not like this : TextView tv = (TextView) findViewById(R.id.TextView01); Geoffrey. On 11 mar, 09:09, Chavepeyer Geoffrey gchavepe...@gmail.com

[android-beginners] Re: Problem with textview in a Dialog

2009-03-11 Thread Chavepeyer Geoffrey
Nobody to help me ? On Mar 10, 11:30 am, Chavepeyer Geoffrey gchavepe...@gmail.com wrote: So, I've created a test case but still encounter the same problem: package be.geoc.DialogTest; import android.app.Activity; import android.app.Dialog; import android.os.Bundle; import

[android-beginners] Re: Problem with textview in a Dialog

2009-03-10 Thread Chavepeyer Geoffrey
So, I've created a test case but still encounter the same problem: package be.geoc.DialogTest; import android.app.Activity; import android.app.Dialog; import android.os.Bundle; import android.view.View; import android.widget.Button; import android.widget.TextView; public class Dialog_Test

[android-beginners] Re: How to pass an HttpClient instance to another activity ?

2009-02-24 Thread Chavepeyer Geoffrey
Thanks a lot ! It solved my problem :) --~--~-~--~~~---~--~~ 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] How to pass an HttpClient instance to another activity ?

2009-02-23 Thread Chavepeyer Geoffrey
Hi everybody ! I'm really new on Android so it may be a stupid question :) I'd like to know how I can pass the instance of HttpClient created in a first activity to a second activity. What I'm trying to do is to connect to a webservice that uses sessions to handle the identification. Therefore