Back to project page AndroidWeatherBuoyDemo.
The source code is released under:
Apache License
If you think the Android project AndroidWeatherBuoyDemo listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.kevinrschultz.weatherbuoy.ui; //from www . ja v a 2 s. c om import android.os.Bundle; import com.kevinrschultz.weatherbuoy.R; public class BuoyListingActivity extends BaseActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_fragment_container); if (savedInstanceState == null) { attachBuoyListingFragment(); } } private void attachBuoyListingFragment() { getFragmentManager().beginTransaction() .add(R.id.activity_fragment_container, BuoyListingFragment.makeBuoyListingFragment()) .commit(); } }