/* * Copyright (C) 2013 The Android Open Source Project * * 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.eugene.fithealthmaingit.UI; import android.os.Bundle; import android.support.v4.app.Fragment; import android.support.v7.app.AppCompatActivity; import com.eugene.fithealthmaingit.R; import com.eugene.fithealthmaingit.Utilities.Globals; public class QuickAddActivity extends AppCompatActivity implements QuickAddFragment.QuickAddItemAdded { private String mealType; Fragment fragment; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_quick_add); Bundle extras = getIntent().getExtras(); if (extras != null) { mealType = extras.getString(Globals.MEAL_TYPE); } Bundle bundle = new Bundle(); fragment = new QuickAddFragment(); bundle.putString(Globals.MEAL_TYPE, mealType); fragment.setArguments(bundle); if (savedInstanceState == null) { getSupportFragmentManager().beginTransaction().replace(R.id.containerQuickAdd, fragment).commit(); } } @Override public void onBackPressed() { super.onBackPressed(); overridePendingTransition(0, 0); } @Override public void itemAdded(String s) { } }