-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMain4Activity.java
More file actions
26 lines (22 loc) · 874 Bytes
/
Main4Activity.java
File metadata and controls
26 lines (22 loc) · 874 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package com.example.android.docplusplus;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
public class Main4Activity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main4);
EditText otname = (EditText) findViewById(R.id.otname);
EditText otmobile = (EditText) findViewById(R.id.otmobile);
EditText otrel = (EditText) findViewById(R.id.otrel);
Button otsignup = (Button) findViewById(R.id.otsignup);
otsignup.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
}
});
}
}