java - Android findViewById 工具栏返回 null

标签 java android xml android-toolbar findviewbyid

在我的 Android 应用程序中,我使用自定义工具栏,而 findViewById() 似乎找不到该工具栏。

我在互联网上浏览了所有与此类似的问题,但似乎没有一个能解决问题。

我的屏幕总是返回 Toast“工具栏失败...”

这是我的 java onCreate():

protected Toolbar toolbar;
@Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_home);
        toolbar = (Toolbar) findViewById(R.id.tool_bar);
        if(toolbar != null) {
            setSupportActionBar(toolbar);
        } else {
            Toast.makeText(Home.this, "Toolbar failed...", Toast.LENGTH_SHORT).show();
            Toast.makeText(Home.this,"", Toast.LENGTH_SHORT).show();
        }
        if (savedInstanceState == null) {
            getSupportFragmentManager().beginTransaction()
                    .add(R.id.container, new PlaceholderFragment()).commit();
        }
        Intent intent = getIntent();
        String action = intent.getAction();
        String type = intent.getType();

        if (Intent.ACTION_SEND.equals(action) && type != null) {
            if ("text/plain".equals(type)) {
                handleSendText(intent); // Handle text being sent
            }
        }

    }

这是 xml 布局文件:

<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" >


    <RelativeLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_height="wrap_content"
        android:layout_width="match_parent"
        android:layout_alignParentLeft="true"
        android:layout_alignParentStart="true">

        <android.support.v7.widget.Toolbar
            xmlns:android="http://schemas.android.com/apk/res/android"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="@color/colorPrimary"
            android:elevation="4dp"
            android:id="@+id/tool_bar"/>

        <TextView
            android:id="@+id/textView2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/home"
            android:layout_below="@id/tool_bar"
            android:layout_alignParentLeft="true"
            android:layout_alignParentStart="true" />

        <TextView
            android:id="@+id/textView1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Your Scripture:"
            android:textAppearance="?android:attr/textAppearanceSmall"
            android:layout_below="@+id/textView2"
            android:layout_alignParentLeft="true" />

    <TextView
        android:id="@+id/scripturecontainer"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="You have not selected a scripture yet..."
        android:textAppearance="?android:attr/textAppearanceSmall"
        android:layout_below="@+id/textView1"
        android:layout_alignParentLeft="true" />

    <Button
        android:id="@+id/button2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:onClick="trywidget"
        android:text="Try the Widget"
        android:layout_below="@+id/scripturecontainer"
        android:layout_alignParentLeft="true" />

    <Button
        android:id="@+id/widget_button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:onClick="change"
        android:text="Select A Scripture"
        android:layout_below="@+id/button2"
        android:layout_alignParentLeft="true" />

    <Button
        android:id="@+id/button3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:onClick="suggest"
        android:text="Suggest A Feature"
        android:layout_below="@+id/widget_button"
        android:layout_alignParentLeft="true" />

    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:onClick="wallpaper"
        android:text="Change the Wallpaper"
        android:layout_below="@+id/button3"
        android:layout_alignParentLeft="true" />
    </RelativeLayout>
    <ListView android:id="@+id/left_drawer"
        android:layout_width="240dp"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        android:choiceMode="singleChoice"
        android:divider="@android:color/transparent"
        android:dividerHeight="0dp"
        android:background="#111"/>

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

这是我的样式 xml 文件:

<resources>

    <!--
        Base application theme, dependent on API level. This theme is replaced
        by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
    -->
    <style name="AppBaseTheme" parent="Theme.AppCompat.Light.NoActionBar">
        <!--
            Theme customizations available in newer API levels can go in
            res/values-vXX/styles.xml, while customizations related to
            backward-compatibility can go here.
        -->
        <item name="colorPrimary">@color/colorPrimary</item>
        <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
        <item name="colorAccent">@color/colorAccent</item>
        <item name="windowNoTitle">true</item>
        <item name="windowActionBar">false</item>
    </style>

    <!-- Application theme. -->
    <style name="AppTheme" parent="AppBaseTheme">
        <!-- All customizations that are NOT specific to a particular API-level can go here. -->
    </style>

</resources>

最佳答案

 <android.support.design.widget.AppBarLayout
         android:layout_width="match_parent"
         android:layout_height="wrap_content"
         android:theme="@style/AppTheme.AppBarOverlay">
         <android.support.v7.widget.Toolbar
             android:id="@+id/toolbar"
             android:layout_width="match_parent"
             android:layout_height="?attr/actionBarSize"
             android:background="?attr/colorPrimary"
             app:popupTheme="@style/AppTheme.PopupOverlay" />

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

使用上面的代码在 xml 中声明工具栏并更改

android:theme="your_theme"

关于java - Android findViewById 工具栏返回 null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37555962/

相关文章:

java - 将访问权限存储在数据库表中是常见的做法吗?

Android:在自定义适配器中调用了两次 getView()

Android Wear 2 WiFi本地网络接入

c# - XslTransform 与 xml 样式表

c# - 以编程方式填充 XML "Template"C#

Java 加倍奇怪(不,这不是为了钱)

Java:如何将 String ArrayList 分配给 List<Enum>

java - TimescaleDB 的插入速度比普通 postgresql 10 慢

android - Tab 和 Swipe - 编辑 getItem 以显示 3 个不同的 fragment

c# - 如何使用 LINQ 选择 XML 文档中包含特定字符串的所有属性