创建一个不是全屏的模态窗口

时间:2013-09-03 10:08:14

标签: android ios window titanium modal-dialog

当我点击钛合金上的照片时,我正试图模仿弹出iphone的屏幕。我认为这是一个'模态窗口'。我现在尝试并创建了一个只有几个按钮的模态窗口。稍后我会介绍图标。但模态窗口占据整个屏幕,我试图调整它,但这没有用..任何关于如何重现如左边的屏幕的建议非常感谢: 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}); 
    });

2 个答案:

答案 0 :(得分: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();

答案 1 :(得分:0)

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

此代码应显示如何在视图之间进行切换,以便您可以拥有多个视图。 https://gist.github.com/joacim-boive/1090202

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