/* Copyright 2013 Tonic Artos Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ package com.marshalchen.common.demoofui.stickygridheadersexample; import android.content.Intent; import android.os.Bundle; import android.support.v4.app.TaskStackBuilder; import android.support.v7.app.ActionBarActivity; import com.marshalchen.common.demoofui.R; public class StickGridItemListActivity extends ActionBarActivity implements StickGridItemListFragment.Callbacks { /** * Whether or not the activity is in two-pane mode, i.e. running on a tablet * device. */ private boolean mTwoPane; /** * Callback method from {@link StickGridItemListFragment.Callbacks} indicating that * the item with the given ID was selected. */ @Override public void onItemSelected(int 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.putInt(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 protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.stickygridheader_activity_item_list); getSupportActionBar().setDisplayHomeAsUpEnabled(true); // if (findViewById(R.id.item_detail_container) != null) { // // The detail container view will be present only in the // // large-screen layouts (res/values-large and // // res/values-sw600dp). If this view is present, then the // // activity should be in two-pane mode. // mTwoPane = true; // // // In two-pane mode, list items should be given the // // 'activated' state when touched. // ((ItemListFragment) getSupportFragmentManager().findFragmentById(R.id.item_list)).setActivateOnItemClick(true); // } // TODO: If exposing deep links into your app, handle intents here. } @Override public Intent getSupportParentActivityIntent() { this.finish(); return super.getSupportParentActivityIntent(); } @Override public void onCreateSupportNavigateUpTaskStack(TaskStackBuilder builder) { super.onCreateSupportNavigateUpTaskStack(builder); } }