Android XML线性布局显示

时间:2017-02-10 10:10:24

标签: android layout display

早上好,伙计们,

我在解决问题时遇到了一些麻烦,可以使用一些帮助。我创建了一个名为comment__layout的XML资源文件。出于某种原因,我无法让布局显示全屏。请您查看XML代码和帮助。正如您将在屏幕截图中看到的那样,注释布局被加载到父布局上,这正是我想要的,但我希望评论布局是全屏的。

screenshot of image

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/comment__layout"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/dark_grey">
    <LinearLayout
        android:id="@+id/comment_heading__layout"
        android:orientation="horizontal"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        <TextView
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="3"
            android:text="Comments"
            android:textSize="20sp"
            android:textColor="@color/gps_orange"
            android:textStyle="bold"/>
        <Button
            android:id="@+id/comment_close__button"
            android:layout_width="40dp"
            android:layout_height="40dp"
            android:text="X"/>
    </LinearLayout>
    <LinearLayout
        android:id="@+id/comments_add_comment__layout"
        android:orientation="horizontal"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        <EditText
            android:id="@+id/comment_add__edit_text"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"/>
        <Button
            android:id="@+id/comment_add__button"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="+Add"/>
    </LinearLayout>
    <LinearLayout
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="match_parent">
        <ScrollView
            android:id="@+id/comments_text_views__scroll_layout"
            android:layout_width="match_parent"
            android:layout_height="fill_parent">
            <LinearLayout
                android:id="@+id/comments_text_views__layout"
                android:orientation="vertical"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"/>
        </ScrollView>
    </LinearLayout>
</LinearLayout>

PARENT XML:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/component_wizard_layout_parent__relative"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <LinearLayout
        android:id="@+id/component_wizard_layout_parent"
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@drawable/frame_component_wizard_manager"/>
    <LinearLayout
        android:id="@+id/component_wizard_component_popup__layout"
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>
</RelativeLayout>

0 个答案:

没有答案