1

What is use of Android:height attribute when we already have Android:layout_height attribute?? I have tried using it in TextView and EditText ,, have made No usefull difference

4

2 回答 2

0

这一切都取决于所使用的ViewGroupandroid:layout_height="wrap_content" ,但通常如果您使用android:height的是实际大小。

详情:https ://stackoverflow.com/a/20728106/341091

请注意,如果您不设置android:height视图将自行计算大小。大多数时候这是正确的做法。

于 2013-12-22T10:14:39.567 回答
0

根据文档

使 TextView 正好有这么多像素高。

我猜它是旧的,只有当你想像它所说的那样指定特定数量的像素时。我不建议使用它,但坚持android:layout_height

于 2013-08-06T22:24:58.390 回答