带有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的权重最小。
答案 0 :(得分:0)
可能是因为wrap_content告诉TextView
测量其内容。
在任何情况下,您都不应该使用权重0.如果您希望视图不占用任何空格,请使用android:visible="gone"
。