java代码中没有选项卡背景属性可以动态更改选项卡背景

时间:2017-03-13 17:24:47

标签: java android android-layout android-tabs android-tablayout

如何通过java代码动态更改选项卡背景这里是我的布局代码。如果我可以在java中获得 app:tabBackground =" @ drawable / tab_background" 代码,然后我可以通过使用选择器的选项卡选择的位置更改背景可绘制,以获得所需的屏幕,如第一张图像,但我无法找到任何地方,请帮助我的朋友

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    >

    <android.support.design.widget.TabLayout
        android:id="@+id/icon_tabs"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@drawable/toolbar_bg"
        android:layout_marginRight="10dp"
        android:layout_marginLeft="10dp"
        android:layout_marginTop="10dp"
        app:tabBackground="@drawable/tab_background"
        app:tabIndicatorColor="@color/transparent"
        app:tabGravity="fill"
        app:tabMode="fixed" />


    <FrameLayout
        android:id="@+id/main_fragment"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

</LinearLayout>

我需要如下布局

enter image description here

但我得到了这个布局

enter image description here

2 个答案:

答案 0 :(得分:0)

您需要为OnTabSelectedListener事件和每个项目init tabLayout.setSelectedTabIndicatorColor(Color.parseColor("#FFFFFF"));创建一个侦听器。 和

tabLayout.setSelectedTabIndicatorHeight((int) (2 * getResources().getDisplayMetrics().density));

答案 1 :(得分:0)

试试这个:

tabLayout.getTabAt(1).setCustomView(R.drawable.your_layout);   //2nd position

或者您也可以使用自定义布局视图

tabLayout.getTabAt(1).setCustomView(R.layout.your_layout); 

总体Tablayout使用

tabLayout.setBackground(ContextCompat.getDrawable(this, R.drawable.your_drawable));