Recycler View Grid Layout Manager 中的问题,
Problem In Recycler View Grid Layout Manager,
我创建了这样的网格布局:
但我希望我的网格布局是这样的:
我希望我的文字显示在右侧。像联系人列表。请告诉我必须在我的布局文件中做哪些更改。等待好的回应。
此 xml 代码只是复制并过去
<?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"
android:id="@+id/android_list_view_tutorial_with_example"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:orientation="horizontal"
android:padding="5dp">
<ImageView
android:id="@+id/album"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:contentDescription="@string/app_name"
android:padding="5dp"
android:src="@drawable/pic1" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="YOUR TEXT"
android:id="@+id/album_title">
</TextView>
</LinearLayout>
尝试将衬里布局的方向更改为水平。
由于您似乎需要列表而不是网格,因此您应该使用 LinearLayoutManager,而不是 GridLayoutManager。
查看 official documentation 示例。
我创建了这样的网格布局:
但我希望我的网格布局是这样的:
我希望我的文字显示在右侧。像联系人列表。请告诉我必须在我的布局文件中做哪些更改。等待好的回应。
此 xml 代码只是复制并过去
<?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"
android:id="@+id/android_list_view_tutorial_with_example"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:orientation="horizontal"
android:padding="5dp">
<ImageView
android:id="@+id/album"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:contentDescription="@string/app_name"
android:padding="5dp"
android:src="@drawable/pic1" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="YOUR TEXT"
android:id="@+id/album_title">
</TextView>
</LinearLayout>
尝试将衬里布局的方向更改为水平。
由于您似乎需要列表而不是网格,因此您应该使用 LinearLayoutManager,而不是 GridLayoutManager。
查看 official documentation 示例。