[ALOY-1703] XML attribute shortcuts for verticalAlign are not used on Android
GitHub Issue | n/a |
---|---|
Type | Bug |
Priority | None |
Status | Closed |
Resolution | Won't Fix |
Resolution Date | 2019-09-04T20:42:45.000+0000 |
Affected Version/s | n/a |
Fix Version/s | n/a |
Components | n/a |
Labels | n/a |
Reporter | Brenton House |
Assignee | Ewan Harris |
Created | 2019-08-30T15:55:56.000+0000 |
Updated | 2020-01-24T15:10:06.000+0000 |
Description
When using shortcuts for verticalAlign: i.e. "center" for "Titanium.UI.TEXT_VERTICAL_ALIGNMENT_CENTER", the text is instead top aligned. This does not work:
<Alloy>
<Window class="container" id="index">
<View layout="vertical" height="size">
<ImageView image="/images/axway-logo.png" width="80%" onClick="Alloy.Globals.Start" />
<Label id="label" onClick="Alloy.Globals.Start" text="Begin Survey" top="100" width="75%" backgroundColor="#c23838" color="white" textAlign="center" verticalAlign="center" height="100" font.fontSize="30" />
<Button id="label" onClick="Alloy.Globals.Start" title="Begin Survey" top="100" width="75%" backgroundColor="#c23838" color="white" textAlign="center" verticalAlign="center" height="100" font.fontSize="30" />
</View>
</Window>
</Alloy>
Whereas this does work:
<Alloy>
<Window class="container" id="index">
<View layout="vertical" height="size">
<ImageView image="/images/axway-logo.png" width="80%" onClick="Alloy.Globals.Start" />
<Label id="label" onClick="Alloy.Globals.Start" text="Begin Survey" top="100" width="75%" backgroundColor="#c23838" color="white" textAlign="center" verticalAlign="Titanium.UI.TEXT_VERTICAL_ALIGNMENT_CENTER" height="100" font.fontSize="30" />
<Button id="label" onClick="Alloy.Globals.Start" title="Begin Survey" top="100" width="75%" backgroundColor="#c23838" color="white" textAlign="center" verticalAlign="Titanium.UI.TEXT_VERTICAL_ALIGNMENT_CENTER" height="100" font.fontSize="30" />
</View>
</Window>
</Alloy>
Attachments
File | Date | Size |
---|---|---|
Screenshot_1567180243.png | 2019-08-30T15:54:55.000+0000 | 112921 |
Screenshot_1567180456.png | 2019-08-30T15:54:55.000+0000 | 113205 |