當前位置: 首頁>>代碼示例>>Java>>正文


Java TabLayout.setBackgroundColor方法代碼示例

本文整理匯總了Java中android.support.design.widget.TabLayout.setBackgroundColor方法的典型用法代碼示例。如果您正苦於以下問題:Java TabLayout.setBackgroundColor方法的具體用法?Java TabLayout.setBackgroundColor怎麽用?Java TabLayout.setBackgroundColor使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在android.support.design.widget.TabLayout的用法示例。


在下文中一共展示了TabLayout.setBackgroundColor方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: initTab

import android.support.design.widget.TabLayout; //導入方法依賴的package包/類
@Override
public void initTab(TabLayout tabLayout) {
    tabLayout.setTabMode(TabLayout.MODE_FIXED);
    tabLayout.setTabGravity(TabLayout.GRAVITY_FILL);
    tabLayout.setBackgroundColor(getContext().getResources().getColor(R.color.colorPrimary));
    tabLayout.setSelectedTabIndicatorColor(Color.WHITE);
    tabLayout.setTabTextColors(ColorStateList.valueOf(Color.WHITE));
}
 
開發者ID:Mindjet,項目名稱:LiteReader,代碼行數:9,代碼來源:DoubanMovieMoreReviewViewModel.java

示例2: theme

import android.support.design.widget.TabLayout; //導入方法依賴的package包/類
private void theme(View root) {
        int colorPrimary = getResources().getColor(R.color.colorPrimary);
        int accentColor = getResources().getColor(R.color.colorAccent);
        boolean isPrimaryDark = true;
        int contentColor = GeneralUtils.resolveColor(getContext(), android.R.attr.textColorPrimaryInverse, 0);

        root.findViewById(R.id.top_bar_house).setBackgroundColor(colorPrimary);
        ((TextView) root.findViewById(R.id.single_storage_item_text_view)).setTextColor(contentColor);

        TabLayout tabLayout = (TabLayout) root.findViewById(R.id.tab_layout);
        tabLayout.setBackgroundColor(colorPrimary);
        tabLayout.setTabTextColors(ColorUtil.withAlpha(contentColor, .75f), contentColor);
        tabLayout.setSelectedTabIndicatorColor(contentColor);
        try {
            for (int i = 0; i < tabLayout.getTabCount(); i++) {
                TabLayout.Tab tab = tabLayout.getTabAt(i);
                Field fTabView = TabLayout.Tab.class.getDeclaredField("mView");
                fTabView.setAccessible(true);
                View tabView = (View) fTabView.get(tab);
                GeneralUtils.setBackgroundDrawable(tabView, MaterialValueHelper.getSelectableItemBackground(getActivity(), isPrimaryDark, false));
            }
        } catch (Exception e) {
            e.printStackTrace();
        }


        TintHelper.setTint((ImageView) root.findViewById(R.id.up_button), GeneralUtils.resolveColor(getActivity(), android.R.attr.textColorPrimaryInverse, 0));
        ((TextView) root.findViewById(R.id.cancel)).setTextColor(accentColor);
        ((TextView) root.findViewById(R.id.choose)).setTextColor(accentColor);

//        ATH.setStatusbarColor(d.getWindow(), ColorUtil.darkenColor(colorPrimary));
    }
 
開發者ID:GlennioTech,項目名稱:MetadataEditor,代碼行數:33,代碼來源:FolderPickerDialog.java

示例3: initTabLayout

import android.support.design.widget.TabLayout; //導入方法依賴的package包/類
@Override
protected void initTabLayout(TabLayout tabLayout) {
    tabLayout.setBackgroundColor(getContext().getResources().getColor(R.color.colorPrimary));
    tabLayout.setSelectedTabIndicatorColor(Color.WHITE);
    tabLayout.setTabTextColors(ColorStateList.valueOf(Color.WHITE));
}
 
開發者ID:Mindjet,項目名稱:LiteReader,代碼行數:7,代碼來源:MainViewModel.java


注:本文中的android.support.design.widget.TabLayout.setBackgroundColor方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。