我试图在Netbeans Android IDE的模拟器上运行一个非常简单的Hello World程序。代码编译后,模拟器启动(android 4.0.3),但手机上没有Hello World应用程序。是我错过了什么简单的东西还是有什么问题?下列代码:
package com.test.helloworld;
import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;
public class helloworld extends Activity
{
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
TextView text1 = new TextView(this);
text1.setText(“Hello World”);
setContentView(text1);
}
}
你没有得到正确的textview。你需要做这样的事情:
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
TextView text1 = (TextView) findViewById(R.id.yourcustomid);
text1.setText(“Hello World”);
}
这一行这里的TextView text1 = (TextView) findViewById(R.id.yourcustomid);
是如何获得你为你的活动(应该在main.xml)创建的布局的id,这可能看起来像这样:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<TextView
android:id="@+id/yourcustomid"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</RelativeLayout>