这是我第一次尝试创建一个Android应用程序,所以我一直在制作很多令人讨厌的初学者错误!现在我只是想创建一个非常简单的登录/注册系统。但是,我似乎误解了如何处理用户输入的输入。 从我在这里看到的上一篇文章中,我试图做这样的事情:
//in Register class
public void submission(View view){
//Call User Constructor based on info received from Registration Activity
EditText enteredUser = (EditText)findViewbyId(R.id.enteredUser);
//then use the input from this field to do other stuff
}
但是出于某种原因,我不断收到类型为Register(我当前所在的类的名称)未定义findViewById(int)的错误。有人能告诉我我做错了什么吗?我很确定我在顶部有正确的import语句(android.widget.EditText)。
以下是相应的xml代码:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".Register" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Enter New UserName:" />
<EditText
android:id="@+id/enteredUser"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/textView1"
android:layout_below="@+id/textView1"
android:ems="10" >
<requestFocus />
</EditText>
...more input buttons etc...
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/confirmPass"
android:layout_alignParentBottom="true"
android:layout_marginBottom="64dp"
android:onClick = "submission" <----- Used to call the submission function after
android:text="Submit" /> all inputs have been filled
</RelativeLayout>
对不起有点冗长的问题,但我非常感谢任何帮助。
谢谢!
答案 0 :(得分:2)
您的编译时错误是由于拼写错误:
findViewbyId
需要
findViewById
然后务必在致电setContentView()
后致电super.onCreate(savedInstanceState)
。我强烈建议您遵循Building Your First App教程,并明确注意代码。
和往常一样,familiarize yourself with the documentation。如果您有编译时错误,请先检查它,您可能只是输入错误!