android的activity_main.xml里面有代码,design区域怎么是空白的

我的demo是通过图一创建的,可以正常运行,但是android的activity_main.xml里面有代码,看不懂design区域怎么是空白的。我想把每个fragment的标题居中也不知该去哪修改

img


<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/container"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingTop="?attr/actionBarSize">

    <com.google.android.material.bottomnavigation.BottomNavigationView
        android:id="@+id/nav_view"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_marginStart="0dp"
        android:layout_marginEnd="0dp"
        android:background="?android:attr/windowBackground"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:menu="@menu/bottom_nav_menu" />
    <!-- app:menu="@menu/bottom_nav_menu"  -->

    <fragment
        android:id="@+id/nav_host_fragment_activity_main"
        android:name="androidx.navigation.fragment.NavHostFragment"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:defaultNavHost="true"
        app:layout_constraintBottom_toTopOf="@id/nav_view"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:navGraph="@navigation/mobile_navigation" />

</androidx.constraintlayout.widget.ConstraintLayout>

img

Android的Activity或Fragment的design区域通常是指主视图(即整个Activity或Fragment的可见区域),而不是指具体的布局文件。在设计区域中,可以使用ConstraintLayout来创建各种布局,包括Fragment。

如果你想要在Activity或Fragment的design区域中设置标题居中,可以在其中添加额外的ConstraintLayout控件,并将其垂直居中对齐。例如,你可以在Activity或Fragment的布局文件中添加以下代码:

<androidx.constraintlayout.widget.ConstraintLayout  
    android:layout_width="match_parent"  
    android:layout_height="match_parent"  
    android:paddingTop="?attr/actionBarSize">  
  
    <TextView  
        android:id="@+id/title"  
        android:layout_width="wrap_content"  
        android:layout_height="wrap_content"  
        android:text="Your Title"  
        app:layout_constraintStart_toStartOf="parent"  
        app:layout_constraintTop_toTopOf="parent"  
        app:layout_constraintVertical_bias="0.5"/>  
  
    <!-- 其他控件 -->  
  
</androidx.constraintlayout.widget.ConstraintLayout>

  • 帮你找了个相似的问题, 你可以看下: https://ask.csdn.net/questions/986529
  • 我还给你找了一篇非常好的博客,你可以看看是否有帮助,链接:Android Studio中创建项目时,activity_main.xml不显示的解决方法
  • 除此之外, 这篇博客: Fragment添加切换动画中的 3.activity_main.xml代码 部分也许能够解决你的问题, 你可以仔细阅读以下内容或跳转源博客中阅读:
  • 代码如下(示例):

    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout 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:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical"
        tools:context=".MainActivity">
    
    
        <LinearLayout
            android:id="@+id/linea"
            android:layout_width="match_parent"
            android:layout_height="550dp"
            android:orientation="vertical"></LinearLayout>
    
        <LinearLayout
            android:gravity="center"
            android:layout_marginTop="20dp"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">
    
            <Button
                android:id="@+id/btn1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:onClick="onClick"
                android:text="第一张"></Button>
    
            <Button
                android:id="@+id/btn2"
                android:layout_marginLeft="20dp"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:onClick="onClick"
                android:text="第二张"></Button>
    
            <Button
                android:id="@+id/btn3"
                android:layout_marginLeft="20dp"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:onClick="onClick"
                android:text="第三张"></Button>
        </LinearLayout>
    
    </LinearLayout>