首页 > 代码库 > Framelayout
Framelayout
Framelayout的布局是一层一层的显示上去的,按照xml中的framelayout下的一级子控件的先后顺序来进行从底到顶的排列,他们的起点都是左上角。
但是是集中我们希望改变某一层的位置可以利用
android:layout_gravity
和
android:layout_margin
来控制
右上角
<ImageButton android:id="@+id/composer_button_search" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="right|top" android:layout_marginRight="15dp" android:layout_marginTop="10dp" android:background="@drawable/ic_launcher" />
底部横向铺满的布局
<RelativeLayout android:id="@+id/operate" android:layout_width="match_parent" android:layout_height="70dp" android:layout_gravity="bottom" android:background="#55336699" > <ImageButton android:id="@+id/composer_button_search" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentLeft="true" android:layout_centerVertical="true" android:layout_marginLeft="55dp" android:background="@drawable/personal_center" /> <ImageButton android:id="@+id/composer_button_search" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentRight="true" android:layout_centerVertical="true" android:layout_marginRight="46dp" android:background="@drawable/personal_center" /> <ImageButton android:id="@+id/composer_button_search" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignTop="@+id/composer_button_search" android:layout_centerInParent="true" android:background="@drawable/personal_center" /> </RelativeLayout>
Done
Framelayout
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。