is there a trick to getting a single line of text to scroll
horizontally? the options available off <TextView> look promising,
but the view won't take any touch input, preferring instead to give
it to the parent view. and sticking it in a <ScrollView> didn't
change the behaviour at all.
one wrinkle is that this bundle is inside a much bigger view that
scrolls vertically. i did set "scrollsHorizontally" to false in the
outer view, but i'm not sure whether i need to do more to isolate the
two scrollers.
<ScrollView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="10px"
android:layout_marginRight="10px"
android:layout_marginBottom="10px"
android:scrollbars="horizontal"
>
<TextView
android:id="@+id/tag_view"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:singleLine="true"
android:scrollHorizontally="true"
android:padding="5px"
android:textColor="#2f4f4f"
android:textSize="24px"
android:background="#e0ffff"
/>
</ScrollView>
thanks for any help here,
--
jason.vp.engineering.particle
--
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