「こんにちは」と言ってウィンドウをポップアウトする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);
}
}