/* * 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.content.Intent; import android.os.Bundle; import android.support.v4.app.Fragment; import android.support.v7.app.AppCompatActivity; import android.widget.FrameLayout; import com.eugene.fithealthmaingit.R; import com.eugene.fithealthmaingit.MainActivity; import com.eugene.fithealthmaingit.Utilities.Globals; public class ManualEntryActivity extends AppCompatActivity { private Fragment fragment = null; String mealType, food_id; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_manual_entry); Bundle extras = getIntent().getExtras(); if (extras != null) { mealType = extras.getString(Globals.MEAL_TYPE); food_id = extras.getString(Globals.MEAL_ID); if (food_id != null) { fragment = new ManualEntryFragmentUpdate(); getSupportFragmentManager().beginTransaction().replace(R.id.containerManual, fragment).commit(); } else { fragment = new ManualEntryFragment(); getSupportFragmentManager().beginTransaction().replace(R.id.containerManual, fragment).commit(); } } } @Override public void onBackPressed() { super.onBackPressed(); Intent intent = new Intent(this, MainActivity.class); intent.putExtra(Globals.MEAL_TYPE, mealType); intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); FrameLayout frameLayout = (FrameLayout) findViewById(R.id.containerManual); startActivity(intent); } }