在我正在开发的应用程序中获取NullPointerException

时间:2017-01-17 14:14:04

标签: java android android-intent nullpointerexception

我在我的应用中获得了googleMap.addMarker(new MarkerOptions() .position(myLatLng) .title(myTitle) .snippet(mySnippet) .icon(BitmapDescriptorFactory.fromResource(R.mipmap.ic_arrow_up)) .rotation(myAngle)); 。已经有一天了。

这是错误,

NullPointerException

这是代码,

E/AndroidRuntime: FATAL EXCEPTION: main
                  Process: com.sourcey.materialloginexample, PID: 29568
                  java.lang.NullPointerException: Attempt to invoke virtual method 'android.text.Editable android.widget.EditText.getText()' on a null object reference 
                  at com.sourcey.materiallogindemo.RedeemFragment$1.onClick(RedeemFragment.java:50)

2 个答案:

答案 0 :(得分:0)

假设您正在使用ButterKnife,请在onCreateView()之后将其添加到您的视图膨胀之后:

ButterKnife.bind(this, v);

另请参阅:Documentation

答案 1 :(得分:0)

根据onCreateView中的http://jakewharton.github.io/butterknife/,您应该

ButterKnife.bind(this, view);