-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUpdateItems.java
More file actions
50 lines (47 loc) · 1.43 KB
/
UpdateItems.java
File metadata and controls
50 lines (47 loc) · 1.43 KB
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.android.break2;
import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
public class UpdateItems extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_update_items);
}
public void UpdateActorActive(View v)
{
Intent intent = new Intent(this,UpdateActor.class);
startActivity(intent);
}
public void UpdateAuthorActive(View v)
{
Intent intent = new Intent(this,UpdateAuthor.class);
startActivity(intent);
}
public void UpdateDirectorActive(View v)
{
Intent intent = new Intent(this,UpdateDirector.class);
startActivity(intent);
}
public void UpdateCinemaActive(View v)
{
Intent intent = new Intent(this,UpdateCinema.class);
startActivity(intent);
}
public void UpdateAdvActive(View v)
{
Intent intent = new Intent(this,UpdateAdv.class);
startActivity(intent);
}
public void UpdateMovieActive(View v)
{
Intent intent = new Intent(this,UpdateMovie.class);
startActivity(intent);
}
public void UpdateAward(View v)
{
Intent intent = new Intent(this,UpdateAward.class);
startActivity(intent);
}
}