I have a TextView inside a ScrollView (TextView DOES NOT scroll by itself). However, I am aligning the text at the bottom of the TextView using android:layout_gravity="bottom". When I do this the ScrollView won't scroll. What can I do to fix this? This is inside an AbsoluteLayout. Here is the XML of the part I'm talking about:
<ScrollView android:id="@+id/chatview" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="203px"> <TextView android:id="@+id/chatscreen" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_x="2px" android:layout_y="2px" android:layout_gravity="bottom"> </TextView> </ScrollView> --~--~---------~--~----~------------~-------~--~----~ 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 [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -~----------~----~----~----~------~----~------~--~---