Titanium JIRA Archive
Titanium SDK/CLI (TIMOB)

[TIMOB-19941] Black bar at bottom of all ScrollableViews with SDK 5.1.x in IOS

GitHub Issuen/a
TypeBug
PriorityCritical
StatusClosed
ResolutionDuplicate
Resolution Date2015-11-16T18:01:47.000+0000
Affected Version/sn/a
Fix Version/sRelease 5.1.0
ComponentsiOS
Labelsn/a
ReporterJohn Alexander Ordoñez
AssigneeAngel Petkov
Created2015-11-11T15:11:19.000+0000
Updated2017-03-21T23:16:50.000+0000

Description

Wherever a ScrollableView is used it has a black bar at the bottom. I created a new application and it has the same problem.
<Alloy>
	<Window>
		<ScrollableView>
			<View title="Tab 1">
				<Label>I am page 1</Label>
			</View>
			<View title="Tab 2">
				<Label>I am page 2</Label>
			</View>
		</ScrollableView>
	</Window>
</Alloy>
"Window": {
	backgroundColor: "#fff"
}

"Label": {
	width: Ti.UI.SIZE,
	height: Ti.UI.SIZE,
	color: "#000",
	font: {
		fontSize: 20,
		fontFamily: 'Helvetica Neue'
	},
	textAlign: 'center'
} 
!Simulator Screen Shot Nov 10, 2015, 10.31.39 AM.png|thumbnail!

Attachments

FileDateSize
Simulator Screen Shot Nov 10, 2015, 10.31.39 AM.png2015-11-11T15:05:42.000+000026486
Simulator Screen Shot Nov 12, 2015, 12.07.07 PM.png2015-11-12T06:37:38.000+000021865

Comments

  1. Angel Petkov 2015-11-13

    Hello , we have looked at the problem and believe this PR should fix it. While the showPagingControl property is set to false inside the scrollableView you should no longer see the black footer. PR pending https://github.com/appcelerator/titanium_mobile/pull/7436.
       var win = Ti.UI.createWindow();
       
       var view1 = Ti.UI.createView({ backgroundColor:'#123' });
       
       var scrollableView = Ti.UI.createScrollableView({
         views:[view1],
         showPagingControl:false
       });
       
       win.add(scrollableView);
       win.open();
       
  2. Hans Knöchel 2015-11-16

    Duplicate of TIMOB-19761
  3. Lee Morris 2017-03-21

    Closing ticket as duplicate with reference to the above comments and links.

JSON Source