Titanium JIRA Archive
Titanium SDK/CLI (TIMOB)

[TIMOB-16518] Android: Email dialog appears too big on Android 4.4 with anyDensity=false

GitHub Issuen/a
TypeBug
PriorityLow
StatusClosed
ResolutionWon't Fix
Resolution Date2014-03-03T18:20:52.000+0000
Affected Version/sn/a
Fix Version/sn/a
ComponentsAndroid
LabelsSupportTeam
ReporterDavide Cassenti
AssigneeIngo Muschenetz
Created2014-02-28T17:01:32.000+0000
Updated2017-03-22T22:59:14.000+0000

Description

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

Attachments

FileDateSize
Issue1.png2014-03-03T18:17:02.000+0000216719

Comments

  1. Ingo Muschenetz 2014-03-03

    Our suggestion is that if they need to keep the setting on, they should try to replicate the default functionality with a custom dialog.
  2. Lee Morris 2017-03-22

    Closing ticket as "Won't Fix".

JSON Source