Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

eclipse can not recognise my layout folder, my layouts could not be referenced by

R.layout.activity_qr01

and the error says:my layout can not be resolved or is not a field

the code of activity_qr01 is:

<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" >

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerHorizontal="true"
    android:layout_centerVertical="true"
    android:text="@string/hello_world"
    tools:context=".QR01" />
    </RelativeLayout>

share|improve this question
Please upload the code of activity_qr01.xml file. – Lucifer Sep 11 '12 at 8:35
i posted the code the activity_qr01 – Amr Sep 11 '12 at 8:39
can i post an answer to my question or it is not allowed – Amr Sep 11 '12 at 9:04
Yes you can answer your own question, it is fairly allowed :) – Lucifer Sep 11 '12 at 9:09

2 Answers

Your XML file is in the res/menu folder, it should be in the res/layout folder.

share|improve this answer
my layout folder is inside the res folder – Amr Sep 11 '12 at 8:38
D:\workspaceQR\QR01\res\menu\activity_qr01.xml No, it is not. – santirivera92 Sep 11 '12 at 8:41
i found the same xml file activity_qr01 inside the menue folder and now i deleted it and i have only on activity_qr01 inside the res folder and the problem still exist and consol does not display any errors but the activity_qr01 still unrecognised – Amr Sep 11 '12 at 8:51
i found the solutionwhich is: i had to remove the import andrid.R and replace it by the package name .R i.e: import com.example.qr01.R; – Amr Sep 11 '12 at 9:02
1  
@Amr, yes, you can post your own answer and accept it. Next time double check the error message and be more specific in your question. – Bicou Sep 11 '12 at 9:38
show 2 more comments

You are missing a </RelativeLayout> at the end.

Also, your file is called activity_qr01.xml, so you must reference it as R.layout.activity_qr01

share|improve this answer
i referenced R.layout.activity_qr01, what i posted is just an example – Amr Sep 11 '12 at 8:45
Have you tried to clean your project? – santirivera92 Sep 11 '12 at 8:51
yes i tried many times and i also restarted the workspace – Amr Sep 11 '12 at 8:52
can i post an answer to my question or it is not allowed – Amr Sep 11 '12 at 9:05
It's allowed and you're actually encouraged to do so. – santirivera92 Sep 11 '12 at 9:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.