我希望显示透明模糊标签,以便其背后的列表活动屏幕显示模糊图像
没有分隔符的标签。
答案 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>