gpt4 book ai didi

java - (Android)我的简单抽屉导航 fragment 不起作用 - 请参阅错误图片

转载 作者:太空宇宙 更新时间:2023-11-04 12:52:25 25 4
gpt4 key购买 nike

我的导航出了什么问题。我认为我的 Activity main.xml 有问题。在我的抽屉导航中有一个已发送的 fragment ,如果您单击已发送的 fragment ,它将使用此代码显示一个 TextView “测试”。

SentFragment.java

public class SentFragment extends Fragment {


@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View view=inflater.inflate(R.layout.sent_layout, container,false);
return view;

}
}

在获取此布局时,我正在使用此代码。

Main.java

  mNavigationView.setNavigationItemSelectedListener(new NavigationView.OnNavigationItemSelectedListener() {
@Override
public boolean onNavigationItemSelected(MenuItem menuItem) {
mDrawerLayout.closeDrawers();


if (menuItem.getItemId() == R.id.nav_item_sent) {


getSupportFragmentManager().beginTransaction().replace(R.id.containerView,new SentFragment()).commit();
Toast.makeText(getApplicationContext(), "Sent!",
Toast.LENGTH_SHORT).show();

}
if (menuItem.getItemId() == R.id.nav_item_draft) {

mFragmentManager = getSupportFragmentManager();
FragmentTransaction ft_drafts = mFragmentManager.beginTransaction();
ft_drafts.replace(R.id.containerView, new DraftFragment()).commit();

Toast.makeText(getApplicationContext(), "Drafts!", Toast.LENGTH_SHORT).show();
}


return true;
}


});


android.support.v7.widget.Toolbar toolbar = (android.support.v7.widget.Toolbar) findViewById(R.id.toolbar);
ActionBarDrawerToggle mDrawerToggle = new ActionBarDrawerToggle(this, mDrawerLayout, toolbar, R.string.app_name,
R.string.app_name);

mDrawerLayout.setDrawerListener(mDrawerToggle);

mDrawerToggle.syncState();

代码正在运行,没有错误。但是,如果我要运行它并在抽屉导航中选择“发送”。它无意于其他页面,然后测试 TextView 显示在我的 ListView 上。 我想是因为我的activity_main.xml。我的框架布局或 xml 正确吗?

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>

<android.support.v4.widget.DrawerLayout
android:id="@+id/drawerLayout"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
>

<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
android:orientation="vertical">


<android.support.design.widget.CoordinatorLayout android:id="@+id/coordinatorLayout"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="fill_parent"
android:layout_height="fill_parent">



<android.support.design.widget.AppBarLayout

android:id="@+id/appBarLayout"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

<FrameLayout
android:id="@+id/containerView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
</FrameLayout>

<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="fill_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
android:title="Android Testing"
app:layout_scrollFlags="scroll|enterAlways"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"/>
<!-- Tab Layout for creating tabs -->
<android.support.design.widget.TabLayout
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/material_blue_grey_800"
app:tabGravity="fill"
app:tabIndicatorColor="@color/main_color"
app:tabMode="fixed"
app:tabSelectedTextColor="@color/main_color"
app:tabTextColor="@color/white">

</android.support.design.widget.TabLayout>
<!-- Helps handing the Fragments for each Tab -->
</android.support.design.widget.AppBarLayout>

<android.support.v4.view.ViewPager
android:id="@+id/viewPager"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"/>

</android.support.design.widget.CoordinatorLayout>

</LinearLayout>

<android.support.design.widget.NavigationView
android:id="@+id/shitstuff"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
android:layout_marginTop="-24dp"
app:itemTextColor="@color/black"
app:menu="@menu/drawermenu"/>

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

enter image description here

最佳答案

为sent_layout提供背景颜色(白色-#FFFFFF)。现在它是透明的。

关于java - (Android)我的简单抽屉导航 fragment 不起作用 - 请参阅错误图片,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35692220/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com