如何在imageview上获得TextView的精确位置

时间:2016-04-05 06:38:54

标签: android

我正在设计一个屏幕,我需要在图像上获取TextView的确切位置。有没有办法在ImageView上获得TextView的位置?

1 个答案:

答案 0 :(得分:0)

这将通过设置相同的宽度和高度参数在imageview上设置textview。

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content">

<ImageView
    android:layout_width="match_parent"
    android:layout_height="wrap_content" />

<TextView
    android:layout_width="match_parent"
    android:layout_height="wrap_content" /></FrameLayout>