1

私の r.java は Eclipse で消えてしまいましたが、それは私の xml にあるミスが原因であることがわかっています。私はこれに慣れていないので、自分で次のコーディングの何が問題なのかわかりません。主にインターネット上のチュートリアルに従っているだけです。助けてくれる人に感謝します。

<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"
    tools:context=".Main" />

-     <TextView
-         android:id="@+id/textView1"
-         android:layout_width="wrap_content"
-         android:layout_height="wrap_content"
-         android:layout_centerHorizontal="true"
-         android:layout_centerVertical="true" />
-
    <Button
        android:id="@+id/st"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="Start Test"
        android:layout_above="@+id/textView1"
        android:textStyle="bold|italic"
/>

    <LinearLayout
        android:id="@+id/linearLayout1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_alignParentLeft="true"
        android:gravity="center_vertical|center"
        android:orientation="vertical"
        android:weightSum="1" >

        <Button
            android:id="@+id/drinkcounter"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="Unit Counter" />

        <Button
            android:id="@+id/drinklist"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="Drink List" />

        <Button
            android:id="@+id/drinkdrivinglimit"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="Drink Driving Limits" />

        <Button
            android:id="@+id/datarecord"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="Data Records" />
    </LinearLayout>

</RelativeLayout>
4

0 に答える 0