Back to project page ARGiE.
The source code is released under:
MIT License
If you think the Android project ARGiE 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 headrick.brandon.activities; /* w ww . j av a 2 s . co m*/ import com.google.android.gms.common.GooglePlayServicesUtil; import headrick.brandon.R; import android.app.Activity; import android.os.Bundle; import android.text.method.ScrollingMovementMethod; import android.widget.TextView; /** * Provides legal information required by Google and gives credit to myself * and my previous partners for their help in inspiring this application * @author Brandon Headrick * */ public class AboutScreenActivity extends Activity{ @Override protected void onCreate(Bundle savedInstanceState) { // TODO Auto-generated method stub super.onCreate(savedInstanceState); setContentView(R.layout.about_screen); TextView legal = (TextView)findViewById(R.id.legal); legal.setText(GooglePlayServicesUtil.getOpenSourceSoftwareLicenseInfo(this)); legal.setMovementMethod(new ScrollingMovementMethod()); } }