如何在图像滑块上使tablayout透明

时间:2016-04-29 11:51:29

标签: android android-tablayout

如何在图像滑块上使标签布局透明...这是我的布局,我宣布标签布局...我搜索很多,但我没有任何解决方案...

<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>

like in this image..

my app is like this

1 个答案:

答案 0 :(得分:1)

只需将其android:background设置为#70000000即可。这将使其半透明。只需将70值更改为更适合您的值即可。 99变暗了。 10是透明的(较浅的)

修改:要使其完全透明,请使用android:background="@android:color/transparent"