在Sencha touch 2中播放视频文件

时间:2012-07-18 12:20:15

标签: android extjs sencha-touch-2

 Ext.define('Video.view.video', {
        extend: 'Ext.Container',

        requires: [
            'Ext.Video'
        ],
        config: {
            layout: 'fit',
            items: [{
                xtype: 'video',
                url: ['aa.mp4'],
                loop: true,
                posterUrl: 'resources/images/cover.jpg'
            }]
        }
    });
  

这是我的代码,但不是显示视频

1 个答案:

答案 0 :(得分:0)

请@Amit kumar你能尝试这样的事吗,

Ext.define('myapp.view.Video', {
   extend: 'Ext.Container',
   xtype: 'myvideo',

    requires: [
        'Ext.Video'
    ],

    config: {
        layout: 'fit',

        items: [
            {
                xtype: 'video',
                enableControls: false,
                x : 600,
                y : 300,
                width : 300,
                height   : 250,
                url: 'app/images/VID.3GP',
                loop: true,
                posterUrl: 'app/images/transfers.png'
            },
        ]
    }
});

我希望这会有所帮助。 :)

enter image description here