My attempts to make my app show up in the multi-window list on my S3 running android 4.3 have been unsuccessful. All I have done so far is added the following to the manifest:
Is there anything specific I am missing here? I noted an earlier thread where a forum member had had a similar problem, but no solution was posted.
Do I need to use an additional library?
Is there a permission that I need that I haven't set?
What am I missing?
Any help would be appreciated!
B4X:
' Added for multi-window support:
AddActivityText(main, <intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
<category android:name="android.intent.category.MULTIWINDOW_LAUNCHER" /></intent-filter>)
AddApplicationText( <uses-library android:required="false" android:name="com.sec.android.app.multiwindow"> </uses-library>
<meta-data android:name="com.sec.android.support.multiwindow" android:value="true" />
<meta-data android:name="com.sec.android.multiwindow.DEFAULT_SIZE_W" android:value="632.0dip" />
<meta-data android:name="com.sec.android.multiwindow.DEFAULT_SIZE_H" android:value="598.0dip" />
<meta-data android:name="com.sec.android.multiwindow.MINIMUM_SIZE_W" android:value="632.0dip" />
<meta-data android:name="com.sec.android.multiwindow.MINIMUM_SIZE_H" android:value="598.0dip" />)
' End of multi-window additions
Do I need to use an additional library?
Is there a permission that I need that I haven't set?
What am I missing?
Any help would be appreciated!
Last edited: