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

    // Show the Up button in the action bar.
    getActionBar().setDisplayHomeAsUpEnabled(true);

    // savedInstanceState is non-null when there is fragment state
    // saved from previous configurations of this activity
    // (e.g. when rotating the screen from portrait to landscape).
    // In this case, the fragment will automatically be re-added
    // to its container so we don't need to manually add it.
    // For more information, see the Fragments API guide at:
    //
    // http://developer.android.com/guide/components/fragments.html
    //
    if (savedInstanceState == null) {
      // Create the detail fragment and add it to the activity
      // using a fragment transaction.
      Bundle arguments = new Bundle();
      arguments.putString(
          ItemDetailFragment.ARG_ITEM_ID,
          getIntent().getStringExtra(ItemDetailFragment.ARG_ITEM_ID));
      ItemDetailFragment fragment = new ItemDetailFragment();
      fragment.setArguments(arguments);
      getSupportFragmentManager()
          .beginTransaction()
          .add(R.id.item_detail_container, fragment)
          .commit();
    }
  }
  /**
   * Callback method from {@link ItemListFragment.Callbacks} indicating that the item with the given
   * ID was selected.
   */
  @Override
  public void onItemSelected(String id) {
    if (tumbado) {
      // In two-pane mode, show the detail view in this activity by
      // adding or replacing the detail fragment using a
      // fragment transaction.
      Bundle arguments = new Bundle();
      arguments.putString(ItemDetailFragment.ARG_ITEM_ID, id);
      ItemDetailFragment fragment = new ItemDetailFragment();
      fragment.setArguments(arguments);
      getSupportFragmentManager()
          .beginTransaction()
          .replace(R.id.item_detail_container, fragment)
          .commit();
      // Esta es la toast que saldra al pulsar un item cuando el dispositivo este tumbado
      Toast.makeText(getApplicationContext(), "tumbado", Toast.LENGTH_SHORT).show();

    } else {
      // In single-pane mode, simply start the detail activity
      // for the selected item ID.
      Intent detailIntent = new Intent(this, ItemDetailActivity.class);
      detailIntent.putExtra(ItemDetailFragment.ARG_ITEM_ID, id);
      // llamamos al metodo que devuelve la toast
      startActivityForResult(detailIntent, 1);
    }
  }
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_item_detail);
    Toolbar toolbar = (Toolbar) findViewById(R.id.detail_toolbar);
    setSupportActionBar(toolbar);

    FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.fab);
    fab.setOnClickListener(
        new View.OnClickListener() {
          @Override
          public void onClick(View view) {
            Snackbar.make(view, "Replace with your own detail action", Snackbar.LENGTH_LONG)
                .setAction("Action", null)
                .show();
          }
        });

    if (savedInstanceState == null) {
      // Create the detail fragment and add it to the activity
      // using a fragment transaction.
      Bundle arguments = new Bundle();
      arguments.putString(
          ItemDetailFragment.ARG_ITEM_ID,
          getIntent().getStringExtra(ItemDetailFragment.ARG_ITEM_ID));
      ItemDetailFragment fragment = new ItemDetailFragment();
      fragment.setArguments(arguments);
      getSupportFragmentManager()
          .beginTransaction()
          .add(R.id.item_detail_container, fragment)
          .commit();
    }
  }
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_item_detail);
    Toolbar toolbar = (Toolbar) findViewById(R.id.detail_toolbar);
    setSupportActionBar(toolbar);

    FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.fab);
    fab.setOnClickListener(
        new View.OnClickListener() {
          @Override
          public void onClick(View view) {
            Snackbar.make(view, "Replace with your own detail action", Snackbar.LENGTH_LONG)
                .setAction("Action", null)
                .show();
          }
        });

    // Show the Up button in the action bar.
    ActionBar actionBar = getSupportActionBar();
    if (actionBar != null) {
      actionBar.setDisplayHomeAsUpEnabled(true);
    }

    // savedInstanceState is non-null when there is fragment state
    // saved from previous configurations of this activity
    // (e.g. when rotating the screen from portrait to landscape).
    // In this case, the fragment will automatically be re-added
    // to its container so we don't need to manually add it.
    // For more information, see the Fragments API guide at:
    //
    // http://developer.android.com/guide/components/fragments.html
    //
    if (savedInstanceState == null) {
      // Create the detail fragment and add it to the activity
      // using a fragment transaction.
      Bundle arguments = new Bundle();
      arguments.putString(
          ItemDetailFragment.ARG_ITEM_ID,
          getIntent().getStringExtra(ItemDetailFragment.ARG_ITEM_ID));
      ItemDetailFragment fragment = new ItemDetailFragment();
      fragment.setArguments(arguments);
      getSupportFragmentManager()
          .beginTransaction()
          .add(R.id.item_detail_container, fragment)
          .commit();
    }
  }
 @Override
 public void onItemSelected(String id) {
   if (mTwoPane) {
     Bundle arguments = new Bundle();
     arguments.putString(ItemDetailFragment.ARG_ITEM_ID, id);
     ItemDetailFragment fragment = new ItemDetailFragment();
     fragment.setArguments(arguments);
     getSupportFragmentManager()
         .beginTransaction()
         .replace(R.id.item_detail_container, fragment)
         .commit();
   } else {
     Intent detailIntent = new Intent(this, ItemDetailActivity.class);
     detailIntent.putExtra(ItemDetailFragment.ARG_ITEM_ID, id);
     startActivity(detailIntent);
   }
 }
  /**
   * Callback method from {@link ItemListFragment.Callbacks} indicating that the item with the given
   * ID was selected.
   */
  @Override
  public void onItemSelected(String id) {
    if (mTwoPane) {
      // In two-pane mode, show the detail view in this activity by
      // adding or replacing the detail fragment using a
      // fragment transaction.
      Bundle arguments = new Bundle();
      arguments.putString(ItemDetailFragment.ARG_ITEM_ID, id);
      ItemDetailFragment fragment = new ItemDetailFragment();
      fragment.setArguments(arguments);
      getSupportFragmentManager()
          .beginTransaction()
          .replace(R.id.item_detail_container, fragment)
          .commit();

    } else {
      // In single-pane mode, simply start the detail activity
      // for the selected item ID.
      Intent detailIntent = new Intent(this, ItemDetailActivity.class);
      detailIntent.putExtra(ItemDetailFragment.ARG_ITEM_ID, id);
      startActivity(detailIntent);
    }
  }
 @Override
 public boolean onOptionsItemSelected(MenuItem item) {
   int id = item.getItemId();
   if (id == android.R.id.home) {
     Intent intent = NavUtils.getParentActivityIntent(this);
     Bundle bundle = new Bundle();
     bundle.putParcelable(ARG_POTENTIAL_HABIT_EDIT, detailFragment.getHabit());
     intent.putExtras(bundle);
     intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_SINGLE_TOP);
     NavUtils.navigateUpTo(this, intent);
     return true;
   }
   return super.onOptionsItemSelected(item);
 }
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_item_detail);

    getActionBar().setDisplayHomeAsUpEnabled(true);
    if (savedInstanceState == null) {
      Bundle arguments = new Bundle();
      arguments.putParcelable(
          ItemDetailFragment.ARG_HABIT,
          getIntent().getParcelableExtra(ItemDetailFragment.ARG_HABIT));
      detailFragment = new ItemDetailFragment();
      detailFragment.setArguments(arguments);
      getSupportFragmentManager()
          .beginTransaction()
          .add(R.id.item_detail_container, detailFragment)
          .commit();
    } else {
      detailFragment =
          (ItemDetailFragment)
              getSupportFragmentManager().findFragmentById(R.id.item_detail_container);
    }
  }