我创建了一个带有几个按钮和文本字段的简单布局。当我使用图形布局编辑器更改某些内容时,我不断收到错误消息。有时我只是移动按钮并在编译过程中出现如下错误: *R 无法解析为变量 MainActivity.java /USB_Host_test/src/gra/usb_host_test 第 103 行
我没有删除任何东西,所以不能出现未解析的变量。有时问题会出现在运行时,就像这里描述的那样。清理项目没有帮助。有几次我通过对 xml 做一些小改动(添加/删除注释)来解决这个问题,但这很烦人。它是 ADT 中的错误还是我做错了什么?
我使用来自 Android.com 的 ADT Build: v21.1.0-569685。目标 API 级别为 17,最低 API 级别为 12。
这是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"
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/btEnumerate"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:minHeight="70dip"
android:text="Текст на отправку" />
<TextView
android:id="@+id/tbUSBRxData"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/SendF"
android:layout_centerHorizontal="true"
android:text="Medium Text1"
android:textAppearance="?android:attr/textAppearanceMedium" />
<Button
android:id="@+id/btOpen"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/btEnumerate"
android:layout_below="@+id/btEnumerate"
android:layout_marginLeft="26dp"
android:layout_marginTop="31dp"
android:text="@string/Open" />
<Button
android:id="@+id/USBRead"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignRight="@+id/btEnumerate"
android:layout_below="@+id/btOpen"
android:layout_marginTop="42dp"
android:text="USB Read" />
<Button
android:id="@+id/SendF"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignRight="@+id/USBRead"
android:layout_below="@+id/tbUSBD"
android:text="USB Write" />
<TextView
android:id="@+id/tbUSBD"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/USBRead"
android:layout_centerHorizontal="true"
android:text="Получено от USB:"
android:textAppearance="?android:attr/textAppearanceMedium" />
<Button
android:id="@+id/btRead"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignRight="@+id/SendF"
android:layout_below="@+id/SendF"
android:layout_marginTop="30dp"
android:text="Остновить службу" />
<EditText
android:id="@+id/editText1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/btOpen"
android:layout_alignRight="@+id/tbUSBD"
android:layout_alignTop="@+id/btEnumerate"
android:layout_marginLeft="36dp"
android:layout_toRightOf="@+id/btEnumerate"
android:autoLink="none"
android:ems="10"
android:inputType="textMultiLine"
android:linksClickable="false"
android:maxLines="10"
android:minLines="4"
android:scrollbarStyle="outsideOverlay"
android:scrollbars="vertical"
android:selectAllOnFocus="true" >
<requestFocus />
</EditText>
</RelativeLayout>
}