android – 如何使线性布局horizontall可滚动
作者:互联网
我的应用程序包含不同的layouts.one是一个线性layout.it的内容是动态添加.我想使这个布局水平滚动.为此我已将我的布局放在滚动视图中.但它仍然不滚动…下面给出的是我的代码
<LinearLayout android:id="@+id/scoreballparent_layout"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_above="@+id/score_layout">
<ScrollView android:layout_height="wrap_content"
android:id="@+id/scrollView1"
android:layout_width="fill_parent"
>
<LinearLayout android:layout_width="fill_parent"
android:id="@+id/scoreball_layout"
android:layout_height="wrap_content"
android:isScrollContainer="true"
android:scrollbars="horizontal">
</LinearLayout>
</ScrollView>
</LinearLayout>
解决方法:
此外,您的布局将在其匹配不适合布局区域后成为scrollabe.
标签:horizontal-scrolling,android,android-linearlayout 来源: https://codeday.me/bug/20190726/1542713.html