请教小弟我这样在R文件 添加一个ID有错吗?为什么R文件里面没有显示小弟我所添加的ID
请问我这样在R文件 添加一个ID有错吗?为什么R文件里面没有显示我所添加的ID
<EditText
android:id="@+id/et_number"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ems="10"
android:inputType="phone" >
</EditText>
<Button
android:id="@+id/call_number"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@id/et_number"
android:layout_below="@id/et_number"
android:text="@string/call" />
红色字体的是我所修改的。有错吗?为什么R文件的ID里面没有这两个参数的ID????
------解决思路----------------------
clean一下看看有没有
<EditText
android:id="@+id/et_number"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ems="10"
android:inputType="phone" >
</EditText>
<Button
android:id="@+id/call_number"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@id/et_number"
android:layout_below="@id/et_number"
android:text="@string/call" />
红色字体的是我所修改的。有错吗?为什么R文件的ID里面没有这两个参数的ID????
------解决思路----------------------
clean一下看看有没有