我正在使用API 16进行编译,但支持的最低API设置为8.我正在尝试在XML中设置alpha
的{{1}},但每次使用时都会
ImageView
<ImageView
android:id="@+id/image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:alpha="0"
.
.
. />
应该从View继承它。
这是一个错误,还是这真的是它应该如何工作。我设置了可见性,但这对我的动画显示和隐藏图像效果不佳。
答案 0 :(得分:1)
是。你说你的分数是8.但是,在API级别11之前,View的alpha xml属性不会出现。
http://developer.android.com/reference/android/view/View.html#setAlpha(float)