0

私のxmlコードとeclispeの私のJavaコードとの間を接続しようとしています。bt1というボタンがあります。R.id.bt1を実行しようとすると、bt1が認識されません。xmlコードを取得できなかったことを意味します..ワットが間違っていることがわかりますか?

XML:`

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
   android:text="@string/hello_world" />
<Button 
    android:id="@+id/bt1"   
    android:layout_height="wrap_content"
    android:layout_width="wrap_content"

    />

`

ジャワ:

public class MainActivity extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        Button btn=(Button) findViewById(R.id.bt1);
4

1 に答える 1

1

セミコロン(;)の後の(`)を削除してください

ボタン btn=(ボタン) findViewById(R.id.bt1);`

于 2013-07-25T03:16:43.607 に答える