Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8234435
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T18:28:32+00:00 2026-06-07T18:28:32+00:00

UPDATE So far this only happens on the HTC OneX using Android 4.0.3 I

  • 0

UPDATE
So far this only happens on the HTC OneX using Android 4.0.3

I have two share-to menu items in the android share menu.

When the user shares an image from android gallery, my app displays two
icons so user can have easy access to two different part of my app.
See picture.

This works fine in API v8, but in API v15 on a real device one of them is missing. API v15 emulator is ok!

In my AndroidManifest.xml this two Activity's set an icon in the share menu.

 - ActivityMainLauncher   
 - ActivityQuickLauncher

The images are places in the hdpi, mdpi, ldpi folders.
The size is 72,48,36 pixels and they are PNG images.
Photoshop shows same resolution 72,009 for all three images.
UPDATE
added drawable-xhdpi folder for 96pix, but I have still only one item the: “SPRiiD”

This behavior is so strange, I don’t know where to start debug.
I think there is something new in the API v15 that I have overseen?

Image of emulator API v15 correctly showing the two choices.

enter image description here

This is my AndroidManifest.xml file.

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    android:installLocation="internalOnly"
    package="com.carlsberg.dumbo"
    android:versionCode="12"
    android:versionName="0.83" >

<!-- android:versionCode as the basis for identifying the application internally and handling updates, -->
<!-- android:versionName to users as the application's version -->
<permission
    android:name="com.carlsberg.dumbo.permission.C2D_MESSAGE"
    android:protectionLevel="signature" />

<supports-screens android:anyDensity="true" />

<uses-permission android:name="com.carlsberg.dumbo.permission.C2D_MESSAGE" />
<!-- <uses-permission android:name="android.permission.SET_DEBUG_APP"></uses-permission> -->
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
<uses-permission android:name="android.permission.USE_CREDENTIALS" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" >
</uses-permission>

<uses-sdk android:minSdkVersion="8" />

