Button可能会产生空指针异常(Android Studio)

时间:2016-03-24 15:42:49

标签: java android button android-studio nullpointerexception

Android Studio的新手,我认为我做得很好,但昨晚遇到了一个错误,尽管谷歌搜索力度最大,但我似乎无法修复。我的一个活动上的一个按钮'可能会产生java.lang.NullPointerException',除了它每次推送都会失败。它可能就像在错误的地方订购一行代码一样简单,但我对Android工作室这么新,我真的不知道我哪里出错了。

   public class searchPage extends AppCompatActivity {

    private GoogleApiClient client;


    @Override
    protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_search_page);
    Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
    setSupportActionBar(toolbar);

    Button goBackButton = (Button) findViewById(R.id.goBackButton);

    goBackButton.setOnClickListener(new View.OnClickListener() {
        @Override

        public void onClick(View v) {

            startActivity(new Intent(searchPage.this, MainActivity.class));
        }
     });

这是XML

 <Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="New Button"
    android:id="@+id/goBackButton"
    android:layout_marginTop="88dp"
    android:layout_below="@+id/spinner4"
    android:layout_centerHorizontal="true"
    />

和清单文件

 <?xml version="1.0" encoding="utf-8"?>
 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
 package="com.example.onein.mobilefinalapp">

 <application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:supportsRtl="true"
    android:theme="@style/AppTheme">
    <activity
        android:name=".MainActivity"
        android:label="@string/app_name"
        android:theme="@style/AppTheme.NoActionBar">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity
        android:name=".searchPage"
        android:label="@string/title_activity_search_page"
        android:theme="@style/AppTheme.NoActionBar" />

    <activity
        android:name=".MoviePage"
        android:label="@string/title_activity_movie_page"
        android:theme="@style/AppTheme.NoActionBar"></activity>

    <meta-data
        android:name="com.google.android.gms.version"
        android:value="@integer/google_play_services_version" />
 </application>

 </manifest>

这是activity_search_page.xml

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

 <include layout="@layout/content_search_page" />

 <android.support.design.widget.FloatingActionButton
    android:id="@+id/fab"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="bottom|end"
    android:layout_margin="@dimen/fab_margin"
    android:src="@android:drawable/ic_dialog_email" />

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

如果您需要任何其他信息,请告诉我。

任何帮助非常感谢!谢谢。

编辑 - 删除了重复按钮,并添加了activity_search_page.xml

3 个答案:

答案 0 :(得分:4)

  

方法调用&#39; setOnClickListener&#39;可能会产生&#39; java.lang.NullPointerException&#39;少...

     

此检查分析方法控制和数据流,以报告始终为真或假的可能条件,静态证明其值不变的表达式,以及可能导致违约性合同违规的情况。

这只是警告,因为如果在布局中找不到给定的ID,findViewById将返回null

如果您确定ID在您正在使用的布局中,您可以放心地忽略它,或者您可以使用断言(可能还有@Nullable注释)忽略它。

View v = findViewById(R.id.someId);
assert v != null;
v.setOnClickListener(...);

答案 1 :(得分:0)

首先,您的Button需要在activity_search_page.xml文件中findViewById()才能生效。

其次,我认为您需要后退按钮功能,在这种情况下

  1. 删除与Button
  2. 相关的代码
  3. 添加toolbar.setDisplayHomeAsUpEnabled(true);
  4. 添加以下代码

    toolbar.setNavigationOnClickListener(new View.OnClickListener() {
          @Override
          public void onClick(View v) {
                startActivity(new Intent(searchPage.this, MainActivity.class));
          }
    });
    
  5. 可选,请使用toolbar.setNavigationIcon(R.drawable.your_own_back_button_drawable_here);来使用您自己的drawable。

  6. This may help as well

答案 2 :(得分:0)

正如@ cricket007正确指出的那样 这是一个警告,如果没有找到资源,则返回null,这实际上会使应用程序崩溃。

解决此问题的一些方法:

1)使用命令

assert object_name != null

或只是做alt+enter,这是Android工作室的最佳建议之一。

2)使用

if(object!=null)

3) 编辑:这是一种工作方法,但不好的做法,简单的if比这更好。

使用trycatch阻止(Java处理错误的方式。)

try{
    your entire code here;
}
catch(Exception e){
    what to do when exception happens
}