1. 程式人生 > >Couldn't resolve resource @id/pass問題的解決

Couldn't resolve resource @id/pass問題的解決

就比如

這個佈局,佈局如下

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:paddingLeft="16dp"
    android:paddingRight="16dp" >

    <TextView
        android:id="@+id/name"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="20dp"
        android:gravity="center"
        android:text="@string/name"
        android:textSize="22dp" />

    <TextView
        android:id="@+id/zhanghao"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_below="@id/name"
        android:layout_marginTop="30dp"
        android:text="@string/zhanghao"
        android:textSize="15dp" />

    <EditText
        android:id="@+id/zhang"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_below="@id/name"
        android:layout_marginLeft="50dp"
        android:layout_toLeftOf="@id/zhanghao" />

    <TextView
        android:id="@+id/password"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_below="@id/zhanghao"
        android:layout_marginTop="25dp"
        android:text="@string/password" />

    <EditText
        android:id="@+id/pass"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_below="@id/zhang"
        android:layout_marginLeft="50dp"
    
        />

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/zhu" 
        android:layout_below="@id/pass"
        android:layout_alignParentRight="true"
        android:id="@+id/button"
        />
        <!-- 為什麼顯示這個Couldn't resolve resource @id/pass -->
     
      <Button 
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/deng"
        android:layout_below="@id/pass" 
        android:layout_toLeftOf="@id/button"
        />  
</RelativeLayout>

但是在轉換檢視下總是顯示

Couldn't resolve resource @id/pass

Couldn't resolve resource @id/button

這個問題一直困擾我,我不知道是什麼原因導致的,

我僅僅知道解決方法是重啟eclipse就可以了,然而clear是沒用的

參考連結

http://stackoverflow.com/questions/8390733/relativelayout-couldnt-resolve-resource-android#