AnimateLayoutChanges属性禁用了子元素的alpha属性

时间:2014-03-25 11:52:03

标签: android-layout android-xml

当我将animatedLayoutChanges =“true”添加到我的父布局时,子布局中的alpha不再起作用了:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:animateLayoutChanges="true"> // <<<<<<<

<LinearLayout 
        android:id="@+id/my_outofzoom_text_tablet_landscape"
        android:layout_width="300dp"
        android:layout_marginTop="25dp"
        android:layout_centerHorizontal="true"
        android:layout_height="100dp"
        android:background="@drawable/border_rounded_corner"
        android:layout_toRightOf="@id/movable_layout"
        android:alpha="0.5"        // <<<<<<< 
        android:visibility="gone"
        android:gravity="center"
        android:clickable="true">
    <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:gravity="center"
            android:textColor="#ffff"
            android:layout_margin="5dp"
            android:textSize="25dp"
            android:text="@string/to_far_away">

    </TextView>
</LinearLayout>

有没有人知道为什么会这样,我该怎么办?

1 个答案:

答案 0 :(得分:0)

我猜animatedLayoutChanges使用AlphaAnimation和keepLastFrame = true,这是编辑你的预定alpha。 我从来没有,但也许你可以尝试设置动画监听器并最终重置你想要的alpha。 (注意动画监听器在三星设备上有一个可能根本不会被调用的错误)