我有以下HorizontalScrollView
个2个自定义视图。
由于某种原因,它不会滚动
<com.name.CustomObjects.HorizontalLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="10dp"
android:fillViewport="true"
android:scrollbars="horizontal" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<com.name.Views.AView
android:id="@+id/aView"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<com.name.Views.BView
android:id="@+id/bView"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
</com.name.CustomObjects.HorizontalLayout>
答案 0 :(得分:0)
AView或BView中是否有任何内容?因为它们的宽度都设置为wrap_content,所以ScrollView可能不会拉伸......?
您是否在HorizontalLayout中扩展了ScrollView类?
由于fillViewPort =“true”,你的HorizontalLayout也可能无法拉伸