-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCreate.java
50 lines (36 loc) · 1.13 KB
/
Create.java
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
package com.example.travel;
import android.os.Bundle;
import android.app.Activity;
import android.content.Intent;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
public class Create extends Activity {
private Button bt1;
private Button bt2;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.create);
bt1=(Button)findViewById(R.id.crbt_cancer);
bt1.setOnClickListener(new OnClickListener(){
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
Intent intent=new Intent(Create.this,Login.class);
startActivity(intent);
Create.this.finish();
}
});
bt2=(Button)findViewById(R.id.crbt_registe);
bt2.setOnClickListener(new OnClickListener(){
@Override
public void onClick(View v) {
/*TODO post the data to server*/
Intent intent=new Intent(Create.this,Login.class);
startActivity(intent);
Create.this.finish();
}
});
}
}