1

数時間の調査の後、私は両方向にスクロールしてビューを再利用できるというAndroid上のビューを見つけられませんでした。リサイクルビューのAndroid双方向ビューですか?

私が探しているのは? 256x256ボタンのグリッドを表示できるビューが必要です。

画面は1つの瞬間〜12x8のボタンで表示でき、他のボタンは画面の下部と右外部に位置する必要があります。

私は、ここに

http://wiresareobsolete.com/2015/02/recyclerview-layoutmanager-redux/comment-page-1/

を見つけましたが、GitHubのリポジトリにコードを提供し、最も類似した効果が壊れている - 私は高速スクロールを作るしようとすると - ウィンドウが白来ました。

答えて

0

私はそれを働いていないが、私は、これはうまくいくかもしれないホープ

<HorizontalScrollView xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="match_parent" android:layout_height="match_parent"> 

    <android.support.v7.widget.RecyclerView 
      android:id="@+id/recyclerview" 
      android:layout_width="match_parent" 
      android:layout_height="match_parent"> 

    </android.support.v7.widget.RecyclerView> 

</HorizontalScrollView> 
関連する問題