0

これは私の最初のアプリです。このコードの修正を手伝ってください。ボタンのセットアップが機能しない

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >

<Button
    android:id="@+id/button1"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:onclick='buttonBtn'
    ></Button>

4

3 に答える 3

1

これをに変更

 android:onclick='buttonBtn'

 android:onClick='buttonBtn'

c は小さくない資本

Android の XML パーサーは大文字と小文字を区別するため

于 2013-09-21T12:31:56.290 に答える
0

android:onclick='buttonBtn'に変更android:onClick='buttonBtn'

MainActivity で、次のようにします。

public void buttonBtn(View view){
     //do your button function here
}
于 2013-09-21T12:29:49.103 に答える