尝试将工具栏包含到使用 NavDrawer 模板的应用程序
Trying to include toolbar to Application that used NavDrawer template
我正在尝试将旧应用移至新的 Material 设计指南。我之前使用 Navigation Drawer Template 来创建 Main Activity。但是,我在尝试将工具栏实现到主 Activity 时遇到了一些大问题。我不断收到 NullPointer 异常。
我正在创建这样的工具栏 xml 文件:
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/toolbar_main"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/blue" >
</android.support.v7.widget.Toolbar>
之后,我尝试使用 include 命令将它添加到我的主布局中:
<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="com.medinfo.main.MainActivity" >
<include layout="@layout/toolbar_database_edit" />
<FrameLayout
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<fragment
android:id="@+id/navigation_drawer"
android:name="com.medinfo.fragments.NavigationDrawerFragment"
android:layout_width="@dimen/navigation_drawer_width"
android:layout_height="match_parent"
android:layout_gravity="start"
tools:layout="@layout/fragment_navigation_drawer" />
</android.support.v4.widget.DrawerLayout>
在我的 activity_main 中,我正在执行以下操作:
当我调用 setSupportActionBar 或调用 Setup NavDrawer 时出现 NPE。
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Toolbar toolbar = (Toolbar) findViewById(R.layout.toolbar_database_edit);
setSupportActionBar(toolbar);
mNavigationDrawerFragment = (NavigationDrawerFragment) getSupportFragmentManager().findFragmentById(R.id.navigation_drawer);
mTitle = getTitle();
// Set up the drawer.
mNavigationDrawerFragment.setUp(R.id.navigation_drawer, (DrawerLayout) findViewById(R.id.drawer_layout));
}
我尝试将 DrawerLayout 包装在 linear-layout 中,所做的是在包含我的片段的容器后面创建工具栏,当我启动 activity 时,我看到工具栏呈现在后台然后在容器和片段加载后隐藏。但是它确实删除了 NPE。我还尝试在布局中创建工具栏,而不是使用单独的工具栏 XML 文件。我仍然遇到相同的 NPE 错误。
虽然我在询问新的 Material Design Stuff,但我还想知道是否有办法让我的 EditText 小部件和 Spinner 小部件使用旧的 Holo Theme/Style。
我真的希望有一种简单的方法可以恢复到这些样式。
谢谢大家的帮助
1)首先,您的布局不正确。 DrawerLayout 接受两个children:布局容器和抽屉布局本身。
简化,
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<include layout="@layout/activity" />
<include layout="@layout/drawer" />
</android.support.v4.widget.DrawerLayout>
其次,您 findViewById
您的工具栏不正确。
Toolbar toolbar = (Toolbar) findViewById(R.layout.toolbar_database_edit);
此处您引用的是布局,但应引用 id。
鉴于上面的布局资源,我们有activity.xml
:
<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:background="@color/white"
android:orientation="vertical">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/blue"
android:foreground="?android:attr/windowContentOverlay"
app:theme="@style/Toolbar"/>
<FrameLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1">
. . . contents of activity layout
</FrameLayout>
</LinearLayout>
在代码中:
Toolbar toolbar = (Toolbar)findViewById(R.id.toolbar);
2) 要使用旧的 Holo 风格,您应该将 Holo 主题用作 parent 您在 styles.xml 中的应用主题。但是用户会期望每个 Android 版本都有原生主题,所以这是一个不好的做法。
我正在尝试将旧应用移至新的 Material 设计指南。我之前使用 Navigation Drawer Template 来创建 Main Activity。但是,我在尝试将工具栏实现到主 Activity 时遇到了一些大问题。我不断收到 NullPointer 异常。
我正在创建这样的工具栏 xml 文件:
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/toolbar_main"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/blue" >
</android.support.v7.widget.Toolbar>
之后,我尝试使用 include 命令将它添加到我的主布局中:
<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="com.medinfo.main.MainActivity" >
<include layout="@layout/toolbar_database_edit" />
<FrameLayout
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<fragment
android:id="@+id/navigation_drawer"
android:name="com.medinfo.fragments.NavigationDrawerFragment"
android:layout_width="@dimen/navigation_drawer_width"
android:layout_height="match_parent"
android:layout_gravity="start"
tools:layout="@layout/fragment_navigation_drawer" />
</android.support.v4.widget.DrawerLayout>
在我的 activity_main 中,我正在执行以下操作: 当我调用 setSupportActionBar 或调用 Setup NavDrawer 时出现 NPE。
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Toolbar toolbar = (Toolbar) findViewById(R.layout.toolbar_database_edit);
setSupportActionBar(toolbar);
mNavigationDrawerFragment = (NavigationDrawerFragment) getSupportFragmentManager().findFragmentById(R.id.navigation_drawer);
mTitle = getTitle();
// Set up the drawer.
mNavigationDrawerFragment.setUp(R.id.navigation_drawer, (DrawerLayout) findViewById(R.id.drawer_layout));
}
我尝试将 DrawerLayout 包装在 linear-layout 中,所做的是在包含我的片段的容器后面创建工具栏,当我启动 activity 时,我看到工具栏呈现在后台然后在容器和片段加载后隐藏。但是它确实删除了 NPE。我还尝试在布局中创建工具栏,而不是使用单独的工具栏 XML 文件。我仍然遇到相同的 NPE 错误。
虽然我在询问新的 Material Design Stuff,但我还想知道是否有办法让我的 EditText 小部件和 Spinner 小部件使用旧的 Holo Theme/Style。
我真的希望有一种简单的方法可以恢复到这些样式。
谢谢大家的帮助
1)首先,您的布局不正确。 DrawerLayout 接受两个children:布局容器和抽屉布局本身。
简化,
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<include layout="@layout/activity" />
<include layout="@layout/drawer" />
</android.support.v4.widget.DrawerLayout>
其次,您 findViewById
您的工具栏不正确。
Toolbar toolbar = (Toolbar) findViewById(R.layout.toolbar_database_edit);
此处您引用的是布局,但应引用 id。
鉴于上面的布局资源,我们有activity.xml
:
<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:background="@color/white"
android:orientation="vertical">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/blue"
android:foreground="?android:attr/windowContentOverlay"
app:theme="@style/Toolbar"/>
<FrameLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1">
. . . contents of activity layout
</FrameLayout>
</LinearLayout>
在代码中:
Toolbar toolbar = (Toolbar)findViewById(R.id.toolbar);
2) 要使用旧的 Holo 风格,您应该将 Holo 主题用作 parent 您在 styles.xml 中的应用主题。但是用户会期望每个 Android 版本都有原生主题,所以这是一个不好的做法。