0

我有一个填充电话区域(fill_parent)的框架布局。还有一个 imageView 保存在框架布局 centerInParent 内。

现在我正在使用缩放动画来减小框架布局的大小。但我不希望 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>

谢谢!

4

1 回答 1

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>
于 2013-07-05T07:33:05.860 回答