<application
    android:icon="@drawable/launcher_gallery"
    android:label="@string/string_app_name" >
    <activity
        android:name=".ActivityMainLauncher"
        android:configChanges="keyboardHidden|orientation"
        android:icon="@drawable/launcher_gallery"
        android:label="@string/string_app_name"
        android:launchMode="singleTop" >
        <intent-filter>
            <action android:name="android.intent.action.SEND" />

            <category android:name="android.intent.category.DEFAULT" />

            <data android:mimeType="image/*" />
            <data android:mimeType="video/*" />
            <data android:mimeType="audio/*" />
            <data android:mimeType="text/*" />
            <data android:mimeType="application/*" />
        </intent-filter>
        <intent-filter>
            <action android:name="android.intent.action.SEND_MULTIPLE" />

            <category android:name="android.intent.category.DEFAULT" />

            <data android:mimeType="image/*" />
            <data android:mimeType="video/*" />
            <data android:mimeType="audio/*" />
            <data android:mimeType="text/*" />
            <data android:mimeType="application/*" />
        </intent-filter>
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

    <activity-alias
        android:name="com.android.internal.app.ResolverActivity"
        android:exported="true"
        android:targetActivity=".ActivityMainLauncher" />

    <activity
        android:name=".gallery.ActivityGallery"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:configChanges="orientation|keyboardHidden"
        android:icon="@drawable/launcher_gallery"
        android:label="@string/string_app_name_gallery"
        android:launchMode="singleTop"
        android:taskAffinity="com.carlsberg.dumbo.GalleryActivity" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity
        android:name=".ActivityQuickLauncher"
        android:configChanges="keyboardHidden|orientation"
        android:icon="@drawable/launcher_gallery"
        android:label="@string/string_app_name_quick_launcher"
        android:launchMode="singleTop" >
        <intent-filter>
            <action android:name="android.intent.action.SEND" />

            <category android:name="android.intent.category.DEFAULT" />

            <data android:mimeType="image/*" />
            <data android:mimeType="video/*" />
            <data android:mimeType="audio/*" />
            <data android:mimeType="text/*" />
            <data android:mimeType="application/*" />
        </intent-filter>
        <intent-filter>
            <action android:name="android.intent.action.SEND_MULTIPLE" />

            <category android:name="android.intent.category.DEFAULT" />

            <data android:mimeType="image/*" />
            <data android:mimeType="video/*" />
            <data android:mimeType="audio/*" />
            <data android:mimeType="text/*" />
            <data android:mimeType="application/*" />
        </intent-filter>
    </activity>

    <activity
        android:name=".send.ActivitySend"
        android:configChanges="orientation|keyboardHidden"
        android:launchMode="singleTask"
        android:screenOrientation="portrait" >
    </activity>
    <activity
        android:name=".ActivityRemoveFriend"
        android:configChanges="keyboardHidden|orientation"
        android:label="@string/string_app_name"
        android:theme="@android:style/Theme.Dialog" >
    </activity>
    <activity
        android:name="com.carlsberg.dumbo.history.TabActivityHistoryLauncher"
        android:label="@string/string_app_name"
        android:launchMode="singleTask" >
    </activity>
    <activity android:name="com.carlsberg.dumbo.history.ActivityTabGroup1" >
    </activity>
    <activity android:name="com.carlsberg.dumbo.history.ActivityTabGroup2" >
    </activity>
    <activity android:name="com.carlsberg.dumbo.history.ActivityHistoryOutgoing" >
    </activity>
    <activity android:name="com.carlsberg.dumbo.history.ActivityHistoryIncoming" >
    </activity>
    <activity
        android:name=".ActivityLogin"
        android:configChanges="keyboardHidden|orientation"
        android:label="@string/string_app_name"
        android:theme="@android:style/Theme.Dialog" >
    </activity>
    <activity
        android:name=".ActivityAddFriend"
        android:configChanges="keyboardHidden|orientation"
        android:label="@string/string_app_name"
        android:theme="@android:style/Theme.Dialog" >
    </activity>
    <activity
        android:name=".ActivityAcceptFriend"
        android:configChanges="keyboardHidden|orientation"
        android:label="@string/string_app_name"
        android:theme="@android:style/Theme.Dialog" >
    </activity>
    <activity android:name=".Preferences" >
    </activity>
    <activity
        android:name=".send.TabActivityActivityHelpSend"
        android:launchMode="singleTask"
        android:screenOrientation="portrait" >
    </activity>


    <service
        android:name=".IntentServiceSendFiles"
        android:label="@string/string_sendFileService" >

    </service>
    <service
        android:name=".IntentServiceGetFilesFromPc"
        android:label="@string/string_getFileService" >
    </service>        
    <service
        android:name=".IntentServiceGetFiles"
        android:label="@string/string_getFileService" >
    </service>
    <service
        android:name=".ServiceBootCompleated"
        android:label="@string/string_batchtester" >
    </service>
    <service
        android:name=".IntentServiceGetFriendList"
        android:label="@string/string_listupdater" >
    </service>
    <service
        android:name=".IntentServiceUpdateFriendList"
        android:label="@string/string_listupdater" >
    </service>
    <service android:name=".C2DMReceiver" />

    <receiver
        android:name="com.google.android.c2dm.C2DMBroadcastReceiver"
        android:permission="com.google.android.c2dm.permission.SEND" >
        <intent-filter>

            <!-- Receive the actual message -->
            <action android:name="com.google.android.c2dm.intent.RECEIVE" />

            <category android:name="com.carlsberg.dumbo" />
        </intent-filter>
        <intent-filter>

            <!-- Receive the registration id -->
            <action android:name="com.google.android.c2dm.intent.REGISTRATION" />

            <category android:name="com.carlsberg.dumbo" />
        </intent-filter>
    </receiver>
    <receiver android:name="com.google.android.c2dm.C2DMBroadcastReceiver" >

        <!-- Handle retry events -->
        <intent-filter>
            <action android:name="com.google.android.c2dm.intent.RETRY" />

            <category android:name="com.carlsberg.dumbo" />
        </intent-filter>
    </receiver>
    <receiver android:name=".AlarmReceiver" >
    </receiver>
    <receiver android:name=".myBroadcastReceiver" >
        <intent-filter>
            <action android:name="android.intent.action.BOOT_COMPLETED" />
        </intent-filter>
    </receiver>

    <provider
        android:name=".contentprovider.UserContentProvider"
        android:authorities="com.carlsberg.dumbo.contentprovider" >
    </provider>
