Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Android Build a Blog Reader Android App Using Intents to Display and Share Posts Easy Sharing with Intents

Can't get share icon to show in Action BAr

Hi,

I cannot get the share icon to show up in the menu. Below is the piece of code in which I call the menu:

@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_blog_web_view, menu); return true; } And here is the code in the XML file of the menu:

<item android:id="@+id/action_share" android:icon="@drawable/ic_action_share" android:showAsAction="always" android:title="@string/action_share"> </item>

3 Answers

Please make sure you have all the code I want to show here included.

I mean, YOU want to show here

For the menu layout: ''' <p>This is Java!</p> <menu xmlns:android="http://schemas.android.com/apk/res/android" >

<item
    android:id="@+id/action_share"
    android:orderInCategory="100"
    android:showAsAction="always"
    android:title="@string/action_share"
    android:icon="@drawable/ic_action_share"/>

</menu> ''' In the Java fille;

''' @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_blog_web_view, menu);
    return true;
}

'''

Thanks