У меня проблема ... Я использую другой шрифт, и только 1 кнопка показывает текст с этим шрифтом ...
Только кнопка продолжения показывает правильный шрифт!
Я дам код, потому что я пытался это исправить, но мне не удалось ... Может быть, вы можете это исправить:
Typeface tf = Typeface.createFromAsset(getAssets(),
"fonts/TYPOGRAPH PRO Ultra Light.ttf");
TextView tv = (TextView) findViewById(R.id.continuebutton);
tv.setTypeface(tf);
TextView tv2 = (TextView) findViewById(R.id.newgame);
tv.setTypeface(tf);
TextView tv3 = (TextView) findViewById(R.id.aboutbutton);
tv.setTypeface(tf);
TextView tv4 = (TextView) findViewById(R.id.exit);
tv.setTypeface(tf);
и на xml:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="30dip" android:background="@drawable/pickip">
<LinearLayout
android:orientation="vertical"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:layout_gravity="center">
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Continue"
android:id="@+id/continuebutton"
android:background="@android:color/transparent"
android:textColor="@android:color/white"
android:textSize="32dp"
/>
<Button
android:id="@+id/newgame"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="New Game"
android:background="@android:color/transparent"
android:textColor="@android:color/white"
android:textSize="32dp"
/>
<Button
android:id="@+id/aboutbutton"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="About"
android:background="@android:color/transparent"
android:textColor="@android:color/white"
android:textSize="32dp"
/>
<Button
android:id="@+id/exit"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Exit"
android:background="@android:color/transparent"
android:textColor="@android:color/white"
android:textSize="32dp"
/>
</LinearLayout>
</LinearLayout>