您的当前位置:首页正文

Android Layout之一:FrameLayou

2021-05-15 来源:步旅网
由麦可网整理,转载请注明出处

Android Layout之一:FrameLayou

Android Layout有五大布局对象,分别是FrameLayout(帧布局),LinearLayout (线性布局),AbsoluteLayout(绝对布局),RelativeLayout(相对布局),TableLayout(表格布局).

FrameLayout:该布局container可以用来占有屏幕的某块区域来显示单一的对 象,可以包含有多个widgets或者是container,但是所有被包含的widgets或者是container必须被固定到屏幕的左上角,并且一 层覆盖一层,不能通过为一个widgets或者是container指定一个位置。Container所包含的widgets或者是container的 队列是采用的堆栈的结构,最后加进来的widgets或者是container显示在最上面。所以后一个widgets或者是container将会直接 覆盖在前一个widgets或者是container之上,把它们部份或全部挡住(除非后一个widgets或者是container是透明的,必须得到 FrameLayout Container的允许)。 其中Main.xml 代码如下: XML/HTML代码

                               

android:orientation=\"vertical\"

android:layout_width=\"fill_parent\"

android:layout_height=\"fill_parent\" >

android:layout_width=\"fill_parent\"

android:layout_height=\"wrap_content\"

android:text=\"@string/hello\" />

android:textColor=\"#0000FF\"

android:layout_width=\"wrap_content\"

android:layout_height=\"wrap_content\"

android:text=\"@string/hello2\"

由麦可网整理,转载请注明出处

 /> 



Strings.xml代码如下: XML/HTML代码

 

 

 HelloWorld,LayoutTestActivity! 

 LayoutTest 

 HelloWorld,IcannotbeLOST! 



因篇幅问题不能全部显示,请点此查看更多更全内容