我刚开始构建android应用程序。这个错误
按钮无法解析为类型
经常让我烦恼。这是java代码
package com.android.revision1;
import android.app.Activity;
import android.os.Bundle;
public class Revision1Activity extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
button=(Button) findViewByid(R.layout.button1);
}
}
这是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" >
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="button" />
</LinearLayout>
答案 0 :(得分:1)
button
似乎未声明,因此声明该字段
private Button button;
或局部变量:
Button button=(Button) findViewByid(R.layout.button1);
答案 1 :(得分:1)
假设您的变量已声明并且您没有显示它,则需要导入Button类。在其他导入旁边添加以下行:
import android.widget.Button;
答案 2 :(得分:0)
您需要声明@prevent_signal('post_save', my_signal, SenderClass)
def test_something_without_signal(self):
# the signal will not fire inside this test
,因为它在设置之前尚未声明。
以下是完整的代码:
button