如何使用fontawesome设置tablayout图标

时间:2017-10-05 13:15:59

标签: android font-awesome android-tablayout

我是android的初学者。我正在使用font-awesome图标库。我想使用view pager

tablyout中使用font-awesome设置图标

1 个答案:

答案 0 :(得分:2)

创建名为custom_tab.xml

的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"
    />

现在使用下面的代码设置标签布局的字体

TextView tabOne = (TextView) LayoutInflater.from(this).inflate(R.layout.custom_tab, null);
tabOne.setText("&#xf1fe;");
Typeface typeface = Typeface.createFromAsset(getAssets(), "fonts/fontawesome-webfont.ttf");
tabOne.setTypeface(typeface);
tabLayout.getTabAt(0).setCustomView(tabOne);

<强> How to Use FontAwesome in an Android App