【问题标题】:android- multiple alpha set in xml can't workandroid-xml 中设置的多个 alpha 不起作用
【发布时间】:2017-08-18 03:33:37
【问题描述】:

我试图制作这样的 alpha 动画:

<alpha
    android:duration="300"
    android:fromAlpha="0.0"
    android:toAlpha="0.9"/>
<alpha
    android:duration="300"
    android:fromAlpha="0.9"
    android:startOffset="300"
    android:toAlpha="0.6" />
<alpha
    android:duration="300"
    android:fromAlpha="0.6"
    android:startOffset="600"
    android:toAlpha="0.9" />
<alpha
    android:duration="300"
    android:fromAlpha="0.9"
    android:startOffset="900"
    android:toAlpha="1"
    android:fillAfter="true"/>

但即使我最终设置为 Alpha = 1,我的 Imageview 也不是不透明的。 是不是因为我在xml中只能设置一次?

【问题讨论】:

    标签: android xml animation alpha


    【解决方案1】:

    这对我有用:

    <?xml version="1.0" encoding="utf-8"?>
    <set xmlns:android="http://schemas.android.com/apk/res/android"
        android:fillEnabled="true"
        android:fillAfter="true">
    
      <alpha
        android:duration="300"
        android:fromAlpha="0.0"
        android:toAlpha="0.9" />
      <alpha
        android:duration="300"
        android:fromAlpha="0.9"
        android:startOffset="300"
        android:toAlpha="0.6" />
      <alpha
        android:duration="300"
        android:fromAlpha="0.6"
        android:startOffset="600"
        android:toAlpha="0.9" />
      <alpha
        android:duration="300"
        android:fromAlpha="0.9"
        android:startOffset="900"
        android:toAlpha="2.0" />
    </set>
    

    【讨论】:

    • 它工作!为什么可以设置2.0?我检查了 Android API 和该视图的 alpha 属性,作为 0(完全透明)和 1(完全不透明)之间的值。
    【解决方案2】:

    试试这个

    Animation animation = new AlphaAnimation(1,0f, 0.0f); 
    animation.setDuration(1000); 
    <id>.startAnimation(animation);
    

    【讨论】:

    • 感谢您的回答。我试过了:Animation animationFont = AnimationUtils.loadAnimation(this, R.anim.anim_font);ImageView.startAnimation(animationFont); 但我希望结果看起来像 0f->0.9f->0.6f->0.9f->1 在一个 xml 中可能吗?
    猜你喜欢
    • 1970-01-01
    • 2019-08-12
    • 2017-11-02
    • 1970-01-01
    • 1970-01-01
    • 2013-12-10
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多