我想在iPad的scrollableView上左上角放一个后退按钮。如果我在这里放一个按钮,就不会出现在屏幕上。
这是我的view1.xml。
<Alloy>
<Window id="win1" class="contain">
<ScrollableView id="scrollableView" showPagingControl="true">
<View id="vista1" backgroundImage="Lois1.jpg"></View>
<View id="vista2" backgroundImage="Lois2.jpg"></View>
<View id="vista3" backgroundImage="Lois3.jpg"></View>
<View id="vista4" backgroundImage="Lois4.jpg"></View>
<View id="vista5" backgroundImage="Lois5.jpg"></View>
</ScrollableView>
</Window>
</Alloy>
这是我的合金.js:
//View 1
var win1 = Ti.UI.createWindow({
fullscreen: true});
var vista1 = Ti.UI.createView({ backgroundImage: 'Lois1.jpg'});
var vista2 = Ti.UI.createView({ backgroundImage: 'Lois2.jpg' });
var vista3 = Ti.UI.createView({ backgroundImage: 'Lois3.jpg' });
var vista4 = Ti.UI.createView({ backgroundImage: 'Lois4.jpg' });
var vista5 = Ti.UI.createView({ backgroundImage: 'Lois5.jpg' });
var scrollableView = Ti.UI.createScrollableView({
views:[vista1,vista2,vista3,vista4, vista5],
showPagingControl:true
});
win1.add(scrollableView);
答案 0 :(得分:0)
如果您无法在view1.xml中添加按钮,那么您可以在view1.js中执行此操作
因此,请尝试在view1.js文件中添加以下代码
var btnClose = Ti.UI.createButton({
title : "Close",
width : Ti.UI.SIZE,
height : Ti.UI.SIZE
});
$.scrollableView.add(btnClose);