我正在开发一个无限的占位符视图,代码很好......但是加载的方向只是在垂直方向。这是我当前的信息中心视图:
我目前的代码在activity_dashboard.xml
:
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
>
<com.mindorks.placeholderview.InfinitePlaceHolderView
android:id="@+id/loadMoreViewDashboard"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
如何让它滚动到水平?
您可以在Github中参考我的完整代码:
https://github.com/imranhamzah/richpleasure_academy_std
感谢您提供任何帮助或意见。