是否可以使用ImageView
作为父母?我想在TextView
上添加一些ImageView
,当用户放大ImageView
时,我希望TextView
也可以放大!
注意:我制作了可缩放的ImageView
,但我无法进行缩放RelativeLayout
...
编辑:
我的xml:
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" android:layout_height="match_parent">
<nikdan.m.metro.ZoomableImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/imgMap"
android:layout_gravity="center" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceLarge"
android:text="Hello"
android:id="@+id/text"
android:layout_gravity="center"
android:textColor="#ff0000" />
</FrameLayout>
答案 0 :(得分:1)
将FrameLayout
设为Parent
,并在TextView
之后添加ImageView
。
这应该可以解决问题。