- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试在我的应用程序中实现选项卡。问题在于工具栏为空。我正在学习本教程:http://android4devs.com/2015/01/how-to-make-material-design-sliding-tabs.html
错误:
java.lang.NullPointerException:尝试在空对象引用上调用虚方法“java.lang.CharSequence android.support.v7.widget.Toolbar.getTitle()”
activity_main.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".MainActivity">
<include
android:id="@+id/tool_bar"
layout="@layout/tool_bar"
android:layout_height="wrap_content"
android:layout_width="match_parent"
/>
<com.android4devs.slidingtab.SlidingTabLayout
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:elevation="2dp"
android:background="@color/colorPrimary"/>
<android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_height="match_parent"
android:layout_width="match_parent"
android:layout_weight="1"
></android.support.v4.view.ViewPager>
</LinearLayout>
主 Activity .java
toolbar = (Toolbar) findViewById(R.id.tool_bar);
setSupportActionBar(toolbar); //error
工具栏.xml
<?xml version="1.0" encoding="utf-8"?>
<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="2dp"
android:theme="@style/Base.ThemeOverlay.AppCompat.Light" />
最佳答案
显然错误是因为我忘记返回 setContentView(R.layout.activity_main);
。
关于android - 滑动标签 - NullPointerException - Toolbar.getTitle(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30956325/
今天我尝试在 Java 上做一个“窗口”的例子。我尝试连接标题,但我的“GetTitle()”不起作用!有人可以帮我解决这个问题吗? 以及为什么“public class MiVentana exte
我正在尝试从第二页获取第二页的标题和带有 id="searchCount"的文本框的值。根据下面的代码,我获得了第一页的标题,并为具有 id searchCount 的元素获取“org.openqa.
在下面的程序中; getTitle() 返回错误的 o/P: public static void main(String[] args) throws InterruptedException {
我正在尝试在我的应用程序中实现选项卡。问题在于工具栏为空。我正在学习本教程:http://android4devs.com/2015/01/how-to-make-material-design-sl
在某些情况下,getTitle() 方法对我不起作用。 看看。 @Test public void testTitleReliability() { driver.get("https://w
C# itext 7.1.4(NuGet 版本)似乎无法正确解析 OCG/图层标题。 下面的 C# 代码应该读取 pdf、打印所有图层标题、关闭图层可见性并将其保存到 dest 文件。 示例 pdf
你好,我是 selenium webdriver 的新手。我想验证 junit 测试中的页面标题。但是使用 getTitle() 我可以在 @before 中找到标题,但无法在 @Test 中找到标题
我的 FXML 代码有问题。我想在初始化时获取舞台标题的字符串,但是当我尝试调用操作 stage.getTitle() 时,FXMLLoader 会抛出异常。我还尝试通过其他方法获得标题,但它只在其中
我正在尝试运行一个简单的自动化测试脚本来获取网页标题并通过 Java 和 IE 在 selenium-webdriver 中使用来验证它,但是 getTitle() 方法返回奇怪的结果。 我可以看到当
我正在 selenium-webdriver 中结合 Phantomjs 环境运行自动化测试脚本。 我正在尝试通过 node.js 运行我的脚本(不使用 Python 或 C#) 以下是我设置环境的步
在 WebView 的子类中,我曾经在 getTitle() 的重写方法中包含这一行: String title = super.getTitle(); 它在 Android 的所有版本中都运行良好,
我对 OOP 和 JSoup 还很陌生,所以我不知道出了什么问题。我有一个未使用 OOP 编写的代码版本,可以正确显示网页标题,但我的 getTitle() 方法在此代码中返回 null。我希望它返回
本文整理了Java中org.uberfire.client.workbench.part.WorkbenchPartPresenter.getTitle()方法的一些代码示例,展示了Workbench
我最近一直在阅读有关如何在 PHP 中优化代码以实现可伸缩性的文章。我今天阅读的几篇文章都不鼓励使用其他方法来简单地从类返回对象。 所以基本上,他们说: 如果你有这样的类: class myClass
本文整理了Java中org.protege.editor.core.ui.workspace.Workspace.getTitle()方法的一些代码示例,展示了Workspace.getTitle()
当我在做hashmap编码时,我遇到了一个碰撞来识别key,示例如下: public void addBE(BookEntry entry) { library.put(entry.getBname(
我正在尝试将我的应用程序与 Firebase 数据库连接,但它给了我一个致命异常错误:(我没有发布之前实现的其余代码,因为它工作得很好。就在实现之后下面的代码我遇到了错误) package com.e
登录完成后我需要验证网页的标题。使用 selenium 的 Chrome 驱动程序,登录后页面标题正确,但 Firefox 驱动程序不正确。其余代码保持不变,只是驱动程序从 chrome 更改为 Fi
这是我启动 HTMLUnit 浏览器并获取标题的基本代码。运行代码时,我得到的标题为空,后来它抛出以下执行: 使用的 jar : htmlunit-driver-2.33.0-jar-with-dep
这个问题在这里已经有了答案: What is a NullPointerException, and how do I fix it? (12 个答案) 关闭 6 年前。 我知道有很多关于nullp
我是一名优秀的程序员,十分优秀!