より単純なFragmentBasicsデモから始めて、次のようにガットMainActivity
します。
public class MainActivity extends FragmentActivity
implements OnHeadlineSelectedListener {
AbstractNewsView abstractNewsView;
@Override public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.news_articles);
abstractNewsView = new AbstractNewsViewProvider(this).get();
abstractNewsView.onCreate(savedInstanceState);
}
@Override public void onArticleSelected(int position) {
abstractNewsView.onArticleSelected(position);
}
}
これで、依存関係図は次のようになります。news_articles
これで、さまざまなデバイスタイプに必要なすべてのビューバリアントを追加でき、MainActivity
変更する必要はありません。
AbstractNewsViewProvider
特定のデバイスに使用されているビューのタイプ(シングルペインまたはダブルペイン)を判別することが唯一の責任である新しいクラスを追加します。依存性注入にGuiceまたはRoboGuiceを使用している場合、これは代わりにバインディングモジュール のProviderメソッドになります。
public class AbstractNewsViewProvider {
private final FragmentActivity fragmentActivity;
public AbstractNewsViewProvider(FragmentActivity activity) {
this.fragmentActivity = activity;
}
public AbstractNewsView get() {
if (fragmentActivity.findViewById(R.id.fragment_container) != null) {
return new SinglePaneNewsView(fragmentActivity);
} else {
return new DoublePaneNewsView(fragmentActivity);
}
}
}
SinglePaneNewsView
2つの新しいクラスを追加し、以下に示すようDoublePaneNewsView
に実装AbstractNewsView
します。これらの2つのクラスは、それぞれのビュータイプ内の初期フラグメントのセットアップを担当します。また、フラグメント間の遷移がある場合は、それらを処理する責任もあります。
interface AbstractNewsView extends OnHeadlineSelectedListener {
public void onCreate(Bundle savedInstanceState);
@Override public void onArticleSelected(int position);
}
public class SinglePaneNewsView implements AbstractNewsView {
private final FragmentActivity fragmentActivity;
public SinglePaneNewsView(FragmentActivity fragmentActivity) {
this.fragmentActivity = fragmentActivity;
}
@Override public void onCreate(Bundle savedInstanceState) {
// However, if we're being restored from a previous state,
// then we don't need to do anything and should return or else
// we could end up with overlapping fragments.
if (savedInstanceState != null) {
return;
}
// Create an instance of ExampleFragment
HeadlinesFragment firstFragment = new HeadlinesFragment();
// In case this activity was started with special instructions from an
// Intent,
// pass the Intent's extras to the fragment as arguments
firstFragment.setArguments(fragmentActivity.getIntent().getExtras());
// Add the fragment to the 'fragment_container' FrameLayout
fragmentActivity.getSupportFragmentManager().beginTransaction()
.add(R.id.fragment_container, firstFragment).commit();
}
@Override public void onArticleSelected(int position) {
// If the frag is not available, we're in the one-pane layout and must
// swap frags...
// Create fragment and give it an argument for the selected article
ArticleFragment newFragment = new ArticleFragment();
Bundle args = new Bundle();
args.putInt(ArticleFragment.ARG_POSITION, position);
newFragment.setArguments(args);
FragmentTransaction transaction =
fragmentActivity.getSupportFragmentManager().beginTransaction();
// Replace whatever is in the fragment_container view with this fragment
// Add the transaction to the back stack so the user can navigate back
transaction.replace(R.id.fragment_container, newFragment);
transaction.addToBackStack(null);
// Commit the transaction
transaction.commit();
}
public class DoublePaneNewsView implements AbstractNewsView {
private final FragmentActivity fragmentActivity;
public DoublePaneNewsView(FragmentActivity fragmentActivity) {
this.fragmentActivity = fragmentActivity;
}
@Override public void onCreate(Bundle savedInstanceState) {
}
@Override public void onArticleSelected(int position) {
((ArticleFragment) fragmentActivity.getSupportFragmentManager()
.findFragmentById(R.id.article_fragment)).updateArticleView(position);
}
}
完全なソースはGoogleコードで 見つけることができます。