/** * Copyright 2012 Neurowork Consulting S.L. * * This file is part of eMobc. * * QrActivityGenerator.java * eMobc Android Framework * * eMobc is free software: you can redistribute it and/or modify * it under the terms of the Affero GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * eMobc 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 General Public License for more details. * * You should have received a copy of the Affero GNU General Public License * along with eMobc. If not, see <http://www.gnu.org/licenses/>. * */ package com.emobc.android.activities.generators; import android.app.Activity; import com.emobc.android.ActivityType; import com.emobc.android.NextLevel; import com.emobc.android.activities.R; import com.emobc.android.levels.AppLevel; import com.emobc.android.levels.AppLevelData; import com.emobc.android.levels.impl.QrLevelDataItem; import com.emobc.android.menu.CreateMenus; import com.google.zxing.integration.android.IntentIntegrator; /** * Screen generator, responsible for specific components to initialize the * display type "QR". It also creates the menus, rotations, and the format for * the components. * @author Jonatan Alcocer Luna * @author Jorge E. Villaverde * @version 0.1 * @since 0.1 */ public class QrActivityGenerator extends LevelActivityGenerator { /** * */ private static final long serialVersionUID = 742319702452489028L; public QrActivityGenerator(AppLevel appLevel, NextLevel nextLevel) { super(appLevel, nextLevel); } @Override protected void loadAppLevelData(final Activity activity, final AppLevelData data) { final QrLevelDataItem item = (QrLevelDataItem)data.findByNextLevel(nextLevel); //rotateScreen(activity); initializeHeader(activity, item); //Create Banner CreateMenus c = (CreateMenus)activity; c.createBanner(); IntentIntegrator.initiateScan(activity); } @Override protected int getContentViewResourceId(final Activity activity) { if(appLevel.getXib() != null && appLevel.getXib().length() > 0){ int id = getActivityLayoutIdFromString(activity, appLevel.getXib()); if(id >0) return id; } return R.layout.qr; } @Override protected ActivityType getActivityGeneratorType() { return ActivityType.QR_ACTIVITY; } }