gpt4 book ai didi

android - MvxListView 不水平显示

转载 作者:太空狗 更新时间:2023-10-29 12:43:10 26 4
gpt4 key购买 nike

在我的 Android 应用程序中,我创建了一个垂直布局,以将图像(缩略图)的水平列表置于列表中所选图像的较大 View 之上。出于某种原因,我无法让水平列表水平显示,它只显示为垂直列表。

        <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 只是垂直的。

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

还有一些人使用 PageAdapter 来显示这种类型的水平滚动列表。

关于android - MvxListView 不水平显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22339819/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com