Below is the code of my Activity . In this I am using the support library appcompat
import android.content.Intent;
import android.os.Bundle;
import android.support.v4.view.MenuItemCompat;
import android.support.v7.app.ActionBarActivity;
import android.support.v7.widget.ShareActionProvider;
import android.view.Menu;
import android.view.MenuItem;
public class MainActivity extends ActionBarActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.activity_main, menu);
MenuItem item = (MenuItem) menu.findItem(R.id.share_options);
ShareActionProvider shareAction = (ShareActionProvider) MenuItemCompat
.getActionProvider(item);
Intent shareIntent = new Intent(Intent.ACTION_SEND)
.setAction(Intent.ACTION_SEND)
.putExtra(Intent.EXTRA_TEXT, "MobiTexter")
.setType("text/plain");
shareAction.setShareIntent(shareIntent);
return super.onCreateOptionsMenu(menu);
}
}
The following is my XML file for the menu options that is an ShareActionProvider Widget
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:mobitexter="http://schemas.android.com/apk/res-auto" >
<item
android:id="@+id/share_options"
android:actionProviderClass="android.support.v7.widget.ShareActionProvider"
android:orderInCategory="100"
mobitexter:showAsAction="never"
mobitexter:title="@string/share_options"/>
</menu>
In this i am getting an NullPointerException . Below is my log cat output.
10-02 12:49:00.813: E/AndroidRuntime(9227): FATAL EXCEPTION: main
10-02 12:49:00.813: E/AndroidRuntime(9227): java.lang.NullPointerException
10-02 12:49:00.813: E/AndroidRuntime(9227): at net.mobitexter.easyshare.MainActivity.onCreateOptionsMenu(MainActivity.java:31)
10-02 12:49:00.813: E/AndroidRuntime(9227): at android.app.Activity.onCreatePanelMenu(Activity.java:2444)
10-02 12:49:00.813: E/AndroidRuntime(9227): at android.support.v4.app.FragmentActivity.onCreatePanelMenu(FragmentActivity.java:224)
10-02 12:49:00.813: E/AndroidRuntime(9227): at android.support.v7.app.ActionBarActivity.superOnCreatePanelMenu(ActionBarActivity.java:224)
10-02 12:49:00.813: E/AndroidRuntime(9227): at android.support.v7.app.ActionBarActivityDelegateICS.onCreatePanelMenu(ActionBarActivityDelegateICS.java:141)
10-02 12:49:00.813: E/AndroidRuntime(9227): at android.support.v7.app.ActionBarActivity.onCreatePanelMenu(ActionBarActivity.java:199)
10-02 12:49:00.813: E/AndroidRuntime(9227): at android.support.v7.app.ActionBarActivityDelegateICS$WindowCallbackWrapper.onCreatePanelMenu(ActionBarActivityDelegateICS.java:280)
10-02 12:49:00.813: E/AndroidRuntime(9227): at com.android.internal.policy.impl.PhoneWindow.preparePanel(PhoneWindow.java:392)
10-02 12:49:00.813: E/AndroidRuntime(9227): at com.android.internal.policy.impl.PhoneWindow.invalidatePanelMenu(PhoneWindow.java:743)
10-02 12:49:00.813: E/AndroidRuntime(9227): at com.android.internal.policy.impl.PhoneWindow$1.run(PhoneWindow.java:2838)
10-02 12:49:00.813: E/AndroidRuntime(9227): at android.os.Handler.handleCallback(Handler.java:605)
10-02 12:49:00.813: E/AndroidRuntime(9227): at android.os.Handler.dispatchMessage(Handler.java:92)
10-02 12:49:00.813: E/AndroidRuntime(9227): at android.os.Looper.loop(Looper.java:137)
10-02 12:49:00.813: E/AndroidRuntime(9227): at android.app.ActivityThread.main(ActivityThread.java:4448)
10-02 12:49:00.813: E/AndroidRuntime(9227): at java.lang.reflect.Method.invokeNative(Native Method)
10-02 12:49:00.813: E/AndroidRuntime(9227): at java.lang.reflect.Method.invoke(Method.java:511)
10-02 12:49:00.813: E/AndroidRuntime(9227): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:823)
10-02 12:49:00.813: E/AndroidRuntime(9227): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:590)
10-02 12:49:00.813: E/AndroidRuntime(9227): at dalvik.system.NativeStart.main(Native Method)
NullPointerException is a runtime exception in Java that occurs when a variable is accessed which is not pointing to any object and refers to nothing or null. Since the NullPointerException is a runtime exception, it doesn't need to be caught and handled explicitly in application code.
In Java, the java. lang. NullPointerException is thrown when a reference variable is accessed (or de-referenced) and is not pointing to any object. This error can be resolved by using a try-catch block or an if-else condition to check if a reference variable is null before dereferencing it.
To avoid the NullPointerException, we must ensure that all the objects are initialized properly, before you use them. When we declare a reference variable, we must verify that object is not null, before we request a method or a field from the objects.
NullPointerException is a runtime exception and it is thrown when the application try to use an object reference which has a null value. For example, using a method on a null reference.
I found the error. The problem was that support library requires to have a custom prefix and not android:actionProviderClass
. What i was doing wrong that i used android:actionProviderClass
instead of customprefix:actionProviderClass
See here: https://developer.android.com/training/basics/actionbar/adding-buttons.html
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With