2

I have a widget that displays some text from the web. Sometimes this text runs longer then the widgets height causing the text to be cut off. Is there a way so that if the text is to long to fit vertically in the widgets space it will auto scroll to show the entire message?

Thanks

Bobbake4
  • 24,509
  • 9
  • 59
  • 94
  • This link shows you how to do it:- http://stackoverflow.com/questions/7868748/is-it-possible-for-textview-marquee-in-a-widget-that-extends-appwidgetprovider –  Jan 16 '12 at 07:50

1 Answers1

0

Are you looking for something like a Scroll View?

ahodder
  • 11,353
  • 14
  • 71
  • 114
  • A ScrollView object is not supported by app widgets http://developer.android.com/guide/topics/appwidgets/index.html#CreatingLayout. Thanks for the suggestion though. – Bobbake4 Sep 16 '11 at 18:09