如何在图像滑块上使标签布局透明...这是我的布局,我宣布标签布局...我搜索很多,但我没有任何解决方案...
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.TabLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="150dp"
android:id="@+id/tablayout"
android:textAllCaps="false"
android:background="#db000000"
app:tabMode="fixed"
app:elevation="0dp"
app:tabGravity="fill"
app:tabTextColor="#FFFFFF"
app:tabSelectedTextColor="#EF9C1A"
android:tabStripEnabled="true"
>
</android.support.design.widget.TabLayout>
</RelativeLayout>
答案 0 :(得分:1)
只需将其android:background
设置为#70000000
即可。这将使其半透明。只需将70
值更改为更适合您的值即可。 99变暗了。 10是透明的(较浅的)
修改:要使其完全透明,请使用android:background="@android:color/transparent"