</application>

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-07T18:28:34+00:00Added an answer on June 7, 2026 at 6:28 pm

    I just copied the relevant part of your manifest and created a test project:

    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
        package="com.example.test"
        android:versionCode="1"
        android:versionName="1.0" >
    
        <uses-sdk
            android:minSdkVersion="8"
            android:targetSdkVersion="15" />
    
        <application
            android:icon="@drawable/ic_launcher"
            android:label="@string/app_name"
            android:theme="@style/AppTheme" >
            <activity
                android:name=".MainActivity"
                android:label="@string/title_activity_main" >
                <intent-filter>
                    <action android:name="android.intent.action.MAIN" />
    
                    <category android:name="android.intent.category.LAUNCHER" />
                </intent-filter>
            </activity>
            <activity
                android:name=".ActivityMainLauncher"
                android:configChanges="keyboardHidden|orientation"
                android:icon="@drawable/ic_launcher"
                android:label="@string/string_app_name"
                android:launchMode="singleTop" >
                <intent-filter>
                    <action android:name="android.intent.action.SEND" />
    
                    <category android:name="android.intent.category.DEFAULT" />
    
                    <data android:mimeType="image/*" />
                    <data android:mimeType="video/*" />
                    <data android:mimeType="audio/*" />
                    <data android:mimeType="text/*" />
                    <data android:mimeType="application/*" />
                </intent-filter>
                <intent-filter>
                    <action android:name="android.intent.action.SEND_MULTIPLE" />
    
                    <category android:name="android.intent.category.DEFAULT" />
    
                    <data android:mimeType="image/*" />
                    <data android:mimeType="video/*" />
                    <data android:mimeType="audio/*" />
                    <data android:mimeType="text/*" />
                    <data android:mimeType="application/*" />
                </intent-filter>
                <intent-filter>
                    <action android:name="android.intent.action.MAIN" />
    
                    <category android:name="android.intent.category.LAUNCHER" />
                </intent-filter>
            </activity>
            <activity
                android:name=".ActivityQuickLauncher"
                android:configChanges="keyboardHidden|orientation"
                android:icon="@drawable/ic_launcher"
                android:label="@string/string_app_name_quick_launcher"
                android:launchMode="singleTop" >
                <intent-filter>
                    <action android:name="android.intent.action.SEND" />
    
                    <category android:name="android.intent.category.DEFAULT" />
    
                    <data android:mimeType="image/*" />
                    <data android:mimeType="video/*" />
                    <data android:mimeType="audio/*" />
                    <data android:mimeType="text/*" />
                    <data android:mimeType="application/*" />
                </intent-filter>
                <intent-filter>
                    <action android:name="android.intent.action.SEND_MULTIPLE" />
    
                    <category android:name="android.intent.category.DEFAULT" />
    
                    <data android:mimeType="image/*" />
                    <data android:mimeType="video/*" />
                    <data android:mimeType="audio/*" />
                    <data android:mimeType="text/*" />
                    <data android:mimeType="application/*" />
                </intent-filter>
            </activity>
        </application>
    
    </manifest>
    

    Simple activity implementations:

    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();
        }
    }
    

    And it works:

    Android 4.1.1
    Android 4.0.3

    Android 4.1.1 (Galaxy Nexus) and Android 4.0.3 (Archos G9 A70).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I got this far: :~ curl -u username:password -d status=new_status http://twitter.com/statuses/update.xml Now, how can
I am developing a live update for my application. So far, I have created
So far I have only been updated a view from within its controller. I
So far the only way I have been able to keep index.yaml updated when
UPDATE 2009-05-21 I've been testing the #2 method of using a single network share.
----------Updated ------------ codymanix and moonshadow have been a big help thus far. I was
Update: I reported this as a bug to Apple and they fixed it! All
UPDATE: I've been playing around with this more, and it seems like tmux's clear-history
Update : This is no longer an issue from C# 6, which has introduced
I'm really hoping that someone can help. I have tomorrow to get this right

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.