にGridViewの項目を表示するには、私はそれがアイテムなしで空きスペースを示しているGridViewのアダプターに項目を追加していながら、私のレイアウトはは、どのように私はHorizontalScrollViewの3列を持つGridViewコントロールを表示しようとしていますHorizontalScrollView
<?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>
のようなものです。グリッドビュー項目でHorizontalScrollViewを表示する方法を教えてください。 私の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);
私はこれが動作することを確認しないんだけど、似たようなのためにここを見て:http://stackoverflow.com/questions/27469347/android-horizontal-scroll-in-grid-view – FrankR
あなたはgridviewアダプタコードを表示できますか? –
あなたは水平方向でrecyclerviewを使うべきです –