/* * Catroid: An on-device visual programming system for Android devices * Copyright (C) 2010-2016 The Catrobat Team * (<http://developer.catrobat.org/credits>) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * An additional term exception under section 7 of the GNU Affero * General Public License, version 3, is available at * http://developer.catrobat.org/license_additional_term * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package org.catrobat.catroid.ui; import android.app.ActionBar; import android.app.Fragment; import android.app.FragmentTransaction; import android.content.Intent; import android.os.Bundle; import android.util.Log; import android.view.Menu; import android.view.MenuItem; import android.view.View; import org.catrobat.catroid.R; import org.catrobat.catroid.ui.dialogs.NewProjectDialog; import org.catrobat.catroid.ui.fragment.ProjectListFragment; import org.catrobat.catroid.utils.SnackbarUtil; import java.util.concurrent.locks.Lock; public class MyProjectsActivity extends BaseActivity { public static final String TAG = MyProjectsActivity.class.getSimpleName(); public static final String ACTION_PROJECT_LIST_INIT = "org.catrobat.catroid.PROJECT_LIST_INIT"; private Lock viewSwitchLock = new ViewSwitchLock(); private ProjectListFragment projectListFragment; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_my_projects); setUpActionBar(); BottomBar.hidePlayButton(this); loadFragment(ProjectListFragment.class, false); projectListFragment = (ProjectListFragment) getFragmentManager().findFragmentById(R.id.fragment_container); SnackbarUtil.showHintSnackbar(this, R.string.hint_merge); } public void loadFragment(Class<? extends Fragment> fragmentClass, boolean addCurrentFragmentToBackStack) { loadFragment(fragmentClass, null, addCurrentFragmentToBackStack); } public void loadFragment(Class<? extends Fragment> fragmentClass, Bundle bundle, boolean addCurrentFragmentToBackStack) { FragmentTransaction fragmentTransaction = getFragmentManager().beginTransaction(); try { Fragment newFragment = fragmentClass.newInstance(); fragmentTransaction.replace(R.id.fragment_container, newFragment, fragmentClass.getSimpleName()); if (addCurrentFragmentToBackStack) { fragmentTransaction.addToBackStack(null); } if (bundle != null) { newFragment.setArguments(bundle); } fragmentTransaction.commit(); getFragmentManager().executePendingTransactions(); } catch (Exception e) { Log.e(TAG, "Error while loading fragment" + e); } } @Override public void onWindowFocusChanged(boolean hasFocus) { super.onWindowFocusChanged(hasFocus); if (hasFocus) { sendBroadcast(new Intent(ACTION_PROJECT_LIST_INIT)); } } @Override public boolean onCreateOptionsMenu(Menu menu) { getMenuInflater().inflate(R.menu.menu_myprojects, menu); return super.onCreateOptionsMenu(menu); } @Override public boolean onPrepareOptionsMenu(Menu menu) { handleShowDetails(projectListFragment.getShowDetails(), menu.findItem(R.id.show_details)); return super.onPrepareOptionsMenu(menu); } @Override public boolean onOptionsItemSelected(MenuItem item) { switch (item.getItemId()) { case android.R.id.home: onBackPressed(); return true; case R.id.copy: projectListFragment.startCopyActionMode(); break; case R.id.delete: projectListFragment.startDeleteActionMode(); break; case R.id.rename: projectListFragment.startRenameActionMode(); break; case R.id.show_details: handleShowDetails(!projectListFragment.getShowDetails(), item); break; } return super.onOptionsItemSelected(item); } private void setUpActionBar() { final ActionBar actionBar = getActionBar(); actionBar.setTitle(R.string.my_projects_activity_title); actionBar.setHomeButtonEnabled(true); getActionBar().setDisplayHomeAsUpEnabled(true); } public void handleAddButton(View view) { if (!viewSwitchLock.tryLock()) { return; } NewProjectDialog dialog = new NewProjectDialog(); dialog.setOpenedFromProjectList(true); dialog.show(getFragmentManager(), NewProjectDialog.DIALOG_FRAGMENT_TAG); } private void handleShowDetails(boolean showDetails, MenuItem item) { projectListFragment.setShowDetails(showDetails); item.setTitle(showDetails ? R.string.hide_details : R.string.show_details); } }