我有一个填充手机区域的框架布局(fill_parent)。还有一个imageView保留在框架布局centreInParent内。
现在我正在使用缩放动画来减小帧布局的大小。但我不希望imageView减小尺寸,此外我想将imageView中心移动到相对于其缩放的框架布局。
我怎样才能做到这一点?
我的xml:
<FrameLayout
android:layout_height="match_parent"
android:layout_width="match_parent"
android:id="@+id/id"
android:background="@drawable/bg" >
<ImageView
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:gravity="center"
android:layout_centerInParent="true"
android:src="@drawable/bglogo"/>
</FrameLayout>
谢谢!
答案 0 :(得分:0)
将布局更改为以下方式
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<FrameLayout
android:layout_height="match_parent"
android:layout_width="match_parent"
android:id="@+id/id"
android:background="@drawable/bg" >
</FrameLayout>
<ImageView
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:gravity="center"
android:layout_centerInParent="true"
android:src="@drawable/bglogo"/>
</RelativeLayout>