I have a main activity. Based on a button press, I have to launch a 'new' 
activity.
This 'new' activity has just one UI item, i.e a TextView.
I've added properties which will indicate that it is scrollable: *
android:scrollbars*<http://developer.android.com/reference/android/view/View.html#attr_android:scrollbars>
 (vertical), 
*android:scrollHorizontally*<http://developer.android.com/reference/android/widget/TextView.html#attr_android:scrollHorizontally>
 (true), 
android:layout_width="wrap_content"
        android:layout_height="wrap_content"
 
The 'new' activity is started like this: 
getApplicationContext().startActivity(this, MyNewActivity.class);
 
The 'new' activity shows up fine, but my only issue is that the text view 
is not scrollable. There is enough content for the TextView to scroll.
I want to get it to scroll vertically.
 
 
Is there anything I'm missing?
 
 
 
Sub questions: 
And how do I enable word-wrap on a TextView?
How do I know if an activity has already started/running?
 
 
Thanks

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to