2017-01-20 12 views
0

にGridViewの項目を表示するには、私はそれがアイテムなしで空きスペースを示しているGridViewのアダプターに項目を追加していながら、私のレイアウトはは、どのように私はHorizo​​ntalScrollViewの3列を持つGridViewコントロールを表示しようとしていますHorizo​​ntalScrollView

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:padding="1dp" 
    android:orientation="vertical"> 
    <HorizontalScrollView 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:scrollbars="none" 
     android:id="@+id/title_horizontalScrollView" 
     android:layout_margin="1dp" 
     android:fillViewport="false"> 
     <LinearLayout 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:orientation="horizontal"> 
      <GridView 
       android:id="@+id/videoGridView" 
       android:layout_width="fill_parent" 
       android:layout_height="wrap_content" 
       android:stretchMode="columnWidth" /> 
     </LinearLayout> 
    </HorizontalScrollView> 
</LinearLayout> 

のようなものです。グリッドビュー項目でHorizo​​ntalScrollViewを表示する方法を教えてください。 私のGridViewのアダプタは

<?xml version="1.0" encoding="utf-8"?> 
    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
     android:orientation="vertical" 
     android:layout_width="fill_parent" 
     android:layout_height="fill_parent"> 
     <LinearLayout 
      android:id="@+id/line" 
      android:layout_width="fill_parent" 
      android:layout_height="wrap_content" 
      android:orientation="horizontal"> 
      <ImageView 
       android:id="@+id/imageview" 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" 
       android:layout_alignParentLeft="true" 
       android:padding="5dp" 
       android:src="@drawable/play" /> 
      <LinearLayout 
       android:layout_width="fill_parent" 
       android:layout_height="wrap_content" 
       android:layout_margin="2dp" 
       android:orientation="vertical"> 
       <TextView 
        android:id="@+id/Title" 
        android:layout_width="wrap_content" 
        android:layout_height="wrap_content" 
        android:layout_marginLeft="2dp" 
        android:layout_toRightOf="@+id/imageview"/> 
      </LinearLayout> 
     </LinearLayout> 
    </RelativeLayout> 

var tvTitle = view.FindViewById(Resource.Id.Title) as TextView; 
var tvImage = view.FindViewById(Resource.Id.imageview) as ImageView; 
tvTitle.SetText(item.Title, TextView.BufferType.Normal); 
+0

私はこれが動作することを確認しないんだけど、似たようなのためにここを見て:http://stackoverflow.com/questions/27469347/android-horizo​​ntal-scroll-in-grid-view – FrankR

+0

あなたはgridviewアダプタコードを表示できますか? –

+0

あなたは水平方向でrecyclerviewを使うべきです –

答えて

1

ように最善の方法を使用recycleviewあるなど、水平URL

http://blog.nkdroidsolutions.com/android-horizontal-vertical-recyclerview-example/

そして、あなたがしたい場合は、以下の例をご覧ください

LinearLayoutManager layoutManager = ... 
recyclerView.setLayoutManager(layoutManager); 

//when you want horizontal 
layoutManager.setOrientation(context,LinearLayoutManager.HORIZONTAL,false); 

をそのレイアウトを設定しますrecycleviewの詳細については、下のURLをご覧ください。

http://blog.nkdroidsolutions.com/android-horizontal-vertical-recyclerview-example/

関連する問題