Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
フラグメントを使用して Android アプリケーションを開発しています。メイン レイアウトは 2 つのフラグメントに分割する必要があります。これについて何か考えがある場合は、それを共有してください。よろしくお願いします。
フラグメントの設定にはフラグメントトランザクションを使用します。
Fragment f=SomeFragment.newInstance(someparams...) FragmentTransaction ft=getFragmentManager().beginTransaction(); ft.replace(R.id.someid, f); ft.commit();
R.id.someid は、レイアウト内のフラグメントの ID です。