forked from jisung6723/pca
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuttonNewActivity.java
46 lines (39 loc) · 1.68 KB
/
buttonNewActivity.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
public class MainActivity extends AppCompatActivity {
View btn_name; // 연결할 버튼 변수명
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
btn_name = findViewById(R.id.btn_id); // 연결할 버튼 아이디
btn_name.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Intent intent = new Intent(getApplicationContext(), activity_class.class); // 연결할 액티비티 클래스 이름
startActivity(intent);
}
});
}
}
//---------------------Fragment 일 경우--------------------------
public class MainFragment extends Fragment {
//... 생략
View btn_name; // 연결할 버튼 변수명
public BlankFragment() {
// Required empty public constructor
}
// ... 생략
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View temp = inflater.inflate(R.layout.fragment_layout, container, false); // 현재 fragment의 layout이름, inflater는 하나만 있어도 됨
btn_name = temp.findViewById(R.id.btn_id); // 연결할 버튼 아이디
btn_name.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Intent intent = new Intent(getContext(), activity_class.class); // 연결할 액티비티 클래스 이름
startActivity(intent);
}
});
return temp;
}
}