我应该把这段代码放在哪里
Button txt = (Button) findViewById(R.id.button1);
Typeface font = Typeface.createFromAsset(getAssets(), "customfont.ttf");
txt.setTypeface(font);
所以我可以更改按钮上显示的文本的字体?我只想更改按钮上的字体。我不想更改警报对话框中的字体。我只是不知道将代码放在哪里来更改按钮字体。我已经将自定义字体放置在 assets 中的“fonts”文件夹中。
这是按钮的xml部分:
<Button
android:id="@+id/button1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:onClick="alertBtn"
android:text="Click for message"
android:textSize="22sp"
/>
这是我的项目的代码:
package com.test.hellothere;
import android.app.Activity;
import android.app.AlertDialog;
import android.graphics.Typeface;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
public class HelloThereActivity extends Activity implements View.OnClickListener{
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
}
public void onClick(View v){}
public void alertBtn(View v){
new AlertDialog.Builder(this)
.setTitle("Hello")
.setMessage("Hello There!")
.setNeutralButton("Go Back", null)
.show();
}
}