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 am trying to use intent filter to open URLs in my application (as opening http://market.android.com/ opens the Android Market).

According to docs I've found, with this code, opening http://seenthis.net/people/progval in the browser should open my application:

    <activity android:name=".ShowUserActivity" android:permission="android.permission.INTERNET">
        <intent-filter>
            <action android:name="android.intent.action.VIEW" />
            <category
                android:name="android.intent.category.DEFAULT" />
            <category
                android:name="android.intent.category.BROWSABLE" />
            <data
                android:scheme="http"
                android:host="seenthis.net"
                android:pathPattern="/people/.*" />
        </intent-filter>
    </activity>

But it does not.

Here is the activity:

public class ShowUserActivity extends ListActivity {
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        Log.d("SeenDroid", "called");
        String url = getIntent().getDataString();
        if (url != null) {
            Log.d("SeenDroid", url);
        }
        // ...
    }
    // ...
}

But nothing is logged to the logcat.

Regards, ProgVal

share|improve this question

1 Answer

up vote 2 down vote accepted

You need to remove android:permission="android.permission.INTERNET" from your activity declaration.

share|improve this answer

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.