TabLayout Android,自定义背景颜色

时间:2011-11-14 10:53:03

标签: android background tabs

在Android教程中

没有自定义选项卡背景的方法。我的应用程序是基于官方教程的..有谁可以帮我提供backgroundcolor白色的教程或代码? 这是我的代码:

LauncherActivity.java

public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.launcher);

        Resources res = getResources(); 
        TabHost tabHost = getTabHost(); 
        TabHost.TabSpec spec; 
        Intent intent;  



        intent = new Intent().setClass(this, MyActivity.class);



        spec = tabHost.newTabSpec("myactivity").setIndicator("Activity")

                      .setContent(intent);
        tabHost.addTab(spec);

        // Do the same for the other tabs
        intent = new Intent().setClass(this, search.class);
        spec = tabHost.newTabSpec("search").setIndicator("Search"
                          )
                      .setContent(intent);
        tabHost.addTab(spec);

        intent = new Intent().setClass(this, MyActivity3.class);
        spec = tabHost.newTabSpec("songs").setIndicator("Songs"
                          )
                      .setContent(intent);
        tabHost.addTab(spec);

        tabHost.setCurrentTab(0);
    }

Launcher.xml

   <?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="[url]http://schemas.android.com/apk/res/android"
   android:id="@android:id/tabhost"
   android:layout_width="fill_parent"
   android:layout_height="fill_parent">
    <LinearLayout
       android:orientation="vertical"
       android:layout_width="fill_parent"
       android:layout_height="fill_parent"
       android:padding="5dp">
        <TabWidget
           android:id="@android:id/tabs"
           android:layout_width="fill_parent"
           android:layout_height="wrap_content"/>
        <FrameLayout
           android:id="@android:id/tabcontent"
           android:layout_width="fill_parent"
           android:layout_height="fill_parent"
           android:padding="0dp" />
    </LinearLayout>
</TabHost>

1 个答案:

答案 0 :(得分:0)

如果您要更改标签的背景颜色,则代码如下:

for(int i=0;i<tabhost.getTabWidget().getChildCount();i++)
{   
      tabhost.getTabWidget().getChildAt(i).setBackgroundColor(Color.WHITE); //unselected tab
}
选择标签

tabhost.getTabWidget().getChildAt(tabhost.getCurrentTab()).setBackgroundColor(Color.GRAY); // selected tab

你可以将上面的行放入一个方法(比如setTabColors())并调用它:

tabHost.setOnTabChangedListener(new OnTabChangeListener() {

        @Override
        public void onTabChanged(String arg0) {

               setTabColors(tabHost);
        }
});