Android选项卡与透明模糊背景

时间:2013-12-23 12:57:32

标签: android-layout android-tabhost android-tabs android-tabstrip

我希望显示透明模糊标签,以便其背后的列表活动屏幕显示模糊图像enter image description here

没有分隔符的标签。

1 个答案:

答案 0 :(得分:1)

我通过从取消选择事件中删除项目选择器背景找到了解决方案,并且要在选项卡组的背景中设置的图像只使用设置的背景资源来使用该图像。

在选择器中进行更改

<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:drawable="@drawable/selected_tab" android:state_selected="true" />
    <item android:drawable="@android:color/transparent" />
</selector>
标签主机中的

进行以下更改

<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
   android:id="@android:id/tabhost"
   android:layout_width="fill_parent"
   android:layout_height="fill_parent"
   android:background="#000000" >
   <RelativeLayout
       android:id="@+id/linearLayoutTab"
       android:layout_width="fill_parent"
       android:layout_height="fill_parent"
       android:orientation="vertical" >
       <FrameLayout
           android:id="@android:id/tabcontent"
           android:layout_width="fill_parent"
           android:layout_height="fill_parent" />
       <TabWidget
           android:id="@android:id/tabs"
           android:layout_width="fill_parent"
           android:layout_height="wrap_content"
           android:layout_alignParentBottom="true"
           android:layout_marginBottom="-10dp"
           android:tabStripEnabled="true"
           android:background="@drawable/unselected_tab"/>
   </RelativeLayout>
</TabHost>