0

私はAndroidプログラミングが初めてで、いくつかのボタンを作成しようとしています.次のコードを使用してこれらのボタンを構成しました:

MainActivityクラス:

public class MainActivity extends Activity
{
    /** Called when the activity is first created. */

    Button st,nd,center;
    @Override
    public void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        st = (Button)findViewById(R.id.st);
        st = (Button)findViewById(R.id.center);
        st = (Button)findViewById(R.id.nd);


    }
}

およびXML レイアウト:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@drawable/background"
    >
<TextView
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="Hello from animation!!"
    />
<button android:layout_width="100dp"
android:layout_height="50dp"
android:text="1st half"
android:id="@+id\st"
/>
// and the other two points defined the same way
</LinearLayout>

そして、私はその構文エラーを得ました:

error: Error: No resource type specified (at 'id' with value '@+id\st').
// and the same error with the other two buttons

ヒント:R classインポートされ、MainActivityクラスからアクセスできますが、読み取ることはできませんR.id

4

3 に答える 3

2

コードにいくつかの構文エラーがあります

Buttonボタンの代わりに最初に使用します。

id の後に \ の代わりに / を使用します。

<Button android:layout_width="100dp"
android:layout_height="50dp"
android:text="1st half"
android:id="@+id/st"
/>
于 2013-11-13T09:56:15.540 に答える
0

buttonButton で置き換えandroid:id="@+id\st"ますandroid:id="@+id/st"

于 2013-11-13T09:50:04.830 に答える