at.abraxas.amarino.plugin
Class InfoActivity

java.lang.Object
  extended by Activity
      extended by at.abraxas.amarino.plugin.InfoActivity

public class InfoActivity
extends Activity

Since an Amarino plug-in is not a standalone application, people might get confused that it does not start when they hit open. Instead, an info screen will be shown explaining the fact that this plug-in is designed to run within Amarino 2.0.

You might want to write your own InfoActivity, but for the sake of simplicity this InfoActivity provides you a basic info screen.

You need to add this activity to your AndroidManifest.xml file as shown below.

 <activity android:name="at.abraxas.amarino.plugin.InfoActivity" >
      <intent-filter>
          <action android:name="android.intent.action.MAIN" />
          <category android:name="android.intent.category.INFO" />
      </intent-filter>
 </activity>
 
 

Author:
Bonifaz Kaufmann

$Id$

Constructor Summary
InfoActivity()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

InfoActivity

public InfoActivity()