我们如何使用TextView和Buttons在ImageView中的图像上覆盖关于图像的x和y坐标的布局
答案 0 :(得分:0)
总是一个很好的Android和布局资源是:http://www.learn-android.com/2010/01/05/android-layout-tutorial/。相应的layout_x
和layout_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>