Re: [android-developers] Re: How to get scrolling to just scroll endlessly when you swipe the screen up or down?

2013-05-04 Thread Daniel Chacon
bob, that worked like a charm, thank you very much.. On Sat, May 4, 2013 at 10:06 AM, Daniel Chacon cuban...@gmail.com wrote: Thanks, i made the change tothe code, but need to test on the phone, so ill know later when i get in front of the pc with the phone and run it.. thank you, ill post

Re: [android-developers] Re: How to get scrolling to just scroll endlessly when you swipe the screen up or down?

2013-05-03 Thread Daniel Chacon
Testing on my Galaxy Nexus phone running 4.2.2 Looking at my code i provided lastnight, does there seem to be anything that stands out as possible cause? This portion of my code, is what im referring to.. since its not the same as yours.. // TODO Auto-generated method stub

Re: [android-developers] Re: How to get scrolling to just scroll endlessly when you swipe the screen up or down?

2013-05-03 Thread bob
Try changing this: *TextView textView = new TextView(this);* *setContentView(textView);* *textView.setMovementMethod(new ScrollingMovementMethod());* to this: * * *ScrollView sv = new ScrollView(this); * *TextView

Re: [android-developers] Re: How to get scrolling to just scroll endlessly when you swipe the screen up or down?

2013-05-02 Thread Daniel Chacon
thanks, I update the xml layout to match your example and still doing the same thing, Now here is my code as it stands now and everything is returned, but not scrolling as expected. package MyProject.Maintenance; import org.ksoap2.SoapEnvelope; import org.ksoap2.serialization.PropertyInfo;

Re: [android-developers] Re: How to get scrolling to just scroll endlessly when you swipe the screen up or down?

2013-05-02 Thread TreKing
On Thu, May 2, 2013 at 11:07 PM, Daniel Chacon cuban...@gmail.com wrote: thanks, I update the xml layout to match your example and still doing the same thing, Now here is my code as it stands now and everything is returned, but not scrolling as expected. What are you testing on? Have you

[android-developers] Re: How to get scrolling to just scroll endlessly when you swipe the screen up or down?

2013-04-30 Thread bob
I've tested this layout: *ScrollView xmlns:android=http://schemas.android.com/apk/res/android* *android:layout_width=fill_parent* *android:layout_height=fill_parent * * * *TextView* *android:id=@+id/tv* *android:layout_width=wrap_content* *