我正在运行一个Android应用程序,它只是弹出一个窗口,上面写着“你好”。当我在模拟器中运行它时,它说“不幸的是,HelloAndroid已经停止了”。我的代码中有错误吗?
package com.example.helloandroid;
import java.awt.Color;
import javax.swing.JFrame;
import javax.swing.JLabel;
public class HelloAndroid {
public static void main(String[] args) {
JFrame window = new JFrame();
window.setVisible(true);
window.setSize(200, 300);
JLabel text = new JLabel();
text.setText("Hello");
text.setForeground(Color.RED);
window.add(text);
}
}
答案 0 :(得分:2)
Android不支持Swing /(IIRC)awt或完整的桌面Java API。遗憾。