gpt4 book ai didi

android Gridview 移动一列

转载 作者:行者123 更新时间:2023-11-29 00:17:27 25 4
gpt4 key购买 nike

我需要像这样在 gridview 中实现移位列

enter image description here

但只有两列。我已经尝试在适配器中使用两种不同类型,但它没有解决我的任务 enter image description here

在我看来,我将不得不扩展 gridview 和 ovverride onDraw 方法,但也许已经存在其他解决方案或库?

最佳答案

这可以通过布局 XML 文件完成。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >

<LinearLayout
android:id="@+id/header"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="5dp" >

<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>

</LinearLayout>

<GridView
android:id="@+id/grid"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_below="@id/header"
android:cacheColorHint="#0000"
android:columnWidth="100dp"
android:horizontalSpacing="5dp"
android:numColumns="2"
android:stretchMode="columnWidth"
android:verticalSpacing="5dp" />

</RelativeLayout>

关于android Gridview 移动一列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25645189/

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