-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFormType.java
More file actions
30 lines (24 loc) · 845 Bytes
/
FormType.java
File metadata and controls
30 lines (24 loc) · 845 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
27
28
29
30
package com.example.vmac.WatBot;
import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
public class FormType extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_form_type);
}
public void railwayReservationClicked(View view){
Intent i = new Intent(this, RailwayReservation.class);
startActivity(i);
}
public void ktFormClicked(View view){
Intent intent = new Intent(this, KTForm.class);
startActivity(intent);
}
public void botClicked(View view){
Intent intt = new Intent(this, MainActivity.class);
startActivity(intt);
}
}