Back to project page Twitter-Android.
The source code is released under:
Apache License
If you think the Android project Twitter-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 info.mahmoudhossam.twitter.Activities; /* w w w. j a va 2 s . com*/ import android.app.Activity; import android.os.Bundle; import android.util.Log; import android.widget.TextView; import info.mahmoudhossam.twitter.R; public class Tweet extends Activity { public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.tweet); TextView name = (TextView) findViewById(R.id.name); name.setText(getIntent().getStringExtra("username")); TextView tweet = (TextView) findViewById(R.id.tweet); tweet.setText(getIntent().getStringExtra("text")); } }