【发布时间】:2015-08-09 04:45:27
【问题描述】:
【问题讨论】:
-
你用过哪个Scrollview?你能分享一下你做了什么吗?
标签: android scrollview vertical-alignment
【问题讨论】:
标签: android scrollview vertical-alignment
您必须将滚动视图设置为
android:fillViewport="true"
下面是完整代码
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/myscrollView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true">
</ScrollView>
【讨论】:
不是垂直的,是水平的
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<HorizontalScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
// Add your ImageButtons
</LinearLayout>
</HorizontalScrollView>
【讨论】: