2

我需要实现像https://play.google.com/store/apps/details?id=com.alphonso.pulse这样的应用程序

我尝试的是,

   I think they should done through horizontalscrollview/horizontallistview.
   So i integrate horizontal listview through this sample,

https://www.dev-smart.com/archives/34

我需要的是,

  • 我需要在垂直列表视图中集成水平列表视图

  • 我应该知道他们是如何整合这个想法的

任何帮助都应该是可观的。谢谢

4

2 回答 2

0

你需要这样的东西吗?

<ScrollView>
  <LinearLayout android:orientation="vertical">

    <!-- First row -->
    <HorizontalScrollView>
      <LinearLayout android:orientation="horizontal">
        <!-- Items of this row -->
      </LinearLayout>
    </HorizontalScrollView>

  </LinearLayout>
</ScrollView>

您将需要设置适当的布局属性,并且您可能希望为行添加标题。如果您有可变数量的行,则可以通过编程方式创建它们。

于 2013-11-09T10:11:24.050 回答
0

我迟到了,但你可以使用这个.. https://github.com/lucasr/twoway-view

于 2014-02-05T18:32:38.737 回答