简体   繁体   English

在android中的选项卡中设置背景图像

[英]Set the background image in tab in android

I want to set the background (red image) on selected tab bar. 我想在选定的标签栏上设置背景(红色图像)。

Initially I set like this 最初我这样设置

在此输入图像描述

When i change in the code 当我改变代码

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <!-- When selected, use grey -->
    <item android:drawable="@drawable/selected_tab"
          android:state_selected="true" />

</selector>

Its look like 它的样子

在此输入图像描述

My requirement to look like below this. 我的要求如下所示。 Please help to achieve this. 请帮助实现这一目标。

在此输入图像描述

you need to do like this way 你需要这样做

For Tab background you need to create selector like this way 对于Tab背景,您需要以这种方式创建选择器

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <!-- When selected, use grey -->
    <item android:drawable="@drawable/selected_tab"
          android:state_selected="true" />

    <item android:drawable="@drawable/default_tab"/>
</selector>

now you can create Button with different layout for your tab button like this way. 现在,您可以像这样为Tab键按钮创建具有不同布局的Button。 For this requirement Button View to set your tab icon at drawable top with text. 对于此要求按钮视图可在带有文本的可绘制顶部设置选项卡图标。

tab_add_photo_btn.xml tab_add_photo_btn.xml

<Button xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@id/tab_search"
    android:background="@drawable/tab_selector"
    android:drawableTop="@drawable/add_photo_icon"
    android:text="ADD PHOTO"
    android:textColor="#fff"
    android:padding="10dp"/>

I feel its nothing to do with XML coding .. just make some design trick 我觉得它与XML编码无关......只是做一些设计技巧

you need to make two different twiky images for each tab icon . 你需要为每个标签图标制作两个不同的twiky图像。

  • make Image background of tab which have little top part transparent (Not selected resource ) 制作具有小顶部透明的标签的图像背景(未选择资源)

  • make selected image with same size with contain selected background (Selected resource ) 使所选图像具有相同的尺寸并包含所选背景(所选资源)

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM