TabLayout Android, настроить цвет фона - PullRequest
0 голосов
/ 14 ноября 2011

в уроке по Android нет способа настроить фон вкладки.мое приложение основано на официальном учебнике. Кто-нибудь может мне помочь с учебником или кодом для backgroundcolor white?это мой код:

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 голосов
/ 14 ноября 2011

Если вы хотите изменить цвет фона вкладок, то вот код:

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);
        }
});
...