Page 269 - 3-3
P. 269

db6.setArguments(bundle);
                                //Fragment 를 이용해서 액티비티에 DB6            레이아웃을 불러오기
                                getSupportFragmentManager()
                                        .beginTransaction()
                                        .replace(R.id.frag_container_, db6)
                                        .commit();
                            }
                        });
                    }
                }




                마) SelectSubject3.java
                package com.helloworld.smartschool;


                // 불러올 클래스들을 import        해준다
                import android.app.Fragment;
                import android.content.Intent;
                import android.support.v7.app.AppCompatActivity;
                import android.os.Bundle;
                import android.view.View;
                import android.widget.Button;


                import layout.DB7;
                import layout.DB8;
                import layout.DB9;


                // 종목 선택3    클래스
                public class SelectSubject3 extends AppCompatActivity {


                    //xml 의 버튼들을 선언
                    private Button btn_R50, btn_PushUp, btn_Flex;


                    @Override
                    protected void onCreate(Bundle savedInstanceState) {
                        super.onCreate(savedInstanceState);
                        setContentView(R.layout.activity_select_subject1);


                        //xml 의 View 를 java  코드에서 사용하기 위해 아이디를 이용해서 선언해준다.
                        btn_R50 = (Button) findViewById(R.id.btn_R50);
                        btn_PushUp = (Button) findViewById(R.id.btn_PushUp);
                        btn_Flex = (Button) findViewById(R.id.btn_Flex);


                        // 이전 화면에서 넘긴 인텐트 받기
                        Intent receivedIntent = getIntent();


                                                          - 269 -
   264   265   266   267   268   269   270   271   272   273   274