Android UI - 用于水平绘制多个ImageView的布局

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android UI - 用于水平绘制多个ImageView的布局相关的知识,希望对你有一定的参考价值。

我有一些图像,比方说4到10张图像。

如果添加更多图像,我希望它们水平绘制并动态调整大小。

例如在下面的脚本中,我有4个图像。但未绘制第四张图像(仅可见3张图像):

<?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="match_parent"
    android:paddingLeft="16dp"
    android:paddingRight="16dp"
    android:orientation="vertical"
    android:gravity="center">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">

        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/ball_1"
            />

        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/ball_1a"
            />

        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/ball_1b"
            />

        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/ball_1c"
            />
    </LinearLayout>
</LinearLayout>

设计截图:

enter image description here

有什么想法要解决?

提前致谢

答案

你可以使用水平RecyclerView

以下是如何设置:

LinearLayoutManager layoutManager
    = new LinearLayoutManager(this, LinearLayoutManager.HORIZONTAL, false);
recyclerView.setLayoutManager(layoutManager);

检查此示例:Link

以上是关于Android UI - 用于水平绘制多个ImageView的布局的主要内容,如果未能解决你的问题,请参考以下文章

Android:日常学习笔记———探究UI开发

在剑道 UI 中如何在折线图中绘制垂直线

Android UI的绘制流程

Android UI的绘制流程

绘制水平堆积条形图不适用于日期中的 x 轴

Android UI绘制之View绘制的工作原理