((JButton) e.getSource()).setBackground(Color.blue) ;
成都創(chuàng)新互聯(lián)公司長期為成百上千客戶提供的網站建設服務,團隊從業(yè)經驗10年,關注不同地域、不同群體,并針對不同對象提供差異化的產品和服務;打造開放共贏平臺,與合作伙伴共同營造健康的互聯(lián)網生態(tài)環(huán)境。為碌曲企業(yè)提供專業(yè)的成都網站設計、成都網站制作,碌曲網站改版等技術服務。擁有十年豐富建站經驗和眾多成功案例,為您定制開發(fā)。
Color.blue顏色常量 驗證的時候是用tab鍵
如果要鼠標放上去變顏色 應該是MouseMotionListener
而不是 FocusListener
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import java.util.*;
class calculator extends JFrame implements ActionListener,MouseListener
{
JTextField l ;//用標簽顯示文字.因為標簽是不能鼠標點的
JButton b[];//直接定義數組
Container c ;//容器
JPanel p1 ;//第一個顯示輸入信息的區(qū)域
JPanel p2 ;//第二個..顯示所有按鍵的區(qū)域
public calculator ()
{
l=new JTextField("0.",25);
b=new JButton[16] ;
b[0]=new JButton("=");
b[1]=new JButton("0");
b[2]=new JButton("1");
b[3]=new JButton("2");
b[4]=new JButton("3");
b[5]=new JButton("4");
b[6]=new JButton("5");
b[7]=new JButton("6");
b[8]=new JButton("7");
b[9]=new JButton("8");
b[10]=new JButton("9");
b[11]=new JButton("+");
b[12]=new JButton("-");
b[13]=new JButton("*");
b[14]=new JButton("/");
b[15]=new JButton("Exit");
for(int i=0 ;i16;i++)
{
b[i].addMouseListener(this) ;
b[i].addActionListener(this) ;
b[i].setBackground(Color.gray) ;
}
p1=new JPanel() ;
p2=new JPanel() ;
c=getContentPane() ;//獲得容器
c.setLayout(new BorderLayout());//容器設置布局管理器
p1.setLayout(new FlowLayout(FlowLayout.RIGHT)) ;
p2.setLayout(new GridLayout(4,4,10,10)) ;
p1.add(l) ;//靠右邊放標簽
p2.add(b[11]) ;
p2.add(b[12]) ;
p2.add(b[13]) ;
p2.add(b[14]) ;
p2.add(b[2]) ;
p2.add(b[3]) ;
p2.add(b[4]) ;
p2.add(b[1]) ;
p2.add(b[5]) ;
p2.add(b[6]) ;
p2.add(b[7]) ;
p2.add(b[0]) ;
p2.add(b[8]) ;
p2.add(b[9]) ;
p2.add(b[10]) ;
p2.add(b[15]) ;
c.add(p1,BorderLayout.NORTH) ;
c.add(p2,BorderLayout.CENTER) ;
setSize(300,220) ;
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE) ;
setLocation(300,300) ;
setVisible(true) ;
}
public void actionPerformed(ActionEvent e)
{
if(e.getSource()==b[15]) {System.exit(0) ;}
if(e.getSource()==b[14]) l.setText("你按下的是"+"/") ;
if(e.getSource()==b[13]) l.setText("你按下的是"+"*") ;
if(e.getSource()==b[12]) l.setText("你按下的是"+"-") ;
if(e.getSource()==b[11]) l.setText("你按下的是"+"+") ;
if(e.getSource()==b[10]) l.setText("你按下的是"+"9") ;
if(e.getSource()==b[9]) l.setText("你按下的是"+"8") ;
if(e.getSource()==b[8]) l.setText("你按下的是"+"7") ;
if(e.getSource()==b[7]) l.setText("你按下的是"+"6") ;
if(e.getSource()==b[6]) l.setText("你按下的是"+"5") ;
if(e.getSource()==b[5]) l.setText("你按下的是"+"4") ;
if(e.getSource()==b[4]) l.setText("你按下的是"+"3") ;
if(e.getSource()==b[3]) l.setText("你按下的是"+"2") ;
if(e.getSource()==b[2]) l.setText("你按下的是"+"1") ;
if(e.getSource()==b[1]) l.setText("你按下的是"+"0") ;
if(e.getSource()==b[0]) l.setText("你按下的是"+"=") ;
}
public void mouseClicked(MouseEvent e)
{}
public void mouseEntered(MouseEvent e)
{((JButton) e.getSource()).setBackground(Color.blue) ; }
public void mouseExited(MouseEvent e)
{((JButton) e.getSource()).setBackground(Color.gray) ; }
public void mousePressed(MouseEvent e)
{}
public void mouseReleased(MouseEvent e)
{}
public static void main(String args[])
{
new calculator();
}
}
編程思路,點擊按鈕1時,將按鈕1的backcolor設置成藍色,以此類推
解決:這是因為你的studio設置了省電模式,你可以通過 FilePower Save Mode取消掉,或者通過點擊右下角小人頭像取消
部分java文件前標識圖標顯示為 j 而是 c,File size exceeds configured limit (2560000)
IDEA對能關聯(lián)的文件大小做了限制,主要是為了保護內存,默認值為2500kb,對于一般的java文件也夠用了,只是這里我用protocbuf生成的java文件過大,達到3M多
android studio安裝目錄下bin 下的idea.properties文件。
[java]?view plain?copy
#?idea.max.intellisense.filesize=2500
idea.max.intellisense.filesize=5000
默認值為2500kb
解決方法:
這里我將其修改為5000kb,我的最大文件大小為3M多,解決問題
選擇Mark Directory As中的選項Sources Root,設置成功后可看到java文件夾顏色變?yōu)闇\藍色。