完全是新的,并开始只是通过应用程序教程。我想运行一个算法来测试它是如何运行的。我在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