Try changing this:

*TextView textView = new TextView(this);*
*setContentView(textView);*
*textView.setMovementMethod(new ScrollingMovementMethod());*


to this:

*                                                                          
    *
*ScrollView sv = new ScrollView(this); *
*TextView textView = new TextView(this); *
*sv.addView(textView);*
*setContentView(sv);*
*                                                                          
    *


Thanks.



On Friday, May 3, 2013 9:48:47 AM UTC-5, Dan Cha wrote:
>
> 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
>
>   super.onCreate(savedInstanceState);
>
>  TextView textView = new TextView(this);
>
>  setContentView(textView);
>
>  textView.setMovementMethod(new ScrollingMovementMethod());
>
>
> On Thu, May 2, 2013 at 11:58 PM, TreKing <[email protected] <javascript:>
> > wrote:
>
>>
>> On Thu, May 2, 2013 at 11:07 PM, Daniel Chacon 
>> <[email protected]<javascript:>
>> > 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 tried a different device or emulator?
>>
>>
>>
>> -------------------------------------------------------------------------------------------------
>> TreKing <http://sites.google.com/site/rezmobileapps/treking> - Chicago 
>> transit tracking app for Android-powered devices
>>  
>> -- 
>> -- 
>> You received this message because you are subscribed to the Google
>> Groups "Android Developers" group.
>> To post to this group, send email to 
>> [email protected]<javascript:>
>> To unsubscribe from this group, send email to
>> [email protected] <javascript:>
>> For more options, visit this group at
>> http://groups.google.com/group/android-developers?hl=en
>> --- 
>> You received this message because you are subscribed to the Google Groups 
>> "Android Developers" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to [email protected] <javascript:>.
>> For more options, visit https://groups.google.com/groups/opt_out.
>>  
>>  
>>
>
>

-- 
-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to