大家好,首先我的英语很糟糕,所以我会尽力在我的列表视图中放弃我想要做的事情。
无论如何我有一个列表视图,我需要分成两个方面。 (左 - 右)像这个图像一个例子-----> https://ibb.co/dotxS5
这是我的布局代码。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.tasneem.coustomlistview.MainActivity">
<ListView
android:id="@+id/listview"
android:layout_width="match_parent"
android:layout_height="match_parent"
/>
</LinearLayout>
在这里输入代码
这是我的行布局
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/Image"
android:layout_width="120dp"
android:layout_height="120dp"
android:src="@mipmap/ic_launcher"
android:layout_marginStart="15dp"
android:layout_marginTop="24dp"
android:layout_alignParentTop="true"
android:layout_alignParentStart="true" />
<TextView
android:id="@+id/name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="name"
android:textSize="25dp"
android:layout_alignBottom="@+id/Image"
android:layout_toEndOf="@+id/Image"
android:layout_marginStart="38dp" />
</RelativeLayout>
我只想在布局中执行以下操作。
谢谢。
答案 0 :(得分:1)
考虑使用RecyclerView而不是ListView。
使用RecyclerView,您可以使用GridLayoutManager轻松创建网格。
myRecyclerView.setLayoutManager(new GridLayoutManager(context, numberOfColumns);
myRecyclerView.setAdapter(myAdapter);