码迷,mamicode.com
首页 > 移动开发 > 详细

.Net程序员玩转Android开发---(10)帧布局FrameLayout

时间:2014-11-07 13:10:05      阅读:221      评论:0      收藏:0      [点我收藏+]

标签:android开发   布局   framelayout   游响云停工作室   移动端开发   

                    帧布局FrameLayout中所有的控件都在界面的左上侧,后绘制的空间会覆盖之前的控件,帧布局方式用在游戏开发方面可能多些.



                    
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

  
   <TextView
        android:layout_width="300dp"
        android:layout_height="300dp"
        android:text="游响云停工作室"
        android:gravity="center"
        android:background="#FFE4B5"
         />
    
       <TextView
        android:id="@+id/textView1"
        android:layout_width="150dp"
        android:layout_height="120dp"
        android:text="游响云停工作室"
        android:gravity="center"
        android:background="#D1EEEE"
         />
       
          <TextView
        android:layout_width="100dp"
        android:layout_height="50dp"
        android:text="游响云停工作室"
        android:gravity="center"
        android:background="#EEB422"
         />
 
</FrameLayout>




<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

  
<ImageView
        android:id="@+id/imageView1"
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:src="@raw/pad" />

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="商品名称:Ipad Air"
        android:layout_marginLeft="120dp"
        android:layout_marginTop="10dp"
         />
    
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="商品金额:$20"

        android:layout_marginLeft="120dp"
        android:layout_marginTop="40dp"
         />
    
      <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="商品颜色:白色"
        android:layout_marginLeft="120dp"
        android:layout_marginTop="70dp"
         />
      
       <TextView
        android:layout_width="fill_parent"
        android:layout_height="3dp"
        android:text=""
        android:layout_marginLeft="0dp"
        android:layout_marginTop="110dp"
        android:background="#D1EEEE"
         /> 
         
        <ImageView
        android:id="@+id/imageView2"
        android:layout_width="100dp"
        android:layout_height="100dp"
           android:layout_marginTop="120dp"
        android:src="@raw/pad" />

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="商品名称:Ipad Air"
        android:layout_marginLeft="120dp"
        android:layout_marginTop="140dp"
         />
    
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="商品金额:$20"

        android:layout_marginLeft="120dp"
        android:layout_marginTop="170dp"
         />
    
      <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="商品颜色:白色"
        android:layout_marginLeft="120dp"
        android:layout_marginTop="200dp"
         />
      
       <TextView
        android:layout_width="fill_parent"
        android:layout_height="3dp"
        android:text=""
        android:layout_marginLeft="0dp"
        android:layout_marginTop="220dp"
        android:background="#D1EEEE"
         /> 
 
</FrameLayout>



.Net程序员玩转Android开发---(10)帧布局FrameLayout

标签:android开发   布局   framelayout   游响云停工作室   移动端开发   

原文地址:http://blog.csdn.net/zx13525079024/article/details/40890943

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!