显示两张图片

Posted 爱吃火锅的小boy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了显示两张图片相关的知识,希望对你有一定的参考价值。

(1)设计方案

黄色布局包含两个子布局

(2)代码实现

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity" >

    <RelativeLayout  
         android:id="@+id/pic1"
         android:layout_width="match_parent"
         android:layout_height="400dp"
         android:background="@drawable/bg1"
        ></RelativeLayout>
    
    <RelativeLayout 
         android:layout_below="@id/pic1"
         android:layout_width="match_parent"
         android:layout_height="400dp"
         android:background="@drawable/bg"
        ></RelativeLayout>
    
    
</RelativeLayout>

 在android:layout_width="match_parent"中match_parent为默认宽度

android:layout_height="400dp"代表,高度为400像素

android:background="@drawable/bg1"代表background要找到drawable文件下的bg1图片

在第一个样式中分配id要用到@+id

在第一个样式中,第二个图片在第一个图片的下方,这时要用到@id,因为是在pic1的下面

(注:@id后面的名字可以随便起名)

 运行效果

 ——@上官可编程

 

 

以上是关于显示两张图片的主要内容,如果未能解决你的问题,请参考以下文章

在手机端,两张图片并排显示,图片怎样设置比例

Markdown中两张图片水平显示

swiper最少显示几张图片

如何把两张照片拼在一起

LaTex并行插入两张图片问题

Swift新async/await并发中利用Task防止指定代码片段执行的数据竞争(Data Race)问题