Sha256: fd0c9b13f548ed6314ed967ab9eab6eaf7cfe22ff3dc63f39d9135bf5505741c
Contents?: true
Size: 1.39 KB
Versions: 14
Compression:
Stored size: 1.39 KB
Contents
/** * */ package com.rho.rhoelements.plugins; import android.view.View; import android.widget.LinearLayout; import com.rho.rhoelements.Common; import com.rho.rhoelements.LogEntry; import com.rho.rhoelements.Version; import com.rhomobile.rhodes.extmanager.RhoExtManager; /** * @author FPC843 * Implements the top command area control */ public class TopCommandAreaPlugin extends CommandAreaPlugin { public TopCommandAreaPlugin() { super(); Common.logger.add(new LogEntry(LogEntry.PB_LOG_DEBUG, "Start")); completeInit("com.rho.rhoelements.plugins.TopCommandPlugin.TOPCOMMANDAREA_PLUGIN_TRANSFER_COMPLETE", "TopCommandArea"); Common.logger.add(new LogEntry(LogEntry.PB_LOG_DEBUG, "End")); } protected void completeInit(String intentId, String resultId) { Common.logger.add(new LogEntry(LogEntry.PB_LOG_DEBUG, "Start")); mCommandArea = (View) Common.mainActivity.findViewById(RhoExtManager.getResourceId("id","topcommand_area")); mCommandAreaPanel = (LinearLayout) Common.mainActivity.findViewById(RhoExtManager.getResourceId("id","topcommand_area_panel")); mIntentId = intentId; mResultId = resultId; super.completeInit(intentId, resultId); Common.logger.add(new LogEntry(LogEntry.PB_LOG_DEBUG, "End")); } /** * @return The version of this plugin being built */ public static Version getVersion() { return new Version("TopCommandButton"); } }
Version data entries
14 entries across 14 versions & 1 rubygems