首页 > 代码库 > .Net程序员玩转Android开发---(10)帧布局FrameLayout

.Net程序员玩转Android开发---(10)帧布局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=http://www.mamicode.com/"@raw/pad" />>


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