我正在创建一个用于求解二次方程的应用程序,该应用程序用于上学。我很紧张,因为我不知道如何开始。我是一个狂热者,我努力工作,但我有很多疑问。一个是当我点击标签时如何在我的应用程序中打开键盘?
问问题
42 次
1 回答
0
Use an EditText, and the input will be handled automatically.
You can get the text with yourEditText.getText().toString();
in your Activity
Don´t forget to define your EditText there (in OnCreate()) first:
EditText yourEditText = (EditText)findViewById(R.id.youredittext);
(youredittext is the id of your EditText in your XML-Layout)
于 2013-07-05T11:03:30.130 回答