为什么我的TextView无法正确显示?

时间:2019-03-25 10:14:52

标签: android textview drawerlayout

我正在解释我的问题。首先,我想让您知道我是编码的初学者;)我目前正在创建一个计算应用程序。该应用程序功能正常且无错误。我现在想通过添加文本来优化主屏幕(activity_main.xml)。在同一主屏幕(activity_main.xml)中,我添加了一个DrawerLayout。但是,我已经在问题上停留了几天。

将TextView添加到此Drawerlayout中时,我遇到两个问题(取决于文本视图在代码中的位置):要么文本适用于所有片段,而文本仅适用于activity_main.xml,要么TextView根本不显示。

我希望您对我的问题有意见,同时找到解决方案;)

这是我的问题的一个示例:

Desired result Result

提前感谢您的回答!

<android.support.v4.widget.DrawerLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/activity_main_drawer_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true"
    tools:openDrawer="start"
    tools:context="fr.mathieuch.aide_ventil2.MainActivity">

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/open"/>

    <!-- 1 | MainActivity RootView -->
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">

        <!-- Toolbar -->
        <android.support.v7.widget.Toolbar
            android:id="@+id/activity_main_toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:background="?attr/colorPrimary"
            app:theme="@style/ToolBarStyle"/>


        <!-- FrameLayout for our fragments -->
        <FrameLayout
            android:id="@+id/activity_main_frame_layout"
            android:layout_width="match_parent"
            android:layout_height="match_parent"/>


    </LinearLayout>

    <!-- 2 | NavigationView -->

    <android.support.design.widget.NavigationView
        android:id="@+id/activity_main_nav_view"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        android:fitsSystemWindows="true"
        app:headerLayout="@layout/activity_main_nav_header"
        app:menu="@menu/activity_main_menu_drawer" />



</android.support.v4.widget.DrawerLayout>

1 个答案:

答案 0 :(得分:0)

您应该将白色背景置于片段的xml根目录中。然后检查。