[Android] fragment를 사용하여 여러 화면 마이그레이션 수행
이루고 싶은 일
Fragment에서 여러 화면을 표시할 수 있습니다
필요한 물건
fragmentHoge.xml 4개, HogeFragment.xml 4개를 만들어야 합니다.
1.MainActivity.java
MainActivity.java
public class MainActivity extends AppCompatActivity {
public static Intent getStartIntent(LoginActivity loginActivity) {
return new Intent(loginActivity, MainActivity.class);
}
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Button button = findViewById(R.id.main_button);
//ボタンが押下されたら、Frgmentを表示する
main_button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
//fragmentを呼びだす
// Fragmentを作成します
MainFragment fragment = new MainFragment();
// Fragmentの追加や削除といった変更を行う際は、Transactionを利用します
FragmentTransaction transaction = getSupportFragmentManager().beginTransaction();
// 新しく追加を行うのでaddを使用します
transaction.add(R.id.fragment_layout, fragment);
// 最後にcommitを使用することで変更を反映します
transaction.commit();
}
});
}
}
2.activity_main.xml
<FrameLayout
android:id="@+id/fragment_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"></FrameLayout>
3.MainFragment.java
MainFragment.java
public class MainFragment extends Fragment {
private TextView mTextView;
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// 画面初期化処理
final View inflate = inflater.inflate(R.layout.fragment_main, container, false);
TextView titleText = inflate.findViewById(R.id.textView);
Button button = inflate.findViewById(R.id.button);
return inflate;
}
}
4.fragment_main.xml
fragment_main.xml
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TextView
android:id="@+id/textView"
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_gravity="center"
android:text="button" />
<Button
android:id="@+id/button"
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_gravity="center"
android:background="@color/gauge_init_color"
android:text="button" />
</LinearLayout>
</android.support.constraint.ConstraintLayout>
Reference
이 문제에 관하여([Android] fragment를 사용하여 여러 화면 마이그레이션 수행), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/kiyo1219/items/48f90ea8888d32786b92텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)