我们如何在图像视图上叠加布局

时间:2012-11-21 12:23:47

标签: android android-imageview

我们如何使用TextView和Buttons在ImageView中的图像上覆盖关于图像的x和y坐标的布局

2 个答案:

答案 0 :(得分:0)

总是一个很好的Android和布局资源是:http://www.learn-android.com/2010/01/05/android-layout-tutorial/。相应的layout_xlayout_y也可以通过编程方式设置。

答案 1 :(得分:0)

使用FrameLayout作为主容器,并使用边距将所有元素放在里面:

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

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

    <TextView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_marginLeft="30dp"
        android:layout_marginTop="60dp"
        android:text="A text" 
        />

</FrameLayout>