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

私が必要なのは、

  • 垂直リストビュー内に水平リストビューを統合する必要があります

  • 彼らがこの考えをどのように統合するかを知るべきです

どんな助けもかなりのものであるべきです.Thanks

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 に答える