显示两张图片
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后面的名字可以随便起名)
运行效果
——@上官可编程
以上是关于显示两张图片的主要内容,如果未能解决你的问题,请参考以下文章