我正在尝试在一个用于片段的ViewPager中使用Christophe Versieux优秀的HoloEverywhere库。
如果我的片段有以下布局......
<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:holo="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Roboto Font" />
<android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="1" /></LinearLayout>
然后Roboto字体出现在TextView中,正如我所料。
但是,如果相同的TextView xml在ViewPager膨胀的视图中,则Roboto字体不会出现在寻呼机的textview中。它只是默认字体。
我错过了什么?