Help Activity
Base class for a help activity. A help activity is started when user taps help when configuring options for your plugin. To create a help activity, just extend this class, and add it to your manifest like this:
<pre class="prettyprint"><manifest> ... <application> ... <activity android:name=".HelpActivity"> <intent-filter> <action android:name="com.github.shadowsocks.plugin.ACTION_HELP"/> <category android:name="android.intent.category.DEFAULT"/> <data android:scheme="plugin" android:host="com.github.shadowsocks" android:path="/$PLUGIN_ID"/> </intent-filter> </activity> ... </application> </manifest></pre>