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
}
ただし、何らかの理由で、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>
少し長い質問で申し訳ありませんが、助けていただければ幸いです。
ありがとう!