请教各位大侠,我需要通过以下几个xml文件,在手机上设计出该UI的摸样,请问我该如何实现,顺便也请告诉我下这几个xml文件的意思,谢谢!
layout.xml
<?xml version="1.0" encoding="utf-8"?>
<screen background="config/newyear-bk.png"> <component name="slider1" previous="false" type="10002" x="322" y="675" w="946" h="69" source="config/slider.xml"/>
 <component name="slider2" previous="false" type="10002" x="432" y="20" w="840" h="82" source="config/slider2.xml"/>
 <component name="timer" previous="false" type="10007" x="10" y="10" w="300" h="40" color="#ff50ff33" showtype="3"/>
 <component name="picture" previous="false" type="10006" x="1016" y="134" w="244" h="213" source="config/piclist.xml"/>
 <component name="video" previous="false" type="10001" x="58" y="113" w="940" h="550" source="config/playlist.xml"/>  
 <component name="inform" previous="false" type="10003" x="1010" y="368" w="257" h="291" source="config/inform.xml"/>
</screen>slider.xml
<?xml version="1.0" encoding="utf-8"?>
<caption>
  <sentence color="#ff0932f0">我爱你北京 !  </sentence>
  <sentence color="#ff69320f">欢迎您提出宝贵意见!   </sentence>
  <sentence color="#fff90303">盈视通多媒体信息发布系统提升企业竞争力    </sentence>
  <sentence color="#80323200">Do not , for one repulse , give up the purpose that you resolved to effect   </sentence>
</caption>slider2.xml
<?xml version="1.0" encoding="utf-8"?>
<caption>
  <sentence color="#ff0932f0">“以人为本、科学务实”的企业文化,保证人才队伍的稳定与极强的实施能力,致力于金融IT的支持与服务。</sentence>
  <sentence color="#ff69320f">网络技术是强项  享誉神州是愿望  工作千万需务实  以人为本兴炎黄  </sentence>
  <sentence color="#fff90303">盈视通多媒体信息发布系统提升企业竞争力    </sentence>
 <sentence color="#10f90303">字幕的半透明效果,支持多种布局效果,还有更多的功能请与我们联系  </sentence>
</caption>piclist.xml
<?xml version="1.0" encoding="utf-8"?>
<proglist>
 <prog filename="materials/t1.jpg" playlength="10"/>
 <prog filename="materials/t2.jpg" playlength="10"/>
</proglist>playlist.xml
<?xml version="1.0" encoding="utf-8"?>
<proglist>
 <prog filename="materials/h1.wmv" playlength="10"/>
 <prog filename="materials/h2.mov" playlength="10"/>
</proglist>inform.xml
<?xml version="1.0" encoding="utf-8"?>
<config>
  <inform>
    <text color="#ff0000ff" fontheight="35">&#x0020;&#x0020;影片剧情&#x000d;&#x000a;金刚狼原名詹姆斯·豪利特,是一个庄园主的儿子,他自幼体弱多病,
与照顾自己的女佣罗丝关系很好。因为一起纠纷,詹姆斯的父亲被杀,亲眼目睹惨状的詹姆斯,在暴怒</text>
  </inform>
  <inform>
    <text color="#ff00ffff" fontheight="20">&#x0020;&#x0020;影片剧情&#x000d;&#x000a;金刚狼原名詹姆斯·豪利特,是一个庄园主的儿子,他自幼体弱多病,
与照顾自己的女佣罗丝关系很好。因为一起纠纷,詹姆斯的父亲被杀,亲眼目睹惨状的詹姆斯,在暴怒</text>
  </inform>
  <inform>
    <text color="#ffff00ff" fontheight="40">&#x0020;&#x0020;影片剧情&#x000d;&#x000a;金刚狼原名詹姆斯·豪利特,是一个庄园主的儿子,他自幼体弱多病,
与照顾自己的女佣罗丝关系很好。因为一起纠纷,詹姆斯的父亲被杀,亲眼目睹惨状的詹姆斯,在暴怒</text>
  </inform>
</config>
请各位大侠看到后指点迷津,不胜感激。

解决方案 »

  1.   

    没有啊,这是客户给我的资料,按照这些给的资料的位置做一个布局文件出来啊,这些xml文件应该是Pc机UI的程序,现在需要在手机里面也这样的做,头痛,我在想用绝对布局做出来,但是绝对布局只能够在一种机器上运行,换了个分辨率 的就不行了,头痛。
      

  2.   

    按照他们的意思 翻译成android布局文件
      

  3.   

    slider.xml
    <?xml version="1.0" encoding="utf-8"?>
    <caption>
      <sentence color="#ff0932f0">我爱你北京 ! </sentence>
      <sentence color="#ff69320f">欢迎您提出宝贵意见! </sentence>
      <sentence color="#fff90303">盈视通多媒体信息发布系统提升企业竞争力 </sentence>
      <sentence color="#80323200">Do not , for one repulse , give up the purpose that you resolved to effect </sentence>
    </caption>
    我翻译下这段
    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout 这里还要写相关属性 android:orientation="vertical">
      <sentence color="#ff0932f0">我爱你北京 ! </sentence>
      <TextView android:textColor="#ff0932f0"></TextView>
      <sentence color="#ff69320f">欢迎您提出宝贵意见! </sentence>
      <sentence color="#fff90303">盈视通多媒体信息发布系统提升企业竞争力 </sentence>
      <sentence color="#80323200">Do not , for one repulse , give up the purpose that you resolved to effect </sentence>
    </LinearLayout> 
    好了思路就是这样的,具体怎么实现要看你,可以试试xml解析