Problem description
When setting anyDensity=false and using Android 4.4, the email dialog appears huge.
Setps to reproduce
1. Set anyDensity="false" in the manifest
<android xmlns:android="http://schemas.android.com/apk/res/android">
<manifest>
<supports-screens android:anyDensity="false"/>
</manifest>
</android>
2. Use the following code.
3. Just click on the screen to open the dialog
var win = Ti.UI.createWindow({
backgroundColor: 'white'
});
win.addEventListener('click', function() {
var mail = Ti.UI.createEmailDialog({
subject: 'Test',
messageBody: 'This is a test'
});
mail.open();
});
win.open();
Our suggestion is that if they need to keep the setting on, they should try to replicate the default functionality with a custom dialog.
Closing ticket as "Won't Fix".