更改 width 的你 TextView s 到 0dp 而不是wrap_content
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:gravity="center" >
android:layout_width="0dp"
android:layout_height="wrap_content"
android:text="cnsdsdsf:"
android:layout_weight="1"
android:gravity="center"
android:background="#ff0000" />
android:layout_width="0dp"
android:layout_height="wrap_content"
android:text="TextView"
android:layout_weight="1"
android:gravity="center"
android:background="#00FF00" />
当使用 weight 在 horizontal LinearLayout 你需要有 width 的 0dp 。同样,在 vertical LinearLayout ,你想要 height 的 0dp 。