我有RelativeLayout
ProgressBar
我想設置RelativeLayout透明,使用android:background="@null"
。它運行良好,但不適用於android 5.1.0及更高版本。Android RelativeLayout設置透明
這裏的file.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@null">
<ProgressBar style="@style/progress_bar_style"/>
</RelativeLayout>
所以,我已經試過像
android:background="#00000000"
android:background="#77000000"
android:background="#AARRGGBB"
e.t.c我在計算器已經找到了一些方法。 那麼,如何解決這個問題呢?
UPDATE:
,'RelativeLayout'的顏色是什麼? –
這是完全不同的佈局嗎? –
你爲什麼不使用alpha? –