解决方案 »

  1.   

    Working with Media in HTML5 这篇文章中 有一段代码 
              <section>
        <h1>Using the HTML5 Video tag to play video</h1>
        <video src="video1.mp4" >
        </video>
    </section>
    <section>
        <h1>Using the Object tag to play media using the Flash plug-in</h1> 
        <object type="application/x-shockwave-flash"
                   data="player.swf" width="290" height="24">
            <param name="movie" value="player.swf">
        </object>
    </section>我是否可以理解为 HTML5 可以支持swf?至于手机这个还真不知道。不过有一点我建议楼主,多用用google
      

  2.   

    至于手机这个还真不知道。不过有一点我建议楼主,多用用google   发错地方了
      

  3.   

    关于楼主的问题,有很多的资料,我就简单的说我看到的一篇吧。地址连接在回复的最后,楼主需要的话可以去详细看一下。
    首先,安卓设备目前主流已经到android4.0以上了,而自Android 2.1版本就开始部分支持flash,可下载安装flash插件播放视频。Adobe Flash Player 10.1.92.8已经支持所有android 2.2智能手机。因此安卓系统和windows系统采用同样的方案,使用flash播放器即可实现。
    http://blog.csdn.net/freshlover/article/details/7535785/