0

所以我正在为一个朋友开发一个应用程序,它一直在崩溃并且无法在我的设备上运行(OnePlus One)。

我在这里不断收到一条错误消息,提示“没有为 id 找到视图”: 错误的 Logcat 视图

我有两节课;NavigationDrawer 类(本质上是我的 MainActivity):

Java --- http://pastebin.com/4BiYvxiS | XML --- http://pastebin.com/Fnat83uf

还有一个名为 StartingFragment 的类(我想在抽屉关闭/不活动时成为主视图)。

Java --- http://pastebin.com/HNeHzx1h | XML --- http://pastebin.com/2viTEWR8

这是出现错误的代码(来自 NavDrawer.java):

        /** Swaps fragments in the main content view */
        /** Starts an Activity when item is clicked */
        private void selectItem(int position) {
                // Create a new fragment and specify the tea type
                // to show based on position
                Fragment fragment = new StartingFragment();
                Bundle args = new Bundle();
                args.putInt(StartingFragment.TEA_TYPE_POS, position);
                fragment.setArguments(args);

                // Insert the fragment by replacing any existing fragment
                FragmentManager fragManager = getFragmentManager();
                fragManager.beginTransaction().replace(R.id.starting_fragment, fragment)
                                .commit();

                // Highlight the selected item, update the title, and close the drawer
                mDrawerList.setItemChecked(position, true);
                setTitle(navDrawerTitles[position]);
                navDrawerLayout.closeDrawer(mDrawerList);

        }

我已经查看了整个 StackOverflow,我看到其他人是如何收到此错误的,但我不完全确定为什么我不断收到此错误,或者如何修复它。

我在这里查看了这个问题: https ://stackoverflow.com/a/8158916我看到R.id.starting_fragment应该是R.layout.nav_drawer孩子

但是,我不知道要在我的代码中调整什么。我应该删除我拥有的按钮,然后在我的nav_drawer.xml中有片段代码吗?比如这样:

<fragment android:name="com.fv4.app.StartingFragment"
              android:id="@+id/starting_fragment"
              android:layout_width="0dp"
              android:layout_height="match_parent" />

或者真的......我应该在我的代码中用什么替换R.id.starting_fragment

4

1 回答 1

0

在您为活动提供的 xml 中,没有任何 ID 为“starting_fragment”的内容,因此无需替换,在活动的 xml 中,需要有一个 ID 为“starting_fragment”的视图/布局/片段容器。你也有点困惑, .replace() 方法中的 Id 代表你要替换的东西而不是片段的布局

简单修复

在 Activity 的 xml 中创建一个 frameLayout,给它 id 'fragment_replace'

将 .replace(R.id.starting_fragment,fragment) 更改为 .replace(R.id.fragment_replace,fragment)

于 2014-12-29T18:17:06.093 回答