java如何实现消息闪动
展开全部
给你一段代码吧~
class MyStartPanel extends JPanel implements Runnable
{
int times=0;
public void paint(Graphics g)
{
super.paint(g);
g.fillRect(0, 0, 400, 300);
if(times%2==0)
{
g.setColor(Color.yellow);
//开关信息的字体
Font myFont=new Font("华文新魏",Font.BOLD,30);
g.setFont(myFont);
g.drawString("stage: 1", 150, 150);
}
}
public void run() {
while(true)
{
try {
Thread.sleep(100);
} catch (Exception e) {
e.printStackTrace();
}
times++;
this.repaint();
}
}
}
class MyStartPanel extends JPanel implements Runnable
{
int times=0;
public void paint(Graphics g)
{
super.paint(g);
g.fillRect(0, 0, 400, 300);
if(times%2==0)
{
g.setColor(Color.yellow);
//开关信息的字体
Font myFont=new Font("华文新魏",Font.BOLD,30);
g.setFont(myFont);
g.drawString("stage: 1", 150, 150);
}
}
public void run() {
while(true)
{
try {
Thread.sleep(100);
} catch (Exception e) {
e.printStackTrace();
}
times++;
this.repaint();
}
}
}
展开全部
消息闪动?所谓的闪动也就是两张图片来回切换而已。不知道你所谓的闪动到底是什么意思。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
楼上说的对啊..比如你检测到有消息的话,可以用两张图切换..也可以用一张gif动态图..都行..
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
显示一个图怎么显示
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询