博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Android Layout XML属性研究--android:layout_marginBottom (转载)
阅读量:4975 次
发布时间:2019-06-12

本文共 1357 字,大约阅读时间需要 4 分钟。

转自:http://blog.csdn.net/yanfangjin/article/details/7393023

 

在如下的xml配置文件中,起初对于android:layout_marginBottom,即需要控制imagebutton对于向下的间距,则不能working。

 

<RelativeLayout

        android:id="@+id/bar"
        android:layout_width="wrap_content"
        android:layout_height="fill_parent"
        android:background="@drawable/ic_bar_bg"
        android:layout_alignParentRight="true"
        android:orientation="horizontal" >

<ImageButton

            android:id="@+id/gallery"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerHorizontal="true"
            android:layout_marginBottom="10dp"
            android:background="@drawable/ic_frame"/> 

</RelativeLayout>

 

查看很多的blog,对于releated layout的设置有一定的了解,后续测试中,添加了如下的设置android:layout_alignParentBottom="true",则能够使用layout_marginBottom这个特性,因此认为默认的设置,alignParantBottom肯定是false,因此layout_marginBottom不起作用。

<RelativeLayout

        android:id="@+id/bar"
        android:layout_width="wrap_content"
        android:layout_height="fill_parent"
        android:background="@drawable/ic_bar_bg"
        android:layout_alignParentRight="true"
        android:orientation="horizontal" >

<ImageButton

            android:id="@+id/gallery"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerHorizontal="true"
            android:layout_alignParentBottom="true"
            android:layout_marginBottom="10dp"
            android:background="@drawable/ic_frame"/> 

</RelativeLayout>

转载于:https://www.cnblogs.com/lance-ehf/p/4380050.html

你可能感兴趣的文章
会话管理-0.2.Session和Cookie的区别
查看>>
中文乱码 encodeURI来解决URL传递时的中文问题
查看>>
比数字工具更好用的纸和笔
查看>>
【转载】SQL INSERT INTO SELECT 语句
查看>>
Umbraco中的权限体系结构
查看>>
hdu 1312
查看>>
UVa 624
查看>>
c#入门经典笔记第六章
查看>>
datalist 分页
查看>>
M25-14
查看>>
.NET 通过 NPOI 操作 Excel
查看>>
Delphi XE2 之 FireMonkey 入门(3) - 关于 TPosition
查看>>
Eclipse快捷键功能
查看>>
编译器错误消息: CS0016: 未能写入输出文件“c:/Windows/Microsoft.NET/Framework/v2.0.50727/....dll”--“拒绝访问。...
查看>>
UBuntu CMake使用示例
查看>>
Shell记录-Shell脚本基础(二)
查看>>
PHP 数组函数-数组排序
查看>>
本版皮肤
查看>>
浙大 pat 1007题解
查看>>
C语言知识点(4)
查看>>