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 back my results..


On Fri, May 3, 2013 at 10:53 AM, bob <[email protected]> wrote:

> 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]> wrote:
>>
>>>
>>> On Thu, May 2, 2013 at 11:07 PM, Daniel Chacon <[email protected]>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 android-d...@**googlegroups.com
>>>
>>> To unsubscribe from this group, send email to
>>> android-developers+**[email protected]
>>> For more options, visit this group at
>>> http://groups.google.com/**group/android-developers?hl=en<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 android-developers+**[email protected].
>>> For more options, visit 
>>> https://groups.google.com/**groups/opt_out<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.
>
>
>

-- 
-- 
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