OPTIMIST .KZ Asked:2020-09-03 23:54:41 +0800 CST2020-09-03 23:54:41 +0800 CST 2020-09-03 23:54:41 +0800 CST 在布局中帮助布局 772 如何使我的部分适合全屏高度?现在结果只是每个元素占据了屏幕高度的1/3。 java 1 个回答 Voted Best Answer s8am 2020-09-04T00:10:05+08:002020-09-04T00:10:05+08:00 例如,看向android:layout_weight. 在下面的示例中,三个中的每一个都RelativeLayout占据了屏幕的三分之一。 <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="match_parent" android:layout_height="match_parent"> <RelativeLayout android:layout_width="match_parent" android:layout_height="match_parent" android:layout_weight="1"> </RelativeLayout> <RelativeLayout android:layout_width="match_parent" android:layout_height="match_parent" android:layout_weight="1"> </RelativeLayout> <RelativeLayout android:layout_width="match_parent" android:layout_height="match_parent" android:layout_weight="1"> </RelativeLayout> </LinearLayout> 还有这个,请在标点符号后面加空格。
例如,看向
android:layout_weight
.在下面的示例中,三个中的每一个都
RelativeLayout
占据了屏幕的三分之一。还有这个,请在标点符号后面加空格。