Hello World Problem in Eclipse with Android 2.3 used min 7 instead of min 9

Posted by Gnev on Stack Overflow See other posts from Stack Overflow or by Gnev
Published on 2010-12-23T01:53:39Z Indexed on 2010/12/23 3:54 UTC
Read the original article Hit count: 331

Filed under:
|
|

*/I am Having a Similar Problem.......... Any Suggestions/

package com.example.helloandroid6; 
import android.app.Activity; import android.os.Bundle; 
import android.widget.TextView; public class HelloAndroid extends Activity {
/** Called when the activity is first created. */
@Override public void onCreate(Bundle savedInstanceState)
 { super.onCreate(savedInstanceState); 
TextView tv = new TextView(this); 
tv.setText("Hello, Android Developers"); 
setContentView(tv);
 } 
}

© Stack Overflow or respective owner

Related posts about android

Related posts about eclipse