全新的,刚开始学习应用程序教程。我想运行一个算法来测试它是如何运行的。我让它在java中完美运行,但不确定如何在android中正确创建一个类实例。
public class DisplayMessageActivity extends Activity {
myAlgorithm myAlg = new myAlgorithm();
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// Get the message from the intent
Intent intent = getIntent();
String message = intent.getStringExtra(MainActivity.EXTRA_MESSAGE);
// Create the text view
TextView textView = new TextView(this);
textView.setTextSize(40);
textView.setText(message);
// Set the text view as the activity layout
setContentView(textView);
}
但是,一旦运行该程序,我就会强制关闭。我认为这不是使用Android的正确方法吗?
TIA