Back to project page post-to-friendfeed.
The source code is released under:
Copyright (c) 2010, Larry Myers All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: R...
If you think the Android project post-to-friendfeed listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.larrymyers.android.posttoff; //w w w .ja v a2 s. c o m import android.app.Activity; import android.content.Intent; import android.net.Uri; import android.os.Bundle; import android.provider.Browser; public class OpenFF extends Activity { Uri HOME = Uri.parse("http://friendfeed.com/iphone"); @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); Intent intent = new Intent(Intent.ACTION_VIEW, HOME); intent.putExtra(Browser.EXTRA_APPLICATION_ID, getPackageName()); startActivity(intent); finish(); } }