查看忽略alpha值我有一個按鈕,alpha設置爲0.5,其可見性在佈局中消失。View.VISIBLE
<Button
android:id="@+id/Button"
android:layout_width="match_parent"
android:layout_height="50dp"
android:background="@color/black_color"
android:alpha="0.5"
android:visibility="gone"/>
在某一點上,我想使其可見(Button.setVisibility(View.VISIBLE);
),但是當我做 - 這不是半透明(0.5)。彷彿阿爾法設置爲1
我試過你發佈的代碼,在我的結尾它似乎工作得很好,你可能會發布一些活動代碼? –