Back to project page MyTwitter-Android.
The source code is released under:
Apache License
If you think the Android project MyTwitter-Android 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 org.fukata.android.mytw; /*from www. j a va 2s . c om*/ import android.app.Activity; import android.content.Intent; import android.os.Bundle; public class MyTwitterActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); Intent intent = new Intent(this, TimelineActivity.class); intent.setAction(Intent.ACTION_VIEW); startActivity(intent); finish(); } }