我有以下HorizontalScrollView
两个自定义视图。
由于某种原因它不滚动
<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>