当layout_weight =" 0"时,Wrap_content显示文本。但用dp值替换换行会导致内容消失。为什么呢?

时间:2015-06-21 14:09:19

标签: android xml layout

带有dp值的代码 -

<TextView
    android:text="VIP List"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="#4CAF50"
    android:textSize="24sp"
    android:layout_weight="0"
/>

为宽度和高度设置dp值会导致文本离开屏幕。在我使用的4个文本视图中,此textview的权重最小。

1 个答案:

答案 0 :(得分:0)

可能是因为wrap_content告诉TextView测量其内容。

在任何情况下,您都不应该使用权重0.如果您希望视图不占用任何空格,请使用android:visible="gone"