我正在尝试使用layout_weight实现一个垂直分隔屏幕40/60的布局。
这是xml代码:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:weightSum="1"
android:focusable="true"
android:focusableInTouchMode="true"
android:background="@drawable/background">
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="0.4">
<Button
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@color/white" />
</LinearLayout>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="0.6">
<Button
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@color/black" />
</LinearLayout>
</LinearLayout>
此代码不起作用,返回空白屏幕。但是,如果我改变
机器人:layout_width = “FILL_PARENT”
机器人:layout_height = “0dp”
机器人:layout_weight = “0.4”
(垂直分割)
到
机器人:layout_width = “0dp”
机器人:layout_height = “FILL_PARENT”
机器人:layout_weight = “0.4”
(水平分割)
代码按预期工作,布局水平分割40/60。为什么它不能垂直工作,我该如何解决这个问题呢?任何帮助将不胜感激!
答案 0 :(得分:2)
将父级布局方向设为垂直
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:weightSum="1"
android:focusable="true"
android:orientation="verticle"
android:focusableInTouchMode="true"
android:background="@drawable/background">
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="0.4">
<Button
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@color/white" />
</LinearLayout>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="0.6">
<Button
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@color/black" />
</LinearLayout>