I have HorizontalScrollView with wide ListView or ScrollView inside. I always see horizontal scrollbar but vertical scrollbar located out of the screen in right side of scrollable area. How can I make vertical scrollbar always visible too?
for example
<HorizontalScrollView xmlns:android="http://ift.tt/nIICcg"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<ScrollView
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="exampleexampleexample\nexampleexampleexample\nexampleexampleexample\nexampleexampleexample\n"
android:textSize="300sp" />
</ScrollView>
No comments:
Post a Comment