Android Open Source - Labs-HandHeld-Systems Main Activity






From Project

Back to project page Labs-HandHeld-Systems.

License

The source code is released under:

Apache License

If you think the Android project Labs-HandHeld-Systems listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package course.labs.fragmentslab;
//from www.j av a2s.  com
import android.app.Activity;
import android.app.FragmentManager;
import android.app.FragmentTransaction;
import android.os.Bundle;
import android.util.Log;

public class MainActivity extends Activity implements
    FriendsFragment.SelectionListener {

  private static final String TAG = "Lab-Fragments";

  private FriendsFragment mFriendsFragment;
  private FeedFragment mFeedFragment;

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

    // If the layout is single-pane, create the FriendsFragment 
    // and add it to the Activity

    if (!isInTwoPaneMode()) {
      
      mFriendsFragment = new FriendsFragment();

      //DONE: add the FriendsFragment to the fragment_container
      FragmentManager fragmentManager = getFragmentManager();
      FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction();
      fragmentTransaction.add(R.id.fragment_container, new FriendsFragment());
      fragmentTransaction.commit();

    } else {

      // Otherwise, save a reference to the FeedFragment for later use
      
      mFeedFragment = (FeedFragment) getFragmentManager()
          .findFragmentById(R.id.feed_frag);
    }

  }

  // If there is no fragment_container ID, then the application is in
  // two-pane mode

  private boolean isInTwoPaneMode() {

    return findViewById(R.id.fragment_container) == null;
  
  }

  // Display selected Twitter feed

  public void onItemSelected(int position) {

    Log.i(TAG, "Entered onItemSelected(" + position + ")");

    // If there is no FeedFragment instance, then create one

    if (mFeedFragment == null)
      mFeedFragment = new FeedFragment();

    // If in single-pane mode, replace single visible Fragment

    if (!isInTwoPaneMode()) {

      //DONE: replace the fragment_container with the FeedFragment
      FragmentManager fragmentManager = getFragmentManager();
      FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction();
      fragmentTransaction.replace(R.id.fragment_container,mFeedFragment);
      fragmentTransaction.addToBackStack(null);
      fragmentTransaction.commit(); 

      

      // execute transaction now
      getFragmentManager().executePendingTransactions();

    }

    // Update Twitter feed display on FriendFragment
    mFeedFragment.updateFeedDisplay(position);

  }

}




Java Source Code List

course.labs.activitylab.ActivityOne.java
course.labs.activitylab.ActivityTwo.java
course.labs.dangerousapp.DangerousActivity.java
course.labs.fragmentslab.FeedFragmentData.java
course.labs.fragmentslab.FeedFragment.java
course.labs.fragmentslab.FriendsFragment.java
course.labs.fragmentslab.MainActivity.java
course.labs.intentslab.ActivityLoaderActivity.java
course.labs.intentslab.ExplicitlyLoadedActivity.java
course.labs.intentslab.mybrowser.MyBrowserActivity.java
course.labs.permissionslab.ActivityLoaderActivity.java
course.labs.permissionslab.BookmarksActivity.java
course.labs.permissionslab.GoToDangerousActivity.java
course.labs.todomanager.AddToDoActivity.java
course.labs.todomanager.ToDoItem.java
course.labs.todomanager.ToDoListAdapter.java
course.labs.todomanager.ToDoManagerActivity.java