gpt4 book ai didi

java - Netbeans Android 模拟器未运行程序

转载 作者:行者123 更新时间:2023-12-02 04:21:10 24 4
gpt4 key购买 nike

我正在尝试在 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); 是如何获取您为 Activity 创建的布局的 id(应该位于 main.xml 中) ),可能如下所示:

<?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>

关于java - Netbeans Android 模拟器未运行程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32749420/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com