java中通过按钮改变graphics 中的字体大小,为啥这么写没有效果?应该如何改正?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java中通过按钮改变graphics 中的字体大小,为啥这么写没有效果?应该如何改正?相关的知识,希望对你有一定的参考价值。
import java.applet.*;
import java.awt.*;
import java.awt.event.*;
public class test extends Applet implements ActionListener
private int size = 12;
Button magnify;
Button lessen;
Font f = new Font("宋体",Font.BOLD ,size);
public void init()
Panel buttons = new Panel();
magnify = new Button("放大");
lessen = new Button("缩小");
buttons.setLayout(new FlowLayout());
buttons.add(magnify);
buttons.add(lessen);
setLayout(new FlowLayout());
add(buttons);
magnify.addActionListener(this);
lessen.addActionListener(this);
public void paint(Graphics g)
//注意,判断时候一定是 == 而不是 = !
g.setFont(f);
g.drawString("Java is great!", 50, 100);
public void actionPerformed(ActionEvent e)
if(e.getSource() == magnify)
size ++;
repaint();
else if(e.getSource() == lessen)
size --;
repaint();
import java.awt.*;
import java.awt.event.*;
public class test extends Applet implements ActionListener
private int size = 12;
Button magnify;
Button lessen;
public void init()
Panel buttons = new Panel();
magnify = new Button("放大");
lessen = new Button("缩小");
buttons.setLayout(new FlowLayout());
buttons.add(magnify);
buttons.add(lessen);
setLayout(new FlowLayout());
add(buttons);
magnify.addActionListener(this);
lessen.addActionListener(this);
public void paint(Graphics g)
//注意,判断时候一定是 == 而不是 = !
Font f = new Font("宋体",Font.BOLD ,size); //把字体对象放到这new
g.setFont(f);
g.drawString("Java is great!", 50, 100);
public void actionPerformed(ActionEvent e)
if(e.getSource() == magnify)
size ++;
repaint();
else if(e.getSource() == lessen)
size --;
repaint();
//因为你这个applet 程序 加载时只初始化一次 你把字体对象放在成员变量的位置
那么初始化一次以后就永远不变了 你怎么改变size都不会重新new一个对象f出来
当然就不改变大小拉追问
那应该怎么修改呢?
追答我晕 我发的就是改好的啊····
参考技术A 因为你这个程序一开始运行的时候Font对象已经生成了,也就是你现在修改size这个值影响不到Font这个对象,你可以修改size以后调用 f.setSize()(猜测是这个方法,具体可以查下API)这个方法重新设置字体的大小Android中通过typeface设置字体
Android系统默认字体支持四种字体,分别为:
- noraml (普通字体,系统默认使用的字体)
- sans(非衬线字体)
- serif (衬线字体)
- monospace(等宽字体)
除此之外还可以使用其他字体文件(*.ttf)
关于后三种字体的区别可以看:
http://kb.cnblogs.com/page/192018/
一、使用系统自带的字体
1.在xml中修改字体
<!-- 使用默认的sans字体-->
<TextView
android:id="@+id/sans"
android:text="Hello,World"
android:textSize="20sp"
android:typeface="sans" />
<!-- 使用默认的serifs字体-->
<TextView
android:id="@+id/serif"
android:text="Hello,World"
android:textSize="20sp"
android:typeface="serif" />
<!-- 使用默认的monospace字体-->
<TextView
android:id="@+id/monospace"
android:text="Hello,World"
android:textSize="20sp"
android:typeface="monospace" />
2.在java代码中修改字体
第一步: 获取TextView实例
//获取textView实例
TextView textView = findViewById(R.id.textview);
第二步:设置字体
//设置serif字体
textView.setTypeface(Typeface.SERIF);
//设置sans字体
textView.setTypeface(Typeface.SANS_SERIF);
//设置monospace字体
textView.setTypeface(Typeface.MONOSPACE);
二、在Android中可以引入其他字体
第一步:在assets目录下新建fonts目录,把ttf字体文件放到这,如图所示
第二步:程序中调用
//实例化TextView
TextView textView = findViewById(R.id.textview);
//得到AssetManager
AssetManager mgr=getAssets();
//根据路径得到Typeface
Typeface tf=Typeface.createFromAsset(mgr, "fonts/pocknum.ttf");
//设置字体
textView.setTypeface(tf);
以上是关于java中通过按钮改变graphics 中的字体大小,为啥这么写没有效果?应该如何改正?的主要内容,如果未能解决你的问题,请参考以下文章
Graphics DrawString 画出字体怎么不一样大啊?