我正在设计一个屏幕,我需要在图像上获取TextView的确切位置。有没有办法在ImageView上获得TextView的位置?
答案 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>