码迷,mamicode.com
首页 > 移动开发 > 详细

Android之根布局动态加载子布局时边距设置无效问题

时间:2014-06-14 11:15:02      阅读:297      评论:0      收藏:0      [点我收藏+]

标签:layout   ui   android   控件   

Android大部分的控件都会有padding和layout_margin两个属性,一般来说它们的区别是:

padding控件中的内容离控件边缘的距离。

margin:  控件离它的父控件边缘的距离。


今天做了一个由根布局动态加载子布局的实验,结果发现子布局中的这两个属性可以按预期的效果显示,但是给根布局设置的padding并没有对被加载的子布局产生效果。


代码如下:

根布局文件名为activity_main.xml,其xml文件定义的内容为:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:padding="8dp"  <!-- 这个布局里控件都距离它的边缘8dp -->
    tools:context=".MainActivity" >

</LinearLayout>


上面这个根布局会添加子布局table_layout.xml中定义的布局,这个xml文件的定义内容是:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical" >
    <TextView
        android:id="@+id/tableLayout_tableName"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_margin="10dp"  <!-- 这个控件离table_layout这个布局的边缘为10dp -->
        android:textSize="30sp" />
</LinearLayout>

源码中实现动态加载的代码段:

// 创建用于承载表的布局
LinearLayout subLayout = (LinearLayout) this.getLayoutInflater().inflate(R.layout.table_layout, null);
// 填充表名
tableNameTextView = ((TextView) subLayout.findViewById(R.id.tableLayout_tableName));
tableNameTextView.setText("tablename");

this.addContentView(subLayout, new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT));

但是上面这段代码执行后,table_layout布局里面的边距设置会正常显示,但是activity_main布局中table_layout的边缘却紧紧挨着activity_main的边缘,说明activity_main的padding并没有其效果。


这个问题我纠结了将近3个消失,终于设置了根局部和子布局的margin和padding也不行,分别设置top、right、bottom、left也不行,最终的解决办法却让我感到非常匪夷所思:

只需要在根布局中再加一个布局,把这个布局当做根布局来动态加载子布局就好了。

不知道为什么类型完全相同的根布局就会出错,也许‘根‘布局有某些特别的限制吧。


修改之后的代码是:

activity_main.xml:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context=".MainActivity" >
    <!-- 只要这么再加一个布局来代替跟布局就OK了。。。 -->
    <LinearLayout 
        android:id="@+id/mainLayout" 
        android:layout_width="match_parent" 
        android:layout_height="match_parent" 
        android:orientation="vertical" 
        android:paddingBottom="8dp"
        android:paddingLeft="8dp" 
        android:paddingRight="8dp" > 
    </LinearLayout>
</LinearLayout>


源码:

LinearLayout subLayout = (LinearLayout) this.getLayoutInflater().inflate(R.layout.table_layout, null);
// 填充表名
tableNameTextView = ((TextView) subLayout.findViewById(R.id.tableLayout_tableName));
tableNameTextView.setText("tablename");

LinearLayout mainLayout = (LinearLayout) findViewById(R.id.mainLayout);  //通过这个新加的"根布局"来加载子布局
mainLayout.addView(subLayout);



如果转载请注明出处:http://blog.csdn.net/gophers?viewmode=contents


Android之根布局动态加载子布局时边距设置无效问题,布布扣,bubuko.com

Android之根布局动态加载子布局时边距设置无效问题

标签:layout   ui   android   控件   

原文地址:http://blog.csdn.net/gophers/article/details/30504821

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!