Note that there are some explanatory texts on larger screens.

plurals
  1. POWhy is the "share-to" menu item gone in Android 4.0.3 PHONE HTC OneX
    primarykey
    data
    text
    <p><strong>UPDATE<br> So far this only happens on the HTC OneX using Android 4.0.3</strong></p> <p>I have two <strong>share-to</strong> menu items in the android share menu. </p> <p>When the user shares an image from android gallery, my app displays two<br> icons so user can have easy access to two different part of my app. See picture. </p> <p>This works fine in API v8, but in API v15 on <strong><em>a real device</em></strong> one of them is missing. API v15 emulator is ok! </p> <p>In my <code>AndroidManifest.xml</code> this two <code>Activity's</code> set an icon in the share menu. </p> <pre><code> - ActivityMainLauncher - ActivityQuickLauncher </code></pre> <p>The images are places in the <strong>hdpi</strong>, <strong>mdpi</strong>, <strong>ldpi</strong> folders.<br> The size is 72,48,36 pixels and they are <strong>PNG</strong> images.<br> Photoshop shows same resolution 72,009 for all three images.<br> <strong>UPDATE<br> added drawable-xhdpi folder for 96pix, but I have still only one item the: "SPRiiD"</strong> </p> <p>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?</p> <p>Image of emulator API v15 correctly showing the two choices.</p> <p><img src="https://i.stack.imgur.com/BhGRh.png" alt="enter image description here"> </p> <p>This is my <strong><code>AndroidManifest.xml</code></strong> file.</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;manifest xmlns:android="http://schemas.android.com/apk/res/android" android:installLocation="internalOnly" package="com.carlsberg.dumbo" android:versionCode="12" android:versionName="0.83" &gt; &lt;!-- android:versionCode as the basis for identifying the application internally and handling updates, --&gt; &lt;!-- android:versionName to users as the application's version --&gt; &lt;permission android:name="com.carlsberg.dumbo.permission.C2D_MESSAGE" android:protectionLevel="signature" /&gt; &lt;supports-screens android:anyDensity="true" /&gt; &lt;uses-permission android:name="com.carlsberg.dumbo.permission.C2D_MESSAGE" /&gt; &lt;!-- &lt;uses-permission android:name="android.permission.SET_DEBUG_APP"&gt;&lt;/uses-permission&gt; --&gt; &lt;uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" /&gt; &lt;uses-permission android:name="android.permission.GET_ACCOUNTS" /&gt; &lt;uses-permission android:name="android.permission.USE_CREDENTIALS" /&gt; &lt;uses-permission android:name="android.permission.INTERNET" /&gt; &lt;uses-permission android:name="android.permission.WAKE_LOCK" /&gt; &lt;uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /&gt; &lt;uses-permission android:name="android.permission.VIBRATE" /&gt; &lt;uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" /&gt; &lt;uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /&gt; &lt;uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" &gt; &lt;/uses-permission&gt; &lt;uses-sdk android:minSdkVersion="8" /&gt; &lt;application android:icon="@drawable/launcher_gallery" android:label="@string/string_app_name" &gt; &lt;activity android:name=".ActivityMainLauncher" android:configChanges="keyboardHidden|orientation" android:icon="@drawable/launcher_gallery" 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-alias android:name="com.android.internal.app.ResolverActivity" android:exported="true" android:targetActivity=".ActivityMainLauncher" /&gt; &lt;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" &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/launcher_gallery" 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;activity android:name=".send.ActivitySend" android:configChanges="orientation|keyboardHidden" android:launchMode="singleTask" android:screenOrientation="portrait" &gt; &lt;/activity&gt; &lt;activity android:name=".ActivityRemoveFriend" android:configChanges="keyboardHidden|orientation" android:label="@string/string_app_name" android:theme="@android:style/Theme.Dialog" &gt; &lt;/activity&gt; &lt;activity android:name="com.carlsberg.dumbo.history.TabActivityHistoryLauncher" android:label="@string/string_app_name" android:launchMode="singleTask" &gt; &lt;/activity&gt; &lt;activity android:name="com.carlsberg.dumbo.history.ActivityTabGroup1" &gt; &lt;/activity&gt; &lt;activity android:name="com.carlsberg.dumbo.history.ActivityTabGroup2" &gt; &lt;/activity&gt; &lt;activity android:name="com.carlsberg.dumbo.history.ActivityHistoryOutgoing" &gt; &lt;/activity&gt; &lt;activity android:name="com.carlsberg.dumbo.history.ActivityHistoryIncoming" &gt; &lt;/activity&gt; &lt;activity android:name=".ActivityLogin" android:configChanges="keyboardHidden|orientation" android:label="@string/string_app_name" android:theme="@android:style/Theme.Dialog" &gt; &lt;/activity&gt; &lt;activity android:name=".ActivityAddFriend" android:configChanges="keyboardHidden|orientation" android:label="@string/string_app_name" android:theme="@android:style/Theme.Dialog" &gt; &lt;/activity&gt; &lt;activity android:name=".ActivityAcceptFriend" android:configChanges="keyboardHidden|orientation" android:label="@string/string_app_name" android:theme="@android:style/Theme.Dialog" &gt; &lt;/activity&gt; &lt;activity android:name=".Preferences" &gt; &lt;/activity&gt; &lt;activity android:name=".send.TabActivityActivityHelpSend" android:launchMode="singleTask" android:screenOrientation="portrait" &gt; &lt;/activity&gt; &lt;service android:name=".IntentServiceSendFiles" android:label="@string/string_sendFileService" &gt; &lt;/service&gt; &lt;service android:name=".IntentServiceGetFilesFromPc" android:label="@string/string_getFileService" &gt; &lt;/service&gt; &lt;service android:name=".IntentServiceGetFiles" android:label="@string/string_getFileService" &gt; &lt;/service&gt; &lt;service android:name=".ServiceBootCompleated" android:label="@string/string_batchtester" &gt; &lt;/service&gt; &lt;service android:name=".IntentServiceGetFriendList" android:label="@string/string_listupdater" &gt; &lt;/service&gt; &lt;service android:name=".IntentServiceUpdateFriendList" android:label="@string/string_listupdater" &gt; &lt;/service&gt; &lt;service android:name=".C2DMReceiver" /&gt; &lt;receiver android:name="com.google.android.c2dm.C2DMBroadcastReceiver" android:permission="com.google.android.c2dm.permission.SEND" &gt; &lt;intent-filter&gt; &lt;!-- Receive the actual message --&gt; &lt;action android:name="com.google.android.c2dm.intent.RECEIVE" /&gt; &lt;category android:name="com.carlsberg.dumbo" /&gt; &lt;/intent-filter&gt; &lt;intent-filter&gt; &lt;!-- Receive the registration id --&gt; &lt;action android:name="com.google.android.c2dm.intent.REGISTRATION" /&gt; &lt;category android:name="com.carlsberg.dumbo" /&gt; &lt;/intent-filter&gt; &lt;/receiver&gt; &lt;receiver android:name="com.google.android.c2dm.C2DMBroadcastReceiver" &gt; &lt;!-- Handle retry events --&gt; &lt;intent-filter&gt; &lt;action android:name="com.google.android.c2dm.intent.RETRY" /&gt; &lt;category android:name="com.carlsberg.dumbo" /&gt; &lt;/intent-filter&gt; &lt;/receiver&gt; &lt;receiver android:name=".AlarmReceiver" &gt; &lt;/receiver&gt; &lt;receiver android:name=".myBroadcastReceiver" &gt; &lt;intent-filter&gt; &lt;action android:name="android.intent.action.BOOT_COMPLETED" /&gt; &lt;/intent-filter&gt; &lt;/receiver&gt; &lt;provider android:name=".contentprovider.UserContentProvider" android:authorities="com.carlsberg.dumbo.contentprovider" &gt; &lt;/provider&gt; &lt;/application&gt; </code></pre> <p></p>
    singulars
    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.
 

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