1

我试图模仿当你点击更多照片时弹出的屏幕,钛金属。我认为这是一个“模态窗口”。目前,我已经尝试并创建了一个只有几个按钮的模式窗口。稍后我将介绍这些图标。但是模态窗口占据了整个屏幕,我试图调整它的大小,但没有奏效。任何关于如何重现像左边这样的屏幕的建议都非常感谢: http://9to5mac.files。 wordpress.com/2012/08/screen-shot-2012-08-09-at-12-24-18-pm.png 我也想尝试在 Android 中重现类似的东西。我的原始代码如下:

var ModalWindow = Ti.UI.createWindow({
            title:'modal window',
            backgroundColor:'black',
            height: "80%",
            width: '200dp'
        });

        var PlayStoreBtn= Titanium.UI.createButton({
            title: 'Play Store',
            top: '10%'
        });

        var youTubeBtn= Titanium.UI.createButton({
            title: 'YouTube',
            top: '20%'
        });

        var facebookBtn= Titanium.UI.createButton({
            title: 'Facebook',
            top: '30%'
        });

        var mySpaceBtn= Titanium.UI.createButton({
            title: 'MySpace',
            top: '40%'
        });

        var twitterBtn= Titanium.UI.createButton({
            title: 'Twitter',
            top: '50%'
        });


        var deleteBtn= Titanium.UI.createButton({
            title: 'Delete',
            top: '60%'
        });

        var cancelBtn= Titanium.UI.createButton({
            title: 'Cancel',
            top: '70%'
        });

        cancelBtn.addEventListener("click", function (e){
            ModalWindow.close();
        })

        ModalWindow.add(PlayStoreBtn);
        ModalWindow.add(youTubeBtn);
        ModalWindow.add(facebookBtn);
        ModalWindow.add(mySpaceBtn);
        ModalWindow.add(twitterBtn);
        ModalWindow.add(deleteBtn);
        ModalWindow.add(cancelBtn);

        ModalWindow.open({modal:true}); 
    });
4

2 回答 2

2

要制作一个不占据整个屏幕的模态窗口,请不要使用 Ti.UI.Window 组件!这些都是重量级的。使用 Ti.UI.View。

这是一个跨平台视图,它打开了一个模态窗口,它只占据了 80 的高度,并嵌套在屏幕底部,它还阻止了模态下方任何内容的所有输入:

module.exports = function() {
    var background = Ti.UI.createView({
        backgroundColor : '#000',
        opacity : 0.4,
        width : Ti.UI.FILL,
        height : Ti.UI.FILL
    });
    var container = Ti.UI.createView({
        width : Ti.UI.FILL,
        height : Ti.UI.FILL
    });
    // This is the view that contains all the buttons and shows up
    // It lays on top of the transparent background
    var modal =Ti.UI.createView({
        width : Ti.UI.FILL,
        height : 80%,
        bottom : 0,
        background : '#555,
        borderColor : '#888',
        borderRadius : 8,
        borderWidth : 8,
        ...More styling, maybe even a background image...
    });

    ...Add your buttons to the modal here...

    container.add(background);
    container.add(modal);
    return container;
};

像这样使用它,假设它在一个名为 Modal.js 的文件中。

var Modal = require('Modal');
var modalView = new Modal();
于 2013-09-03T13:15:30.580 回答
0

这是一个小部件教程,它将向您展示如何布局您的图标。 https://wiki.appcelerator.org/display/td/315+-+Using+Alloy+Widgets 底部是完整代码。

此代码应该向您展示如何在视图之间交换,以便您可以拥有多个屏幕。https://gist.github.com/joacim-boive/1090202

我已经看到了多个视图的更好示例,但我找不到一个

于 2013-09-03T13:16:31.027 回答