我是新手android,我通过使用演示代码来学习android,这是我的代码:
public class MainActivity extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
TextView txt = (TextView) findViewById(R.id.txtHello);
txt.setText("Hello World!");
}
}
这是 XML 文件:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView
android:id="@+id/txtHello"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
</LinearLayout>
但是当我运行这个项目时,我看不到这个文本视图,请大家帮帮我:(,我不知道我的问题是..?