Android UI 初学者问题

发布于 2024-11-07 21:15:36 字数 948 浏览 0 评论 0原文

我是 Android/java 新手,来自 C#/Visual Studio。 在编写逻辑代码时,从 C# 跳转到 java 并不是太难,但在 UI 方面,我遇到了问题。

我现在已将一个简单的 TextView 添加到我的 main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" android:orientation="vertical">
<TextView android:layout_width="wrap_content" android:editable="true" android:layout_height="wrap_content" android:id="@+id/textView1" android:text="TextView">
</TextView>
</LinearLayout>

现在我想通过代码访问 textView1:

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    this.textView1 = (TextView)this.findViewById(android.R.id.textView1);
}
private TextView textView1;

但出现错误:textView1 无法解析。

我做错了什么?

谢谢

詹姆斯

I'm new to Android/java, coming from C#/Visual Studio.
It's not a too hard jump from C# to java while coding the logic, but with the UI, I'm having problems.

I've now added a simple TextView to my main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" android:orientation="vertical">
<TextView android:layout_width="wrap_content" android:editable="true" android:layout_height="wrap_content" android:id="@+id/textView1" android:text="TextView">
</TextView>
</LinearLayout>

Now I wanted to access the textView1 by code:

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    this.textView1 = (TextView)this.findViewById(android.R.id.textView1);
}
private TextView textView1;

but I get the error: textView1 cannot be resolved.

What am I doing wrong?

Thanks

James

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

决绝 2024-11-14 21:15:36

将 findViewById(android.R.id.textView1) 替换为 findViewById(R.id.textView1);

android.R 是 SDK 的资源包,而 R 是您的应用程序的资源包,它将与成功构建应用程序一起创建。

并将背景颜色设置为xml中的#ffffff ....看起来更有吸引力..

Replace findViewById(android.R.id.textView1) by findViewById(R.id.textView1);

android.R is resorce packege of SDK while R is of your app which will create along with successfully build of app .

and set the background color to #ffffff in xml .... it seems more attractive..

真心难拥有 2024-11-14 21:15:36

只需使用 R.id.textView1,而不是 android.R.id.textView1android 前缀适用于来自 Android 本身的资源,而不是来自您的项目的资源。

Instead of android.R.id.textView1, just use R.id.textView1. The android prefix is for resources from Android itself, rather than from your project.

不打扰别人 2024-11-14 21:15:36

findViewById(android.R.id.textView1) 替换为 findViewById(R.id.textView1);

android.R 是 SDK 的资源包,而 R 是您的应用程序的资源包将创建并成功构建应用程序。

Replace findViewById(android.R.id.textView1) by findViewById(R.id.textView1);

android.R is resorce packege of SDK while R is of your app which will create along with successfully build of app .

迎风吟唱 2024-11-14 21:15:36

试试这个

    private TextView textView1;
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        this.textView1 = (TextView)this.findViewById(R.id.textView1);
        textView1.setText("Hello World !!!");
   }

try this

    private TextView textView1;
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        this.textView1 = (TextView)this.findViewById(R.id.textView1);
        textView1.setText("Hello World !!!");
   }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文