Android Layout布局文件里的android:layout_height等属性为什么会不起作用?
有的时候,我们配置好的布局文件,在加载完成添加到我们的Activity中后发现,并没有安装我们设置的属性
来布局,比为我们设置了android:layout_marginTop="100dip",但是运行程序后发现一点作用都没有,相似的还有layout_height等以android:layout_开头的属性设置都没有作用,这类问题以我们使用Adapter的作为数据源的时候作用居多,因为Adapter里有一个方法是getView,这个返回的VIew是一个从XML布局里加载的,一般如下:
if(convertView==null){ convertView=LayoutInflater.from(mContext).inflate(R.layout.main, null); } return convertView;
相关推荐
hickwu 2020-06-16
Ongoingcre 2020-06-09
wintelx 2020-05-11
gdb 2020-05-01
atb 2020-04-18
cuixingwudi 2020-02-21
fenxinzi 2020-01-11
smalllove 2019-12-24
qidu 2019-12-16
secondid 2019-12-05
hazing 2014-03-18
zyccsdn 2015-07-27
怪盗基德 2017-09-22
lcyangcss 2019-10-25
codeAB 2019-10-23
Geeny 2019-09-08
Will0 2012-03-21