Back to project page Race2GED.
The source code is released under:
GNU General Public License
If you think the Android project Race2GED 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 edu.mecc.race2ged; /*w w w.j av a 2 s . c o m*/ import android.app.Activity; import android.os.Bundle; import android.widget.TextView; public class ReadyTab extends Activity { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.readytab_layout); TextView content = (TextView) findViewById(R.id.num5); content.setText(String.format(getResources().getString(R.string.readytab_content_info), getResources().getString(R.string.tollFree))); } }