1

我正在使用 Eclipse 创建一个 android 应用程序。这是我第一个使用 eclipse 或为 android 编写的程序。我在我的 XML 中创建了几个对象(4 个按钮和一个文本视图)。当按下其中一个按钮时,该程序应该在文本视图中显示随机结果。确定随机结果的代码没有问题,但我找不到如何引用对象以编辑文本视图或将按钮连接到我制作的功能。如何从主 .java 程序引用在 XML 中创建的对象?

4

1 回答 1

3

例如:

R.layout.main   // layout with "main" id
R.string.hello  // string with "hello" id
R.id.button     // button with "button" id

如果你想获得一个视图,例如一个按钮:

Button launch = (Button) findViewById(R.id.button_id);
于 2011-08-22T19:07:06.280 回答