首页 > 代码库 > .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
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。