1

这是我第一次尝试创建一个安卓应用程序,所以我犯了很多恼人的初学者错误!现在我只是想创建一个非常简单的登录/注册系统。但是,我似乎误解了如何处理用户输入的输入。从我在这里看到的上一篇文章中,我正在尝试做这样的事情:

//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      

}

但是由于某种原因,我不断收到错误,即 findViewById(int) 未定义类型 Register (我当前所在的类的名称)。有人可以告诉我我做错了什么吗?我很确定我在顶部有正确的导入语句(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>

对不起,有点冗长的问题,但我将不胜感激任何帮助。

谢谢!

4

1 回答 1

2

您的编译时错误是由于拼写错误:

findViewbyId

需要是

findViewById

然后确保调用setContentView()后调用super.onCreate(savedInstanceState)。我强烈建议您遵循构建您的第一个应用程序教程,并清楚地关注代码。

和往常一样,熟悉文档。如果您有编译时错误,请先检查它,您可能只是有一个错字!

于 2013-03-11T00:27:30.487 回答