0

私は何日もこのエラーを整理しようとしていて、Android開発の学習を妨げているため、私は常にこのエラー(タイトルで)を受け取りますが、コーディングの間違いを見つけることができません。ラップトップの飛び方を教える前に

</LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="your total is 0"
android:textSize="45dp"
android:layout_gravity="center"
android:id="@+id/tvDisplay"
></TextView>
<Button
android:layout_width="250dp" 
android:layout_height="wrap_content"
android:text="Add one"
android:layout_gravity="center"
android:textSize="20dp"
android:id="@+id/bAdd"
/>

<Button
android:id="@+id/bSub"
android:layout_width="250dp"
android:layout_height="wrap_content"
android:text="subtract one"
android:textSize="20dp"
android:layout_gravity="center"
/>
</LinearLayout>  **this is where the error line is and am new to this stuff so sorry if its somthing simple **
4

1 に答える 1

0

xmlの線形レイアウトタグの先頭から「/」を削除するだけです。

于 2012-07-14T01:23:35.720 に答える