0

我一直在阅读教程,并一直试图理解一些事情,但我对这个说法有点困惑:

imageView.setLayoutParams(new GridView.LayoutParams(85, 85));

文档说宽度和高度(意思是两个 85),或者它在屏幕上的显示方式。但这与在 xml 文件的网格视图中执行此操作相同吗?

<GridView
    android:layout_height="85"
...

对我来说似乎不对,这就是我问的原因。任何帮助深表感谢。

4

1 回答 1

0

根据文档:

Parameters
width  the width, either MATCH_PARENT, WRAP_CONTENT or a fixed size in pixels 
height  the height, either MATCH_PARENT, WRAP_CONTENT or a fixed size in pixels 
weight  the weight  

所以,以像素为单位。

在 XML 中,您可以指定单位。

于 2012-05-28T02:47:35.383 回答