Back to project page Wordilizer.
The source code is released under:
Apache License
If you think the Android project Wordilizer 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.wordilizer; //www . j a v a2s .co m import android.app.Activity; import android.os.Bundle; import android.widget.TextView; public class AboutUs extends Activity{ private TextView AboutUs; @Override protected void onCreate(Bundle savedInstanceState) { // TODO Auto-generated method stub super.onCreate(savedInstanceState); setContentView(R.layout.about); AboutUs= (TextView) findViewById(R.id.about); AboutUs.setText("This application has been developed by Rushabh Savla with inputs from Sahil Salunkhe"); } }