从活动切换到导航抽屉活动

时间:2014-08-05 01:54:56

标签: android android-fragments

我在我的主Activity中使用Activity。我想点击主要意图上的按钮,将从我的主要活动转到导航抽屉活动

我在android studio中从navdrawer-wizard创建了导航抽屉。

但是当我点击按钮时出现错误。

我使用Api等级10. Android支持库v7,v4也在我的项目中。

我使用Android studio。

我已经调试了这个问题它触发了启动活动但是这样的logcat和错误就像这样。

java.lang.RuntimeException: Unable to start activity     ComponentInfo{www.epicmyanmar.com.andropos/www.epicmyanmar.com.andropos.MyActivity}:     android.view.InflateException: Binary XML file line #24: Error inflating class fragment

任何帮助或任何建议都是适当的

`

<!-- A DrawerLayout is intended to be used as the top-level content view using match_parent for both width and height to consume the full space available. -->
`    `<android.support.v4.widget.DrawerLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/drawer_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="www.epicmyanmar.com.andropos.MyActivity">

    <!-- As the main content view, the view below consumes the entire
         space available using match_parent in both dimensions. -->
    `enter code here`<FrameLayout
        android:id="@+id/container"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

    <!-- android:layout_gravity="start" tells DrawerLayout to treat
         this as a sliding drawer on the left side for left-to-right
         languages and on the right side for right-to-left languages.
         If you're not building against API 17 or higher, use
         android:layout_gravity="left" instead. -->
    <!-- The drawer is given a fixed width in dp and extends the full height of
         the container. -->
    <fragment android:id="@+id/navigation_drawer"
        android:layout_width="@dimen/navigation_drawer_width"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        class="www.epicmyanmar.com.andropos.NavigationDrawerFragment"
        tools:layout="@layout/fragment_navigation_drawer" />

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

1 个答案:

答案 0 :(得分:0)

我自己得到了解决方案

Ker p peg是对的。我在styles.xml中发现了错误。

现在我修改了风格。正常活动的正常风格。

和Navdrawer活动的Nav-drawer样式。

谢谢每一个