Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to make an app that will display the url and page title that I am currently viewing in the browser when I choose the share menu and select my app.

This is my Intent filter in the manifest.xml:

intent-filter

action android:name="android.intent.action.SEND"

category android:name="android.intent.category.DEFAULT" 

data android:mimeType="text/plain" 

intent-filter

This is the code in my activity:

public void onCreate(Bundle savedInstanceState) {    
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    TextView text = (TextView) this.findViewById(R.id.url_text);
    Intent intent = getIntent();
    if (savedInstanceState == null && intent != null) {
        Log.d(TAG, "intent != null");
        if (intent.getAction().equals(Intent.ACTION_SEND)) {
            Log.d(TAG, "intent.getAction().equals(Intent.ACTION_SEND)");
            url = intent.getStringExtra(Intent.EXTRA_TEXT);
            text.setText(url);          
        }
    }
}
}

This code is working to get the url of the page, but I can't figure out how to get the title of the page I'm viewing in the browser. One way of doing this which I got working was to use HttpResponse to execute a new request and then get the page content and search through that to get the title. Is there an easier way to find out the title of the page?

Any help would be much appreciated. Thanks.

share|improve this question

1 Answer

up vote 0 down vote accepted

I think the title comes to you in the EXTRA_SUBJECT Intent extra.

share|improve this answer
Thanks. It worked all I had to do was add the line title = intent.getStringExtra(Intent.EXTRA_SUBJECT); – KeithC Jul 5 '11 at 15:23

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.