其他分享
首页 > 其他分享> > android-MvxListView不水平显示

android-MvxListView不水平显示

作者:互联网

在我的Android应用中,我创建了一个垂直布局,以将图像的水平列表(缩略图)保留在列表中所选图像的较大视图上方.由于某种原因,我无法使水平列表水平显示,它仅显示为垂直列表.

        <LinearLayout
        android:orientation="vertical"
        android:layout_width="fill_parent"
        android:layout_height="0dp"
        android:layout_weight="15">
        <LinearLayout
            android:orientation="horizontal"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:layout_weight="1">
            <Mvx.MvxListView
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                local:MvxBind="ItemsSource Images"
                local:MvxItemTemplate="@layout/image_item" />
        </LinearLayout>
        <ImageView
            android:src="@drawable/BDSeal"
            android:layout_width="fill_parent"
            android:layout_height="0dp"
            android:layout_weight="1"
            android:layout_margin="10.0dp"
            android:id="@+id/imageView1" />
    </LinearLayout>

解决方法:

在Android中,系统ListViews仅是垂直的.

有可用的开源水平列表视图-例如,cheesebaron曾经提供过http://blog.ostebaronen.dk/2012/12/horizontal-listview-for-mono-for-android.html-我认为这是最近更新的.

也有人使用PageAdapter来显示这种类型的水平滚动列表.

标签:mvvmcross,android
来源: https://codeday.me/bug/20191122/2056190.html