4

我通过使用AlphaAnimation.

当前的解决方案在我的两台使用 Gingerbread 的设备和一台使用 Froyo 的设备上运行良好。但是,它不适用于冰淇淋三明治?!

这是我的 xml 布局。

<LinearLayout
        android:id="@+id/photoOptionBar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:alpha="0"
        android:background="@color/gpsBackground"
        android:orientation="horizontal">

        <ImageButton
            android:id="@+id/displayShareBtn"
            style="@android:style/Widget.Holo.Button.Borderless.Small"
            android:background="@android:color/transparent"
            android:layout_width="0dp"
            android:layout_weight="1"
            android:layout_height="wrap_content"
            android:layout_gravity="center_vertical|center_horizontal"
            android:padding="20dp"
            android:src="@drawable/share"
            android:contentDescription="Share the picture"/>

        <ImageButton
            android:id="@+id/displayDiscardBtn"
            style="@android:style/Widget.Holo.Button.Borderless.Small"
            android:background="@android:color/transparent"
            android:layout_width="0dp"
            android:layout_weight="1"
            android:layout_height="wrap_content"
            android:layout_gravity="center_vertical|center_horizontal"
            android:padding="20dp"
            android:src="@drawable/contentdiscard"
            android:contentDescription="Discard Picture"/>

    </LinearLayout>

这是我的 onCreate 方法,用于在加载时将 alpha 设置为 0,因为在 xml 中完成时它不起作用...

    AlphaAnimation alpha = new AlphaAnimation(0.0F, 0.0F);
    alpha.setDuration(0); // Make animation instant
    alpha.setFillAfter(true); // Tell it to persist after the animation ends
    // And then on your layout
    this._photoOptionsBar.startAnimation(alpha);

然后当我想展示它时,我会调用以下内容。

public void showOptions() {
        AlphaAnimation alpha = new AlphaAnimation(0.0F, 1.0F);
        alpha.setDuration(PhotoDisplayFragment.FADE_DURATION); // Make animation instant
        alpha.setFillAfter(true);
        this._photoOptionsBar.startAnimation(alpha);
        this._optionsShowing = true;
}

当我在 IceCream 三明治中加载它时,LinearLayout 就在那里,因为您可以单击按钮并执行它们的功能,并且正在调用要显示的功能,但我就是看不到它!

任何帮助都会很棒

4

2 回答 2

6

问题android:alpha=0出在线性布局中。为了使事情正常工作,您必须在布局 xml 中将可见性属性设置为不可见。在开始 alpha 动画调用之前setVisibility(View.VISIBLE)

于 2012-10-23T10:56:07.317 回答
2

我有这个完全相同的问题。

似乎有两个单独的 alpha 属性。AlphaAnimation改变一个,android:alpha改变另一个。这两个属性都在 ICS 上使用,但在 ICSandroid:alpha之前被忽略。

因此,如果您设置android:alpha="0"并使用AlphaAnimation来执行动画,则在 ICS 之前它会正常工作,因为android:alpha它被忽略了。在 ICS 上,视图将始终不可见,因为AlphaAnimation不会android:alpha从 0 更改。因此,解决方案只是删除该android:alpha="0"行。

我对此不是 100% 确定,但这似乎就是它的行为方式。

我还认为这两个 alpha 的工作方式略有不同。当然,如果您ImageView使用半透明图像更改 alpha 的 alpha,它看起来比 更AlphaAnimation糟糕android:alpha。但是您对此无能为力。

于 2012-11-02T12:18:02.010 回答