当前位置: 首页 > 知识库问答 >
问题:

Android TableLayout,每个 TableRow 中有 2 个 ImageViews,每个 TableRow 中有 2 个 ImageViews

欧阳俊晖
2023-03-14

同事们,您能建议我设置ImageViews的属性以获得这样的屏幕吗?

在我巨大的Android应用程序中,此活动的XML代码: 我把它贴在这里以避免 您的帖子没有太多上下文来解释代码部分;请更清楚地解释您的场景......Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.Ut enim ad minim veniam, quis nostrud exercitathtml" target="_blank">ion ullamco laboris nisi ut aliquip ex ea commodo consequat.Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

            <TableRow
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:background="#D63B40"
                android:layout_weight="0.15"
                 >

                 <ImageView
                android:id="@+id/img1"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:src="@drawable/n"
                android:background="@null"
                />


                 <ImageView
                android:id="@+id/r1"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:src="@drawable/n"
                android:background="@null"
                />



            </TableRow>

            <TableRow
                android:id="@+id/tableRow2"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:background="#88CB5B"
                android:layout_weight="0.14" >

                 <ImageView
                android:id="@+id/img2"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:src="@drawable/n"
                android:background="@null"
                />


                 <ImageView
                android:id="@+id/r2"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:src="@drawable/n"
                android:background="@null"
                />

            </TableRow>

            <TableRow
                android:id="@+id/tableRow3"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:background="#E8D751"
                android:layout_weight="0.14" >

                <ImageView
                android:id="@+id/3"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:src="@drawable/n"
                android:background="@null"
                />


                 <ImageView
                android:id="@+id/r3"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:src="@drawable/n"
                android:background="@null"
                />
            </TableRow>

            <TableRow
                android:id="@+id/tableRow4"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:background="#9554B6"
                android:layout_weight="0.14" >

            <ImageView
                android:id="@+id/4"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:src="@drawable/n"
                android:background="@null"
                />


                 <ImageView
                android:id="@+id/r4"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:src="@drawable/n"
                android:background="@null"
                />

            </TableRow>

    </TableLayout>

图像1、2、3、4和a、b、c、d是图像视图。

共有1个答案

孔弘盛
2023-03-14

使用列表视图,然后使用自定义适配器u可以添加两个图像(在你的条件下)到列表中。此链接将帮助您使用适配器

 类似资料:
  • 如果我创建 cronjob 以每 2:30 运行一次命令会运行吗?(这意味着,我的 cron 将在每小时 90 分钟后运行一次。 命令如:30*/2***/command/xxx= 请帮帮忙?

  • 问题内容: 可以说我有2个表:blog_posts和类别。每个博客帖子仅属于一个类别,因此此处的两个表之间基本上有一个外键。 我想从每个类别中检索2个最新的帖子,是否可以在单个请求中实现?GROUP BY会将所有内容分组,而在每个类别中只剩下一行。但我要其中两个。 执行1 + N查询(N =类别数)会很容易。首先检索类别。然后从每个类别检索2个帖子。 我相信执行M个查询(M =我希望从每个类别获得

  • 问题内容: 我有一张表如下 预期输出:name8,name7,name6,name3,name2 我希望在每个类别中显示最后2个条目吗?有人请帮帮我。谢谢你的放心。 问题答案: 这些类型的结果最好由其他RDBMS中的窗口函数来处理,但是不幸的是Mysql没有任何窗口函数,因此作为替代方案,存在一种使用用户定义的变量为属于同一组的行分配等级的解决方案。 上面的查询将为您提供每个类别2条最近记录(基于

  • 假设我有一个Java类... 我想将这个单独的类与两个不同的服务一起使用。然而,这两种服务在返回数据的方式上有所不同。 ...还有...

  • 我正在尝试弄清楚Disruptor是否适合我的应用程序:一个相当复杂的负载生成器,用于长时间对高性能数据库进行基准测试。Disruptor模式很有吸引力,因为: 高吞吐量 低延迟 无垃圾/可预测的长时间运行行为 应用程序拓扑的简化版本如下: ===P1=== 由馈送的系统组件有1个生产者馈送许多并行消费者(当前为)。每个事件应该由这些消费者之一恰好处理一次。排序约束是:如果A在B之前产生,那么A将

  • 我了解到,每个kinesis流可以有多个消费者应用程序。 http://docs.aws.amazon.com/kinesis/latest/dev/developing-consumers-with-kcl.html 但是,我听说你只能在每个分片的消费者上有。这是真的吗?我找不到任何留档来支持这一点,我无法想象如果多个消费者从同一个流中阅读会是什么样子。当然,这并不意味着生产者需要为不同的消费者