如何在Horizo​​ntalScrollView中显示Gridview项

时间:2017-01-20 11:11:49

标签: android xamarin xamarin.android

我正在尝试在Horizo​​ntalScrollView中显示3列的gridview,我的布局就像

<?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>

当我向gridview适配器添加项目时,它显示没有项目的空白空间。请帮我如何使用gridview项目显示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);

1 个答案:

答案 0 :(得分:1)

最好的方法是使用recycleview并将其布局设置为水平,如

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

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

例如访问以下网址

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

如果您想了解更多有关recycleview的信息,请访问以下网址。

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