Android-安卓股票看盘listview,横纵向滑动,表头不动

发布于 2016-12-12 22:33:45 字数 52 浏览 1150 评论 1

安卓股票看盘listview,横纵向滑动,表头不动,不懂问题的可以下载一个看盘软件自己看看

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浮生未歇 2017-01-22 13:00:47

用 HorizontalScrollView 套 ScrollView 再套 listview,然后上面加一个textview做标题,比如:

<TextView
android:id="@+id/tv_test_name"
style="@style/title_name" />

<HorizontalScrollView
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_marginTop="20dp"
android:layout_weight="1.0" >

<ScrollView
android:layout_width="wrap_content"
android:layout_height="match_parent" >

<com.example.doe.view.TableFactors
android:id="@+id/tl_factors_level"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
</com.example.doe.view.TableFactors>
</ScrollView>
</HorizontalScrollView>

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文