如何修复:多个片段和活动的事务?

gk7wooem  于 2021-07-12  发布在  Java
关注(0)|答案(1)|浏览(358)

当我打开导航抽屉并滚动浏览不同的选项时(让我们称它们为a、b和c)。当我点击a、b或c时 Fragment 布局没有打开,我被困在我的 Activity_main 布局。


以前我有 content_main 还有我的 Activity_main 作为两个独立的xml文件,我被告知 content_main 编码到 Activity_main (我做到了),这就去掉了 no view found for id 错误。
这是我的 Activity_main (现在):

<?xml version="1.0" encoding="utf-8"?>
<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/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:openDrawer="start">

<include
    layout="@layout/app_bar_main"
    android:layout_width="match_parent"
    android:layout_height="match_parent" />

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

<LinearLayout
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <ImageView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:srcCompat="@drawable/e"
        android:id="@+id/imageView7"
        android:layout_marginTop="96dp"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        android:contentDescription=""/>

    <ImageView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:srcCompat="@drawable/welcome"
        android:id="@+id/imageView2"
        android:layout_alignParentTop="true"
        android:layout_alignParentLeft="true"
        android:layout_alignParentStart="true"/>
</LinearLayout>

非常感谢您的帮助!如果还有什么我能提供的,请告诉我!
以下是java代码:

package mcshreker.pocketmath;

import android.app.FragmentTransaction;
import android.os.Build;
import android.os.Bundle;
import android.support.annotation.IdRes;
import android.support.annotation.Nullable;
import android.support.annotation.RequiresApi;
import android.support.v4.app.FragmentManager;
import android.support.design.widget.NavigationView;
import android.support.v4.view.GravityCompat;
import android.support.v4.widget.DrawerLayout;
import android.support.v7.app.ActionBarDrawerToggle;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.Toolbar;
import android.text.Layout;
import android.view.LayoutInflater;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;

public class MainActivity extends AppCompatActivity
        implements NavigationView.OnNavigationItemSelectedListener {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
    setSupportActionBar(toolbar);

    DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
    ActionBarDrawerToggle toggle = new ActionBarDrawerToggle(
            this, drawer, toolbar, R.string.navigation_drawer_open, R.string.navigation_drawer_close);
    drawer.setDrawerListener(toggle);
    toggle.syncState();

    NavigationView navigationView = (NavigationView) findViewById(R.id.nav_view);
    navigationView.setNavigationItemSelectedListener(this);

}

@Override
public void onBackPressed() {
    DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
    if (drawer.isDrawerOpen(GravityCompat.START)) {
        drawer.closeDrawer(GravityCompat.START);
    } else {
        super.onBackPressed();
    }
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.main, menu);
    return true;
}

@Override
public boolean onOptionsItemSelected(MenuItem item) {
    // Handle action bar item clicks here. The action bar will
    // automatically handle clicks on the Home/Up button, so long
    // as you specify a parent activity in AndroidManifest.xml.
    int id = item.getItemId();

    return super.onOptionsItemSelected(item);
}

@RequiresApi(api = Build.VERSION_CODES.M)
@SuppressWarnings("StatementWithEmptyBody")
@Override
public boolean onNavigationItemSelected(MenuItem item) {
    // Handle navigation view item clicks here.
    int id = item.getItemId();
    FragmentManager fragmentManager = getSupportFragmentManager();

    if (id == R.id.nav_first_layout) {
        fragmentManager.beginTransaction().replace
                (R.id.drawer_layout, new firstFragment()).commit();

        // Handle the camera action

  /*  } else if (id == R.id.nav_share) {

    } else if (id == R.id.nav_send) {*/

    } else if (id == R.id.nav_second_layout) {
        fragmentManager.beginTransaction().replace
                (R.id.drawer_layout, new secondFragment()).commit();
    } else if (id == R.id.nav_third_layout) {
        fragmentManager.beginTransaction().replace
                (R.id.drawer_layout, new thirdFragment()).commit();
    } else if (id == R.id.nav_fourth_layout) {
        fragmentManager.beginTransaction().replace
                (R.id.drawer_layout, new fourthFragment()).commit();
    } else if (id == R.id.nav_fifth_layout) {
        fragmentManager.beginTransaction().replace
                (R.id.drawer_layout, new fifthFragment()).commit();
    } else if (id == R.id.nav_sixth_layout) {
        fragmentManager.beginTransaction().replace
                (R.id.drawer_layout, new sixthFragment()).commit();
    } else if (id == R.id.nav_seventh_layout) {
        fragmentManager.beginTransaction().replace
                (R.id.drawer_layout, new seventhFragment()).commit();
    } else if (id == R.id.nav_eighth_layout) {
        fragmentManager.beginTransaction().replace
                (R.id.drawer_layout, new eighthFragment()).commit();
    } else if (id == R.id.nav_ninth_layout) {
        fragmentManager.beginTransaction().replace
                (R.id.drawer_layout, new ninthFragment()).commit();
    }

    DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
    drawer.closeDrawer(GravityCompat.START);
    return true;
}
}
6psbrbz9

6psbrbz91#

我认为你不应该更换主要的活动布局。如果在主活动布局中有一个与其父级宽度和高度相匹配的视图(如框架布局),效果会更好。

相关问题