我的HorizontalScrollView
内有广ListView
或ScrollView
。我总是看到水平滚动条,但垂直滚动条位于可滚动区域右侧的屏幕之外。如何使垂直滚动条始终可见?
例如
<HorizontalScrollView xmlns:android="http://schemas.android.com/apk/res/android"
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>
</HorizontalScrollView>