Android:如何在另一个imageview中嵌入图像?

时间:2017-07-28 16:58:34

标签: android user-interface imageview

我有一个空调图像,现在我想在右上角显示它的品牌名称(另一个图像),并在中心显示当前温度(图像也是如此)。有没有一种方便的方法来实现它?

1 个答案:

答案 0 :(得分:1)

您可以使用RelativeLayout来实现此目的,它允许您将视图叠加在一起。您可以阅读有关RelativeLayouts here的更多信息。

这是一个如何使用RelativeLayout的示例,尽管您必须为您调整它,因为您没有发布任何代码:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <ImageView
        android:id="@+id/image"
        android:layout_width="30dip"
        android:layout_height="30dip"
        android:adjustViewBounds="true"
        android:scaleType="centerCrop" />

   <ImageView
        android:id="@+id/image2"
        android:layout_width="30dip"
        android:layout_height="30dip"
        android:adjustViewBounds="true"
        android:scaleType="centerCrop" />

    <ImageView
        android:id="@+id/imagef"
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:layout_centerInParent="true"
        android:background="@drawable/ph_bg" />

</RelativeLayout>