package com.samrudhi.hellosamrudhi;
import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;
public class HelloSamrudhi extends Activity
{
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceSt
TextView tv = new TextView(this);
tv.setText("Hello Samrudhi, Good Morning");
setContentView(tv);
}
}
------------------------------
Out put :-
Hello Samrudhi, Good Morning
No comments:
Post a Comment