Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>I just copied the relevant part of your manifest and created a test project:</p> <pre><code>&lt;manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.test" android:versionCode="1" android:versionName="1.0" &gt; &lt;uses-sdk android:minSdkVersion="8" android:targetSdkVersion="15" /&gt; &lt;application android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/AppTheme" &gt; &lt;activity android:name=".MainActivity" android:label="@string/title_activity_main" &gt; &lt;intent-filter&gt; &lt;action android:name="android.intent.action.MAIN" /&gt; &lt;category android:name="android.intent.category.LAUNCHER" /&gt; &lt;/intent-filter&gt; &lt;/activity&gt; &lt;activity android:name=".ActivityMainLauncher" android:configChanges="keyboardHidden|orientation" android:icon="@drawable/ic_launcher" android:label="@string/string_app_name" android:launchMode="singleTop" &gt; &lt;intent-filter&gt; &lt;action android:name="android.intent.action.SEND" /&gt; &lt;category android:name="android.intent.category.DEFAULT" /&gt; &lt;data android:mimeType="image/*" /&gt; &lt;data android:mimeType="video/*" /&gt; &lt;data android:mimeType="audio/*" /&gt; &lt;data android:mimeType="text/*" /&gt; &lt;data android:mimeType="application/*" /&gt; &lt;/intent-filter&gt; &lt;intent-filter&gt; &lt;action android:name="android.intent.action.SEND_MULTIPLE" /&gt; &lt;category android:name="android.intent.category.DEFAULT" /&gt; &lt;data android:mimeType="image/*" /&gt; &lt;data android:mimeType="video/*" /&gt; &lt;data android:mimeType="audio/*" /&gt; &lt;data android:mimeType="text/*" /&gt; &lt;data android:mimeType="application/*" /&gt; &lt;/intent-filter&gt; &lt;intent-filter&gt; &lt;action android:name="android.intent.action.MAIN" /&gt; &lt;category android:name="android.intent.category.LAUNCHER" /&gt; &lt;/intent-filter&gt; &lt;/activity&gt; &lt;activity android:name=".ActivityQuickLauncher" android:configChanges="keyboardHidden|orientation" android:icon="@drawable/ic_launcher" android:label="@string/string_app_name_quick_launcher" android:launchMode="singleTop" &gt; &lt;intent-filter&gt; &lt;action android:name="android.intent.action.SEND" /&gt; &lt;category android:name="android.intent.category.DEFAULT" /&gt; &lt;data android:mimeType="image/*" /&gt; &lt;data android:mimeType="video/*" /&gt; &lt;data android:mimeType="audio/*" /&gt; &lt;data android:mimeType="text/*" /&gt; &lt;data android:mimeType="application/*" /&gt; &lt;/intent-filter&gt; &lt;intent-filter&gt; &lt;action android:name="android.intent.action.SEND_MULTIPLE" /&gt; &lt;category android:name="android.intent.category.DEFAULT" /&gt; &lt;data android:mimeType="image/*" /&gt; &lt;data android:mimeType="video/*" /&gt; &lt;data android:mimeType="audio/*" /&gt; &lt;data android:mimeType="text/*" /&gt; &lt;data android:mimeType="application/*" /&gt; &lt;/intent-filter&gt; &lt;/activity&gt; &lt;/application&gt; &lt;/manifest&gt; </code></pre> <p>Simple activity implementations:</p> <pre><code>public class ActivityQuickLauncher extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); Toast.makeText(this, getClass().getName(), Toast.LENGTH_LONG).show(); } } public class ActivityMainLauncher extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); Toast.makeText(this, getClass().getName(), Toast.LENGTH_LONG).show(); } } </code></pre> <p>And it works:</p> <p><img src="https://i.stack.imgur.com/zxILC.png" alt="Android 4.1.1"> <img src="https://i.stack.imgur.com/qZ6FR.png" alt="Android 4.0.3"></p> <p>Android 4.1.1 (Galaxy Nexus) and Android 4.0.3 (Archos G9 A70).</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload