2017-09-02 100 views
-1

如何爲android中的tablayout標題設置自定義字體?我想使用Yekan字體爲標題,我想和搜查,但沒有找到任何辦法......tablayout標題的自定義字體

的Java:

TabLayout tabLayout = (TabLayout) findViewById(R.id.tab_layout); 
    tabLayout.addTab(tabLayout.newTab().setText("ورود")); 
    tabLayout.addTab(tabLayout.newTab().setText("ثبت نام")); 
    tabLayout.setTabGravity(TabLayout.GRAVITY_FILL); 

    final ViewPager viewPager = (ViewPager) findViewById(R.id.pager); 
    final PagerAdapter adapter = new PagerAdapter 
      (getSupportFragmentManager(), tabLayout.getTabCount()); 
    viewPager.setAdapter(adapter); 
    viewPager.addOnPageChangeListener(new TabLayout.TabLayoutOnPageChangeListener(tabLayout)); 


    tabLayout.setOnTabSelectedListener(new TabLayout.OnTabSelectedListener() { 
     @Override 
     public void onTabSelected(TabLayout.Tab tab) { 
      viewPager.setCurrentItem(tab.getPosition()); 
     } 

     @Override 
     public void onTabUnselected(TabLayout.Tab tab) { 

     } 

     @Override 
     public void onTabReselected(TabLayout.Tab tab) { 

     } 
    }); 

XML:

<android.support.design.widget.TabLayout 
    android:id="@+id/tab_layout" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:background="#e7e7e7" 
    android:elevation="6dp" 
    android:minHeight="?attr/actionBarSize" 
    android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" /> 


<android.support.v4.view.ViewPager 
    android:id="@+id/pager" 
    android:layout_width="match_parent" 
    android:layout_height="fill_parent" 
    android:paddingBottom="30dp" 
    android:paddingLeft="50dp" 
    android:paddingRight="50dp" 
    android:paddingTop="30dp" /> 

有什麼辦法我設置,例如:

Typeface yekan = Typeface.createFromAsset(getAssets(), "fonts/yekan.ttf"); 

字體爲我的標籤:

tabLayout.addTab(tabLayout.newTab().setText("ورود")); 
tabLayout.addTab(tabLayout.newTab().setText("ثبت نام")); 

回答

2

你可以試試這個

創建一個名爲custom_tab.xmlRE的XML佈局⇒佈局。在此佈局中,我們已定義選項卡的自定義視圖。

custom_tab.xml

<?xml version="1.0" encoding="utf-8"?> 
<TextView xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:id="@+id/tab" 
    /> 

現在打開Activity.java並修改爲下面的代碼。

TextView tabOne = (TextView) LayoutInflater.from(this).inflate(R.layout.custom_tab, null); 
tabOne.setText("ONE"); 
tabOne.setCompoundDrawablesWithIntrinsicBounds(0, R.drawable.ic_tab_favourite, 0, 0);// if you want to set icon on that tab 
Typeface yekan = Typeface.createFromAsset(getAssets(), "fonts/yekan.ttf"); 
tabOne.setTypeface(yekan); 
tabLayout.getTabAt(0).setCustomView(tabOne);