作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个小问题:我需要我的应用程序在图库中显示图像,如下所示:
image image
image image
image image
我正在使用listView
并且需要使用for循环来以这种方式显示图像。
我正在使用 Android studio
最佳答案
使用RecyclerView
尝试一下,你可以实现这一目标
RecyclerView.LayoutManager layoutManager = new GridLayoutManager(getApplicationContext(), 2);
recyclerView.setLayoutManager(layoutManager);
并创建如下所示的布局
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<ImageView
android:id="@+id/imgview"
android:layout_width="250dp"
android:layout_height="250dp" />
</LinearLayout>
关于java - 如何在ListView的行中显示两个图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45276809/
我是一名优秀的程序员,十分优秀!