LinearLayouts:一种固定,一种高度可变

时间:2019-04-01 17:47:53

标签: android layout android-linearlayout

我想在垂直LinearLayout中添加高度为100 dp的带有两个按钮的顶部栏。

因此,我希望获得100 dp的高视角,并在其下方进行可变的高视角。

我正在尝试此代码,但是它不起作用。我可以看到它不接受100 dp作为有效值,但是我不知道如何使用LinearLayout实现我想做的事情。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="100 dp"
        android:orientation="horizontal">

        <Button
            android:id="@+id/button1"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:text="Button 1" />

        <Button
            android:id="@+id/button2"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:text="Button 2" />
    </LinearLayout>
    <View
        android:layout_width="match_parent"
        android:layout_height="match_parent">
    </View>
</LinearLayout>

2 个答案:

答案 0 :(得分:1)

请尝试删除100dp中的空间

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              xmlns:tools="http://schemas.android.com/tools"
              android:layout_width="match_parent"
              android:layout_height="match_parent"
              android:orientation="vertical">

    <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="100dp"
            android:orientation="horizontal">

        <Button
                android:id="@+id/button1"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_weight="1"
                android:text="Button 1" />

        <Button
                android:id="@+id/button2"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_weight="1"
                android:text="Button 2" />
    </LinearLayout>
    <View
            android:layout_width="match_parent"
            android:layout_height="match_parent">
    </View>
</LinearLayout> 

答案 1 :(得分:1)

您在100和dp(100 dp)之间增加了空间,删除了空间并编译了代码。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="100dp"
        android:orientation="horizontal">

        <Button
            android:id="@+id/button1"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:text="Button 1" />

        <Button
            android:id="@+id/button2"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:text="Button 2" />
    </LinearLayout>
    <View
        android:layout_width="match_parent"
        android:layout_height="match_parent">
    </View>
</LinearLayout>