在eclipse中无法更改“on click”属性

时间:2013-12-24 03:02:35

标签: android eclipse

我刚开始学习如何开发Android应用程序,而且我正在关注一本傻瓜书。

我将一个按钮拖到屏幕上,我可以通过点击它并在屏幕右侧的属性选项卡中更改“文本”的值来更改文本。

现在我想更改它的功能,但是屏幕右侧属性选项卡中的“on click”值显示为灰色,因此我无法输入我想要按钮的方法名称打电话。事实上,除了宽度,高度,文本和ID之外,所有值都是灰色的,但在书中,它显示了可编辑的值。

我在运行classicshell的Windows 8.1上使用android adt包附带的eclipse版本

1 个答案:

答案 0 :(得分:0)

它更好,更容易在xml中编辑,如:

<Button android:layout_width="wrapcontent"
        android:layout_height="wrap_content"
        android:text="Hello"
        android:id="@+id/pub"
        android:onClick="callurmethodhere"/>